diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..02b1de6 --- /dev/null +++ b/pom.xml @@ -0,0 +1,80 @@ + + + 4.0.0 + osm.surveyor + ReStamp + 3.0-SNAPSHOT + jar + + + + hayashi_repository + Hayashi Repository + http://surveyor.mydns.jp/archiva/repository/hayashi_repository/ + + true + + + false + + + + + + + org.hamcrest + hamcrest-core + 1.3 + test + jar + + + junit + junit + 4.12 + test + jar + + + org.apache.commons + commons-imaging + 1.0-alpha1 + jar + + + + UTF-8 + 11 + 11 + + + + + + + maven-assembly-plugin + 3.2.0 + + + + jar-with-dependencies + + + + osm.jp.gpx.matchtime.gui.AdjustTime + + + + + + make-assembly + package + + single + + + + + + + \ No newline at end of file diff --git a/src/main/java/osm/surveyor/matchtime/AppParameters.java b/src/main/java/osm/surveyor/matchtime/AppParameters.java new file mode 100644 index 0000000..f6e619c --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/AppParameters.java @@ -0,0 +1,216 @@ +package osm.surveyor.matchtime; + +import java.io.File; +import java.io.FileInputStream; +import java.io.FileNotFoundException; +import java.io.FileOutputStream; +import java.io.IOException; +import java.util.Properties; + +@SuppressWarnings("serial") +public class AppParameters extends Properties { + static final String FILE_PATH = "AdjustTime.ini"; + + // GPX: 時間的に間隔が開いたGPXログを別のセグメントに分割する。 {ON | OFF} + public static String GPX_GPXSPLIT = "GPX.gpxSplit"; + + // GPX: セグメントの最初の1ノードは無視する。 {ON | OFF} + public static String GPX_NO_FIRST_NODE = "GPX.noFirstNode"; + + // GPX: 生成されたGPXファイル(ファイル名が'_.gpx'で終わるもの)も対象にする。 {ON | OFF} + public static String GPX_REUSE = "GPX.REUSE"; + + // GPX: 基準時刻 {FILE_UPDATE | EXIF_TIME} + public static String GPX_BASETIME = "GPX.BASETIME"; + + // GPX: ファイル更新時刻 yyyy:MM:dd HH:mm:ss + public static String IMG_TIME = "IMG.TIME"; + + // 対象IMGフォルダ:(位置情報を付加したい画像ファイルが格納されているフォルダ) + public static String IMG_SOURCE_FOLDER = "IMG.SOURCE_FOLDER"; + + // 基準時刻画像(正確な撮影時刻が判明できる画像) + public static String IMG_BASE_FILE = "IMG.BASE_FILE"; + + // 対象GPXフォルダ:(GPXファイルが格納されているフォルダ) + public static String GPX_SOURCE_FOLDER = "GPX.SOURCE_FOLDER"; + + // 出力フォルダ:(変換した画像ファイルとGPXファイルを出力するフォルダ) + public static String IMG_OUTPUT_FOLDER = "IMG.OUTPUT_FOLDER"; + + // 出力IMG: IMG出力をする {ON | OFF} + public static String IMG_OUTPUT = "IMG.OUTPUT"; + + // 出力IMG: 'out of time'も IMG出力の対象とする {ON | OFF} + // この場合は、対象IMGフォルダ内のすべてのIMGファイルが出力フォルダに出力される + public static String IMG_OUTPUT_ALL = "IMG.OUTPUT_ALL"; + + // 出力IMG: EXIFを変換する + public static String IMG_OUTPUT_EXIF = "IMG.OUTPUT_EXIF"; + + // 出力GPX: を上書き出力する {ON | OFF} + public static String GPX_OUTPUT_SPEED = "GPX.OUTPUT_SPEED"; + + // 出力GPX: ソースGPXのを無視する {ON | OFF} + public static String GPX_OVERWRITE_MAGVAR = "GPX.OVERWRITE_MAGVAR"; + + // 出力GPX: マーカーを出力する {ON | OFF} + public static String GPX_OUTPUT_WPT = "GPX.OUTPUT_WPT"; + + File file; + + public AppParameters() throws FileNotFoundException, IOException { + super(); + this.file = new File(FILE_PATH); + syncFile(); + } + + public AppParameters(Properties defaults) throws FileNotFoundException, IOException { + super(defaults); + this.file = new File(FILE_PATH); + syncFile(); + } + + public AppParameters(String iniFileName) throws FileNotFoundException, IOException { + super(); + this.file = new File(iniFileName); + syncFile(); + } + + private void syncFile() throws FileNotFoundException, IOException { + boolean update = false; + + if (this.file.exists()) { + // ファイルが存在すれば、その内容をロードする。 + this.load(new FileInputStream(file)); + } + else { + update = true; + } + + //------------------------------------------------ + // 対象フォルダ:(位置情報を付加したい画像ファイルが格納されているフォルダ) + String valueStr = this.getProperty(IMG_SOURCE_FOLDER); + if (valueStr == null) { + update = true; + this.setProperty(IMG_SOURCE_FOLDER, (new File(".")).getAbsolutePath()); + } + + //------------------------------------------------ + // 対象フォルダ:(GPXファイルが格納されているフォルダ) + valueStr = this.getProperty(GPX_SOURCE_FOLDER); + if (valueStr == null) { + update = true; + this.setProperty(GPX_SOURCE_FOLDER, (new File(".")).getAbsolutePath()); + } + + //------------------------------------------------ + // 基準時刻画像(正確な撮影時刻が判明できる画像) + valueStr = this.getProperty(IMG_BASE_FILE); + if (valueStr == null) { + update = true; + this.setProperty(IMG_BASE_FILE, ""); + } + + //------------------------------------------------ + // 出力フォルダ:(変換した画像ファイルとGPXファイルを出力するフォルダ) + valueStr = this.getProperty(IMG_OUTPUT_FOLDER); + if (valueStr == null) { + update = true; + this.setProperty(IMG_OUTPUT_FOLDER, (new File(".")).getAbsolutePath()); + } + + //------------------------------------------------ + // IMG出力: IMGを出力する + valueStr = this.getProperty(IMG_OUTPUT); + if (valueStr == null) { + update = true; + valueStr = String.valueOf(true); + } + this.setProperty(IMG_OUTPUT, String.valueOf(valueStr)); + + //------------------------------------------------ + // 出力IMG: 'out of time'も IMG出力の対象とする + valueStr = this.getProperty(IMG_OUTPUT_ALL); + if (valueStr == null) { + update = true; + valueStr = String.valueOf(false); + } + this.setProperty(IMG_OUTPUT_ALL, String.valueOf(valueStr)); + + //------------------------------------------------ + // IMG出力: EXIFを変換する + valueStr = this.getProperty(IMG_OUTPUT_EXIF); + if (valueStr == null) { + update = true; + valueStr = String.valueOf(true); + } + this.setProperty(IMG_OUTPUT_EXIF, String.valueOf(valueStr)); + + //------------------------------------------------ + // GPX出力: 時間的に間隔が開いたGPXログを別のセグメントに分割する。 {ON | OFF} + valueStr = this.getProperty(GPX_GPXSPLIT); + if (valueStr == null) { + update = true; + this.setProperty(GPX_GPXSPLIT, String.valueOf(true)); + } + + //------------------------------------------------ + // GPX出力: セグメントの最初の1ノードは無視する。 {ON | OFF} + valueStr = this.getProperty(GPX_NO_FIRST_NODE); + if (valueStr == null) { + update = true; + this.setProperty(GPX_NO_FIRST_NODE, String.valueOf(true)); + } + + //------------------------------------------------ + // GPX出力: ポイントマーカーを出力する {ON | OFF} + valueStr = this.getProperty(GPX_OUTPUT_WPT); + if (valueStr == null) { + update = true; + this.setProperty(GPX_OUTPUT_WPT, String.valueOf(false)); + } + + //------------------------------------------------ + // GPX出力: ソースGPXのを無視する {ON | OFF} + valueStr = this.getProperty(GPX_OVERWRITE_MAGVAR); + if (valueStr == null) { + update = true; + this.setProperty(GPX_OVERWRITE_MAGVAR, String.valueOf(false)); + } + + //------------------------------------------------ + // GPX出力: を上書き出力する {ON | OFF} + valueStr = this.getProperty(GPX_OUTPUT_SPEED); + if (valueStr == null) { + update = true; + this.setProperty(GPX_OUTPUT_SPEED, String.valueOf(false)); + } + + //------------------------------------------------ + // GPX出力: 生成されたGPXファイル(ファイル名が'_.gpx'で終わるもの)も対象にする。 {ON | OFF} + valueStr = this.getProperty(GPX_REUSE); + if (valueStr == null) { + update = true; + this.setProperty(GPX_REUSE, String.valueOf(false)); + } + + //------------------------------------------------ + // GPX: 基準時刻 {FILE_UPDATE | EXIF} + valueStr = this.getProperty(GPX_BASETIME); + if (valueStr == null) { + update = true; + this.setProperty(GPX_BASETIME, "FILE_UPDATE"); + } + + if (update) { + // ・ファイルがなければ新たに作る + // ・項目が足りない時は書き足す。 + this.store(new FileOutputStream(this.file), "defuilt settings"); + } + } + + public void store() throws FileNotFoundException, IOException { + this.store(new FileOutputStream(this.file), "by AdjustTime"); + } +} diff --git a/src/main/java/osm/surveyor/matchtime/Restamp.java b/src/main/java/osm/surveyor/matchtime/Restamp.java new file mode 100644 index 0000000..b770042 --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/Restamp.java @@ -0,0 +1,229 @@ +package osm.surveyor.matchtime; + +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.text.DateFormat; +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Calendar; +import java.util.Comparator; +import java.util.Date; +import java.util.List; +import java.util.ResourceBundle; +import java.util.stream.Collectors; +import java.util.stream.Stream; +import org.apache.commons.imaging.ImageReadException; + +/** + * 動画から一定間隔で切り出したIMAGEファイルの更新日時を書き換える + * + * @author yuu + */ +public class Restamp extends Thread { + static public final String TIME_PATTERN = "yyyy-MM-dd HH:mm:ss z"; + + /** + * 実行中に発生したExceptionを保持する場所 + */ + public Exception ex = null; + + /** + * ログ設定プロパティファイルのファイル内容 + */ + protected static final String LOGGING_PROPERTIES_DATA + = "handlers=java.util.logging.ConsoleHandler\n" + + ".level=FINEST\n" + + "java.util.logging.ConsoleHandler.level=INFO\n" + + "java.util.logging.ConsoleHandler.formatter=osm.jp.gpx.YuuLogFormatter"; + + /** + * メイン + * 動画から一定間隔で切り出したIMAGEのファイル更新日時を書き換える + * + * ・画像ファイルの更新日付を書き換えます。(Exi情報は無視します) + * ※ 指定されたディレクトリ内のすべての'*.jpg'ファイルを処理の対象とします + * ・画像は連番形式(名前順に並べられること)の名称となっていること + * + * 1.予め、動画から画像を切り出す + * ソースファイル(mp4ファイル); 「-i 20160427_104154.mp4」 + * 出力先: 「-f image2 img/%06d.jpg」 imgフォルダに6桁の連番ファイルを差出力する + * 切り出し開始秒数→ 「-ss 0」 (ファイルの0秒から切り出し開始) + * 切り出し間隔; 「-r 30」 (1秒間隔=30fps間隔) + * ``` + * $ cd /home/yuu/Desktop/OSM/20180325_横浜新道 + * $ ffmpeg -ss 0 -i 20160427_104154.mp4 -f image2 -r 15 img/%06d.jpg + * ``` + * + * 2. ファイルの更新日付を書き換える + * ``` + * $ cd /home/yuu/Desktop/workspace/AdjustTime/importPicture/dist + * $ java -cp .:AdjustTime2.jar osm.jp.gpx.Restamp /home/yuu/Desktop/OSM/20180325_横浜新道/img 000033.jpg 2018-03-25_12:20:32 003600.jpg 2018-03-25_13:20:09 + * ``` + * + * exp) $ java -jar Restamp.jar argv[0] argv[1] argv[2] argv[3] argv[4] + * + * @param argv + * argv[0] = 画像ファイルが格納されているディレクトリ --> imgDir + * argv[1] = 時刻補正の基準とする画像ファイル --> baseFile1 + * argv[2] = 基準画像ファイルの精確な撮影日時 "yyyy-MM-dd HH:mm:ss z" --> baseTime1 + * argv[3] = 時刻補正の基準とする画像ファイル --> baseFile2 + * argv[4] = 基準画像ファイルの精確な撮影日時 "yyyy-MM-dd HH:mm:ss z" --> baseTime2 + * @throws ImageReadException + */ + public static void main(String[] argv) throws Exception + { + if (argv.length < 5) { + System.out.println("java Restamp "); + return; + } + + Path imgDir = Paths.get(argv[0]); + if (!Files.exists(imgDir)) { + // "[error] が存在しません。" + System.out.println(i18n.getString("msg.200")); + return; + } + if (!Files.isDirectory(imgDir)) { + // "[error] がフォルダじゃない" + System.out.println(i18n.getString("msg.210")); + return; + } + + Path baseFile1 = Paths.get(imgDir.toString(), argv[1]); + if (!Files.exists(baseFile1)) { + // "[error] が存在しません。" + System.out.println(i18n.getString("msg.220")); + return; + } + if (!Files.isRegularFile(baseFile1)) { + // "[error] がファイルじゃない" + System.out.println(i18n.getString("msg.230")); + return; + } + + DateFormat df1 = new SimpleDateFormat(TIME_PATTERN); + Date baseTime1 = df1.parse(argv[2]); + + Path baseFile2 = Paths.get(imgDir.toString(), argv[3]); + if (!Files.exists(baseFile2)) { + // "[error] が存在しません。" + System.out.println(i18n.getString("msg.240")); + return; + } + if (!Files.isRegularFile(baseFile2)) { + // "[error] がファイルじゃない" + System.out.println(i18n.getString("msg.250")); + return; + } + + Date baseTime2 = df1.parse(argv[4]); + + Restamp obj = new Restamp(); + obj.setUp(imgDir, baseFile1, baseTime1, baseFile2, baseTime2); + } + + Path imgDir; + //Path outDir; + Date baseTime1; + Date baseTime2; + Path baseFile1; + Path baseFile2; + public static ResourceBundle i18n = ResourceBundle.getBundle("i18n"); + + @SuppressWarnings("Convert2Lambda") + public void setUp( + Path imgDir, + Path baseFile1, Date baseTime1, + Path baseFile2, Date baseTime2) throws Exception { + this.imgDir = imgDir; + this.baseTime1 = baseTime1; + this.baseTime2 = baseTime2; + this.baseFile1 = baseFile1; + this.baseFile2 = baseFile2; + + /* + File outDir = new File(imgDir, "restamp.out"); + if (outDir.exists()) { + // "[error] が存在する。" + if (!outDir.isDirectory()) { + // "[error] がフォルダじゃない" + System.out.println(i18n.getString("msg.270")); + return; + } + } + else { + // "が存在しない。" + outDir.mkdir(); + } + this.outDir = outDir; + */ + + this.start(); + try { + this.join(); + } catch(InterruptedException end) {} + if (this.ex != null) { + throw this.ex; + } + } + + @Override + public void run() { + int bCount1 = 0; + int bCount2 = 0; + boolean base1 = false; + boolean base2 = false; + ArrayList jpgFiles = new ArrayList<>(); + + try { + // 指定されたディレクトリ内のJPEGファイルすべてを対象とする + Stream files = Files.list(Paths.get(imgDir.toString())); + List sortedList = files.sorted(Comparator.naturalOrder()).collect(Collectors.toList()); + + for (Path p : sortedList) { + if (Files.exists(p) && Files.isRegularFile(p)) { + String filename = p.getFileName().toString(); + if (filename.toUpperCase().endsWith(".JPG")) { + jpgFiles.add(p); + bCount1 += (base1 ? 0 : 1); + bCount2 += (base2 ? 0 : 1); + if (p.getFileName().equals(baseFile1.getFileName())) { + base1 = true; + } + if (p.getFileName().equals(baseFile2.getFileName())) { + base2 = true; + } + } + } + } + if (!jpgFiles.isEmpty()) { + DateFormat df2 = new SimpleDateFormat(TIME_PATTERN); + + // imgDir内の画像ファイルを処理する + @SuppressWarnings("LocalVariableHidesMemberVariable") + long span = this.baseTime2.getTime() - this.baseTime1.getTime(); + span = span / (bCount2 - bCount1); + int i = 0; + System.out.println("-------------------------------"); + System.out.println("Update last modified date time."); + for (Path jpgFile : jpgFiles) { + long deltaMsec = (i - (bCount1 -1)) * span; + i++; + Calendar cal = Calendar.getInstance(); + cal.setTime(this.baseTime1); + cal.add(Calendar.MILLISECOND, (int) deltaMsec); + + System.out.println(String.format("\t%s --> %s", df2.format(cal.getTime()), jpgFile.getFileName())); + jpgFile.toFile().setLastModified(cal.getTimeInMillis()); + } + System.out.println("-------------------------------"); + } + } + catch(IOException e) { + e.printStackTrace(); + this.ex = new Exception(e); + } + } +} \ No newline at end of file diff --git a/src/main/java/osm/surveyor/matchtime/gui/AboutDialog.java b/src/main/java/osm/surveyor/matchtime/gui/AboutDialog.java new file mode 100644 index 0000000..6c72aec --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/AboutDialog.java @@ -0,0 +1,130 @@ +package osm.surveyor.matchtime.gui; +import java.awt.*; + +@SuppressWarnings("serial") +public class AboutDialog extends Dialog +{ + //{{DECLARE_CONTROLS + java.awt.Label label1; + java.awt.Button okButton; + java.awt.Label label2; + //}} + + // Used for addNotify redundency check. + boolean fComponentsAdjusted = false; + + class SymWindow extends java.awt.event.WindowAdapter + { + @Override + public void windowClosing(java.awt.event.WindowEvent event) { + Object object = event.getSource(); + if (object == AboutDialog.this) { + AboutDialog_WindowClosing(event); + } + } + } + + class SymAction implements java.awt.event.ActionListener + { + @Override + public void actionPerformed(java.awt.event.ActionEvent event) { + Object object = event.getSource(); + if (object == okButton) { + okButton_Clicked(event); + } + } + } + + @SuppressWarnings("OverridableMethodCallInConstructor") + public AboutDialog(Frame parent, boolean modal) { + super(parent, modal); + + // This code is automatically generated by Visual Cafe when you add + // components to the visual environment. It instantiates and initializes + // the components. To modify the code, only use code syntax that matches + // what Visual Cafe can generate, or Visual Cafe may be unable to back + // parse your Java file into its visual environment. + + + //{{INIT_CONTROLS + setLayout(null); + setVisible(false); + setSize(360,114); + label1 = new java.awt.Label(ReStamp.PROGRAM_NAME +" Version "+ ReStamp.PROGRAM_VARSION +" ("+ ReStamp.PROGRAM_UPDATE +")", Label.CENTER); + label1.setBounds(10,10,340,20); + add(label1); + okButton = new java.awt.Button(); + okButton.setLabel("OK"); + okButton.setBounds(145,65,66,27); + add(okButton); + label2 = new java.awt.Label("Copyright(C) 2014,2020, yuuhayashi \n The MIT License (MIT).",Label.RIGHT); + label2.setBounds(10,40,340,20); + add(label2); + setTitle("About... "+ ReStamp.PROGRAM_NAME); + //}} + + //{{REGISTER_LISTENERS + SymWindow aSymWindow = new SymWindow(); + this.addWindowListener(aSymWindow); + SymAction lSymAction = new SymAction(); + okButton.addActionListener(lSymAction); + //}} + } + + @SuppressWarnings("OverridableMethodCallInConstructor") + public AboutDialog(Frame parent, String title, boolean modal) { + this(parent, modal); + setTitle(title); + } + + @Override + public void addNotify() { + // Record the size of the window prior to calling parents addNotify. + + super.addNotify(); + + // Only do this once. + if (fComponentsAdjusted) { + return; + } + + // Adjust components according to the insets + setSize(getInsets().left + getInsets().right + getSize().width, getInsets().top + getInsets().bottom + getSize().height); + Component components[] = getComponents(); + for (Component component : components) { + Point p = component.getLocation(); + p.translate(getInsets().left, getInsets().top); + component.setLocation(p); + } + + // Used for addNotify check. + fComponentsAdjusted = true; + } + + /** + * Shows or hides the component depending on the boolean flag b. + * @param b if true, show the component; otherwise, hide the component. + * @see java.awt.Component#isVisible + */ + @Override + public void setVisible(boolean b) { + if(b) { + Rectangle bounds = getParent().getBounds(); + Rectangle abounds = getBounds(); + setLocation(bounds.x + (bounds.width - abounds.width)/ 2, + bounds.y + (bounds.height - abounds.height)/2); + } + super.setVisible(b); + } + + void AboutDialog_WindowClosing(java.awt.event.WindowEvent event) { + dispose(); + } + + void okButton_Clicked(java.awt.event.ActionEvent event) { + //{{CONNECTION + // Clicked from okButton Hide the Dialog + dispose(); + //}} + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/Card.java b/src/main/java/osm/surveyor/matchtime/gui/Card.java new file mode 100644 index 0000000..4181a47 --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/Card.java @@ -0,0 +1,123 @@ +package osm.surveyor.matchtime.gui; + +import java.awt.BorderLayout; +import java.awt.Dimension; +import java.awt.event.ActionEvent; +import java.util.ArrayList; +import javax.swing.Box; +import javax.swing.BoxLayout; +import javax.swing.JButton; +import javax.swing.JComponent; +import javax.swing.JPanel; +import javax.swing.JTabbedPane; +import static osm.surveyor.matchtime.gui.ReStamp.i18n; + +public class Card extends JPanel { + JTabbedPane tabbe; + public JPanel mainPanel; + String title; + int backNumber = -1; + int nextNumber = -1; + public JButton nextButton; // [次へ]ボタン + public JButton backButton; // [戻る]ボタン + + public Card(JTabbedPane tabbe, String title, int backNumber, int nextNumber) { + super(); + this.tabbe = tabbe; + this.title = title; + this.backNumber = backNumber; + this.nextNumber = nextNumber; + + // INIT_CONTROLS + this.setLayout(new BorderLayout()); + + //---- CENTER ----- + mainPanel = new JPanel(); + mainPanel.setLayout(new BorderLayout()); + this.add(mainPanel, BorderLayout.CENTER); + + //---- SOUTH ----- + JPanel buttonPanel = new JPanel(new BorderLayout()); + buttonPanel.add(Box.createVerticalStrut(10), BorderLayout.SOUTH); + buttonPanel.add(Box.createVerticalStrut(10), BorderLayout.NORTH); + this.add(buttonPanel, BorderLayout.SOUTH); + + //{{REGISTER_LISTENERS + SymAction lSymAction = new SymAction(); + if (nextNumber >= 0) { + nextButton = new JButton(i18n.getString("button.next")); + nextButton.setEnabled(false); + buttonPanel.add(nextButton, BorderLayout.EAST); + nextButton.addActionListener(lSymAction); + } + + if (backNumber >= 0) { + backButton = new JButton(i18n.getString("button.previous")); + backButton.setEnabled(false); + buttonPanel.add(backButton, BorderLayout.WEST); + backButton.addActionListener(lSymAction); + } + //}} + } + + public static JPanel packLine(JComponent[] components, JPanel panel) { + panel.setLayout(new BoxLayout(panel, BoxLayout.X_AXIS)); + int max = 0; + for (JComponent component : components) { + panel.add(component); + Dimension size = component.getMaximumSize(); + if (max < size.height) { + max = size.height; + } + } + Dimension size = new Dimension(); + size.width = Short.MAX_VALUE; + size.height = max; + panel.setMaximumSize(size); + return panel; + } + + public static JPanel packLine(JComponent component, JPanel panel) { + ArrayList array = new ArrayList<>(); + array.add(component); + return packLine(array.toArray(new JComponent[array.size()]), panel); + } + + @Override + public void setEnabled(boolean enabled) { + this.tabbe.setEnabledAt(nextNumber - 1, enabled); + } + + public String getTitle() { + return this.title; + } + + class SymAction implements java.awt.event.ActionListener { + @Override + public void actionPerformed(java.awt.event.ActionEvent event) { + Object object = event.getSource(); + if (object == nextButton) { + nextButton_Action(event); + } + else if (object == backButton) { + backButton_Action(event); + } + } + } + + /** + * [次へ]ボタンをクリックした時の動作 + * @param event + */ + void nextButton_Action(ActionEvent event) { + this.tabbe.setSelectedIndex(this.nextNumber); + } + + /** + * [戻る]ボタンをクリックした時の動作 + * @param event + */ + void backButton_Action(ActionEvent event) { + this.tabbe.setSelectedIndex(this.backNumber); + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/CardExifPerform.java b/src/main/java/osm/surveyor/matchtime/gui/CardExifPerform.java new file mode 100644 index 0000000..9b22b17 --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/CardExifPerform.java @@ -0,0 +1,197 @@ +package osm.surveyor.matchtime.gui; + +import java.awt.BorderLayout; +import java.awt.event.ActionEvent; +import javax.swing.BoxLayout; +import javax.swing.JButton; +import javax.swing.JLabel; +import javax.swing.JPanel; +import javax.swing.JTabbedPane; +import osm.surveyor.matchtime.AppParameters; +import static osm.surveyor.matchtime.gui.ReStamp.dfjp; +import static osm.surveyor.matchtime.gui.ReStamp.i18n; +import osm.surveyor.util.Exif; + +/** + * 実行パネル + * @author yuu + */ +public class CardExifPerform extends Card implements PanelAction { + ParameterPanelTime arg_basetime; // 画像の基準時刻: + ParameterPanelGpx arg_gpxFile; // GPX file or Folder + ParameterPanelOutput arg_output; // EXIF & 書き出しフォルダ + JButton doButton; // [処理実行]ボタン + + /** + * コンストラクタ + * @param tabbe parent panel + * @param arg_basetime // 開始画像の基準時刻: + * @param arg_gpxFile // GPX file or Folder: + * @param arg_output // EXIF & 書き出しフォルダ + * @param text + * @param pre + * @param next + */ + public CardExifPerform( + JTabbedPane tabbe, + ParameterPanelTime arg_basetime, + ParameterPanelGpx arg_gpxFile, + ParameterPanelOutput arg_output, + String text, + int pre, int next + ) { + super(tabbe, text, pre, next); + this.arg_basetime = arg_basetime; + this.arg_gpxFile = arg_gpxFile; + this.arg_output = arg_output; + + SymAction lSymAction = new SymAction(); + JPanel argsPanel = new JPanel(); + argsPanel.setLayout(new BoxLayout(argsPanel, BoxLayout.PAGE_AXIS)); + + // 5. EXIF変換を行うかどうかを選択してください。 + // - EXIF変換を行う場合には、変換ファイルを出力するフォルダも指定する必要があります。 + // - 出力フォルダには、書き込み権限と、十分な空き容量が必要です。 + JLabel label5 = new JLabel(); + label5.setText( + String.format( + "5. %s%s%s", + i18n.getString("label.500"), + i18n.getString("label.501"), + i18n.getString("label.502") + ) + ); + argsPanel.add(packLine(label5, new JPanel())); + + // 出力フォルダ + //argsPanel.add(packLine(new JLabel(i18n.getString("label.530")), new JPanel())); + argsPanel.add(arg_output); + + // チェックボックス "IMGの変換をする" + if (arg_output.outputIMG != null) { + arg_output.outputIMG.addActionListener(lSymAction); + argsPanel.add(arg_output.outputIMG); + } + + // チェックボックス "IMGの変換をする" + if (arg_output.outputIMG_all != null) { + argsPanel.add(arg_output.outputIMG_all); + } + + // チェックボックス "EXIFの変換をする" + if (arg_output.exifON != null) { + argsPanel.add(arg_output.exifON); + } + + // チェックボックス "ポイントマーカーをGPXファイルに出力する" + if (arg_output.gpxOutputWpt != null) { + argsPanel.add(arg_output.gpxOutputWpt); + } + + // チェックボックス "ソースGPXのを無視する" + if (arg_output.gpxOverwriteMagvar != null) { + argsPanel.add(arg_output.gpxOverwriteMagvar); + } + + // チェックボックス "出力GPXに[SPEED]を上書きする" + if (arg_output.gpxOutputSpeed != null) { + argsPanel.add(arg_output.gpxOutputSpeed); + } + + // [処理実行]ボタン + doButton = new JButton( + i18n.getString("button.execute"), + ReStamp.createImageIcon("images/media_playback_start.png") + ); + argsPanel.add(doButton); + + this.mainPanel.add(argsPanel, BorderLayout.CENTER); + + //{{REGISTER_LISTENERS + doButton.addActionListener(lSymAction); + //}} + } + + class SymAction implements java.awt.event.ActionListener { + @Override + public void actionPerformed(java.awt.event.ActionEvent event) { + Object object = event.getSource(); + if (object == doButton) { + doButton_Action(event); + } + else if (object == arg_output.outputIMG) { + outputIMG_Action(event); + } + } + } + + /** + * checkbox[IMG変換]を変更した場合のアクション + * ON ー> IMG出力フォルダのフィールドを有効にする + * OFF -> IMG出力フォルダのフィールドを無効にする + * @param event + */ + void outputIMG_Action (ActionEvent event) { + setEnabled(isEnabled()); + } + + /** + * [実行]ボタンをクリックしたときの動作 + * @param event + */ + @SuppressWarnings("UseSpecificCatch") + void doButton_Action(java.awt.event.ActionEvent event) { + doButton.setEnabled(false); + + ParameterPanelImageFile arg_baseTimeImg = arg_basetime.imageFile; // 基準時刻画像 + ParameterPanelFolder arg_srcFolder = arg_baseTimeImg.paramDir; + + try { + AppParameters params = new AppParameters(); + + String[] argv = new String[0]; + params.setProperty(AppParameters.GPX_NO_FIRST_NODE, String.valueOf(arg_gpxFile.isNoFirstNodeSelected())); + params.setProperty(AppParameters.GPX_REUSE, String.valueOf(arg_gpxFile.isGpxReuseSelected())); + params.setProperty(AppParameters.GPX_SOURCE_FOLDER, arg_gpxFile.getText()); + if ((arg_basetime.exifBase != null) && arg_basetime.exifBase.isSelected()) { + params.setProperty(AppParameters.GPX_BASETIME, "EXIF_TIME"); + } + else { + params.setProperty(AppParameters.GPX_BASETIME, "FILE_UPDATE"); + } + params.setProperty(AppParameters.IMG_SOURCE_FOLDER, arg_srcFolder.getText()); + params.setProperty(AppParameters.IMG_BASE_FILE, arg_baseTimeImg.getText()); + params.setProperty(AppParameters.IMG_TIME, Exif.toUTCString(dfjp.parse(arg_basetime.getText()))); + params.setProperty(AppParameters.IMG_OUTPUT, String.valueOf(arg_output.outputIMG.isSelected())); + params.setProperty(AppParameters.IMG_OUTPUT_ALL, String.valueOf(arg_output.outputIMG_all.isSelected())); + params.setProperty(AppParameters.IMG_OUTPUT_FOLDER, arg_output.getText()); + params.setProperty(AppParameters.IMG_OUTPUT_EXIF, String.valueOf(arg_output.exifON.isSelected())); + params.setProperty(AppParameters.GPX_OVERWRITE_MAGVAR, String.valueOf(arg_output.gpxOverwriteMagvar.isSelected())); + params.setProperty(AppParameters.GPX_OUTPUT_SPEED, String.valueOf(arg_output.gpxOutputSpeed.isSelected())); + params.setProperty(AppParameters.GPX_OUTPUT_WPT, String.valueOf(arg_output.gpxOutputWpt.isSelected())); + params.store(); + } + catch(Exception e) { + e.printStackTrace(); + } + + (new DoDialog(new String[0])).setVisible(true); + + doButton.setEnabled(true); + } + + /** + * 入力条件が満たされているかどうか + * @return + */ + @Override + public boolean isEnable() { + return (arg_basetime.isEnable() && arg_gpxFile.isEnable()); + } + + @Override + @SuppressWarnings("empty-statement") + public void openAction() { + ; // 何もしない + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/CardGpxFile.java b/src/main/java/osm/surveyor/matchtime/gui/CardGpxFile.java new file mode 100644 index 0000000..b69cbba --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/CardGpxFile.java @@ -0,0 +1,74 @@ +package osm.surveyor.matchtime.gui; + +import java.awt.BorderLayout; +import java.awt.Dimension; +import javax.swing.BoxLayout; +import javax.swing.JLabel; +import javax.swing.JPanel; +import javax.swing.JTabbedPane; +import static osm.surveyor.matchtime.gui.ReStamp.i18n; + +/** + * [GPXファイル]選択パネル + * @author yuu + */ +public class CardGpxFile extends Card implements PanelAction { + ParameterPanelGpx arg_gpxFile; + + /** + * コンストラクタ + * @param tabbe parent panel + * @param arg_gpxFile // 開始画像の基準時刻: + * @param text + * @param pre + * @param next + */ + public CardGpxFile( + JTabbedPane tabbe, + ParameterPanelGpx arg_gpxFile, + String text, + int pre, int next + ) { + super(tabbe, text, pre, next); + this.arg_gpxFile = arg_gpxFile; + + // 4. ヒモ付を行うGPXファイルを選択してください。 + // - フォルダを指定すると、フォルダ内のすべてのGPXファイルを対象とします。 + JPanel argsPanel = new JPanel(); + argsPanel.setLayout(new BoxLayout(argsPanel, BoxLayout.PAGE_AXIS)); + argsPanel.add(packLine(new JLabel(i18n.getString("label.400")), new JPanel())); + argsPanel.add(arg_gpxFile); + + // "セグメント'trkseg'の最初の1ノードは無視する。" + if (arg_gpxFile.noFirstNode != null) { + argsPanel.add(arg_gpxFile.noFirstNode); + } + + // "生成されたGPXファイル(ファイル名が'_.gpx'で終わるもの)も変換の対象にする" + if (arg_gpxFile.gpxReuse != null) { + argsPanel.add(arg_gpxFile.gpxReuse); + } + + JPanel space = new JPanel(); + space.setMinimumSize(new Dimension(40, 20)); + space.setMaximumSize(new Dimension(40, Short.MAX_VALUE)); + argsPanel.add(space); + + this.mainPanel.add(argsPanel, BorderLayout.CENTER); + } + + /** + * 入力条件が満たされているかどうか + * @return + */ + @Override + public boolean isEnable() { + return (arg_gpxFile.isEnable()); + } + + @Override + @SuppressWarnings("empty-statement") + public void openAction() { + ; // 何もしない + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/Command.java b/src/main/java/osm/surveyor/matchtime/gui/Command.java new file mode 100644 index 0000000..174d38c --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/Command.java @@ -0,0 +1,70 @@ +package osm.surveyor.matchtime.gui; + +import java.lang.reflect.InvocationTargetException; +import java.text.SimpleDateFormat; + +public class Command extends Thread { + String[] args; // コマンドパラメータ + private String commandName = ""; // コマンド名 + @SuppressWarnings({ "rawtypes" }) + private final Class cmd; // 実行対象インスタンス + + /** + * コンストラクタ:実行対象のインスタンスを得る + * @param cmd + */ + public Command(Class> cmd) { + super(); + this.cmd = cmd; + this.commandName = cmd.getName(); + this.args = new String[0]; + } + + /** + * コマンドパラメータの設定 + * @param args + */ + public void setArgs(String[] args) { + this.args = args; + } + + public void setCommandName(String name) { + this.commandName = name; + } + public String getCommandName() { + return this.commandName; + } + + @SuppressWarnings("unchecked") + @Override + public void run() { + System.out.println("[START:"+ (new SimpleDateFormat("yyyy/MM/dd-HH:mm:ss")).format(new java.util.Date()) +"]\t"+ this.commandName); + for (int i=0; i < args.length; i++) { + System.out.println(" args["+ i +"]: "+ this.args[i]); + } + System.out.println(); + + try { + try { + java.lang.reflect.Method method = this.cmd.getMethod("main", new Class[] {String[].class}); + method.setAccessible(true); + method.invoke(null, new Object[]{this.args}); + + System.out.println(); + System.out.println("[END:"+ (new SimpleDateFormat("yyyy/MM/dd-HH:mm:ss")).format(new java.util.Date()) +"]\t"+ this.commandName); + } + catch (InvocationTargetException e) { + System.out.println("[ERR!:"+ (new SimpleDateFormat("yyyy/MM/dd-HH:mm:ss")).format(new java.util.Date()) +"]\t"+ this.commandName); + throw e; + } + catch (NoSuchMethodException | SecurityException | IllegalAccessException | IllegalArgumentException e) { + System.out.println("[ERR!:"+ (new SimpleDateFormat("yyyy/MM/dd-HH:mm:ss")).format(new java.util.Date()) +"]\t"+ this.commandName); + throw e; + } + } + catch(InvocationTargetException | NoSuchMethodException | SecurityException | IllegalAccessException | IllegalArgumentException e) { + e.printStackTrace(System.out); + } + System.out.println(); + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/DoDialog.java b/src/main/java/osm/surveyor/matchtime/gui/DoDialog.java new file mode 100644 index 0000000..eac4820 --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/DoDialog.java @@ -0,0 +1,230 @@ +package osm.surveyor.matchtime.gui; +import java.awt.BorderLayout; +import java.awt.Component; +import java.awt.Container; +import java.awt.Dimension; +import java.awt.Font; +import java.awt.Point; +import java.awt.event.ActionEvent; +import java.io.*; +import javax.swing.*; + +/** + * 処理 + */ +@SuppressWarnings("serial") +public class DoDialog extends JDialog { + public static final String TITLE = "Do Command"; + + // Used for addNotify check. + boolean fComponentsAdjusted = false; + String[] args; + + //{{DECLARE_CONTROLS + JPanel buttonPanel; // ボタン配置パネル (下部) + JButton closeButton; // [クローズ]ボタン + JButton doButton; // [実行]ボタン + JTextArea textArea; // 実行結果を表示するJTextArea (中央) + //}} + + @SuppressWarnings("OverridableMethodCallInConstructor") + public DoDialog(String[] args) { + super(); // モーダルダイアログを基盤にする + this.args = args; + + // INIT_CONTROLS + @SuppressWarnings("OverridableMethodCallInConstructor") + Container container = getContentPane(); + container.setLayout(new BorderLayout()); + //parentFrame.setVisible(false); + setSize(getInsets().left + getInsets().right + 980, getInsets().top + getInsets().bottom + 480); + setTitle(DoDialog.TITLE); + + // コントロールパネル + buttonPanel = new JPanel(); + + doButton = new JButton("実行"); + doButton.setToolTipText("処理を実行します."); + doButton.setEnabled(true); + doButton.addActionListener((ActionEvent event) -> { + // 処理中であることを示すため + // ボタンの文字列を変更し,使用不可にする + doButton.setText("処理中..."); + doButton.setEnabled(false); + + // SwingWorker を生成し,実行する + LongTaskWorker worker = new LongTaskWorker(doButton); + worker.execute(); + }); + buttonPanel.add(doButton); + + closeButton = new JButton("閉じる"); + closeButton.setToolTipText("処理を終了します."); + closeButton.addActionListener((ActionEvent event) -> { + dispose(); + }); + buttonPanel.add(closeButton); + + this.getContentPane().add("South", buttonPanel); + + // 説明文 + textArea = new JTextArea(); + JScrollPane sc=new JScrollPane(textArea); + textArea.setFont(new Font(Font.MONOSPACED,Font.PLAIN,12)); + textArea.setTabSize(4); + this.getContentPane().add("Center", sc); + + try { + textArea.append("> java -cp importPicture.jar osm.jp.gpx.ImportPicture"); + for (String arg : args) { + textArea.append(" '" + arg + "'"); + } + textArea.append("\n\n"); + } + catch (Exception e) { + System.out.println(e.toString()); + } + + // JFrameの表示 + //parentFrame.setVisible(true); + } + + /** + * Shows or hides the component depending on the boolean flag b. + * @param b trueのときコンポーネントを表示; その他のとき, componentを隠す. + * @see java.awt.Component#isVisible + */ + @Override + public void setVisible(boolean b) { + if(b) { + setLocation(80, 80); + } + super.setVisible(b); + } + + @Override + public void addNotify() { + // Record the size of the window prior to calling parents addNotify. + Dimension d = getSize(); + + super.addNotify(); + + if (fComponentsAdjusted) { + return; + } + + // Adjust components according to the insets + setSize(getInsets().left + getInsets().right + d.width, getInsets().top + getInsets().bottom + d.height); + Component components[] = getComponents(); + for (Component component : components) { + Point p = component.getLocation(); + p.translate(getInsets().left, getInsets().top); + component.setLocation(p); + } + fComponentsAdjusted = true; + } + + + /** + * JTextAreaに書き出すOutputStream + */ + public static class JTextAreaOutputStream extends OutputStream { + private final ByteArrayOutputStream os; + + /** 書き出し対象 */ + private final JTextArea textArea; + private final String encode; + + public JTextAreaOutputStream(JTextArea textArea, String encode) { + this.textArea = textArea; + this.encode = encode; + this.os = new ByteArrayOutputStream(); + } + + /** + * OutputStream#write(byte[])のオーバーライド + * @param arg + * @throws java.io.IOException + */ + @Override + public void write(int arg) throws IOException { + this.os.write(arg); + } + + /** + * flush()でJTextAreaに書き出す + * @throws java.io.IOException + */ + @Override + public void flush() throws IOException { + // 文字列のエンコード + final String str = new String(this.os.toByteArray(), this.encode); + // 実際の書き出し処理 + SwingUtilities.invokeLater( + new Runnable(){ + @Override + public void run() { + JTextAreaOutputStream.this.textArea.append(str); + } + } + ); + // 書き出した内容はクリアする + this.os.reset(); + } + } + + // 非同期に行う処理を記述するためのクラス + class LongTaskWorker extends SwingWorker { + private final JButton button; + + public LongTaskWorker(JButton button) { + this.button = button; + } + + // 非同期に行われる処理 + @Override + @SuppressWarnings("SleepWhileInLoop") + public Object doInBackground() { + // ながーい処理 + PrintStream defOut = System.out; + PrintStream defErr = System.err; + + OutputStream os = new JTextAreaOutputStream(textArea, "UTF-8"); + PrintStream stdout = new PrintStream(os, true); // 自動flushをtrueにしておく + + // System.out にJTextAreaOutputStreamに書き出すPrintStreamを設定 + System.setOut(stdout); + System.setErr(stdout); + + try { + Command command = new Command(osm.surveyor.matchtime.Restamp.class); + command.setArgs(args); + command.start(); // コマンドを実行 + while (command.isAlive()) { + try { + Thread.sleep(1000); + } catch (InterruptedException e) {} + } + } + catch(Exception e) { + e.printStackTrace(stdout); + } + finally { + System.setOut(defOut); + System.setErr(defErr); + doButton.setEnabled(true); + } + + return null; + } + + // 非同期処理後に実行 + @Override + protected void done() { + // 処理が終了したので,文字列を元に戻し + // ボタンを使用可能にする + button.setText("実行"); + button.setEnabled(true); + } + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/GpxAndFolderFilter.java b/src/main/java/osm/surveyor/matchtime/gui/GpxAndFolderFilter.java new file mode 100644 index 0000000..aaf44ff --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/GpxAndFolderFilter.java @@ -0,0 +1,25 @@ +package osm.surveyor.matchtime.gui; + +import java.io.File; +import javax.swing.filechooser.*; + +public class GpxAndFolderFilter extends FileFilter { + + @Override + public boolean accept(File f) { + if (f.isDirectory()) { + return true; + } + + String extension = Utils.getExtension(f); + if (extension != null) { + return extension.equals("gpx"); + } + return false; + } + + @Override + public String getDescription() { + return "Just GPXs"; + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/ImageFileView.java b/src/main/java/osm/surveyor/matchtime/gui/ImageFileView.java new file mode 100644 index 0000000..6e42bb7 --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/ImageFileView.java @@ -0,0 +1,115 @@ +/* + * Copyright (c) 1995, 2008, Oracle and/or its affiliates. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * - Neither the name of Oracle or the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +package osm.surveyor.matchtime.gui; + +import java.io.File; +import javax.swing.*; +import javax.swing.filechooser.*; + +/* ImageFileView.java is used by FileChooserDemo2.java. */ +public class ImageFileView extends FileView { + ImageIcon jpgIcon = Utils.createImageIcon("images/jpgIcon.gif"); + ImageIcon gifIcon = Utils.createImageIcon("images/gifIcon.gif"); + ImageIcon tiffIcon = Utils.createImageIcon("images/tiffIcon.gif"); + ImageIcon pngIcon = Utils.createImageIcon("images/pngIcon.png"); + + @Override + public String getName(File f) { + return null; //let the L&F FileView figure this out + } + + @Override + public String getDescription(File f) { + return null; //let the L&F FileView figure this out + } + + @Override + public Boolean isTraversable(File f) { + return null; //let the L&F FileView figure this out + } + + @Override + public String getTypeDescription(File f) { + String extension = Utils.getExtension(f); + String type = null; + + if (extension != null) { + switch (extension) { + case Utils.JPEG: + case Utils.JPG: + type = "JPEG Image"; + break; + case Utils.GIF: + type = "GIF Image"; + break; + case Utils.TIFF: + case Utils.TIF: + type = "TIFF Image"; + break; + case Utils.PNG: + type = "PNG Image"; + break; + default: + break; + } + } + return type; + } + + @Override + public Icon getIcon(File f) { + String extension = Utils.getExtension(f); + Icon icon = null; + + if (extension != null) { + switch (extension) { + case Utils.JPEG: + case Utils.JPG: + icon = jpgIcon; + break; + case Utils.GIF: + icon = gifIcon; + break; + case Utils.TIFF: + case Utils.TIF: + icon = tiffIcon; + break; + case Utils.PNG: + icon = pngIcon; + break; + default: + break; + } + } + return icon; + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/ImageFilter.java b/src/main/java/osm/surveyor/matchtime/gui/ImageFilter.java new file mode 100644 index 0000000..c3b6556 --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/ImageFilter.java @@ -0,0 +1,64 @@ +/* + * Copyright (c) 1995, 2008, Oracle and/or its affiliates. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * - Neither the name of Oracle or the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +package osm.surveyor.matchtime.gui; + +import java.io.File; +import javax.swing.filechooser.*; + +/* ImageFilter.java is used by FileChooserDemo2.java. */ +public class ImageFilter extends FileFilter { + + //Accept all directories and all gif, jpg, tiff, or png files. + @Override + public boolean accept(File f) { + if (f.isDirectory()) { + return true; + } + + String extension = Utils.getExtension(f); + if (extension != null) { + return extension.equals(Utils.TIFF) || + extension.equals(Utils.TIF) || + extension.equals(Utils.GIF) || + extension.equals(Utils.JPEG) || + extension.equals(Utils.JPG) || + extension.equals(Utils.PNG); + } + return false; + } + + //The description of this filter + @Override + public String getDescription() { + return "Just Images"; + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/ImagePreview.java b/src/main/java/osm/surveyor/matchtime/gui/ImagePreview.java new file mode 100644 index 0000000..e4cb3d6 --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/ImagePreview.java @@ -0,0 +1,113 @@ +/* + * Copyright (c) 1995, 2008, Oracle and/or its affiliates. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * - Neither the name of Oracle or the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +package osm.surveyor.matchtime.gui; + +import javax.swing.*; + +import java.beans.*; +import java.awt.*; +import java.io.File; + +/* ImagePreview.java by FileChooserDemo2.java. */ +@SuppressWarnings("serial") +public class ImagePreview extends JComponent implements PropertyChangeListener { + ImageIcon thumbnail = null; + File file = null; + static int IMAGE_SIZE_X = 320; + static int IMAGE_SIZE_Y = 240; + + @SuppressWarnings({"LeakingThisInConstructor", "OverridableMethodCallInConstructor"}) + public ImagePreview(JFileChooser fc) { + setPreferredSize(new Dimension(IMAGE_SIZE_X + 10, IMAGE_SIZE_Y + 10)); + fc.addPropertyChangeListener(this); + } + + public void loadImage() { + if (file == null) { + thumbnail = null; + return; + } + + //Don't use createImageIcon (which is a wrapper for getResource) + //because the image we're trying to load is probably not one + //of this program's own resources. + ImageIcon tmpIcon = new ImageIcon(file.getPath()); + if (tmpIcon.getIconWidth() > IMAGE_SIZE_X) { + thumbnail = new ImageIcon(tmpIcon.getImage(). + getScaledInstance(IMAGE_SIZE_X, -1, Image.SCALE_DEFAULT)); + } else { //no need to miniaturize + thumbnail = tmpIcon; + } + } + + @Override + public void propertyChange(PropertyChangeEvent e) { + boolean update = false; + String prop = e.getPropertyName(); + + if (JFileChooser.DIRECTORY_CHANGED_PROPERTY.equals(prop)) { + file = null; + update = true; + } + else if (JFileChooser.SELECTED_FILE_CHANGED_PROPERTY.equals(prop)) { + file = (File) e.getNewValue(); + update = true; + } + if (update) { + thumbnail = null; + if (isShowing()) { + loadImage(); + repaint(); + } + } + } + + @Override + protected void paintComponent(Graphics g) { + if (thumbnail == null) { + loadImage(); + } + if (thumbnail != null) { + int x = getWidth()/2 - thumbnail.getIconWidth()/2; + int y = getHeight()/2 - thumbnail.getIconHeight()/2; + + if (y < 0) { + y = 0; + } + + if (x < 5) { + x = 5; + } + thumbnail.paintIcon(this, g, x, y); + } + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/PanelAction.java b/src/main/java/osm/surveyor/matchtime/gui/PanelAction.java new file mode 100644 index 0000000..c089101 --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/PanelAction.java @@ -0,0 +1,11 @@ +package osm.surveyor.matchtime.gui; + +public interface PanelAction { + void openAction(); + + /** + * 入力条件が満たされているかどうか + * @return + */ + boolean isEnable(); +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/ParamAction.java b/src/main/java/osm/surveyor/matchtime/gui/ParamAction.java new file mode 100644 index 0000000..7465e2f --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/ParamAction.java @@ -0,0 +1,7 @@ +package osm.surveyor.matchtime.gui; + +public interface ParamAction { + boolean isEnable(); + void setText(String text); + String getText(); +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/ParameterData.java b/src/main/java/osm/surveyor/matchtime/gui/ParameterData.java new file mode 100644 index 0000000..fe428ff --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/ParameterData.java @@ -0,0 +1,23 @@ +package osm.surveyor.matchtime.gui; + +import java.util.Observable; + +public class ParameterData extends Observable { + String content = ""; + + String getContent() { + return content; + } + + void setContent(String content) { + this.content = content; + setChanged(); + super.notifyObservers(content); + clearChanged(); + } + + @Override + public void notifyObservers(Object arg) { + setContent(arg.toString()); + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/ParameterPanel.java b/src/main/java/osm/surveyor/matchtime/gui/ParameterPanel.java new file mode 100644 index 0000000..7f6909e --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/ParameterPanel.java @@ -0,0 +1,54 @@ +package osm.surveyor.matchtime.gui; + +import java.awt.Dimension; +import java.util.ResourceBundle; + +import javax.swing.BoxLayout; +import javax.swing.JLabel; +import javax.swing.JPanel; +import javax.swing.JTextField; + +/** + * パラメータを設定する為のパネル。 + * この1インスタンスで、1パラメータをあらわす。 + */ +public abstract class ParameterPanel extends JPanel implements ParamAction { + private static final long serialVersionUID = 4629824800747170556L; + public JTextField argField; + public JLabel argLabel; + public ResourceBundle i18n = ResourceBundle.getBundle("i18n"); + + @SuppressWarnings("OverridableMethodCallInConstructor") + public ParameterPanel(String label, String text) { + this(); + this.argLabel.setText(label); + this.argField.setText(text); + } + + public ParameterPanel() { + super(); + + argLabel = new JLabel(); + argField = new JTextField(); + + this.setLayout(new BoxLayout(this, BoxLayout.X_AXIS)); + this.setMaximumSize(new Dimension(1920, 40)); + this.add(argLabel); + this.add(argField); + } + + public ParameterPanel setLabel(String label) { + this.argLabel.setText(label); + return this; + } + + @Override + public void setText(String text) { + this.argField.setText(text); + } + + @Override + public String getText() { + return this.argField.getText(); + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/ParameterPanelFolder.java b/src/main/java/osm/surveyor/matchtime/gui/ParameterPanelFolder.java new file mode 100644 index 0000000..a42139e --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/ParameterPanelFolder.java @@ -0,0 +1,108 @@ +package osm.surveyor.matchtime.gui; + +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; +import java.io.File; +import java.io.FileNotFoundException; +import javax.swing.JButton; +import javax.swing.JFileChooser; + +@SuppressWarnings("serial") +public class ParameterPanelFolder extends ParameterPanel implements ActionListener +{ + JFileChooser fc; + JButton selectButton; + int chooser; + + /** + * コンストラクタ + * ディレクトリのみ選択可能なダイアログ + * @param label + * @param text + */ + public ParameterPanelFolder(String label, String text) { + this(label, text, JFileChooser.DIRECTORIES_ONLY); + } + + @SuppressWarnings({"OverridableMethodCallInConstructor", "LeakingThisInConstructor"}) + public ParameterPanelFolder(String label, String text, int chooser) { + super(label, text); + + // Create a file chooser + this.chooser = chooser; + + // "選択..." + selectButton = new JButton( + i18n.getString("button.select"), + ReStamp.createImageIcon("images/Open16.gif") + ); + selectButton.addActionListener(this); + this.add(selectButton); + } + + public void setEnable(boolean f) { + super.setEnabled(f); + selectButton.setEnabled(f); + } + + public File getDirectory() throws FileNotFoundException { + String path = this.argField.getText(); + if (path == null) { + throw new FileNotFoundException("Folder is Not specifiyed yet."); + } + File sdir = new File(path); + if (!sdir.exists()) { + throw new FileNotFoundException(String.format("Folder '%s' is Not exists.", path)); + } + if (!sdir.isDirectory()) { + throw new FileNotFoundException(String.format("Folder '%s' is Not directory.", path)); + } + return sdir; + } + + @Override + public void actionPerformed(ActionEvent e) { + if (e.getSource() == selectButton){ + File sdir; + try { + sdir = getDirectory(); + } catch (FileNotFoundException ex) { + sdir = new File("."); + this.argField.setText(sdir.getAbsolutePath()); + } + if (sdir.exists()) { + this.fc = new JFileChooser(sdir); + } + else { + this.fc = new JFileChooser(); + } + this.fc.setFileSelectionMode(this.chooser); + + int returnVal = this.fc.showOpenDialog(ParameterPanelFolder.this); + + if (returnVal == JFileChooser.APPROVE_OPTION) { + File file = this.fc.getSelectedFile(); + this.argField.setText(file.getAbsolutePath()); + } + } + } + + /** + * 有効な値が設定されているかどうか + * @return + */ + @Override + public boolean isEnable() { + String text = this.argField.getText(); + if (text == null) { + return false; + } + try { + File dir = new File(text); + return (dir.exists() && dir.isDirectory()); + } + catch (Exception e) { + return false; + } + } +} \ No newline at end of file diff --git a/src/main/java/osm/surveyor/matchtime/gui/ParameterPanelGpx.java b/src/main/java/osm/surveyor/matchtime/gui/ParameterPanelGpx.java new file mode 100644 index 0000000..4f53ae0 --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/ParameterPanelGpx.java @@ -0,0 +1,126 @@ +package osm.surveyor.matchtime.gui; + +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; +import java.io.File; + +import javax.swing.JButton; +import javax.swing.JCheckBox; +import javax.swing.JFileChooser; +import osm.surveyor.matchtime.AppParameters; + +@SuppressWarnings("serial") +public class ParameterPanelGpx extends ParameterPanel implements ActionListener +{ + JFileChooser fc; + JButton selectButton; + public JCheckBox noFirstNode; // CheckBox: "セグメント'trkseg'の最初の1ノードは無視する。" + public JCheckBox gpxReuse; // CheckBox: "生成されたGPXファイル(ファイル名が'_.gpx'で終わるもの)も変換の対象にする" + + /** + * コンストラクタ + * @param label + * @param text + */ + @SuppressWarnings({"OverridableMethodCallInConstructor", "LeakingThisInConstructor"}) + public ParameterPanelGpx(String label, String text) { + super(label, text); + + // "選択..." + selectButton = new JButton( + i18n.getString("button.select"), + ReStamp.createImageIcon("images/Open16.gif") + ); + selectButton.addActionListener(this); + this.add(selectButton); + } + + @Override + public void actionPerformed(ActionEvent e) { + if (e.getSource() == selectButton){ + System.out.println("ParameterPanelGpx.actionPerformed(openButton)"); + File sdir = new File(this.argField.getText()); + if (sdir.exists()) { + this.fc = new JFileChooser(sdir); + } + else { + this.fc = new JFileChooser(); + } + this.fc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES); + this.fc.addChoosableFileFilter(new GpxAndFolderFilter()); + this.fc.setAcceptAllFileFilterUsed(false); + + int returnVal = this.fc.showOpenDialog(ParameterPanelGpx.this); + + if (returnVal == JFileChooser.APPROVE_OPTION) { + File file = this.fc.getSelectedFile(); + this.argField.setText(file.getAbsolutePath()); + } + } + } + + public File getGpxFile() { + if (isEnable()) { + return new File(getText()); + } + return null; + } + + /** + * "セグメント'trkseg'の最初の1ノードは無視する。" + * @param label テキスト + * @param params プロパティ + */ + public void addNoFirstNode(String label, AppParameters params) { + boolean selected = false; + if (params.getProperty(AppParameters.GPX_NO_FIRST_NODE).equals("true")) { + selected = true; + } + noFirstNode = new JCheckBox(label, selected); + } + + public boolean isNoFirstNodeSelected() { + return (noFirstNode != null) && noFirstNode.isSelected(); + } + + /** + * "生成されたGPXファイル(ファイル名が'_.gpx'で終わるもの)も変換の対象にする" + * @param label テキスト + * @param params プロパティ + */ + public void addGpxReuse(String label, AppParameters params) { + boolean selected = false; + if (params.getProperty(AppParameters.GPX_REUSE).equals("true")) { + selected = true; + } + gpxReuse = new JCheckBox(label, selected); + } + + public boolean isGpxReuseSelected() { + return (gpxReuse != null) && gpxReuse.isSelected(); + } + + /** + * このフィールドに有効な値が設定されているかどうか + * @return + */ + @Override + public boolean isEnable() { + String text = this.argField.getText(); + if (text != null) { + File file = new File(text); + if (file.exists()) { + if (file.isFile()) { + String name = file.getName().toUpperCase(); + if (name.endsWith(".GPX")) { + return true; + } + } + else if (file.isDirectory()) { + return true; + } + } + } + return false; + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/ParameterPanelImageFile.java b/src/main/java/osm/surveyor/matchtime/gui/ParameterPanelImageFile.java new file mode 100644 index 0000000..4e84c9b --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/ParameterPanelImageFile.java @@ -0,0 +1,109 @@ +package osm.surveyor.matchtime.gui; + +import java.awt.event.ActionEvent; +import java.io.File; +import java.io.FileNotFoundException; +import javax.swing.JButton; +import javax.swing.JFileChooser; + +@SuppressWarnings("serial") +public class ParameterPanelImageFile extends ParameterPanel { + JFileChooser fc; + public JButton openButton; + public ParameterPanelFolder paramDir; + + @SuppressWarnings("OverridableMethodCallInConstructor") + public ParameterPanelImageFile( + String label, String text, + ParameterPanelFolder paramDir + ) { + super(label, text); + + // "選択..." + SelectButtonAction buttonAction = new SelectButtonAction(); + openButton = new JButton(i18n.getString("button.select")); + openButton.addActionListener(buttonAction); + this.add(openButton); + + //Create a file chooser + this.paramDir = paramDir; + } + + class SelectButtonAction implements java.awt.event.ActionListener + { + @SuppressWarnings("override") + public void actionPerformed(ActionEvent e) { + selectImage_Action(e); + } + } + + public void selectImage_Action(ActionEvent ev) { + File sdir = new File(paramDir.getText()); + System.out.println(sdir.toPath()); + if (sdir.isDirectory()) { + fc = new JFileChooser(sdir); + } + else { + fc = new JFileChooser(); + } + + fc.addChoosableFileFilter(new ImageFilter()); + fc.setAcceptAllFileFilterUsed(false); + fc.setFileView(new ImageFileView()); + fc.setAccessory(new ImagePreview(fc)); + + //Show it. "選択" + int returnVal = fc.showDialog(ParameterPanelImageFile.this, i18n.getString("dialog.select")); + if (returnVal == JFileChooser.APPROVE_OPTION) { + File file = fc.getSelectedFile(); + this.argField.setText(file.getName()); + } + fc.setSelectedFile(null); + } + + public File getImageFile() { + if (this.paramDir.isEnable()) { + String text = this.argField.getText(); + if (text != null) { + try { + File dir = this.paramDir.getDirectory(); + File file = new File(dir, text); + if (file.exists() && file.isFile()) { + return file; + } + } + catch (FileNotFoundException e) { + return null; + } + } + } + return null; + } + + /** + * + * @return + */ + @Override + public boolean isEnable() { + if (this.paramDir.isEnable()) { + String text = this.argField.getText(); + if (text != null) { + try { + File dir = this.paramDir.getDirectory(); + File file = new File(dir, text); + if (file.exists() && file.isFile()) { + String name = file.getName().toUpperCase(); + if (name.endsWith(".JPG") || name.endsWith(".JPEG")) { + return true; + } + } + } + catch (FileNotFoundException e) { + return false; + } + } + } + return false; + } +} \ No newline at end of file diff --git a/src/main/java/osm/surveyor/matchtime/gui/ParameterPanelOutput.java b/src/main/java/osm/surveyor/matchtime/gui/ParameterPanelOutput.java new file mode 100644 index 0000000..0101ce1 --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/ParameterPanelOutput.java @@ -0,0 +1,123 @@ +package osm.surveyor.matchtime.gui; + +import javax.swing.JCheckBox; +import javax.swing.JFileChooser; +import osm.surveyor.matchtime.AppParameters; + +@SuppressWarnings("serial") +public class ParameterPanelOutput extends ParameterPanelFolder +{ + JCheckBox outputIMG; // IMGの変換 する/しない + JCheckBox outputIMG_all; // 'out of GPX time'でもIMGの変換をする {ON | OFF} + JCheckBox exifON; // EXIF 書き出しモード / !(EXIFの書き換えはしない) + JCheckBox gpxOutputWpt; // GPXにを書き出す + JCheckBox gpxOverwriteMagvar; // ソースGPXのを無視する + JCheckBox gpxOutputSpeed; // GPXにを書き出す + + /** + * コンストラクタ + * ディレクトリのみ選択可能なダイアログ + * @param label + * @param text + */ + public ParameterPanelOutput(String label, String text) { + super(label, text, JFileChooser.DIRECTORIES_ONLY); + } + + /** + * チェックボックス "IMGの変換をする" + * @param label テキスト + * @param params プロパティ + */ + public void addCheckChangeImage(String label, AppParameters params) { + boolean selected = false; + if (params.getProperty(AppParameters.IMG_OUTPUT).equals("true")) { + selected = true; + } + outputIMG = new JCheckBox(label, selected); + } + + /** + * チェックボックス "GPXファイル時間外のファイルもコピーする" + * @param label + * @param params + */ + public void addCheckOutofGpxTime(String label, AppParameters params) { + boolean selected = false; + if (params.getProperty(AppParameters.IMG_OUTPUT_ALL).equals("true")) { + selected = true; + } + outputIMG_all = new JCheckBox(label, selected); + } + + /** + * チェックボックス "EXIFの変換をする" + * @param label + * @param params + */ + public void addCheckOutputExif(String label, AppParameters params) { + boolean selected = false; + if (params.getProperty(AppParameters.IMG_OUTPUT_EXIF).equals("true")) { + selected = true; + } + exifON = new JCheckBox(label, selected); + } + + /** + * チェックボックス "ポイントマーカー[WPT]をGPXファイルに出力する" + * @param label + * @param params + */ + public void addCheckOutputWpt(String label, AppParameters params) { + boolean selected = false; + if (params.getProperty(AppParameters.GPX_OUTPUT_WPT).equals("true")) { + selected = true; + } + gpxOutputWpt = new JCheckBox(label, selected); + gpxOutputWpt.setEnabled(true); + } + + /** + * チェックボックス "ソースGPXの<MAGVAR>を無視する" + * @param label + * @param params + */ + public void addCheckIgnoreMagvar(String label, AppParameters params) { + boolean selected = false; + if (params.getProperty(AppParameters.GPX_OVERWRITE_MAGVAR).equals("true")) { + selected = true; + } + gpxOverwriteMagvar = new JCheckBox(label, selected); + gpxOverwriteMagvar.setEnabled(true); + } + + /** + * チェックボックス "出力GPXに[SPEED]を上書きする" + * @param label + * @param params + */ + public void addCheckOutputSpeed(String label, AppParameters params) { + boolean selected = false; + if (params.getProperty(AppParameters.GPX_OUTPUT_SPEED).equals("true")) { + selected = true; + } + gpxOutputSpeed = new JCheckBox(label, selected); + gpxOutputSpeed.setEnabled(true); + } + + /** + * checkbox[IMG変換]を変更した場合のアクション + * ON ー> IMG出力フォルダのフィールドを有効にする + * OFF -> IMG出力フォルダのフィールドを無効にする + * @param event + */ + class ChangeImageAction implements java.awt.event.ActionListener { + @Override + public void actionPerformed(java.awt.event.ActionEvent event) { + Object object = event.getSource(); + if (object == outputIMG) { + setEnabled(outputIMG.isEnabled()); + } + } + } +} \ No newline at end of file diff --git a/src/main/java/osm/surveyor/matchtime/gui/ParameterPanelSelecter.java b/src/main/java/osm/surveyor/matchtime/gui/ParameterPanelSelecter.java new file mode 100644 index 0000000..0a7f768 --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/ParameterPanelSelecter.java @@ -0,0 +1,45 @@ +package osm.surveyor.matchtime.gui; + +import java.awt.Dimension; +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; + +import javax.swing.JComboBox; +import javax.swing.JLabel; +import javax.swing.JPanel; + +@SuppressWarnings("serial") +public class ParameterPanelSelecter extends JPanel implements ActionListener { + public static final int ITEM_WIDTH_1 = 160; + public static final int ITEM_WIDTH_2 = 240; + public static final int LINE_WIDTH = ITEM_WIDTH_1 + ITEM_WIDTH_2; + public static final int LINE_HEIGHT = 18; + public JLabel label; + public JComboBox field; + public String value; + + @SuppressWarnings({"OverridableMethodCallInConstructor", "LeakingThisInConstructor"}) + public ParameterPanelSelecter(String title, String[] items) { + super(null); + this.value = items[0]; + + this.label = new JLabel(title, JLabel.RIGHT); + this.label.setBounds(0, 0, ITEM_WIDTH_1 - 6, LINE_HEIGHT); + add(this.label); + + this.field = new JComboBox<>(); + this.field.addActionListener(this); + for (String item : items) { + this.field.addItem(item); + } + this.field.setBounds(ITEM_WIDTH_1, 0, ITEM_WIDTH_2, LINE_HEIGHT); + add(this.field); + + setPreferredSize(new Dimension(ITEM_WIDTH_1, LINE_HEIGHT)); + } + + @Override + public void actionPerformed(ActionEvent e) { + this.value = (String)this.field.getSelectedItem(); + } +} \ No newline at end of file diff --git a/src/main/java/osm/surveyor/matchtime/gui/ParameterPanelTime.java b/src/main/java/osm/surveyor/matchtime/gui/ParameterPanelTime.java new file mode 100644 index 0000000..10c4bb0 --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/ParameterPanelTime.java @@ -0,0 +1,195 @@ +package osm.surveyor.matchtime.gui; + +import java.awt.Window; +import java.awt.event.ActionEvent; +import java.io.File; +import java.io.IOException; +import java.text.DateFormat; +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.Date; +import javax.swing.ButtonGroup; +import javax.swing.JButton; +import javax.swing.JRadioButton; +import org.apache.commons.imaging.ImageReadException; +import org.apache.commons.imaging.Imaging; +import org.apache.commons.imaging.common.ImageMetadata; +import org.apache.commons.imaging.formats.jpeg.JpegImageMetadata; +import org.apache.commons.imaging.formats.tiff.TiffImageMetadata; +import org.apache.commons.imaging.formats.tiff.constants.ExifTagConstants; +import osm.surveyor.matchtime.AppParameters; +import osm.surveyor.matchtime.Restamp; +import static osm.surveyor.matchtime.gui.ReStamp.dfjp; +import osm.surveyor.matchtime.gui.restamp.DialogCorectTime; + +/** + * パラメータを設定する為のパネル。 + * この1インスタンスで、1パラメータをあらわす。 + */ +public class ParameterPanelTime extends ParameterPanel { + SimpleDateFormat sdf = (SimpleDateFormat)DateFormat.getDateTimeInstance(); + ParameterPanelImageFile imageFile; // 基準時刻画像 + + + // 基準時刻の指定グループ (排他選択) + public ButtonGroup baseTimeGroup = new ButtonGroup(); + public JRadioButton exifBase = null; // EXIF日時を基準にする/ !(ファイル更新日時を基準にする) + public JRadioButton fupdateBase = null; // File更新日時を基準にする/ !(EXIF日時を基準にする) + + public JButton updateButton; + public JButton resetButton; + Window owner; + + @SuppressWarnings("OverridableMethodCallInConstructor") + public ParameterPanelTime( + String label, + String text, + ParameterPanelImageFile imageFile + ) { + super(label, text); + this.imageFile = imageFile; + + // "ボタン[変更...]" + UpdateButtonAction buttonAction = new UpdateButtonAction(this); + updateButton = new JButton(i18n.getString("button.update")); + updateButton.addActionListener(buttonAction); + this.add(updateButton); + + // "ボタン[再設定...]" + ResetButtonAction resetAction = new ResetButtonAction(this); + resetButton = new JButton(i18n.getString("button.reset")); + resetButton.addActionListener(resetAction); + resetButton.setVisible(false); + this.add(resetButton); + } + + public ParameterPanelTime setOwner(Window owner) { + this.owner = owner; + return this; + } + + /** + * 「EXIFの日時を基準にする」 + * @param label テキスト + * @param params プロパティ + */ + public void addExifBase(String label, AppParameters params) { + boolean selected = false; + if (params.getProperty(AppParameters.GPX_BASETIME).equals("EXIF_TIME")) { + selected = true; + } + exifBase = new JRadioButton(label, selected); + baseTimeGroup.add(exifBase); + } + + /** + * 「File更新日時を基準にする」 + * @param label テキスト + * @param params プロパティ + */ + public void addFileUpdate(String label, AppParameters params) { + boolean selected = false; + if (params.getProperty(AppParameters.GPX_BASETIME).equals("FILE_UPDATE")) { + selected = true; + } + fupdateBase = new JRadioButton(label, selected); + baseTimeGroup.add(fupdateBase); + } + + public ParameterPanelImageFile getImageFile() { + return this.imageFile; + } + + + /** + * [変更...]ボタンのアクション + */ + class UpdateButtonAction implements java.awt.event.ActionListener + { + ParameterPanelTime param; + + public UpdateButtonAction(ParameterPanelTime param) { + this.param = param; + } + + @SuppressWarnings("override") + public void actionPerformed(ActionEvent e) { + fileSelect_Action(param); + (new DialogCorectTime(param, owner)).setVisible(true); + } + } + + /** + * [再設定...]ボタンのアクション + */ + class ResetButtonAction implements java.awt.event.ActionListener + { + ParameterPanelTime paramPanelTime; + + public ResetButtonAction(ParameterPanelTime param) { + this.paramPanelTime = param; + } + + @SuppressWarnings("override") + public void actionPerformed(ActionEvent e) { + fileSelect_Action(paramPanelTime); + } + } + + /** + * 画像ファイルが選択されたときのアクション + * 1.ラジオボタンの選択を参照してTEXTフィールドにファイルの「日時」を設定する + * @param param + */ + void fileSelect_Action(ParameterPanelTime param) { + if (imageFile.isEnable()) { + File timeFile = imageFile.getImageFile(); + + // Radio Selecter + sdf.applyPattern(Restamp.TIME_PATTERN); + if ((exifBase != null) && exifBase.isSelected()) { + try { + ImageMetadata meta = Imaging.getMetadata(timeFile); + JpegImageMetadata jpegMetadata = (JpegImageMetadata)meta; + if (jpegMetadata != null) { + TiffImageMetadata exif = jpegMetadata.getExif(); + if (exif != null) { + String dateTimeOriginal = exif.getFieldValue(ExifTagConstants.EXIF_TAG_DATE_TIME_ORIGINAL)[0]; + long lastModifyTime = sdf.parse(dateTimeOriginal).getTime(); + param.argField.setText(dfjp.format(new Date(lastModifyTime))); + } + else { + param.argField.setText("exif == null"); + } + } + } + catch (IOException | ParseException | ImageReadException ex) {} + } + else { + long lastModified = timeFile.lastModified(); + param.argField.setText(sdf.format(new Date(lastModified))); + } + } + else { + param.argField.setText(""); + } + } + + @Override + public boolean isEnable() { + if (this.imageFile.isEnable()) { + String text = this.argField.getText(); + if (text != null) { + try { + sdf.applyPattern(Restamp.TIME_PATTERN); + sdf.parse(text); + return true; + } + catch (ParseException e) { + return false; + } + } + } + return false; + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/QuitDialog.java b/src/main/java/osm/surveyor/matchtime/gui/QuitDialog.java new file mode 100644 index 0000000..aafb9a6 --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/QuitDialog.java @@ -0,0 +1,107 @@ +package osm.surveyor.matchtime.gui; + +import java.awt.Font; +import java.awt.Rectangle; +import java.awt.Toolkit; +import java.awt.Window; +import java.awt.event.WindowEvent; +import java.awt.event.WindowListener; +import java.util.ResourceBundle; + +import javax.swing.JButton; +import javax.swing.JDialog; +import javax.swing.JFrame; +import javax.swing.JLabel; + +@SuppressWarnings("serial") +public class QuitDialog extends JDialog implements WindowListener +{ + JButton yesButton; + JButton noButton; + JLabel label1; + + @SuppressWarnings("OverridableMethodCallInConstructor") + public QuitDialog(JFrame parent, boolean modal) { + super(parent, modal); + + ResourceBundle i18n = ResourceBundle.getBundle("i18n"); + + addWindowListener((WindowListener) this); + setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); + + setLayout(null); + setSize(getInsets().left + getInsets().right + 337, getInsets().top + getInsets().bottom + 135); + + yesButton = new JButton(String.format(" %s ", i18n.getString("dialog.quit"))); + yesButton.addActionListener(new java.awt.event.ActionListener() { + @Override + public void actionPerformed(java.awt.event.ActionEvent evt) { + Toolkit.getDefaultToolkit().getSystemEventQueue().postEvent(new WindowEvent((Window)getParent(), 201)); + System.exit(0); + } + }); + yesButton.setBounds(getInsets().left + 72, getInsets().top + 80, 79, 22); + yesButton.setFont(new Font("Dialog", 1, 12)); + add(yesButton); + + noButton = new JButton(i18n.getString("dialog.cancel")); + noButton.addActionListener(new java.awt.event.ActionListener() { + @Override + public void actionPerformed(java.awt.event.ActionEvent evt) { + Toolkit.getDefaultToolkit().getSystemEventQueue().postEvent(new WindowEvent(QuitDialog.this, WindowEvent.WINDOW_CLOSING)); + setVisible(false); + } + }); + noButton.setBounds(getInsets().left + 185, getInsets().top + 80, 99, 22); + noButton.setFont(new Font("Dialog", 1, 12)); + add(noButton); + + label1 = new JLabel(i18n.getString("dialog.msg1"), JLabel.CENTER); + label1.setBounds(78, 33, 180, 23); + add(label1); + setTitle(i18n.getString("dialog.msg1")); + setResizable(false); + setVisible(true); + } + + @Override + public void setVisible(boolean b) { + if(b) { + Rectangle bounds = getParent().getBounds(); + Rectangle abounds = getBounds(); + setLocation(bounds.x + (bounds.width - abounds.width) / 2, bounds.y + (bounds.height - abounds.height) / 2); + } + super.setVisible(b); + } + + + @Override + public void windowActivated(WindowEvent e) { + } + + @Override + public void windowClosed(WindowEvent e) { + setVisible(false); + } + + @Override + public void windowClosing(WindowEvent e) { + setVisible(false); + } + + @Override + public void windowDeactivated(WindowEvent e) { + } + + @Override + public void windowDeiconified(WindowEvent e) { + } + + @Override + public void windowIconified(WindowEvent e) { + } + + @Override + public void windowOpened(WindowEvent e) { + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/ReStamp.java b/src/main/java/osm/surveyor/matchtime/gui/ReStamp.java new file mode 100644 index 0000000..d3727f1 --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/ReStamp.java @@ -0,0 +1,382 @@ +package osm.surveyor.matchtime.gui; + +import osm.surveyor.matchtime.AppParameters; +import java.awt.*; +import java.io.IOException; +import java.text.SimpleDateFormat; +import java.util.ResourceBundle; +import java.util.TimeZone; +import javax.swing.*; +import javax.swing.event.DocumentEvent; +import osm.surveyor.matchtime.gui.restamp.CardImageFile; +import osm.surveyor.matchtime.gui.restamp.CardPerformFile; +import osm.surveyor.matchtime.gui.restamp.CardSourceFolder; + +/** + * 本プログラムのメインクラス + */ +@SuppressWarnings("serial") +public class ReStamp extends JFrame +{ + public static final String PROGRAM_NAME = "ReStamp for Movie2jpeg"; + public static final String PROGRAM_VARSION = "3.00a"; + public static final String PROGRAM_UPDATE = "2020-01-19"; + + AppParameters params; + public static SimpleDateFormat dfjp = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z"); + + // Used for addNotify check. + boolean fComponentsAdjusted = false; + public static ResourceBundle i18n = ResourceBundle.getBundle("i18n"); + + //{{DECLARE_CONTROLS + JTabbedPane cardPanel; // ウィザード形式パネル(タブ型) + Card[] cards; + //}} + + //---入力フィールド---------------------------------------------------- + ParameterPanelFolder arg1_srcFolder; // 対象フォルダ + ParameterPanelImageFile arg2_baseTimeImg; // 開始画像ファイルパス + ParameterPanelTime arg2_basetime; // 開始画像の基準時刻: + ParameterPanelImageFile arg3_baseTimeImg; // 終了画像ファイルパス + ParameterPanelTime arg3_basetime; // 終了画像の基準時刻: + ParameterPanelOutput arg4_output; // EXIF & 書き出しフォルダ + + //{{DECLARE_MENUS + java.awt.MenuBar mainMenuBar; + java.awt.Menu menu1; + java.awt.MenuItem miDoNewFileList; + java.awt.MenuItem miDoDirSize; + java.awt.MenuItem miDoReadXML; + java.awt.MenuItem miExit; + java.awt.Menu menu3; + java.awt.MenuItem miAbout; + //}} + + class SymWindow extends java.awt.event.WindowAdapter { + /** + * このFrameが閉じられるときの動作。 + * このパネルが閉じられたら、このアプリケーションも終了させる。 + */ + @Override + public void windowClosing(java.awt.event.WindowEvent event) { + Object object = event.getSource(); + if (object == ReStamp.this) { + DbMang_WindowClosing(event); + } + } + } + + class SymAction implements java.awt.event.ActionListener { + @Override + public void actionPerformed(java.awt.event.ActionEvent event) { + Object object = event.getSource(); + if (object == miAbout) { + miAbout_Action(event); + } + else if (object == miExit) { + miExit_Action(event); + } + } + } + + /** + * データベース内のテーブルを一覧で表示するFrame + * @throws IOException + */ + @SuppressWarnings("OverridableMethodCallInConstructor") + public ReStamp() throws IOException + { + dfjp.setTimeZone(TimeZone.getTimeZone("JST")); + + // INIT_CONTROLS + Container container = getContentPane(); + container.setLayout(new BorderLayout()); + setSize( + getInsets().left + getInsets().right + 720, + getInsets().top + getInsets().bottom + 480 + ); + setTitle(ReStamp.PROGRAM_NAME +" v"+ ReStamp.PROGRAM_VARSION); + + //---- CENTER ----- + JPanel mainPanel = new JPanel(); + mainPanel.setLayout(new BorderLayout()); + container.add(mainPanel, BorderLayout.CENTER); + + //---- SOUTH ----- + JPanel southPanel = new JPanel(new BorderLayout()); + southPanel.add(Box.createVerticalStrut(10), BorderLayout.SOUTH); + southPanel.add(Box.createVerticalStrut(10), BorderLayout.NORTH); + container.add(southPanel, BorderLayout.SOUTH); + + //---- SPACE ----- + container.add(Box.createVerticalStrut(30), BorderLayout.NORTH); + container.add(Box.createHorizontalStrut(10), BorderLayout.WEST); + container.add(Box.createHorizontalStrut(10), BorderLayout.EAST); + + params = new AppParameters(); + + //--------------------------------------------------------------------- + cardPanel = new JTabbedPane(JTabbedPane.LEFT); + mainPanel.add(cardPanel, BorderLayout.CENTER); + + cards = new Card[4]; + int cardNo = 0; + + //--------------------------------------------------------------------- + // 1.[対象フォルダ]設定パネル + { + arg1_srcFolder = new ParameterPanelFolder( + i18n.getString("label.110") +": ", + params.getProperty(AppParameters.IMG_SOURCE_FOLDER) + ); + arg1_srcFolder.argField + .getDocument() + .addDocumentListener( + new SimpleDocumentListener() { + @Override + public void update(DocumentEvent e) { + toEnable(0, arg1_srcFolder.isEnable()); + } + } + ); + + Card card = new CardSourceFolder(cardPanel, arg1_srcFolder); + cardPanel.addTab(card.getTitle(), card); + cardPanel.setEnabledAt(cardNo, true); + cards[cardNo] = card; + cardNo++; + } + + //--------------------------------------------------------------------- + // 2. [基準画像(開始)]選択パネル + // 2.[基準時刻画像]設定パネル + // 2a.基準時刻の入力画面 + { + // 基準時刻画像 + arg2_baseTimeImg = new ParameterPanelImageFile( + i18n.getString("label.210") +": ", + null, + arg1_srcFolder + ); + + // 2a. 基準時刻: + arg2_basetime = new ParameterPanelTime( + i18n.getString("label.310"), + null, + arg2_baseTimeImg + ); + arg2_basetime.argField.getDocument().addDocumentListener( + new SimpleDocumentListener() { + @Override + public void update(DocumentEvent e) { + toEnable(1, arg2_basetime.isEnable()); + } + } + ); + + CardImageFile card = new CardImageFile( + cardPanel, arg2_basetime, (Window)this, + ReStamp.i18n.getString("tab.restamp.200"), 0, 2); + cardPanel.addTab(card.getTitle(), card); + cardPanel.setEnabledAt(cardNo, false); + cards[cardNo] = card; + cardNo++; + } + + //--------------------------------------------------------------------- + // 3. 最終画像の本当の時刻を設定の入力画面 + { + // 基準時刻画像 + arg3_baseTimeImg = new ParameterPanelImageFile( + i18n.getString("label.210") +": ", + null, + arg1_srcFolder + ); + + // 3a. 基準時刻: + arg3_basetime = new ParameterPanelTime( + i18n.getString("label.310"), + null, + arg3_baseTimeImg + ); + arg3_basetime.argField.getDocument().addDocumentListener( + new SimpleDocumentListener() { + @Override + public void update(DocumentEvent e) { + toEnable(2, arg3_basetime.isEnable()); + } + } + ); + + CardImageFile card = new CardImageFile( + cardPanel, arg3_basetime, (Window)this, + ReStamp.i18n.getString("tab.restamp.250"), 1, 3 + ); + cardPanel.addTab(card.getTitle(), card); + cardPanel.setEnabledAt(cardNo, false); + cards[cardNo] = card; + cardNo++; + } + + //--------------------------------------------------------------------- + // 4. 実行画面 + { + // 4. "出力フォルダ: " + arg4_output = new ParameterPanelOutput( + i18n.getString("label.530") + ": ", + params.getProperty(AppParameters.IMG_OUTPUT_FOLDER) + ); + arg4_output.argField.getDocument().addDocumentListener( + new SimpleDocumentListener() { + @Override + public void update(DocumentEvent e) { + toEnable(3, arg4_output.isEnable()); + } + } + ); + + // パネル表示 + CardPerformFile card = new CardPerformFile( + cardPanel, + arg2_basetime, + arg3_basetime, + arg4_output, + ReStamp.i18n.getString("tab.restamp.400"), 2, -1 + ); + cardPanel.addTab(card.getTitle(), card); + cardPanel.setEnabledAt(cardNo, false); + cards[cardNo] = card; + cardNo++; + } + + + //--------------------------------------------------------------------- + // INIT_MENUS + menu1 = new java.awt.Menu("File"); + miExit = new java.awt.MenuItem(i18n.getString("menu.quit")); + miExit.setFont(new Font("Dialog", Font.PLAIN, 12)); + menu1.add(miExit); + + miAbout = new java.awt.MenuItem("About..."); + miAbout.setFont(new Font("Dialog", Font.PLAIN, 12)); + + menu3 = new java.awt.Menu("Help"); + menu3.setFont(new Font("Dialog", Font.PLAIN, 12)); + menu3.add(miAbout); + + mainMenuBar = new java.awt.MenuBar(); + mainMenuBar.setHelpMenu(menu3); + mainMenuBar.add(menu1); + mainMenuBar.add(menu3); + setMenuBar(mainMenuBar); + + //{{REGISTER_LISTENERS + SymWindow aSymWindow = new SymWindow(); + this.addWindowListener(aSymWindow); + SymAction lSymAction = new SymAction(); + miAbout.addActionListener(lSymAction); + miExit.addActionListener(lSymAction); + arg2_baseTimeImg.openButton.addActionListener(lSymAction); + //}} + } + + /** + * Shows or hides the component depending on the boolean flag b. + * @param b trueのときコンポーネントを表示; その他のとき, componentを隠す. + * @see java.awt.Component#isVisible + */ + @Override + public void setVisible(boolean b) { + if(b) { + setLocation(50, 50); + } + super.setVisible(b); + } + + /** + * このクラスをインスタンスを生成して表示する。 + * コマンドラインの引数はありません。 + * @param args + */ + @SuppressWarnings("UseSpecificCatch") + static public void main(String args[]) { + SwingUtilities.invokeLater(() -> { + try { + createAndShowGUI(); + } catch (Exception e) { + e.printStackTrace(); + } + }); + } + private static void createAndShowGUI() throws IOException { + (new ReStamp()).setVisible(true); + } + + @Override + public void addNotify() { + // Record the size of the window prior to calling parents addNotify. + Dimension d = getSize(); + + super.addNotify(); + + if (fComponentsAdjusted) + return; + + // Adjust components according to the insets + setSize(getInsets().left + getInsets().right + d.width, getInsets().top + getInsets().bottom + d.height); + Component components[] = getComponents(); + for (Component component : components) { + Point p = component.getLocation(); + p.translate(getInsets().left, getInsets().top); + component.setLocation(p); + } + fComponentsAdjusted = true; + } + + void DbMang_WindowClosing(java.awt.event.WindowEvent event) { + setVisible(false); // hide the Manager + dispose(); // free the system resources + System.exit(0); // close the application + } + + void miAbout_Action(java.awt.event.ActionEvent event) { + // Action from About Create and show as modal + (new AboutDialog(this, true)).setVisible(true); + } + + void miExit_Action(java.awt.event.ActionEvent event) { + // Action from Exit Create and show as modal + //(new hayashi.yuu.tools.gui.QuitDialog(this, true)).setVisible(true); + (new QuitDialog(this, true)).setVisible(true); + } + + void toEnable(final int cardNo, final boolean enable) { + if ((cardNo >= 0) && (cardNo < cards.length)) { + cardPanel.setEnabledAt(cardNo, enable); + if ((cardNo -1) >= 0) { + cards[cardNo -1].nextButton.setEnabled(enable); + } + if ((cardNo +1) < cards.length) { + cardPanel.setEnabledAt(cardNo+1, enable); + cards[cardNo +1].backButton.setEnabled(enable); + cards[cardNo].nextButton.setEnabled(enable); + } + } + } + + //ImageIcon refImage; + + /** Returns an ImageIcon, or null if the path was invalid. + * @param path + * @return */ + public static ImageIcon createImageIcon(String path) { + java.net.URL imgURL = ReStamp.class.getResource(path); + if (imgURL != null) { + return new ImageIcon(imgURL); + } else { + System.err.println("Couldn't find file: " + path); + return null; + } + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/SimpleDocumentListener.java b/src/main/java/osm/surveyor/matchtime/gui/SimpleDocumentListener.java new file mode 100644 index 0000000..9a2bfbf --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/SimpleDocumentListener.java @@ -0,0 +1,25 @@ +package osm.surveyor.matchtime.gui; + +import javax.swing.event.DocumentEvent; +import javax.swing.event.DocumentListener; + +@FunctionalInterface +public interface SimpleDocumentListener extends DocumentListener { + void update(DocumentEvent e); + + @Override + default void insertUpdate(DocumentEvent e) { + update(e); + } + + @Override + default void removeUpdate(DocumentEvent e) { + update(e); + } + + @Override + default void changedUpdate(DocumentEvent e) { + update(e); + } +} + diff --git a/src/main/java/osm/surveyor/matchtime/gui/Utils.java b/src/main/java/osm/surveyor/matchtime/gui/Utils.java new file mode 100644 index 0000000..48cd907 --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/Utils.java @@ -0,0 +1,77 @@ +/* + * Copyright (c) 1995, 2008, Oracle and/or its affiliates. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * - Neither the name of Oracle or the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +package osm.surveyor.matchtime.gui; + +import java.io.File; +import javax.swing.ImageIcon; + +/* Utils.java is used by FileChooserDemo2.java. */ +public class Utils { + + /** + * + */ + public final static String JPEG = "jpeg"; + public final static String JPG = "jpg"; + public final static String GIF = "gif"; + public final static String TIFF = "tiff"; + public final static String TIF = "tif"; + public final static String PNG = "png"; + + /* + * Get the extension of a file. + */ + public static String getExtension(File f) { + String ext = null; + String s = f.getName(); + int i = s.lastIndexOf('.'); + + if (i > 0 && i < s.length() - 1) { + ext = s.substring(i+1).toLowerCase(); + } + return ext; + } + + /** Returns an ImageIcon, or null if the path was invalid. + * @param path + * @return + */ + protected static ImageIcon createImageIcon(String path) { + java.net.URL imgURL = Utils.class.getResource(path); + if (imgURL != null) { + return new ImageIcon(imgURL); + } else { + System.err.println("Couldn't find file: " + path); + return null; + } + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/restamp/CardImageFile.java b/src/main/java/osm/surveyor/matchtime/gui/restamp/CardImageFile.java new file mode 100644 index 0000000..968137a --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/restamp/CardImageFile.java @@ -0,0 +1,89 @@ +package osm.surveyor.matchtime.gui.restamp; + +import java.awt.BorderLayout; +import java.awt.Dimension; +import java.awt.Window; +import javax.swing.BoxLayout; +import javax.swing.JLabel; +import javax.swing.JPanel; +import javax.swing.JTabbedPane; +import static osm.surveyor.matchtime.gui.ReStamp.i18n; +import osm.surveyor.matchtime.gui.Card; +import osm.surveyor.matchtime.gui.PanelAction; +import osm.surveyor.matchtime.gui.ParameterPanelImageFile; +import osm.surveyor.matchtime.gui.ParameterPanelTime; + +/** + * [基準画像(開始/終了)]選択パネル + * @author yuu + */ +public class CardImageFile extends Card implements PanelAction { + ParameterPanelImageFile arg_baseTimeImg; + ParameterPanelTime arg_basetime; + + /** + * コンストラクタ + * @param tabbe parent panel + * @param arg_basetime // 開始画像の基準時刻: + * @param owner + * @param text + * @param pre + * @param next + */ + public CardImageFile( + JTabbedPane tabbe, + ParameterPanelTime arg_basetime, + Window owner, + String text, + int pre, int next + ) { + super(tabbe, text, pre, next); + arg_basetime.setOwner(owner); + this.arg_baseTimeImg = arg_basetime.getImageFile(); + this.arg_basetime = arg_basetime; + + JPanel argsPanel = new JPanel(); + argsPanel.setLayout(new BoxLayout(argsPanel, BoxLayout.PAGE_AXIS)); + argsPanel.add(packLine(new JLabel(i18n.getString("label.200")), new JPanel())); + argsPanel.add(arg_baseTimeImg); + + JPanel separater = new JPanel(); + separater.setMinimumSize(new Dimension(40, 20)); + argsPanel.add(separater); + + argsPanel.add(packLine(new JLabel(i18n.getString("label.300")), new JPanel())); + argsPanel.add(arg_basetime); + + // ラジオボタン: 「EXIF日時を基準にする」 + if (arg_basetime.exifBase != null) { + argsPanel.add(arg_basetime.exifBase); + } + + // ラジオボタン: 「File更新日時を基準にする」 + if (arg_basetime.fupdateBase != null) { + argsPanel.add(arg_basetime.fupdateBase); + } + + JPanel space = new JPanel(); + space.setMinimumSize(new Dimension(40, 20)); + space.setMaximumSize(new Dimension(40, Short.MAX_VALUE)); + argsPanel.add(space); + + this.mainPanel.add(argsPanel, BorderLayout.CENTER); + } + + /** + * 入力条件が満たされているかどうか + * @return + */ + @Override + public boolean isEnable() { + return (arg_baseTimeImg.isEnable() && arg_basetime.isEnable()); + } + + @Override + @SuppressWarnings("empty-statement") + public void openAction() { + ; // 何もしない + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/restamp/CardPerformFile.java b/src/main/java/osm/surveyor/matchtime/gui/restamp/CardPerformFile.java new file mode 100644 index 0000000..67b6ea9 --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/restamp/CardPerformFile.java @@ -0,0 +1,134 @@ +package osm.surveyor.matchtime.gui.restamp; + +import java.awt.BorderLayout; +import java.io.File; +import java.util.ArrayList; +import javax.swing.BoxLayout; +import javax.swing.JButton; +import javax.swing.JLabel; +import javax.swing.JPanel; +import javax.swing.JTabbedPane; +import osm.surveyor.matchtime.gui.ReStamp; +import static osm.surveyor.matchtime.gui.ReStamp.i18n; +import osm.surveyor.matchtime.gui.Card; +import osm.surveyor.matchtime.gui.PanelAction; +import osm.surveyor.matchtime.gui.ParameterPanelOutput; +import osm.surveyor.matchtime.gui.ParameterPanelTime; + +/** + * [基準画像(開始/終了)]選択パネル + * @author yuu + */ +public class CardPerformFile extends Card implements PanelAction { + //JPanel argsPanel; // パラメータ設定パネル (上部) + ParameterPanelTime arg1_basetime; + ParameterPanelTime arg2_basetime; + ParameterPanelOutput arg_output; // EXIF & 書き出しフォルダ + JButton doButton; // [処理実行]ボタン + + /** + * コンストラクタ + * @param tabbe parent panel + * @param arg1_basetime // 開始画像の基準時刻: + * @param arg2_basetime // 開始画像の基準時刻: + * @param arg_output // EXIF & 書き出しフォルダ + * @param text + * @param pre + * @param next + */ + public CardPerformFile( + JTabbedPane tabbe, + ParameterPanelTime arg1_basetime, + ParameterPanelTime arg2_basetime, + ParameterPanelOutput arg_output, + String text, + int pre, int next + ) { + super(tabbe, text, pre, next); + this.arg1_basetime = arg1_basetime; + this.arg2_basetime = arg2_basetime; + this.arg_output = arg_output; + + JPanel argsPanel = new JPanel(); + argsPanel.setLayout(new BoxLayout(argsPanel, BoxLayout.PAGE_AXIS)); + argsPanel.add(packLine(new JLabel(i18n.getString("label.200")), new JPanel())); + + // 出力フォルダ + // 5. 変換先のフォルダを選択してください。 + // - 変換先フォルダには、書き込み権限と、十分な空き容量が必要です。 + JLabel label5 = new JLabel(); + label5.setText( + String.format( + "%s%s", + i18n.getString("label.restamp.500"), + i18n.getString("label.restamp.501") + ) + ); + argsPanel.add(packLine(label5, new JPanel())); + argsPanel.add(arg_output); + + // [処理実行]ボタン + doButton = new JButton( + i18n.getString("button.execute"), + ReStamp.createImageIcon("images/media_playback_start.png") + ); + argsPanel.add(doButton); + + this.mainPanel.add(argsPanel, BorderLayout.CENTER); + + //{{REGISTER_LISTENERS + SymAction lSymAction = new SymAction(); + doButton.addActionListener(lSymAction); + //}} + } + + class SymAction implements java.awt.event.ActionListener { + @Override + public void actionPerformed(java.awt.event.ActionEvent event) { + Object object = event.getSource(); + if (object == doButton) { + doButton_Action(event); + } + } + } + + /** + * [実行]ボタンをクリックしたときの動作 + * @param event + */ + @SuppressWarnings("UseSpecificCatch") + void doButton_Action(java.awt.event.ActionEvent event) { + doButton.setEnabled(false); + + ArrayList arry = new ArrayList<>(); + File file = arg1_basetime.getImageFile().getImageFile(); + File dir = file.getParentFile(); + arry.add(dir.getAbsolutePath()); + arry.add(file.getName()); + arry.add(arg1_basetime.argField.getText()); + file = arg2_basetime.getImageFile().getImageFile(); + arry.add(file.getName()); + arry.add(arg2_basetime.argField.getText()); + arry.add(arg_output.getText()); + + String[] argv = arry.toArray(new String[arry.size()]); + (new DoRestamp(argv)).setVisible(true); + + doButton.setEnabled(true); + } + + /** + * 入力条件が満たされているかどうか + * @return + */ + @Override + public boolean isEnable() { + return (arg1_basetime.isEnable() && arg2_basetime.isEnable()); + } + + @Override + @SuppressWarnings("empty-statement") + public void openAction() { + ; // 何もしない + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/restamp/CardSourceFolder.java b/src/main/java/osm/surveyor/matchtime/gui/restamp/CardSourceFolder.java new file mode 100644 index 0000000..dcfec52 --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/restamp/CardSourceFolder.java @@ -0,0 +1,51 @@ +package osm.surveyor.matchtime.gui.restamp; + +import java.awt.BorderLayout; +import javax.swing.BoxLayout; +import javax.swing.JLabel; +import javax.swing.JPanel; +import javax.swing.JTabbedPane; +import osm.surveyor.matchtime.gui.ReStamp; +import static osm.surveyor.matchtime.gui.ReStamp.i18n; +import osm.surveyor.matchtime.gui.Card; +import osm.surveyor.matchtime.gui.PanelAction; +import osm.surveyor.matchtime.gui.ParameterPanelFolder; + +/** + * [対象フォルダ]設定パネル + * @author yuu + */ +public class CardSourceFolder extends Card implements PanelAction { + ParameterPanelFolder arg_srcFolder; // 対象フォルダ + + /** + * コンストラクタ + * @param tabbe parent panel + * @param arg_srcFolder 対象フォルダ + */ + public CardSourceFolder(JTabbedPane tabbe, ParameterPanelFolder arg_srcFolder) { + super(tabbe, ReStamp.i18n.getString("tab.100"), -1, 1); + this.arg_srcFolder = arg_srcFolder; + this.mainPanel.add(new JLabel(i18n.getString("label.100")), BorderLayout.NORTH); + + JPanel argsPanel = new JPanel(); // パラメータ設定パネル (上部) + argsPanel.setLayout(new BoxLayout(argsPanel, BoxLayout.Y_AXIS)); + argsPanel.add(arg_srcFolder); + this.mainPanel.add(argsPanel, BorderLayout.CENTER); + } + + /** + * 入力条件が満たされているかどうか + * @return + */ + @Override + public boolean isEnable() { + return this.arg_srcFolder.isEnable(); + } + + @Override + @SuppressWarnings("empty-statement") + public void openAction() { + ; // 何もしない + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/restamp/DialogCorectTime.java b/src/main/java/osm/surveyor/matchtime/gui/restamp/DialogCorectTime.java new file mode 100644 index 0000000..c66751b --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/restamp/DialogCorectTime.java @@ -0,0 +1,230 @@ +package osm.surveyor.matchtime.gui.restamp; + +import java.awt.BorderLayout; +import java.awt.Dialog; +import java.awt.GridLayout; +import java.awt.Image; +import java.awt.Rectangle; +import java.awt.Window; +import javax.swing.BoxLayout; +import javax.swing.ImageIcon; +import javax.swing.JButton; +import javax.swing.JDialog; +import javax.swing.JLabel; +import javax.swing.JPanel; +import javax.swing.JScrollPane; +import osm.surveyor.matchtime.gui.ReStamp; +import static osm.surveyor.matchtime.gui.ReStamp.createImageIcon; +import static osm.surveyor.matchtime.gui.ReStamp.i18n; +import osm.surveyor.matchtime.gui.PanelAction; +import osm.surveyor.matchtime.gui.ParameterPanelTime; + +/** + * [基準画像(開始)]選択パネル + * @author yuu + */ +public class DialogCorectTime extends JDialog implements PanelAction { + public JPanel mainPanel; + ParameterPanelTime arg_basetime; // 開始画像の基準時刻(parent) + ParameterPanelTime basetime; // 開始画像の基準時刻(tempolarry) + java.awt.Button closeButton; + JButton expandButton; + JButton zoomInButton; + JButton zoomOutButton; + JLabel imageLabel; // 開始画像の基準時刻画像表示 + JScrollPane imageSPane; // スクロールパネル + + /** + * コンストラクタ + * @param arg3_basetime 開始画像の基準時刻: + * @param owner + */ + @SuppressWarnings("OverridableMethodCallInConstructor") + public DialogCorectTime(ParameterPanelTime arg3_basetime, Window owner) { + super(owner, ReStamp.i18n.getString("tab.restamp.300"), Dialog.ModalityType.DOCUMENT_MODAL); + this.arg_basetime = arg3_basetime; + + // INIT_CONTROLS + setLayout(new BorderLayout()); + setSize( + getInsets().left + getInsets().right + 720, + getInsets().top + getInsets().bottom + 480 + ); + + //---- CENTER ----- + JPanel centerPanel = new JPanel(); + centerPanel.setLayout(new BorderLayout()); + add(centerPanel, BorderLayout.CENTER); + + //---- CENTER.NORTH ----- + JPanel argsPanel; // パラメータ設定パネル (上部) + argsPanel = new JPanel(); + argsPanel.setLayout(new GridLayout(2, 1)); + + // 3. 正確な撮影時刻を入力してください。 + // カメラの時計が正確ならば、設定を変更する必要はありません。 + JLabel label3 = new JLabel(); + label3.setText(i18n.getString("label.300")); + argsPanel.add(label3); + + basetime = new ParameterPanelTime( + arg_basetime.argLabel.getText(), + "", + arg_basetime.getImageFile() + ); + basetime.updateButton.setVisible(false); + basetime.resetButton.setVisible(true); + argsPanel.add(basetime); + centerPanel.add(argsPanel, BorderLayout.NORTH); + + //---- CENTER.CENTER ----- + // 参考画像 + imageLabel = new JLabel(); + imageSPane = new JScrollPane(imageLabel); + centerPanel.add(imageSPane, BorderLayout.CENTER); + + //---- CENTER.SOUTH ----- + // 画像ファイル選択ダイアログを起動するボタン + JPanel buttonPanel = new JPanel(); + buttonPanel.setLayout(new BoxLayout(buttonPanel, BoxLayout.X_AXIS)); + expandButton = new JButton(createImageIcon(java.util.ResourceBundle.getBundle("i18n_ja_JP").getString("IMAGES/FIT16.GIF"))); + buttonPanel.add(expandButton); + zoomInButton = new JButton(createImageIcon("images/ZoomIn16.gif")); + buttonPanel.add(zoomInButton); + zoomOutButton = new JButton(createImageIcon("images/ZoomOut16.gif")); + buttonPanel.add(zoomOutButton); + centerPanel.add(buttonPanel, BorderLayout.SOUTH); + + //---- SOUTH ----- + closeButton = new java.awt.Button(); + closeButton.setLabel(i18n.getString("button.close") ); + closeButton.setBounds(145,65,66,27); + add(closeButton, BorderLayout.SOUTH); + + // 選択された画像ファイルを表示する + imageView_Action(); + + //{{REGISTER_LISTENERS + SymWindow aSymWindow = new SymWindow(); + this.addWindowListener(aSymWindow); + SymAction lSymAction = new SymAction(); + closeButton.addActionListener(lSymAction); + expandButton.addActionListener(lSymAction); + zoomInButton.addActionListener(lSymAction); + zoomOutButton.addActionListener(lSymAction); + //}} + } + + class SymWindow extends java.awt.event.WindowAdapter + { + @Override + public void windowClosing(java.awt.event.WindowEvent event) { + Object object = event.getSource(); + if (object == DialogCorectTime.this) { + dialog_WindowClosing(); + } + } + } + + class SymAction implements java.awt.event.ActionListener + { + @Override + public void actionPerformed(java.awt.event.ActionEvent event) { + Object object = event.getSource(); + if (object == closeButton) { + dialog_WindowClosing(); + } + else if (object == expandButton) { + imageView_Action(); + } + else if (object == zoomInButton) { + zoomin_Action(); + } + else if (object == zoomOutButton) { + zoomout_Action(); + } + } + } + + ImageIcon refImage; + + /** + * 選択された画像ファイルを表示する + * 基準画像ボタンがクリックされた時に、基準時刻フィールドに基準画像の作成日時を設定する。 + */ + @SuppressWarnings("UseSpecificCatch") + public void imageView_Action() { + try { + String path = basetime.getImageFile().getImageFile().getAbsolutePath(); + + // View Image File + int size_x = imageSPane.getWidth() - 8; + ImageIcon tmpIcon = new ImageIcon(path); + refImage = tmpIcon; + if (tmpIcon.getIconWidth() > size_x) { + refImage = new ImageIcon(tmpIcon.getImage().getScaledInstance(size_x, -1, Image.SCALE_DEFAULT)); + } + imageLabel.setIcon(refImage); + } + catch(NullPointerException e) { + // 何もしない + } + repaint(); + } + + public void zoomin_Action() { + if (refImage != null) { + int size_x = imageLabel.getWidth(); + String path = basetime.getImageFile().getImageFile().getAbsolutePath(); + ImageIcon tmpIcon = new ImageIcon(path); + refImage = new ImageIcon(tmpIcon.getImage().getScaledInstance(size_x * 2, -1, Image.SCALE_DEFAULT)); + imageLabel.setIcon(refImage); + repaint(); + } + } + + public void zoomout_Action() { + if (refImage != null) { + int size_x = imageLabel.getWidth(); + ImageIcon tmpIcon = refImage; + refImage = new ImageIcon(tmpIcon.getImage().getScaledInstance(size_x / 2, -1, Image.SCALE_DEFAULT)); + imageLabel.setIcon(refImage); + repaint(); + } + } + + /** + * ダイアログが閉じられるときのアクション + */ + void dialog_WindowClosing() { + String workStr = basetime.getText(); + arg_basetime.setText(workStr); + dispose(); + } + + @Override + public void setVisible(boolean b) { + if(b) { + Rectangle bounds = getParent().getBounds(); + Rectangle abounds = getBounds(); + setLocation(bounds.x + (bounds.width - abounds.width)/ 2, + bounds.y + (bounds.height - abounds.height)/2); + } + super.setVisible(b); + } + + @Override + @SuppressWarnings("empty-statement") + public void openAction() { + ; // 何もしない + } + + /** + * 入力条件が満たされているかどうか + * @return + */ + @Override + public boolean isEnable() { + return this.basetime.isEnable(); + } +} diff --git a/src/main/java/osm/surveyor/matchtime/gui/restamp/DoRestamp.java b/src/main/java/osm/surveyor/matchtime/gui/restamp/DoRestamp.java new file mode 100644 index 0000000..6e260a8 --- /dev/null +++ b/src/main/java/osm/surveyor/matchtime/gui/restamp/DoRestamp.java @@ -0,0 +1,227 @@ +package osm.surveyor.matchtime.gui.restamp; +import osm.surveyor.matchtime.gui.Command; +import java.awt.BorderLayout; +import java.awt.Component; +import java.awt.Container; +import java.awt.Dimension; +import java.awt.Font; +import java.awt.Point; +import java.awt.event.ActionEvent; +import java.io.*; +import javax.swing.*; + +/** + * 処理 + */ +@SuppressWarnings("serial") +public class DoRestamp extends JDialog { + public static final String TITLE = "Do Command"; + + // Used for addNotify check. + boolean fComponentsAdjusted = false; + String[] args; + + //{{DECLARE_CONTROLS + JPanel buttonPanel; // ボタン配置パネル (下部) + JButton closeButton; // [クローズ]ボタン + JButton doButton; // [実行]ボタン + JTextArea textArea; // 実行結果を表示するJTextArea (中央) + //}} + + @SuppressWarnings("OverridableMethodCallInConstructor") + public DoRestamp(String[] args) { + super(); // 親フォームなしのモーダルダイアログを基盤にする + this.args = args; + + // INIT_CONTROLS + @SuppressWarnings("OverridableMethodCallInConstructor") + Container container = getContentPane(); + container.setLayout(new BorderLayout()); + setSize(getInsets().left + getInsets().right + 980, getInsets().top + getInsets().bottom + 480); + setTitle(DoRestamp.TITLE); + + // コントロールパネル + buttonPanel = new JPanel(); + + doButton = new JButton("実行"); + doButton.setToolTipText("処理を実行します."); + doButton.setEnabled(true); + doButton.addActionListener((ActionEvent event) -> { + // 処理中であることを示すため + // ボタンの文字列を変更し,使用不可にする + doButton.setText("処理中..."); + doButton.setEnabled(false); + + // SwingWorker を生成し,実行する + LongTaskWorker worker = new LongTaskWorker(doButton); + worker.execute(); + }); + buttonPanel.add(doButton); + + closeButton = new JButton("閉じる"); + closeButton.setToolTipText("処理を終了します."); + closeButton.addActionListener((ActionEvent event) -> { + dispose(); + }); + buttonPanel.add(closeButton); + + this.getContentPane().add("South", buttonPanel); + + // 説明文 + textArea = new JTextArea(); + JScrollPane sc=new JScrollPane(textArea); + textArea.setFont(new Font(Font.MONOSPACED,Font.PLAIN,12)); + textArea.setTabSize(4); + this.getContentPane().add("Center", sc); + + try { + textArea.append("> java -jar ReStamp.jar osm.surveyor.matchtime.Restamp"); + for (String arg : args) { + textArea.append(" '" + arg + "'"); + } + textArea.append("\n\n"); + } + catch (Exception e) { + System.out.println(e.toString()); + } + } + + /** + * Shows or hides the component depending on the boolean flag b. + * @param b trueのときコンポーネントを表示; その他のとき, componentを隠す. + * @see java.awt.Component#isVisible + */ + @Override + public void setVisible(boolean b) { + if(b) { + setLocation(80, 80); + } + super.setVisible(b); + } + + @Override + public void addNotify() { + // Record the size of the window prior to calling parents addNotify. + Dimension d = getSize(); + + super.addNotify(); + + if (fComponentsAdjusted) { + return; + } + + // Adjust components according to the insets + setSize(getInsets().left + getInsets().right + d.width, getInsets().top + getInsets().bottom + d.height); + Component components[] = getComponents(); + for (Component component : components) { + Point p = component.getLocation(); + p.translate(getInsets().left, getInsets().top); + component.setLocation(p); + } + fComponentsAdjusted = true; + } + + + /** + * JTextAreaに書き出すOutputStream + */ + public static class JTextAreaOutputStream extends OutputStream { + private final ByteArrayOutputStream os; + + /** 書き出し対象 */ + private final JTextArea textArea; + private final String encode; + + public JTextAreaOutputStream(JTextArea textArea, String encode) { + this.textArea = textArea; + this.encode = encode; + this.os = new ByteArrayOutputStream(); + } + + /** + * OutputStream#write(byte[])のオーバーライド + * @param arg + * @throws java.io.IOException + */ + @Override + public void write(int arg) throws IOException { + this.os.write(arg); + } + + /** + * flush()でJTextAreaに書き出す + * @throws java.io.IOException + */ + @Override + public void flush() throws IOException { + // 文字列のエンコード + final String str = new String(this.os.toByteArray(), this.encode); + // 実際の書き出し処理 + SwingUtilities.invokeLater( + new Runnable(){ + @Override + public void run() { + JTextAreaOutputStream.this.textArea.append(str); + } + } + ); + // 書き出した内容はクリアする + this.os.reset(); + } + } + + // 非同期に行う処理を記述するためのクラス + class LongTaskWorker extends SwingWorker { + private final JButton button; + + public LongTaskWorker(JButton button) { + this.button = button; + } + + // 非同期に行われる処理 + @Override + @SuppressWarnings("SleepWhileInLoop") + public Object doInBackground() { + // ながーい処理 + PrintStream defOut = System.out; + PrintStream defErr = System.err; + + OutputStream os = new JTextAreaOutputStream(textArea, "UTF-8"); + PrintStream stdout = new PrintStream(os, true); // 自動flushをtrueにしておく + + // System.out にJTextAreaOutputStreamに書き出すPrintStreamを設定 + System.setOut(stdout); + System.setErr(stdout); + + try { + Command command = new Command(osm.surveyor.matchtime.Restamp.class); + command.setArgs(args); + command.start(); // コマンドを実行 + while (command.isAlive()) { + try { + Thread.sleep(1000); + } catch (InterruptedException e) {} + } + } + catch(Exception e) { + e.printStackTrace(stdout); + } + finally { + System.setOut(defOut); + System.setErr(defErr); + button.setEnabled(true); + } + + return null; + } + + // 非同期処理後に実行 + @Override + protected void done() { + // 処理が終了したので,文字列を元に戻し + // ボタンを使用可能にする + button.setText("実行"); + button.setEnabled(true); + } + } +} diff --git a/src/main/java/osm/surveyor/util/Exif.java b/src/main/java/osm/surveyor/util/Exif.java new file mode 100644 index 0000000..a7ac358 --- /dev/null +++ b/src/main/java/osm/surveyor/util/Exif.java @@ -0,0 +1,80 @@ +package osm.surveyor.util; + +import java.io.*; +import java.text.DateFormat; +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.Date; +import java.util.TimeZone; + +public class Exif extends Thread { + public static final String TIME_FORMAT_STRING = "yyyy-MM-dd'T'HH:mm:ss'Z'"; + private static final String EXIF_DATE_TIME_FORMAT_STRING = "yyyy:MM:dd HH:mm:ss"; + + /** + * 対象は '*.JPG' のみ対象とする + * @return + * @param name + */ + public static boolean checkFile(String name) { + return ((name != null) && name.toUpperCase().endsWith(".JPG")); + } + + /** + * DateをEXIFの文字列に変換する。 + * 注意:EXiFの撮影時刻はUTC時間ではない + * @param localdate + * @return + */ + public static String toEXIFString(Date localdate) { + DateFormat dfUTC = new SimpleDateFormat(EXIF_DATE_TIME_FORMAT_STRING); + return dfUTC.format(localdate); + } + + /** + * EXIFの文字列をDateに変換する。 + * 注意:EXiFの撮影時刻はUTC時間ではない + * @param timeStr + * @return + * @throws ParseException + */ + public static Date toEXIFDate(String timeStr) throws ParseException { + DateFormat dfUTC = new SimpleDateFormat(EXIF_DATE_TIME_FORMAT_STRING); + //dfUTC.setTimeZone(TimeZone.getTimeZone("UTC")); + return dfUTC.parse(timeStr); + } + + public static String toUTCString(Date localdate) { + DateFormat dfUTC = new SimpleDateFormat(TIME_FORMAT_STRING); + dfUTC.setTimeZone(TimeZone.getTimeZone("UTC")); + return dfUTC.format(localdate); + } + + public static Date toUTCDate(String timeStr) throws ParseException { + DateFormat dfUTC = new SimpleDateFormat(TIME_FORMAT_STRING); + dfUTC.setTimeZone(TimeZone.getTimeZone("UTC")); + return dfUTC.parse(timeStr); + } + + static String getShortPathName(File dir, File iFile) { + String dirPath = dir.getAbsolutePath(); + String filePath = iFile.getAbsolutePath(); + if (filePath.startsWith(dirPath)) { + return filePath.substring(dirPath.length()+1); + } + else { + return filePath; + } + } + + /** + * JPEGファイルフィルター + * @author yuu + */ + class JpegFileFilter implements FilenameFilter { + @Override + public boolean accept(File dir, String name) { + return name.toUpperCase().matches(".*\\.JPG$"); + } + } +} \ No newline at end of file diff --git a/src/main/java/osm/surveyor/util/GeoDistance.java b/src/main/java/osm/surveyor/util/GeoDistance.java new file mode 100644 index 0000000..960794f --- /dev/null +++ b/src/main/java/osm/surveyor/util/GeoDistance.java @@ -0,0 +1,71 @@ +package osm.surveyor.util; + +/** + * The MIT License (MIT) + * Copyright(C) 2007-2012 やまだらけ + * http://yamadarake.jp/trdi/report000001.html + * 「Cords.java」を改変 + * 2016-10-03 + * + * @author やまだらけ yama_darake@yahoo.co.jp + * + */ +public class GeoDistance { + + public static final double GRS80_A = 6378137.000; // 赤道半径(m) + public static final double GRS80_E2 = 0.00669438002301188; + public static final double GRS80_MNUM = 6335439.32708317; // + + public static final double WGS84_A = 6378137.000; + public static final double WGS84_E2 = 0.00669437999019758; + public static final double WGS84_MNUM = 6335439.32729246; + + /** + * 角度(180度)をラジアン(2π)に変換する + * @param deg + * @return + */ + public static double deg2rad(double deg){ + return deg * Math.PI / 180.0; + } + + /** + * 距離(m)を返す + * @param lat1 + * @param lng1 + * @param lat2 + * @param lng2 + * @return + */ + public static double calcDistHubeny(double lat1, double lng1, + double lat2, double lng2){ + double my = deg2rad((lat1 + lat2) / 2.0); // 平均緯度 + double dy = deg2rad(lat1 - lat2); // 2点間の緯度 + double dx = deg2rad(lng1 - lng2); // 2点間の経度 + + double sin = Math.sin(my); + double w = Math.sqrt(1.0 - GRS80_E2 * sin * sin); + double m = GRS80_MNUM / (w * w * w); + double n = GRS80_A / w; + + double dym = dy * m; + double dxncos = dx * n * Math.cos(my); + + return Math.sqrt(dym * dym + dxncos * dxncos); + } + + + public static void main(String[] args){ + System.out.println("Coords Test Program"); + double lat1, lng1, lat2, lng2; + + lat1 = Double.parseDouble(args[0]); + lng1 = Double.parseDouble(args[1]); + lat2 = Double.parseDouble(args[2]); + lng2 = Double.parseDouble(args[3]); + + double d = calcDistHubeny(lat1, lng1, lat2, lng2); + + System.out.println("Distance = " + d + " m"); + } +} \ No newline at end of file diff --git a/src/main/java/osm/surveyor/util/TimeComparator.java b/src/main/java/osm/surveyor/util/TimeComparator.java new file mode 100644 index 0000000..c6997e0 --- /dev/null +++ b/src/main/java/osm/surveyor/util/TimeComparator.java @@ -0,0 +1,21 @@ +package osm.surveyor.util; + +import java.util.Comparator; +import java.util.Date; + +/** + * java.util.Date型をコレクションのKEYにした時に、時間順に並べ替える + * + */ +public class TimeComparator implements Comparator +{ + /** + * 日付順にソート + * @param arg0 + * @param arg1 + */ + @Override + public int compare(Date arg0, Date arg1) { + return arg0.compareTo(arg1); + } +} diff --git a/src/main/java/osm/surveyor/util/YuuLogFormatter.java b/src/main/java/osm/surveyor/util/YuuLogFormatter.java new file mode 100644 index 0000000..f78bf16 --- /dev/null +++ b/src/main/java/osm/surveyor/util/YuuLogFormatter.java @@ -0,0 +1,48 @@ +package osm.surveyor.util; + +import java.text.SimpleDateFormat; +import java.util.Date; +import java.util.logging.Formatter; +import java.util.logging.Level; +import java.util.logging.LogRecord; + +/** + * シンプルなサンプルログフォーマッタ + */ +public class YuuLogFormatter extends Formatter { + private final SimpleDateFormat sdFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS"); + + @Override + public String format(final LogRecord argLogRecord) { + final StringBuffer buf = new StringBuffer(); + + buf.append(sdFormat.format(new Date(argLogRecord.getMillis()))).append(" "); + + if (argLogRecord.getLevel() == Level.FINEST) { + buf.append("[FINEST]"); + } + else if (argLogRecord.getLevel() == Level.FINER) { + buf.append("[FINER]"); + } + else if (argLogRecord.getLevel() == Level.FINE) { + buf.append("[FINE]"); + } + else if (argLogRecord.getLevel() == Level.CONFIG) { + buf.append("[CONFIG]"); + } + else if (argLogRecord.getLevel() == Level.INFO) { + buf.append("[INFO]"); + } + else if (argLogRecord.getLevel() == Level.WARNING) { + buf.append("[WARN]"); + } + else if (argLogRecord.getLevel() == Level.SEVERE) { + buf.append("[SEVERE]"); + } + else { + buf.append(Integer.toString(argLogRecord.getLevel().intValue())).append(" "); + } + buf.append(" ").append(argLogRecord.getMessage()).append("\n"); + return buf.toString(); + } +} \ No newline at end of file diff --git a/src/main/resources/AdjustTime.ini b/src/main/resources/AdjustTime.ini new file mode 100644 index 0000000..3d439b1 --- /dev/null +++ b/src/main/resources/AdjustTime.ini @@ -0,0 +1,13 @@ +#by AdjustTime +GPX.BASETIME=EXIF_TIME +IMG.OUTPUT_EXIF=true +GPX.OUTPUT_SPEED=false +GPX.noFirstNode=true +IMG.OUTPUT=false +GPX.gpxSplit=true +IMG.TIME=2016-08-14T11\:45\:47 +GPX.REUSE=true +IMG.BASE_FILE=IMG_0182.jpg +IMG.SOURCE_FOLDER=. +GPX.SOURCE_FOLDER=. +IMG.OUTPUT_FOLDER=. \ No newline at end of file diff --git a/src/main/resources/AdjustTime2.bat b/src/main/resources/AdjustTime2.bat new file mode 100644 index 0000000..96ed170 --- /dev/null +++ b/src/main/resources/AdjustTime2.bat @@ -0,0 +1 @@ +javaw -cp .;AdjustTime2.jar;commons-compress-1.14.jar;commons-imaging-1.0-20170205.201009-115.jar osm.jp.gpx.matchtime.gui.AdjustTime diff --git a/src/main/resources/AdjustTime2.jnlp b/src/main/resources/AdjustTime2.jnlp new file mode 100644 index 0000000..d865797 --- /dev/null +++ b/src/main/resources/AdjustTime2.jnlp @@ -0,0 +1,35 @@ + + + + + SwingSet2 Demo Application + Sun Microsystems, Inc. + + SwingSet2 Demo Application + A demo of the capabilities +of the Swing Graphical User Interface. + + + + + + + + + + + + + + SwingSet2 Demo on Linux + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/AdjustTime2.sh b/src/main/resources/AdjustTime2.sh new file mode 100644 index 0000000..bae5196 --- /dev/null +++ b/src/main/resources/AdjustTime2.sh @@ -0,0 +1 @@ +javaw -cp .:AdjustTime2.jar:commons-compress-1.14.jar:commons-imaging-1.0-20170205.201009-115.jar osm.jp.gpx.matchtime.gui.AdjustTime diff --git a/src/main/resources/LICENSE.txt b/src/main/resources/LICENSE.txt new file mode 100644 index 0000000..a37e276 --- /dev/null +++ b/src/main/resources/LICENSE.txt @@ -0,0 +1,43 @@ +The MIT License (MIT) + +Copyright (c) 2014 Yuu Hayashi + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +以下に定める条件に従い、本ソフトウェアおよび関連文書のファイル(以下「ソフトウェア」)の複製を取得するすべて +の人に対し、ソフトウェアを無制限に扱うことを無償で許可します。これには、ソフトウェアの複製を使用、複写、変 +更、結合、掲載、頒布、サブライセンス、および/または販売する権利、およびソフトウェアを提供する相手に同じこ +とを許可する権利も無制限に含まれます。 + +上記の著作権表示および本許諾表示を、ソフトウェアのすべての複製または重要な部分に記載するものとします。 + +ソフトウェアは「現状のまま」で、明示であるか暗黙であるかを問わず、何らの保証もなく提供されます。ここでいう保証 +とは、商品性、特定の目的への適合性、および権利非侵害についての保証も含みますが、それに限定されるもので +はありません。 作者または著作権者は、契約行為、不法行為、またはそれ以外であろうと、ソフトウェアに起因または +関連し、あるいはソフトウェアの使用またはその他の扱いによって生じる一切の請求、損害、その他の義務について何 +らの責任も負わないものとします。 + +---------------- + +osm.jp.gpx.GeoDistance.java は'やまだらけ'様の著作物です。 + Copyright (C) 2007-2012 やまだらけ + The MIT License (MIT) + 参照元: http://yamadarake.jp/trdi/report000001.html + 「Cords.java」を改変 diff --git a/src/main/resources/README.jp.txt b/src/main/resources/README.jp.txt new file mode 100644 index 0000000..2749310 --- /dev/null +++ b/src/main/resources/README.jp.txt @@ -0,0 +1,128 @@ +[ AdjustTime ] + +GPSログファイル(GPX)を元にして写真へ「位置情報(緯度経度)」と「方向」を追記します。(EXIF更新) + +[概要] +GPSログの記録時刻とデジカメの撮影時刻とを見比べて、GPSログ内に写真へのリンク情報を付加した新しいGPSログファイルを作成します。 + + ※ 対象とする画像ファイルは'*.jpg'のみです。 + ※ GPSログの形式は「GPX」形式に対応しています。 + * 画像ファイルの撮影日時をファイルの更新日時/EXIF撮影日時から選択することができます。 + - ファイル更新日時: 高速処理が可能です。 + 一部のトイカメラ系のデジカメにはEXIF情報が正しく付加されないものがあります。そのような機種におすすめです。 + - EXIF撮影日時: ファイル更新日時が利用できない場合はこちらを使ってください。 + iPadなど直接ファイルを扱えないデバイスの場合はファイル更新日時が使えません。 + うっかりファイルをコピーしてしまった場合は、ファイル更新日時が撮影日時を意味しなくなります。その時もEXIFにしてください。 + * 画像の精確な撮影時刻を入力することでGPSログとの時差を自動補正します。 + * 結果は、取り込み元のGPXファイルとは別に、元ファイル名にアンダーバー「_」を付加した.ファイルに出力します。 + - SPEED(速度): 出力GPXにタグを付加することができます。 + - MAGVAR(方向): 'MAGVAR'とは磁気方位のことです。直前のポイントとの2点間の位置関係を'MAGVAR'として出力できます。 + - 出力先のGPXに写真へのリンク情報を付加する/付加しないを選択可能にしました。 + [☑ 出力GPXにポイントマーカーを書き出す] + * 画像にEXIF情報を付加することができます。 + - 緯度経度: GPSログから算出した緯度・経度情報をEXIFに書き出すことができます。 + - 撮影方向: GPSログから移動方向を擬似撮影方向としてEXIFに書き出すことができます。(カメラの向きではありません) + +http://sourceforge.jp/projects/importpicture/wiki/FrontPage + +[起動] +下記のように'AdjustTime'を起動するとGUIでパラメータを逐次設定可能です。(推奨起動方法) + +> java -cp .:AdjustTime2.jar:commons-imaging-1.0-SNAPSHOT.jar osm.jp.gpx.matchtime.gui.AdjustTime + + +下記のコマンドラインによる起動方式は度重なる機能追加によりパラメーターが増大したため複雑になりすぎ作者でさえわけがわからなくなりました。 +一応、過去の起動方法を記載しておきます。しかし、コマンドラインからの引数は2016-10-03版以降は正しく引き継がれません。 +'AdjustTime2.jar'と'AdjustTime.ini'を使ってください。 + +> java -jar importPicture.jar + +(パラメータ) + argv[0] = 画像リストの出力ファイル + argv[1] = 画像ファイルが格納されているディレクトリ + argv[2] = 時刻補正の基準とする画像ファイル + argv[3] = 基準画像ファイルの精確な撮影日時 "yyyy-mm-dd'T'HH:MM:ss" + argv[4] = 撮影位置をロギングしたGPXファイル (省略可能:省略した場合は指定された画像ディレクトリ内のGPXファイルを対象とする(複数可能)) + +exp) + +> java -jar importPicture.jar list.csv . IMG_01234.JPG 2012-06-15T12:52:22 鎌倉宮_2012-06-15_12-00-16.gpx + + +[ GUIバージョン ] +撮影した画像を確認しながらパラメータを設定することができます。 +また、補正した撮影時刻と位置情報を画像ファイルのEXIFに書き込むことも可能です。 +EXIFへの書き込みには別途「Apache commons imaging」ライブラリが必要です。 +commons_imaging ライブラリは下記から入手してください。 +(version 1.0 以降が必要です) + +------------------------------------------------------------------- + +[Restamp] + +動画から一定間隔で切り出したIMAGEのファイル更新日時を書き換える + + ・画像ファイルの更新日付を書き換えます。(Exi情報は無視します) + ※ 指定されたディレクトリ内のすべての'*.jpg'ファイルを処理の対象とします + + ・画像は連番形式(名前順に並べられること)の名称となっていること + + ・一定の間隔(等間隔)で撮影された画像ファイルの中から2つの画像の撮影時刻を + 入力することで、2つの画像の間の画像数から撮影間隔を割り出し、時刻を指定され + ていない残りの画像も含めて、画像ファイルの「ファイル更新日時」を書き換えます。 + +## パラメータ + ・対象のフォルダ(ディレクトリ内のすべての'*.jpg'ファイルを処理の対象とします) + ・基準となる画像(2つ) + ・基準画像の正しい日時(2つ) + +> java -cp .:AdjustTime2.jar osm.jp.gpx.Restamp + + argv[0] = 画像ファイルが格納されているディレクトリ --> imgDir + argv[1] = 時刻補正の基準とする画像ファイル --> baseFile A + argv[2] = 基準画像ファイルの精確な撮影日時 "yyyy-MM-dd_HH:mm:ss" --> baseTime A + argv[3] = 時刻補正の基準とする画像ファイル --> baseFile B + argv[4] = 基準画像ファイルの精確な撮影日時 "yyyy-MM-dd_HH:mm:ss" --> baseTime B + +## 使い方 + 1. 予め、動画から画像を切り出す + ソースファイル(mp4ファイル); 「-i 20160427_104154.mp4」 + 出力先: 「-f image2 img/%06d.jpg」 imgフォルダに6桁の連番ファイルを差出力する + 切り出し開始秒数→ 「-ss 0」 (ファイルの0秒から切り出し開始) + 切り出し間隔; 「-r 30」 (1秒間隔=30fps間隔) + ``` + $ cd /home/yuu/Desktop/OSM/20180325_横浜新道 + $ ffmpeg -ss 0 -i 20160427_104154.mp4 -f image2 -r 15 img/%06d.jpg + ``` + + 2. ファイルの更新日付を書き換える + ``` + $ cd /home/yuu/Desktop/workspace/AdjustTime/importPicture/dist + $ java -cp .:AdjustTime2.jar osm.jp.gpx.Restamp /home/yuu/Desktop/OSM/20180325_横浜新道/img 000033.jpg 2018-03-25_12:20:32 003600.jpg 2018-03-25_13:20:09 + ``` + + +------------------------------------------------------------------- +AdjustTime2.jar +Copyright (c) 2014 Yuu Hayashi +This software is released under the MIT License, see LICENSE.txt. + +------------------------------------------------------------------- +About 'commons-imaging-1.0-SNAPSHOT.jar' +'commons-imaging-1.0-SNAPSHOT.jar' is the work that is distributed in the Apache License 2.0 + +commons-imaging-1.0-SNAPSHOT.jarについて +'commons-imaging-1.0-SNAPSHOT.jar'は、 Apache 2.0ライセンスで配布されている製作物です。 + +commons-imaging-1.0-SNAPSHOT.jarの入手元 + https://repository.apache.org/content/groups/snapshots/org/apache/commons/commons-imaging/1.0-SNAPSHOT/ + commons-imaging-1.0-20170205.201009-115.jar + commons-imaging-1.0-20150518.202342-66.jar + +---------------- +osm.jp.gpx.GeoDistance.java は'やまだらけ'様の著作物です。 + Copyright (C) 2007-2012 やまだらけ + The MIT License (MIT) + 参照元: http://yamadarake.jp/trdi/report000001.html + + \ No newline at end of file diff --git a/src/main/resources/i18n.properties b/src/main/resources/i18n.properties new file mode 100644 index 0000000..f581273 --- /dev/null +++ b/src/main/resources/i18n.properties @@ -0,0 +1,73 @@ +dialog.quit=Quit +dialog.cancel=Cancel +dialog.msg1=Quit this program. +dialog.select=Selection + +menu.tools=Tools +menu.restamp=Restamp +button.close=Close + +menu.quit=Quit? +button.next=Next +button.previous=Previous +button.execute=Execute +button.select=Selection... +button.update=Update... +button.reset=Reset... + +tab.100=1. Source image Folder +label.100=1. Select image source folder.If you perform a copy operation, the file update time may be rewritten to the time the copy was executed. It is recommended to directly specify the folder in the camera SD card. +label.110=Image Folder + +tab.200=2. Set correct shooting time +tab.restamp.200=2. Set correct shooting time (start) +tab.restamp.250=3. Set correct shooting time (end) +label.200=2. Choose an image whose exact shooting time can be known.If the camera's clock is accurate, you can choose any image. +label.210=Reference time image +label.220=Based on EXIF date and time +label.230=Based on FILE UPDATE time +tab.300=2a. Set correct shooting time +tab.restamp.300=2a. Set correct shooting time (start) +label.300=3. enter the correct shooting time.If the camera clock is accurate, you do not need to change the setting. +label.310=Reference time +label.restamp.310=Reference time (start) + +tab.400=3. Select GPX files +label.400=4. Please select a GPX file to perform the matching.If you specify a folder, it will target all GPX files in the folder. +label.410=GPX folder +label.420=Ignore the first node of segment 'trkseg' +label.430=Also make the generated GPX file (the one whose filename ends with '_.gpx') as the target of conversion + +tab.restamp.400=4. Perform RESTAMP + +tab.500=4. perform EXIF conversion +label.500=Select whether to perform EXIF conversion +label.501=When performing EXIF conversion, you also need to specify the folder to output the converted file. +label.502=The output folder must have write permission and sufficient free space. +label.510=Convert IMG +label.520=Copy files outside the GPX file time +label.530=Output folder +label.540=Convert EXIF +label.550=Output point marker to GPX file +label.560=Ignoring of source GPX +label.570=Overwrite in output GPX + +tab.restamp.500=5. Do ReStamp +label.restamp.500=5. Select whether to UpdateTime conversion +label.restamp.501=The output folder must have write permission and sufficient free space. + +msg.100=GPX file or directory does not exist.('%s') +msg.110=The target GPX file can not be found.('%s') +msg.120=When there are multiple GPX files, 'IMG.OUTPUT_ALL' option can not be specified. +msg.130=Format of '%s' is wrong.(%s) +msg.140=Not exists EXIF data in '%s'. + +msg.200=[error] Not exists . +msg.210=[error] is not Folder. +msg.220=[error] Not exists . +msg.230=[error] is not a file. +msg.240=[error] Not exists . +msg.250=[error] is not a file. +msg.260=[error] Not exists . +msg.270=[error] is not folder. +IMAGES/FIT16.GIF=images/Fit16.gif diff --git a/src/main/resources/i18n_ja_JP.properties b/src/main/resources/i18n_ja_JP.properties new file mode 100644 index 0000000..2535af0 --- /dev/null +++ b/src/main/resources/i18n_ja_JP.properties @@ -0,0 +1,74 @@ +dialog.quit=\u7d42\u4e86 +dialog.cancel=\u30ad\u30e3\u30f3\u30bb\u30eb +dialog.msg1=\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u7d42\u4e86\u3057\u307e\u3059\u3002 +dialog.select=\u9078\u629e + +menu.tools=\u30c4\u30fc\u30eb +menu.restamp=Restamp +button.close=\u9589\u3058\u308b + +menu.quit=\u7d42\u4e86... +button.next=\u6b21\u3078 +button.previous=\u623b\u308b +button.execute=\u51e6\u7406\u5b9f\u884c +button.select=\u9078\u629e... +button.update=\u5909\u66f4... +button.reset=\u518d\u8a2d\u5b9a... + +tab.100=1. \u753b\u50cf\u5143\u306e\u30d5\u30a1\u30a4\u30eb\u30d5\u30a9\u30eb\u30c0 +label.100=1. \u4f4d\u7f6e\u60c5\u5831\u3092\u4ed8\u52a0\u3057\u305f\u3044\u753b\u50cf\u30d5\u30a1\u30a4\u30eb\u304c\u683c\u7d0d\u3055\u308c\u3066\u3044\u308b\u30d5\u30a9\u30eb\u30c0\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u30b3\u30d4\u30fc\u52d5\u4f5c\u3092\u884c\u3046\u3068\u3001\u30d5\u30a1\u30a4\u30eb\u66f4\u65b0\u6642\u523b\u304c\u30b3\u30d4\u30fc\u3092\u5b9f\u884c\u3057\u305f\u6642\u523b\u306b\u66f8\u304d\u63db\u308f\u3063\u3066\u3057\u307e\u3046\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002\u30ab\u30e1\u30e9SD\u30ab\u30fc\u30c9\u5185\u306e\u30d5\u30a9\u30eb\u30c0\u3092\u76f4\u63a5\u6307\u5b9a\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059\u3002 +label.110=\u5bfe\u8c61\u30d5\u30a9\u30eb\u30c0 + +tab.200=2. \u57fa\u6e96\u3068\u3059\u308b\u753b\u50cf\u306e\u9078\u629e +tab.restamp.200=2. \u57fa\u6e96\u3068\u3059\u308b\u753b\u50cf(\u958b\u59cb\u753b\u50cf)\u306e\u9078\u629e +tab.restamp.250=3. \u57fa\u6e96\u3068\u3059\u308b\u753b\u50cf(\u7d42\u4e86\u753b\u50cf)\u306e\u9078\u629e +label.200=2. \u6b63\u78ba\u306a\u64ae\u5f71\u6642\u523b\u304c\u5224\u660e\u3067\u304d\u308b\u753b\u50cf\u3092\u9078\u3093\u3067\u304f\u3060\u3055\u3044\u3002\u30b9\u30de\u30fc\u30c8\u30d5\u30a9\u30f3\u306e\u6642\u8a08\u753b\u9762\uff08\u79d2\u304c\u5224\u5225\u3067\u304d\u308b\u3053\u3068\uff09\u3092\u64ae\u5f71\u3057\u305f\u753b\u50cf\u30ab\u30e1\u30e9\u306e\u6642\u8a08\u304c\u6b63\u78ba\u306a\u3089\u3070\u3001\u3069\u306e\u753b\u50cf\u3092\u9078\u3093\u3067\u3082\u69cb\u3044\u307e\u305b\u3093\u3002 +label.210=\u57fa\u6e96\u6642\u523b\u753b\u50cf +label.220=EXIF\u306e\u65e5\u6642\u3092\u57fa\u6e96\u306b\u3059\u308b +label.230=\u30d5\u30a1\u30a4\u30eb\u66f4\u65b0\u65e5\u6642\u3092\u57fa\u6e96\u306b\u3059\u308b + +tab.300=2a. \u672c\u5f53\u306e\u6642\u523b\u3092\u8a2d\u5b9a +tab.restamp.300=2a. \u958b\u59cb\u753b\u50cf\u306e\u672c\u5f53\u306e\u6642\u523b\u3092\u8a2d\u5b9a +tab.restamp.350=3a. \u7d42\u4e86\u753b\u50cf\u306e\u672c\u5f53\u306e\u6642\u523b\u3092\u8a2d\u5b9a +label.300=3. \u6b63\u78ba\u306a\u64ae\u5f71\u6642\u523b\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u30ab\u30e1\u30e9\u306e\u6642\u8a08\u304c\u6b63\u78ba\u306a\u3089\u3070\u3001\u8a2d\u5b9a\u3092\u5909\u66f4\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093\u3002 +label.310=\u57fa\u6e96\u6642\u523b +label.restamp.310=\u57fa\u6e96\u6642\u523b(\u958b\u59cb\u753b\u50cf) + +tab.400=3. GPX\u30d5\u30a1\u30a4\u30eb\u3092\u9078\u629e +label.400=4. \u30d2\u30e2\u4ed8\u3092\u884c\u3046GPX\u30d5\u30a1\u30a4\u30eb\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u30d5\u30a9\u30eb\u30c0\u3092\u6307\u5b9a\u3059\u308b\u3068\u3001\u30d5\u30a9\u30eb\u30c0\u5185\u306b\u3042\u308b\u3059\u3079\u3066\u306eGPX\u30d5\u30a1\u30a4\u30eb\u3092\u5bfe\u8c61\u3068\u3057\u307e\u3059\u3002 +label.410=GPX\u30d5\u30a9\u30eb\u30c0 +label.420=\u30bb\u30b0\u30e1\u30f3\u30c8'trkseg'\u306e\u6700\u521d\u306e\uff11\u30ce\u30fc\u30c9\u306f\u7121\u8996\u3059\u308b +label.430=\u751f\u6210\u3055\u308c\u305fGPX\u30d5\u30a1\u30a4\u30eb\uff08\u30d5\u30a1\u30a4\u30eb\u540d\u304c'_.gpx'\u3067\u7d42\u308f\u308b\u3082\u306e\uff09\u3082\u5909\u63db\u306e\u5bfe\u8c61\u306b\u3059\u308b + +tab.500=4. EXIF\u5909\u63db\u306e\u5b9f\u884c +label.500=EXIF\u5909\u63db\u3092\u884c\u3046\u304b\u3069\u3046\u304b\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044 +label.501=EXIF\u5909\u63db\u3092\u884c\u3046\u5834\u5408\u306b\u306f\u3001\u5909\u63db\u30d5\u30a1\u30a4\u30eb\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a9\u30eb\u30c0\u3082\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 +label.502=\u51fa\u529b\u30d5\u30a9\u30eb\u30c0\u306b\u306f\u3001\u66f8\u304d\u8fbc\u307f\u6a29\u9650\u3068\u3001\u5341\u5206\u306a\u7a7a\u304d\u5bb9\u91cf\u304c\u5fc5\u8981\u3067\u3059\u3002 +label.510=IMG\u306e\u5909\u63db\u3092\u3059\u308b +label.520=GPX\u30d5\u30a1\u30a4\u30eb\u6642\u9593\u5916\u306e\u30d5\u30a1\u30a4\u30eb\u3082\u30b3\u30d4\u30fc\u3059\u308b +label.530=\u51fa\u529b\u30d5\u30a9\u30eb\u30c0 +label.540=EXIF\u306e\u5909\u63db\u3092\u3059\u308b +label.550=\u30dd\u30a4\u30f3\u30c8\u30de\u30fc\u30ab\u30fc\u3092GPX\u30d5\u30a1\u30a4\u30eb\u306b\u51fa\u529b\u3059\u308b +label.560=\u30bd\u30fc\u30b9GPX\u306e\u3092\u7121\u8996\u3059\u308b +label.570=\u51fa\u529bGPX\u306b\u3092\u4e0a\u66f8\u304d\u3059\u308b + +tab.restamp.400=4. \u5909\u63db\u306e\u5b9f\u884c +tab.restamp.500=5. \u5909\u63db\u306e\u5b9f\u884c +label.restamp.500=5. \u5909\u63db\u5148\u306e\u30d5\u30a9\u30eb\u30c0\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002 +label.restamp.501=\u5909\u63db\u5148\u30d5\u30a9\u30eb\u30c0\u306b\u306f\u3001\u66f8\u304d\u8fbc\u307f\u6a29\u9650\u3068\u3001\u5341\u5206\u306a\u7a7a\u304d\u5bb9\u91cf\u304c\u5fc5\u8981\u3067\u3059\u3002 + +msg.100=GPX\u30d5\u30a1\u30a4\u30eb\u307e\u305f\u306f\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002('%s') +msg.110=\u5bfe\u8c61\u3068\u306a\u308bGPX\u30d5\u30a1\u30a4\u30eb\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093('%s') +msg.120=\u8907\u6570\u306eGPX\u30d5\u30a1\u30a4\u30eb\u304c\u3042\u308b\u3068\u304d\u306b\u306f\u3001'IMG.OUTPUT_ALL'\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093\u3002 +msg.130='%s'\u306e\u66f8\u5f0f\u304c\u9055\u3044\u307e\u3059(%s) +msg.140='%s'\u306bEXIF\u60c5\u5831\u304c\u3042\u308a\u307e\u305b\u3093 + +msg.200=[error] \u304c\u5b58\u5728\u3057\u307e\u305b\u3093 +msg.210=[error] \u304c\u30d5\u30a9\u30eb\u30c0\u3058\u3083\u306a\u3044 +msg.220=[error] \u304c\u5b58\u5728\u3057\u307e\u305b\u3093 +msg.230=[error] \u304c\u30d5\u30a1\u30a4\u30eb\u3058\u3083\u306a\u3044 +msg.240=[error] \u304c\u5b58\u5728\u3057\u307e\u305b\u3093 +msg.250=[error] \u304c\u30d5\u30a1\u30a4\u30eb\u3058\u3083\u306a\u3044 +msg.260=[error] <\u51fa\u529b\u5148\u30d5\u30a9\u30eb\u30c0>\u304c\u5b58\u5728\u3057\u307e\u305b\u3093 +msg.270=[error] <\u51fa\u529b\u5148\u30d5\u30a9\u30eb\u30c0>\u304c\u30d5\u30a9\u30eb\u30c0\u3058\u3083\u306a\u3044 +IMAGES/FIT16.GIF=images/Fit16.gif diff --git a/src/main/resources/images/Fit16.gif b/src/main/resources/images/Fit16.gif new file mode 100644 index 0000000..0d94f66 --- /dev/null +++ b/src/main/resources/images/Fit16.gif Binary files differ diff --git a/src/main/resources/images/Open16.gif b/src/main/resources/images/Open16.gif new file mode 100644 index 0000000..fabd567 --- /dev/null +++ b/src/main/resources/images/Open16.gif Binary files differ diff --git a/src/main/resources/images/Original16.gif b/src/main/resources/images/Original16.gif new file mode 100644 index 0000000..57e71ce --- /dev/null +++ b/src/main/resources/images/Original16.gif Binary files differ diff --git a/src/main/resources/images/Rotate16.gif b/src/main/resources/images/Rotate16.gif new file mode 100644 index 0000000..587b9d2 --- /dev/null +++ b/src/main/resources/images/Rotate16.gif Binary files differ diff --git a/src/main/resources/images/Save16.gif b/src/main/resources/images/Save16.gif new file mode 100644 index 0000000..954f1ac --- /dev/null +++ b/src/main/resources/images/Save16.gif Binary files differ diff --git a/src/main/resources/images/ZoomIn16.gif b/src/main/resources/images/ZoomIn16.gif new file mode 100644 index 0000000..2329426 --- /dev/null +++ b/src/main/resources/images/ZoomIn16.gif Binary files differ diff --git a/src/main/resources/images/ZoomOut16.gif b/src/main/resources/images/ZoomOut16.gif new file mode 100644 index 0000000..f9f7565 --- /dev/null +++ b/src/main/resources/images/ZoomOut16.gif Binary files differ diff --git a/src/main/resources/images/gifIcon.gif b/src/main/resources/images/gifIcon.gif new file mode 100644 index 0000000..915e184 --- /dev/null +++ b/src/main/resources/images/gifIcon.gif Binary files differ diff --git a/src/main/resources/images/jpgIcon.gif b/src/main/resources/images/jpgIcon.gif new file mode 100644 index 0000000..7294f36 --- /dev/null +++ b/src/main/resources/images/jpgIcon.gif Binary files differ diff --git a/src/main/resources/images/media_playback_start.png b/src/main/resources/images/media_playback_start.png new file mode 100644 index 0000000..2f8c4b5 --- /dev/null +++ b/src/main/resources/images/media_playback_start.png Binary files differ diff --git a/src/main/resources/images/pngIcon.png b/src/main/resources/images/pngIcon.png new file mode 100644 index 0000000..bd2fd54 --- /dev/null +++ b/src/main/resources/images/pngIcon.png Binary files differ diff --git a/src/main/resources/images/tiffIcon.gif b/src/main/resources/images/tiffIcon.gif new file mode 100644 index 0000000..84b4132 --- /dev/null +++ b/src/main/resources/images/tiffIcon.gif Binary files differ diff --git a/src/test/data/20170517.gpx b/src/test/data/20170517.gpx new file mode 100644 index 0000000..d1c827b --- /dev/null +++ b/src/test/data/20170517.gpx @@ -0,0 +1,7424 @@ + + + + ACTIVE LOG095807 + + + 40.664 + 2017-05-17T00:58:07Z + + + 39.233 + 2017-05-17T00:58:09Z + + + 38.879 + 2017-05-17T00:58:10Z + + + 39.321 + 2017-05-17T00:58:11Z + + + 38.839 + 2017-05-17T00:58:12Z + + + 33.392 + 2017-05-17T00:58:15Z + + + 29.491 + 2017-05-17T00:58:17Z + + + 27.843 + 2017-05-17T00:58:18Z + + + 25.357 + 2017-05-17T00:58:20Z + + + 23.539 + 2017-05-17T00:58:22Z + + + 22.851 + 2017-05-17T00:58:23Z + + + 21.926 + 2017-05-17T00:58:25Z + + + 21.243 + 2017-05-17T00:58:26Z + + + 20.950 + 2017-05-17T00:58:28Z + + + 21.018 + 2017-05-17T00:58:31Z + + + 21.071 + 2017-05-17T00:58:32Z + + + 21.837 + 2017-05-17T00:58:35Z + + + 21.948 + 2017-05-17T00:58:36Z + + + 22.006 + 2017-05-17T00:58:37Z + + + 21.446 + 2017-05-17T00:58:40Z + + + 21.410 + 2017-05-17T00:58:42Z + + + 21.952 + 2017-05-17T00:58:43Z + + + 23.713 + 2017-05-17T00:58:46Z + + + 24.738 + 2017-05-17T00:58:48Z + + + 25.244 + 2017-05-17T00:58:50Z + + + 25.777 + 2017-05-17T00:58:52Z + + + 25.996 + 2017-05-17T00:58:53Z + + + 26.247 + 2017-05-17T00:58:54Z + + + 26.379 + 2017-05-17T00:58:55Z + + + 26.517 + 2017-05-17T00:58:56Z + + + 26.728 + 2017-05-17T00:58:57Z + + + 26.927 + 2017-05-17T00:58:58Z + + + 27.188 + 2017-05-17T00:58:59Z + + + 27.789 + 2017-05-17T00:59:00Z + + + 28.672 + 2017-05-17T00:59:02Z + + + 28.999 + 2017-05-17T00:59:03Z + + + 29.350 + 2017-05-17T00:59:04Z + + + 29.730 + 2017-05-17T00:59:05Z + + + 30.171 + 2017-05-17T00:59:06Z + + + 30.468 + 2017-05-17T00:59:07Z + + + 30.764 + 2017-05-17T00:59:08Z + + + 30.900 + 2017-05-17T00:59:09Z + + + 31.151 + 2017-05-17T00:59:10Z + + + 31.440 + 2017-05-17T00:59:11Z + + + 31.928 + 2017-05-17T00:59:12Z + + + 32.253 + 2017-05-17T00:59:13Z + + + 32.387 + 2017-05-17T00:59:14Z + + + 32.626 + 2017-05-17T00:59:15Z + + + 32.832 + 2017-05-17T00:59:16Z + + + 32.886 + 2017-05-17T00:59:17Z + + + 32.980 + 2017-05-17T00:59:18Z + + + 33.004 + 2017-05-17T00:59:19Z + + + 33.093 + 2017-05-17T00:59:20Z + + + 33.046 + 2017-05-17T00:59:21Z + + + 33.043 + 2017-05-17T00:59:22Z + + + 33.013 + 2017-05-17T00:59:23Z + + + 33.147 + 2017-05-17T00:59:24Z + + + 33.131 + 2017-05-17T00:59:25Z + + + 33.188 + 2017-05-17T00:59:26Z + + + 33.329 + 2017-05-17T00:59:27Z + + + 33.488 + 2017-05-17T00:59:28Z + + + 33.635 + 2017-05-17T00:59:29Z + + + 33.751 + 2017-05-17T00:59:30Z + + + 33.625 + 2017-05-17T00:59:31Z + + + 33.551 + 2017-05-17T00:59:32Z + + + 33.481 + 2017-05-17T00:59:33Z + + + 33.369 + 2017-05-17T00:59:34Z + + + 33.316 + 2017-05-17T00:59:35Z + + + 33.258 + 2017-05-17T00:59:36Z + + + 33.150 + 2017-05-17T00:59:37Z + + + 33.026 + 2017-05-17T00:59:38Z + + + 32.984 + 2017-05-17T00:59:39Z + + + 32.930 + 2017-05-17T00:59:40Z + + + 32.927 + 2017-05-17T00:59:41Z + + + 32.947 + 2017-05-17T00:59:42Z + + + 32.850 + 2017-05-17T00:59:43Z + + + 32.994 + 2017-05-17T00:59:44Z + + + 33.009 + 2017-05-17T00:59:45Z + + + 33.069 + 2017-05-17T00:59:46Z + + + 33.247 + 2017-05-17T00:59:47Z + + + 33.735 + 2017-05-17T00:59:48Z + + + 34.147 + 2017-05-17T00:59:49Z + + + 34.563 + 2017-05-17T00:59:50Z + + + 35.077 + 2017-05-17T00:59:51Z + + + 35.376 + 2017-05-17T00:59:52Z + + + 35.896 + 2017-05-17T00:59:53Z + + + 36.311 + 2017-05-17T00:59:54Z + + + 36.825 + 2017-05-17T00:59:55Z + + + 37.205 + 2017-05-17T00:59:56Z + + + 37.355 + 2017-05-17T00:59:57Z + + + 37.317 + 2017-05-17T00:59:58Z + + + 37.305 + 2017-05-17T00:59:59Z + + + 37.035 + 2017-05-17T01:00:00Z + + + 36.754 + 2017-05-17T01:00:01Z + + + 36.628 + 2017-05-17T01:00:02Z + + + 36.487 + 2017-05-17T01:00:03Z + + + 36.456 + 2017-05-17T01:00:04Z + + + 36.411 + 2017-05-17T01:00:05Z + + + 36.394 + 2017-05-17T01:00:06Z + + + 36.369 + 2017-05-17T01:00:07Z + + + 36.372 + 2017-05-17T01:00:08Z + + + 36.332 + 2017-05-17T01:00:09Z + + + 36.372 + 2017-05-17T01:00:10Z + + + 36.407 + 2017-05-17T01:00:11Z + + + 36.541 + 2017-05-17T01:00:12Z + + + 36.665 + 2017-05-17T01:00:13Z + + + 36.710 + 2017-05-17T01:00:14Z + + + 36.797 + 2017-05-17T01:00:15Z + + + 36.882 + 2017-05-17T01:00:16Z + + + 36.811 + 2017-05-17T01:00:17Z + + + 36.768 + 2017-05-17T01:00:18Z + + + 36.847 + 2017-05-17T01:00:19Z + + + 36.919 + 2017-05-17T01:00:20Z + + + 36.956 + 2017-05-17T01:00:21Z + + + 37.005 + 2017-05-17T01:00:22Z + + + 37.137 + 2017-05-17T01:00:23Z + + + 37.220 + 2017-05-17T01:00:24Z + + + 37.381 + 2017-05-17T01:00:25Z + + + 37.547 + 2017-05-17T01:00:26Z + + + 37.699 + 2017-05-17T01:00:27Z + + + 37.851 + 2017-05-17T01:00:28Z + + + 37.931 + 2017-05-17T01:00:29Z + + + 38.114 + 2017-05-17T01:00:30Z + + + 38.373 + 2017-05-17T01:00:31Z + + + 38.559 + 2017-05-17T01:00:32Z + + + 38.607 + 2017-05-17T01:00:33Z + + + 38.673 + 2017-05-17T01:00:34Z + + + 38.791 + 2017-05-17T01:00:35Z + + + 39.014 + 2017-05-17T01:00:36Z + + + 39.180 + 2017-05-17T01:00:37Z + + + 39.230 + 2017-05-17T01:00:38Z + + + 39.412 + 2017-05-17T01:00:39Z + + + 39.472 + 2017-05-17T01:00:40Z + + + 39.616 + 2017-05-17T01:00:41Z + + + 39.769 + 2017-05-17T01:00:42Z + + + 39.872 + 2017-05-17T01:00:43Z + + + 39.996 + 2017-05-17T01:00:44Z + + + 40.143 + 2017-05-17T01:00:45Z + + + 40.299 + 2017-05-17T01:00:46Z + + + 40.497 + 2017-05-17T01:00:47Z + + + 41.021 + 2017-05-17T01:00:49Z + + + 41.277 + 2017-05-17T01:00:50Z + + + 41.379 + 2017-05-17T01:00:51Z + + + 41.479 + 2017-05-17T01:00:52Z + + + 41.683 + 2017-05-17T01:00:53Z + + + 41.926 + 2017-05-17T01:00:54Z + + + 42.022 + 2017-05-17T01:00:55Z + + + 42.184 + 2017-05-17T01:00:56Z + + + 42.303 + 2017-05-17T01:00:57Z + + + 42.385 + 2017-05-17T01:00:58Z + + + 42.511 + 2017-05-17T01:00:59Z + + + 42.651 + 2017-05-17T01:01:00Z + + + 42.794 + 2017-05-17T01:01:01Z + + + 42.889 + 2017-05-17T01:01:02Z + + + 42.846 + 2017-05-17T01:01:03Z + + + 42.865 + 2017-05-17T01:01:04Z + + + 42.776 + 2017-05-17T01:01:05Z + + + 42.888 + 2017-05-17T01:01:06Z + + + 42.905 + 2017-05-17T01:01:07Z + + + 42.919 + 2017-05-17T01:01:08Z + + + 43.000 + 2017-05-17T01:01:09Z + + + 42.792 + 2017-05-17T01:01:10Z + + + 42.476 + 2017-05-17T01:01:11Z + + + 42.003 + 2017-05-17T01:01:12Z + + + 41.724 + 2017-05-17T01:01:13Z + + + 41.350 + 2017-05-17T01:01:14Z + + + 41.085 + 2017-05-17T01:01:15Z + + + 40.979 + 2017-05-17T01:01:16Z + + + 41.179 + 2017-05-17T01:01:17Z + + + 41.260 + 2017-05-17T01:01:18Z + + + 41.141 + 2017-05-17T01:01:19Z + + + 40.948 + 2017-05-17T01:01:20Z + + + 40.745 + 2017-05-17T01:01:21Z + + + 40.618 + 2017-05-17T01:01:22Z + + + 40.517 + 2017-05-17T01:01:23Z + + + 40.465 + 2017-05-17T01:01:24Z + + + 40.349 + 2017-05-17T01:01:25Z + + + 40.321 + 2017-05-17T01:01:26Z + + + 40.320 + 2017-05-17T01:01:27Z + + + 40.322 + 2017-05-17T01:01:28Z + + + 40.301 + 2017-05-17T01:01:29Z + + + 40.230 + 2017-05-17T01:01:30Z + + + 40.109 + 2017-05-17T01:01:32Z + + + 40.063 + 2017-05-17T01:01:33Z + + + 39.991 + 2017-05-17T01:01:34Z + + + 39.926 + 2017-05-17T01:01:35Z + + + 39.906 + 2017-05-17T01:01:36Z + + + 39.859 + 2017-05-17T01:01:37Z + + + 39.803 + 2017-05-17T01:01:38Z + + + 39.742 + 2017-05-17T01:01:39Z + + + 39.660 + 2017-05-17T01:01:40Z + + + 39.584 + 2017-05-17T01:01:41Z + + + 39.467 + 2017-05-17T01:01:42Z + + + 39.359 + 2017-05-17T01:01:43Z + + + 39.248 + 2017-05-17T01:01:44Z + + + 39.123 + 2017-05-17T01:01:45Z + + + 38.997 + 2017-05-17T01:01:46Z + + + 38.797 + 2017-05-17T01:01:48Z + + + 38.679 + 2017-05-17T01:01:49Z + + + 38.523 + 2017-05-17T01:01:50Z + + + 38.370 + 2017-05-17T01:01:51Z + + + 38.201 + 2017-05-17T01:01:52Z + + + 38.114 + 2017-05-17T01:01:53Z + + + 37.945 + 2017-05-17T01:01:54Z + + + 37.790 + 2017-05-17T01:01:55Z + + + 37.650 + 2017-05-17T01:01:56Z + + + 37.517 + 2017-05-17T01:01:57Z + + + 37.347 + 2017-05-17T01:01:58Z + + + 37.285 + 2017-05-17T01:01:59Z + + + 37.277 + 2017-05-17T01:02:00Z + + + 37.175 + 2017-05-17T01:02:01Z + + + 37.096 + 2017-05-17T01:02:02Z + + + 37.054 + 2017-05-17T01:02:03Z + + + 37.028 + 2017-05-17T01:02:04Z + + + 37.036 + 2017-05-17T01:02:05Z + + + 37.115 + 2017-05-17T01:02:06Z + + + 37.475 + 2017-05-17T01:02:07Z + + + 37.929 + 2017-05-17T01:02:08Z + + + 38.381 + 2017-05-17T01:02:09Z + + + 38.858 + 2017-05-17T01:02:10Z + + + 39.276 + 2017-05-17T01:02:11Z + + + 39.211 + 2017-05-17T01:02:12Z + + + 39.698 + 2017-05-17T01:02:13Z + + + 40.199 + 2017-05-17T01:02:14Z + + + 40.495 + 2017-05-17T01:02:15Z + + + 40.550 + 2017-05-17T01:02:16Z + + + 40.849 + 2017-05-17T01:02:17Z + + + 41.138 + 2017-05-17T01:02:18Z + + + 41.453 + 2017-05-17T01:02:19Z + + + 41.665 + 2017-05-17T01:02:20Z + + + 41.661 + 2017-05-17T01:02:21Z + + + 41.468 + 2017-05-17T01:02:22Z + + + 41.545 + 2017-05-17T01:02:23Z + + + 41.579 + 2017-05-17T01:02:24Z + + + 41.347 + 2017-05-17T01:02:25Z + + + 41.316 + 2017-05-17T01:02:26Z + + + 41.252 + 2017-05-17T01:02:27Z + + + 41.279 + 2017-05-17T01:02:28Z + + + 41.266 + 2017-05-17T01:02:29Z + + + 41.412 + 2017-05-17T01:02:30Z + + + 41.487 + 2017-05-17T01:02:31Z + + + 41.656 + 2017-05-17T01:02:32Z + + + 41.799 + 2017-05-17T01:02:33Z + + + 41.907 + 2017-05-17T01:02:34Z + + + 41.986 + 2017-05-17T01:02:35Z + + + 42.079 + 2017-05-17T01:02:36Z + + + 42.164 + 2017-05-17T01:02:37Z + + + 42.160 + 2017-05-17T01:02:38Z + + + 42.134 + 2017-05-17T01:02:39Z + + + 42.131 + 2017-05-17T01:02:40Z + + + 42.177 + 2017-05-17T01:02:41Z + + + 42.245 + 2017-05-17T01:02:42Z + + + 42.389 + 2017-05-17T01:02:43Z + + + 42.409 + 2017-05-17T01:02:44Z + + + 42.360 + 2017-05-17T01:02:45Z + + + 42.338 + 2017-05-17T01:02:46Z + + + 42.326 + 2017-05-17T01:02:47Z + + + 42.228 + 2017-05-17T01:02:48Z + + + 42.171 + 2017-05-17T01:02:49Z + + + 42.094 + 2017-05-17T01:02:50Z + + + 41.977 + 2017-05-17T01:02:51Z + + + 41.841 + 2017-05-17T01:02:52Z + + + 41.697 + 2017-05-17T01:02:53Z + + + 41.640 + 2017-05-17T01:02:54Z + + + 41.520 + 2017-05-17T01:02:55Z + + + 41.331 + 2017-05-17T01:02:56Z + + + 41.126 + 2017-05-17T01:02:57Z + + + 40.994 + 2017-05-17T01:02:58Z + + + 40.847 + 2017-05-17T01:02:59Z + + + 40.697 + 2017-05-17T01:03:00Z + + + 40.633 + 2017-05-17T01:03:01Z + + + 40.587 + 2017-05-17T01:03:02Z + + + 40.541 + 2017-05-17T01:03:03Z + + + 40.579 + 2017-05-17T01:03:04Z + + + 40.656 + 2017-05-17T01:03:05Z + + + 40.613 + 2017-05-17T01:03:06Z + + + 40.698 + 2017-05-17T01:03:07Z + + + 40.878 + 2017-05-17T01:03:08Z + + + 41.058 + 2017-05-17T01:03:09Z + + + 41.361 + 2017-05-17T01:03:10Z + + + 41.584 + 2017-05-17T01:03:11Z + + + 41.848 + 2017-05-17T01:03:12Z + + + 42.017 + 2017-05-17T01:03:13Z + + + 42.139 + 2017-05-17T01:03:14Z + + + 42.308 + 2017-05-17T01:03:15Z + + + 42.405 + 2017-05-17T01:03:16Z + + + 42.546 + 2017-05-17T01:03:17Z + + + 42.779 + 2017-05-17T01:03:18Z + + + 43.059 + 2017-05-17T01:03:19Z + + + 43.270 + 2017-05-17T01:03:20Z + + + 43.487 + 2017-05-17T01:03:21Z + + + 43.619 + 2017-05-17T01:03:22Z + + + 43.647 + 2017-05-17T01:03:23Z + + + 43.695 + 2017-05-17T01:03:24Z + + + 43.911 + 2017-05-17T01:03:25Z + + + 44.085 + 2017-05-17T01:03:26Z + + + 44.282 + 2017-05-17T01:03:27Z + + + 44.443 + 2017-05-17T01:03:28Z + + + 44.526 + 2017-05-17T01:03:29Z + + + 44.606 + 2017-05-17T01:03:30Z + + + 44.597 + 2017-05-17T01:03:31Z + + + 44.636 + 2017-05-17T01:03:32Z + + + 44.653 + 2017-05-17T01:03:33Z + + + 44.646 + 2017-05-17T01:03:34Z + + + 44.613 + 2017-05-17T01:03:35Z + + + 44.547 + 2017-05-17T01:03:36Z + + + 44.514 + 2017-05-17T01:03:37Z + + + 44.507 + 2017-05-17T01:03:38Z + + + 44.588 + 2017-05-17T01:03:39Z + + + 44.672 + 2017-05-17T01:03:37Z + + + 44.771 + 2017-05-17T01:03:38Z + + + 44.836 + 2017-05-17T01:03:39Z + + + 44.401 + 2017-05-17T01:03:40Z + + + 43.828 + 2017-05-17T01:03:41Z + + + 43.220 + 2017-05-17T01:03:42Z + + + 42.716 + 2017-05-17T01:03:43Z + + + 42.360 + 2017-05-17T01:03:44Z + + + 41.916 + 2017-05-17T01:03:45Z + + + 41.555 + 2017-05-17T01:03:46Z + + + 41.251 + 2017-05-17T01:03:47Z + + + 41.055 + 2017-05-17T01:03:48Z + + + 40.848 + 2017-05-17T01:03:49Z + + + 40.610 + 2017-05-17T01:03:50Z + + + 40.449 + 2017-05-17T01:03:51Z + + + 40.209 + 2017-05-17T01:03:52Z + + + 40.076 + 2017-05-17T01:03:53Z + + + 39.950 + 2017-05-17T01:03:54Z + + + 39.787 + 2017-05-17T01:03:55Z + + + 39.653 + 2017-05-17T01:03:56Z + + + 39.630 + 2017-05-17T01:03:57Z + + + 39.666 + 2017-05-17T01:03:58Z + + + 39.699 + 2017-05-17T01:03:59Z + + + 39.761 + 2017-05-17T01:04:00Z + + + 39.829 + 2017-05-17T01:04:01Z + + + 39.642 + 2017-05-17T01:04:02Z + + + 39.475 + 2017-05-17T01:04:03Z + + + 39.373 + 2017-05-17T01:04:04Z + + + 39.158 + 2017-05-17T01:04:05Z + + + 39.068 + 2017-05-17T01:04:06Z + + + 38.738 + 2017-05-17T01:04:07Z + + + 38.153 + 2017-05-17T01:04:08Z + + + 37.802 + 2017-05-17T01:04:09Z + + + 37.555 + 2017-05-17T01:04:10Z + + + 37.495 + 2017-05-17T01:04:11Z + + + 37.467 + 2017-05-17T01:04:12Z + + + 37.267 + 2017-05-17T01:04:13Z + + + 37.168 + 2017-05-17T01:04:14Z + + + 37.014 + 2017-05-17T01:04:15Z + + + 36.991 + 2017-05-17T01:04:16Z + + + 37.025 + 2017-05-17T01:04:17Z + + + 37.258 + 2017-05-17T01:04:18Z + + + 37.450 + 2017-05-17T01:04:19Z + + + 37.539 + 2017-05-17T01:04:20Z + + + 37.657 + 2017-05-17T01:04:21Z + + + 37.915 + 2017-05-17T01:04:22Z + + + 38.135 + 2017-05-17T01:04:23Z + + + 38.268 + 2017-05-17T01:04:24Z + + + 38.347 + 2017-05-17T01:04:25Z + + + 38.839 + 2017-05-17T01:04:26Z + + + 39.324 + 2017-05-17T01:04:27Z + + + 40.132 + 2017-05-17T01:04:28Z + + + 40.520 + 2017-05-17T01:04:29Z + + + 40.870 + 2017-05-17T01:04:30Z + + + 41.369 + 2017-05-17T01:04:31Z + + + 41.794 + 2017-05-17T01:04:32Z + + + 42.125 + 2017-05-17T01:04:33Z + + + 42.442 + 2017-05-17T01:04:34Z + + + 42.734 + 2017-05-17T01:04:35Z + + + 42.860 + 2017-05-17T01:04:36Z + + + 42.983 + 2017-05-17T01:04:37Z + + + 42.748 + 2017-05-17T01:04:38Z + + + 42.571 + 2017-05-17T01:04:39Z + + + 42.612 + 2017-05-17T01:04:40Z + + + 42.745 + 2017-05-17T01:04:41Z + + + 42.837 + 2017-05-17T01:04:42Z + + + 43.037 + 2017-05-17T01:04:43Z + + + 43.107 + 2017-05-17T01:04:44Z + + + 43.143 + 2017-05-17T01:04:45Z + + + 43.270 + 2017-05-17T01:04:46Z + + + 43.301 + 2017-05-17T01:04:47Z + + + 43.399 + 2017-05-17T01:04:48Z + + + 43.426 + 2017-05-17T01:04:49Z + + + 43.440 + 2017-05-17T01:04:50Z + + + 43.851 + 2017-05-17T01:04:51Z + + + 44.299 + 2017-05-17T01:04:52Z + + + 44.742 + 2017-05-17T01:04:53Z + + + 45.096 + 2017-05-17T01:04:54Z + + + 45.428 + 2017-05-17T01:04:55Z + + + 45.743 + 2017-05-17T01:04:56Z + + + 46.031 + 2017-05-17T01:04:57Z + + + 46.297 + 2017-05-17T01:04:58Z + + + 46.553 + 2017-05-17T01:04:59Z + + + 46.829 + 2017-05-17T01:05:00Z + + + 47.422 + 2017-05-17T01:05:01Z + + + 47.829 + 2017-05-17T01:05:02Z + + + 48.229 + 2017-05-17T01:05:03Z + + + 48.421 + 2017-05-17T01:05:04Z + + + 48.472 + 2017-05-17T01:05:05Z + + + 48.153 + 2017-05-17T01:05:06Z + + + 47.834 + 2017-05-17T01:05:07Z + + + 47.527 + 2017-05-17T01:05:08Z + + + 47.219 + 2017-05-17T01:05:09Z + + + 46.905 + 2017-05-17T01:05:10Z + + + 46.813 + 2017-05-17T01:05:11Z + + + 46.613 + 2017-05-17T01:05:12Z + + + 46.267 + 2017-05-17T01:05:13Z + + + 45.942 + 2017-05-17T01:05:14Z + + + 45.556 + 2017-05-17T01:05:15Z + + + 44.920 + 2017-05-17T01:05:16Z + + + 44.293 + 2017-05-17T01:05:17Z + + + 43.799 + 2017-05-17T01:05:18Z + + + 43.457 + 2017-05-17T01:05:19Z + + + 43.186 + 2017-05-17T01:05:20Z + + + 42.969 + 2017-05-17T01:05:21Z + + + 42.824 + 2017-05-17T01:05:22Z + + + 42.639 + 2017-05-17T01:05:23Z + + + 42.483 + 2017-05-17T01:05:24Z + + + 42.300 + 2017-05-17T01:05:25Z + + + 42.044 + 2017-05-17T01:05:26Z + + + 41.847 + 2017-05-17T01:05:27Z + + + 41.637 + 2017-05-17T01:05:28Z + + + 41.640 + 2017-05-17T01:05:29Z + + + 41.587 + 2017-05-17T01:05:30Z + + + 41.516 + 2017-05-17T01:05:31Z + + + 41.483 + 2017-05-17T01:05:32Z + + + 41.535 + 2017-05-17T01:05:33Z + + + 41.659 + 2017-05-17T01:05:34Z + + + 41.685 + 2017-05-17T01:05:35Z + + + 41.766 + 2017-05-17T01:05:36Z + + + 42.210 + 2017-05-17T01:05:37Z + + + 42.301 + 2017-05-17T01:05:38Z + + + 42.382 + 2017-05-17T01:05:39Z + + + 42.281 + 2017-05-17T01:05:40Z + + + 42.049 + 2017-05-17T01:05:41Z + + + 41.841 + 2017-05-17T01:05:42Z + + + 42.034 + 2017-05-17T01:05:43Z + + + 42.050 + 2017-05-17T01:05:44Z + + + 41.929 + 2017-05-17T01:05:45Z + + + 41.987 + 2017-05-17T01:05:46Z + + + 42.106 + 2017-05-17T01:05:47Z + + + 42.025 + 2017-05-17T01:05:48Z + + + 41.852 + 2017-05-17T01:05:49Z + + + 41.728 + 2017-05-17T01:05:50Z + + + 41.696 + 2017-05-17T01:05:51Z + + + 41.327 + 2017-05-17T01:05:52Z + + + 40.883 + 2017-05-17T01:05:53Z + + + 40.517 + 2017-05-17T01:05:54Z + + + 40.207 + 2017-05-17T01:05:55Z + + + 39.915 + 2017-05-17T01:05:56Z + + + 39.907 + 2017-05-17T01:05:57Z + + + 39.602 + 2017-05-17T01:05:58Z + + + 39.313 + 2017-05-17T01:05:59Z + + + 39.141 + 2017-05-17T01:06:00Z + + + 39.092 + 2017-05-17T01:06:01Z + + + 39.047 + 2017-05-17T01:06:02Z + + + 39.029 + 2017-05-17T01:06:03Z + + + 38.989 + 2017-05-17T01:06:04Z + + + 39.013 + 2017-05-17T01:06:05Z + + + 38.991 + 2017-05-17T01:06:06Z + + + 38.990 + 2017-05-17T01:06:07Z + + + 39.029 + 2017-05-17T01:06:08Z + + + 38.960 + 2017-05-17T01:06:09Z + + + 38.874 + 2017-05-17T01:06:10Z + + + 38.899 + 2017-05-17T01:06:11Z + + + 38.936 + 2017-05-17T01:06:12Z + + + 39.058 + 2017-05-17T01:06:13Z + + + 39.104 + 2017-05-17T01:06:14Z + + + 39.094 + 2017-05-17T01:06:15Z + + + 38.996 + 2017-05-17T01:06:16Z + + + 38.947 + 2017-05-17T01:06:17Z + + + 38.925 + 2017-05-17T01:06:18Z + + + 39.151 + 2017-05-17T01:06:19Z + + + 39.465 + 2017-05-17T01:06:20Z + + + 39.586 + 2017-05-17T01:06:21Z + + + 39.703 + 2017-05-17T01:06:22Z + + + 40.138 + 2017-05-17T01:06:23Z + + + 40.662 + 2017-05-17T01:06:24Z + + + 41.192 + 2017-05-17T01:06:25Z + + + 41.629 + 2017-05-17T01:06:26Z + + + 42.375 + 2017-05-17T01:06:27Z + + + 42.770 + 2017-05-17T01:06:28Z + + + 43.177 + 2017-05-17T01:06:29Z + + + 43.239 + 2017-05-17T01:06:30Z + + + 43.490 + 2017-05-17T01:06:31Z + + + 43.438 + 2017-05-17T01:06:32Z + + + 43.457 + 2017-05-17T01:06:33Z + + + 43.305 + 2017-05-17T01:06:34Z + + + 43.285 + 2017-05-17T01:06:35Z + + + 43.225 + 2017-05-17T01:06:36Z + + + 43.381 + 2017-05-17T01:06:37Z + + + 43.595 + 2017-05-17T01:06:38Z + + + 43.859 + 2017-05-17T01:06:39Z + + + 44.067 + 2017-05-17T01:06:40Z + + + 44.236 + 2017-05-17T01:06:41Z + + + 44.112 + 2017-05-17T01:06:42Z + + + 44.019 + 2017-05-17T01:06:43Z + + + 43.993 + 2017-05-17T01:06:44Z + + + 44.105 + 2017-05-17T01:06:45Z + + + 44.284 + 2017-05-17T01:06:46Z + + + 44.516 + 2017-05-17T01:06:47Z + + + 44.575 + 2017-05-17T01:06:48Z + + + 44.536 + 2017-05-17T01:06:49Z + + + 44.643 + 2017-05-17T01:06:50Z + + + 44.768 + 2017-05-17T01:06:51Z + + + 44.944 + 2017-05-17T01:06:52Z + + + 45.034 + 2017-05-17T01:06:53Z + + + 45.161 + 2017-05-17T01:06:54Z + + + 45.343 + 2017-05-17T01:06:55Z + + + 45.341 + 2017-05-17T01:06:56Z + + + 45.464 + 2017-05-17T01:06:57Z + + + 45.617 + 2017-05-17T01:06:58Z + + + 45.929 + 2017-05-17T01:06:59Z + + + 46.152 + 2017-05-17T01:07:00Z + + + 46.550 + 2017-05-17T01:07:01Z + + + 46.608 + 2017-05-17T01:07:02Z + + + 46.623 + 2017-05-17T01:07:03Z + + + 46.807 + 2017-05-17T01:07:04Z + + + 46.977 + 2017-05-17T01:07:05Z + + + 47.310 + 2017-05-17T01:07:06Z + + + 47.566 + 2017-05-17T01:07:07Z + + + 47.877 + 2017-05-17T01:07:08Z + + + 48.052 + 2017-05-17T01:07:09Z + + + 48.425 + 2017-05-17T01:07:10Z + + + 48.767 + 2017-05-17T01:07:11Z + + + 48.944 + 2017-05-17T01:07:12Z + + + 49.163 + 2017-05-17T01:07:13Z + + + 49.439 + 2017-05-17T01:07:14Z + + + 49.639 + 2017-05-17T01:07:15Z + + + 49.745 + 2017-05-17T01:07:16Z + + + 49.866 + 2017-05-17T01:07:17Z + + + 50.015 + 2017-05-17T01:07:18Z + + + 50.109 + 2017-05-17T01:07:19Z + + + 50.278 + 2017-05-17T01:07:20Z + + + 50.509 + 2017-05-17T01:07:21Z + + + 50.645 + 2017-05-17T01:07:22Z + + + 50.573 + 2017-05-17T01:07:23Z + + + 50.453 + 2017-05-17T01:07:24Z + + + 50.484 + 2017-05-17T01:07:25Z + + + 50.370 + 2017-05-17T01:07:26Z + + + 50.354 + 2017-05-17T01:07:27Z + + + 50.221 + 2017-05-17T01:07:28Z + + + 50.036 + 2017-05-17T01:07:29Z + + + 50.042 + 2017-05-17T01:07:30Z + + + 49.978 + 2017-05-17T01:07:31Z + + + 49.869 + 2017-05-17T01:07:32Z + + + 49.838 + 2017-05-17T01:07:33Z + + + 49.849 + 2017-05-17T01:07:34Z + + + 50.060 + 2017-05-17T01:07:35Z + + + 50.202 + 2017-05-17T01:07:36Z + + + 50.237 + 2017-05-17T01:07:37Z + + + 50.207 + 2017-05-17T01:07:38Z + + + 50.339 + 2017-05-17T01:07:39Z + + + 50.523 + 2017-05-17T01:07:40Z + + + 50.655 + 2017-05-17T01:07:41Z + + + 50.660 + 2017-05-17T01:07:42Z + + + 50.793 + 2017-05-17T01:07:43Z + + + 50.930 + 2017-05-17T01:07:44Z + + + 51.033 + 2017-05-17T01:07:45Z + + + 51.274 + 2017-05-17T01:07:46Z + + + 51.551 + 2017-05-17T01:07:47Z + + + 51.875 + 2017-05-17T01:07:48Z + + + 52.266 + 2017-05-17T01:07:50Z + + + 52.353 + 2017-05-17T01:07:51Z + + + 52.493 + 2017-05-17T01:07:52Z + + + 52.511 + 2017-05-17T01:07:53Z + + + 52.499 + 2017-05-17T01:07:54Z + + + 52.531 + 2017-05-17T01:07:55Z + + + 52.621 + 2017-05-17T01:07:56Z + + + 52.573 + 2017-05-17T01:07:57Z + + + 52.744 + 2017-05-17T01:07:58Z + + + 52.962 + 2017-05-17T01:07:59Z + + + 53.055 + 2017-05-17T01:08:00Z + + + 53.044 + 2017-05-17T01:08:01Z + + + 52.736 + 2017-05-17T01:08:02Z + + + 52.528 + 2017-05-17T01:08:03Z + + + 51.923 + 2017-05-17T01:08:06Z + + + 51.675 + 2017-05-17T01:08:07Z + + + 51.379 + 2017-05-17T01:08:08Z + + + 50.930 + 2017-05-17T01:08:09Z + + + 50.432 + 2017-05-17T01:08:10Z + + + 49.866 + 2017-05-17T01:08:11Z + + + 49.351 + 2017-05-17T01:08:12Z + + + 48.938 + 2017-05-17T01:08:13Z + + + 48.732 + 2017-05-17T01:08:14Z + + + 48.347 + 2017-05-17T01:08:15Z + + + 48.059 + 2017-05-17T01:08:16Z + + + 47.887 + 2017-05-17T01:08:17Z + + + 47.905 + 2017-05-17T01:08:18Z + + + 47.867 + 2017-05-17T01:08:19Z + + + 47.775 + 2017-05-17T01:08:20Z + + + 47.753 + 2017-05-17T01:08:21Z + + + 47.799 + 2017-05-17T01:08:22Z + + + 47.821 + 2017-05-17T01:08:23Z + + + 47.968 + 2017-05-17T01:08:24Z + + + 48.137 + 2017-05-17T01:08:25Z + + + 48.291 + 2017-05-17T01:08:26Z + + + 48.310 + 2017-05-17T01:08:27Z + + + 48.506 + 2017-05-17T01:08:28Z + + + 48.597 + 2017-05-17T01:08:29Z + + + 48.621 + 2017-05-17T01:08:30Z + + + 48.595 + 2017-05-17T01:08:31Z + + + 48.791 + 2017-05-17T01:08:32Z + + + 48.786 + 2017-05-17T01:08:33Z + + + 48.625 + 2017-05-17T01:08:34Z + + + 48.441 + 2017-05-17T01:08:35Z + + + 48.258 + 2017-05-17T01:08:36Z + + + 48.099 + 2017-05-17T01:08:37Z + + + 47.948 + 2017-05-17T01:08:38Z + + + 47.758 + 2017-05-17T01:08:39Z + + + 47.478 + 2017-05-17T01:08:40Z + + + 47.214 + 2017-05-17T01:08:41Z + + + 46.950 + 2017-05-17T01:08:42Z + + + 46.681 + 2017-05-17T01:08:43Z + + + 46.660 + 2017-05-17T01:08:44Z + + + 46.663 + 2017-05-17T01:08:45Z + + + 46.668 + 2017-05-17T01:08:46Z + + + 46.694 + 2017-05-17T01:08:47Z + + + 46.665 + 2017-05-17T01:08:48Z + + + 46.668 + 2017-05-17T01:08:49Z + + + 46.819 + 2017-05-17T01:08:50Z + + + 46.881 + 2017-05-17T01:08:51Z + + + 46.901 + 2017-05-17T01:08:52Z + + + 47.044 + 2017-05-17T01:08:53Z + + + 47.168 + 2017-05-17T01:08:54Z + + + 47.389 + 2017-05-17T01:08:55Z + + + 47.518 + 2017-05-17T01:08:56Z + + + 47.706 + 2017-05-17T01:08:57Z + + + 47.911 + 2017-05-17T01:08:58Z + + + 48.163 + 2017-05-17T01:08:59Z + + + 48.356 + 2017-05-17T01:09:00Z + + + 48.566 + 2017-05-17T01:09:01Z + + + 48.835 + 2017-05-17T01:09:02Z + + + 48.967 + 2017-05-17T01:09:03Z + + + 49.096 + 2017-05-17T01:09:04Z + + + 49.239 + 2017-05-17T01:09:05Z + + + 49.264 + 2017-05-17T01:09:06Z + + + 49.170 + 2017-05-17T01:09:07Z + + + 49.126 + 2017-05-17T01:09:08Z + + + 49.068 + 2017-05-17T01:09:09Z + + + 48.951 + 2017-05-17T01:09:10Z + + + 48.853 + 2017-05-17T01:09:11Z + + + 48.699 + 2017-05-17T01:09:12Z + + + 48.604 + 2017-05-17T01:09:13Z + + + 48.609 + 2017-05-17T01:09:14Z + + + 48.563 + 2017-05-17T01:09:15Z + + + 48.577 + 2017-05-17T01:09:16Z + + + 48.629 + 2017-05-17T01:09:17Z + + + 48.695 + 2017-05-17T01:09:18Z + + + 48.678 + 2017-05-17T01:09:19Z + + + 48.663 + 2017-05-17T01:09:20Z + + + 48.703 + 2017-05-17T01:09:21Z + + + 48.697 + 2017-05-17T01:09:22Z + + + 48.538 + 2017-05-17T01:09:23Z + + + 48.390 + 2017-05-17T01:09:24Z + + + 48.290 + 2017-05-17T01:09:25Z + + + 48.191 + 2017-05-17T01:09:26Z + + + 48.204 + 2017-05-17T01:09:27Z + + + 48.046 + 2017-05-17T01:09:28Z + + + 48.017 + 2017-05-17T01:09:29Z + + + 47.955 + 2017-05-17T01:09:30Z + + + 47.992 + 2017-05-17T01:09:31Z + + + 48.084 + 2017-05-17T01:09:32Z + + + 48.043 + 2017-05-17T01:09:33Z + + + 48.015 + 2017-05-17T01:09:34Z + + + 47.894 + 2017-05-17T01:09:35Z + + + 47.619 + 2017-05-17T01:09:36Z + + + 47.161 + 2017-05-17T01:09:37Z + + + 46.575 + 2017-05-17T01:09:38Z + + + 46.205 + 2017-05-17T01:09:39Z + + + 45.835 + 2017-05-17T01:09:40Z + + + 45.523 + 2017-05-17T01:09:41Z + + + 45.079 + 2017-05-17T01:09:42Z + + + 44.767 + 2017-05-17T01:09:43Z + + + 44.311 + 2017-05-17T01:09:44Z + + + 43.782 + 2017-05-17T01:09:45Z + + + 43.408 + 2017-05-17T01:09:46Z + + + 43.029 + 2017-05-17T01:09:47Z + + + 42.626 + 2017-05-17T01:09:48Z + + + 42.348 + 2017-05-17T01:09:49Z + + + 42.115 + 2017-05-17T01:09:50Z + + + 41.978 + 2017-05-17T01:09:51Z + + + 41.780 + 2017-05-17T01:09:52Z + + + 41.663 + 2017-05-17T01:09:53Z + + + 41.571 + 2017-05-17T01:09:54Z + + + 41.317 + 2017-05-17T01:09:55Z + + + 41.343 + 2017-05-17T01:09:56Z + + + 41.144 + 2017-05-17T01:09:57Z + + + 40.981 + 2017-05-17T01:09:58Z + + + 40.775 + 2017-05-17T01:09:59Z + + + 40.604 + 2017-05-17T01:10:00Z + + + 40.499 + 2017-05-17T01:10:01Z + + + 40.312 + 2017-05-17T01:10:02Z + + + 40.080 + 2017-05-17T01:10:03Z + + + 39.698 + 2017-05-17T01:10:04Z + + + 39.244 + 2017-05-17T01:10:05Z + + + 38.720 + 2017-05-17T01:10:06Z + + + 38.276 + 2017-05-17T01:10:07Z + + + 37.955 + 2017-05-17T01:10:08Z + + + 37.817 + 2017-05-17T01:10:09Z + + + 37.742 + 2017-05-17T01:10:10Z + + + 37.671 + 2017-05-17T01:10:11Z + + + 37.554 + 2017-05-17T01:10:12Z + + + 37.360 + 2017-05-17T01:10:13Z + + + 37.225 + 2017-05-17T01:10:14Z + + + 37.069 + 2017-05-17T01:10:15Z + + + 36.985 + 2017-05-17T01:10:16Z + + + 36.829 + 2017-05-17T01:10:17Z + + + 36.675 + 2017-05-17T01:10:18Z + + + 36.509 + 2017-05-17T01:10:19Z + + + 36.535 + 2017-05-17T01:10:20Z + + + 36.547 + 2017-05-17T01:10:21Z + + + 36.625 + 2017-05-17T01:10:22Z + + + 36.874 + 2017-05-17T01:10:23Z + + + 37.195 + 2017-05-17T01:10:24Z + + + 37.556 + 2017-05-17T01:10:25Z + + + 37.900 + 2017-05-17T01:10:26Z + + + 38.360 + 2017-05-17T01:10:27Z + + + 38.643 + 2017-05-17T01:10:28Z + + + 38.760 + 2017-05-17T01:10:29Z + + + 38.827 + 2017-05-17T01:10:30Z + + + 38.840 + 2017-05-17T01:10:31Z + + + 38.962 + 2017-05-17T01:10:32Z + + + 39.041 + 2017-05-17T01:10:33Z + + + 39.009 + 2017-05-17T01:10:34Z + + + 39.030 + 2017-05-17T01:10:35Z + + + 38.873 + 2017-05-17T01:10:36Z + + + 38.615 + 2017-05-17T01:10:37Z + + + 38.388 + 2017-05-17T01:10:38Z + + + 38.230 + 2017-05-17T01:10:39Z + + + 38.115 + 2017-05-17T01:10:40Z + + + 38.010 + 2017-05-17T01:10:41Z + + + 37.807 + 2017-05-17T01:10:42Z + + + 37.787 + 2017-05-17T01:10:43Z + + + 37.905 + 2017-05-17T01:10:44Z + + + 38.007 + 2017-05-17T01:10:45Z + + + 37.725 + 2017-05-17T01:10:46Z + + + 37.532 + 2017-05-17T01:10:47Z + + + 37.387 + 2017-05-17T01:10:48Z + + + 37.247 + 2017-05-17T01:10:49Z + + + 36.977 + 2017-05-17T01:10:50Z + + + 36.675 + 2017-05-17T01:10:51Z + + + 36.425 + 2017-05-17T01:10:52Z + + + 36.034 + 2017-05-17T01:10:53Z + + + 35.895 + 2017-05-17T01:10:54Z + + + 35.680 + 2017-05-17T01:10:55Z + + + 35.283 + 2017-05-17T01:10:56Z + + + 34.903 + 2017-05-17T01:10:57Z + + + 34.366 + 2017-05-17T01:10:58Z + + + 34.209 + 2017-05-17T01:10:59Z + + + 34.153 + 2017-05-17T01:11:00Z + + + 34.238 + 2017-05-17T01:11:01Z + + + 34.424 + 2017-05-17T01:11:03Z + + + 35.003 + 2017-05-17T01:11:04Z + + + 35.137 + 2017-05-17T01:11:05Z + + + 35.554 + 2017-05-17T01:11:06Z + + + 35.751 + 2017-05-17T01:11:07Z + + + 35.857 + 2017-05-17T01:11:08Z + + + 35.832 + 2017-05-17T01:11:09Z + + + 35.690 + 2017-05-17T01:11:10Z + + + 35.363 + 2017-05-17T01:11:11Z + + + 35.161 + 2017-05-17T01:11:12Z + + + 34.925 + 2017-05-17T01:11:13Z + + + 34.590 + 2017-05-17T01:11:14Z + + + 34.507 + 2017-05-17T01:11:15Z + + + 34.579 + 2017-05-17T01:11:16Z + + + 34.646 + 2017-05-17T01:11:17Z + + + 34.202 + 2017-05-17T01:11:19Z + + + 33.714 + 2017-05-17T01:11:20Z + + + 33.249 + 2017-05-17T01:11:21Z + + + 32.925 + 2017-05-17T01:11:22Z + + + 32.654 + 2017-05-17T01:11:23Z + + + 32.537 + 2017-05-17T01:11:24Z + + + 32.292 + 2017-05-17T01:11:25Z + + + 32.320 + 2017-05-17T01:11:26Z + + + 32.347 + 2017-05-17T01:11:27Z + + + 32.402 + 2017-05-17T01:11:28Z + + + 32.454 + 2017-05-17T01:11:29Z + + + 32.593 + 2017-05-17T01:11:30Z + + + 32.701 + 2017-05-17T01:11:31Z + + + 32.792 + 2017-05-17T01:11:32Z + + + 33.014 + 2017-05-17T01:11:33Z + + + 33.367 + 2017-05-17T01:11:34Z + + + 33.471 + 2017-05-17T01:11:35Z + + + 33.512 + 2017-05-17T01:11:36Z + + + 33.611 + 2017-05-17T01:11:37Z + + + 33.768 + 2017-05-17T01:11:38Z + + + 33.941 + 2017-05-17T01:11:39Z + + + 34.157 + 2017-05-17T01:11:40Z + + + 34.340 + 2017-05-17T01:11:41Z + + + 34.404 + 2017-05-17T01:11:42Z + + + 34.448 + 2017-05-17T01:11:43Z + + + 34.406 + 2017-05-17T01:11:44Z + + + 34.360 + 2017-05-17T01:11:45Z + + + 34.352 + 2017-05-17T01:11:46Z + + + 34.413 + 2017-05-17T01:11:47Z + + + 34.587 + 2017-05-17T01:11:48Z + + + 34.857 + 2017-05-17T01:11:49Z + + + 35.182 + 2017-05-17T01:11:50Z + + + 35.582 + 2017-05-17T01:11:51Z + + + 35.865 + 2017-05-17T01:11:52Z + + + 36.151 + 2017-05-17T01:11:53Z + + + 36.355 + 2017-05-17T01:11:54Z + + + 36.611 + 2017-05-17T01:11:55Z + + + 36.769 + 2017-05-17T01:11:56Z + + + 36.831 + 2017-05-17T01:11:57Z + + + 36.927 + 2017-05-17T01:11:58Z + + + 37.115 + 2017-05-17T01:11:59Z + + + 37.285 + 2017-05-17T01:12:00Z + + + 37.506 + 2017-05-17T01:12:01Z + + + 37.798 + 2017-05-17T01:12:02Z + + + 37.972 + 2017-05-17T01:12:03Z + + + 38.044 + 2017-05-17T01:12:04Z + + + 38.084 + 2017-05-17T01:12:05Z + + + 37.938 + 2017-05-17T01:12:06Z + + + 37.771 + 2017-05-17T01:12:07Z + + + 37.676 + 2017-05-17T01:12:08Z + + + 37.814 + 2017-05-17T01:12:09Z + + + 37.971 + 2017-05-17T01:12:10Z + + + 38.099 + 2017-05-17T01:12:11Z + + + 38.301 + 2017-05-17T01:12:12Z + + + 38.454 + 2017-05-17T01:12:13Z + + + 38.647 + 2017-05-17T01:12:14Z + + + 38.880 + 2017-05-17T01:12:15Z + + + 38.805 + 2017-05-17T01:12:16Z + + + 38.721 + 2017-05-17T01:12:17Z + + + 38.872 + 2017-05-17T01:12:18Z + + + 38.581 + 2017-05-17T01:12:19Z + + + 38.344 + 2017-05-17T01:12:20Z + + + 38.362 + 2017-05-17T01:12:21Z + + + 38.454 + 2017-05-17T01:12:22Z + + + 38.298 + 2017-05-17T01:12:23Z + + + 38.435 + 2017-05-17T01:12:24Z + + + 38.958 + 2017-05-17T01:12:25Z + + + 39.500 + 2017-05-17T01:12:26Z + + + 40.237 + 2017-05-17T01:12:27Z + + + 40.769 + 2017-05-17T01:12:28Z + + + 41.283 + 2017-05-17T01:12:29Z + + + 41.642 + 2017-05-17T01:12:30Z + + + 41.872 + 2017-05-17T01:12:31Z + + + 42.038 + 2017-05-17T01:12:32Z + + + 42.171 + 2017-05-17T01:12:33Z + + + 42.483 + 2017-05-17T01:12:34Z + + + 42.594 + 2017-05-17T01:12:35Z + + + 42.710 + 2017-05-17T01:12:36Z + + + 42.900 + 2017-05-17T01:12:37Z + + + 43.132 + 2017-05-17T01:12:38Z + + + 43.344 + 2017-05-17T01:12:39Z + + + 43.555 + 2017-05-17T01:12:40Z + + + 43.735 + 2017-05-17T01:12:41Z + + + 43.792 + 2017-05-17T01:12:42Z + + + 43.983 + 2017-05-17T01:12:43Z + + + 44.176 + 2017-05-17T01:12:44Z + + + 44.287 + 2017-05-17T01:12:45Z + + + 44.276 + 2017-05-17T01:12:46Z + + + 44.419 + 2017-05-17T01:12:47Z + + + 44.511 + 2017-05-17T01:12:48Z + + + 44.615 + 2017-05-17T01:12:49Z + + + 44.709 + 2017-05-17T01:12:50Z + + + 44.885 + 2017-05-17T01:12:51Z + + + 45.040 + 2017-05-17T01:12:52Z + + + 45.170 + 2017-05-17T01:12:53Z + + + 45.263 + 2017-05-17T01:12:54Z + + + 45.436 + 2017-05-17T01:12:55Z + + + 45.577 + 2017-05-17T01:12:56Z + + + 45.812 + 2017-05-17T01:12:57Z + + + 45.830 + 2017-05-17T01:12:58Z + + + 45.995 + 2017-05-17T01:12:59Z + + + 46.197 + 2017-05-17T01:13:00Z + + + 46.335 + 2017-05-17T01:13:01Z + + + 46.428 + 2017-05-17T01:13:02Z + + + 46.530 + 2017-05-17T01:13:03Z + + + 46.673 + 2017-05-17T01:13:04Z + + + 46.616 + 2017-05-17T01:13:05Z + + + 46.708 + 2017-05-17T01:13:06Z + + + 46.923 + 2017-05-17T01:13:07Z + + + 46.972 + 2017-05-17T01:13:08Z + + + 46.828 + 2017-05-17T01:13:09Z + + + 46.696 + 2017-05-17T01:13:10Z + + + 46.704 + 2017-05-17T01:13:11Z + + + 46.834 + 2017-05-17T01:13:12Z + + + 46.848 + 2017-05-17T01:13:13Z + + + 46.600 + 2017-05-17T01:13:14Z + + + 46.061 + 2017-05-17T01:13:15Z + + + 45.772 + 2017-05-17T01:13:16Z + + + 45.569 + 2017-05-17T01:13:17Z + + + 45.614 + 2017-05-17T01:13:18Z + + + 45.638 + 2017-05-17T01:13:19Z + + + 45.678 + 2017-05-17T01:13:20Z + + + 45.617 + 2017-05-17T01:13:21Z + + + 45.521 + 2017-05-17T01:13:22Z + + + 45.451 + 2017-05-17T01:13:23Z + + + 45.506 + 2017-05-17T01:13:24Z + + + 45.565 + 2017-05-17T01:13:25Z + + + 45.546 + 2017-05-17T01:13:26Z + + + 45.487 + 2017-05-17T01:13:27Z + + + 45.509 + 2017-05-17T01:13:28Z + + + 45.582 + 2017-05-17T01:13:29Z + + + 45.559 + 2017-05-17T01:13:30Z + + + 45.583 + 2017-05-17T01:13:31Z + + + 45.831 + 2017-05-17T01:13:32Z + + + 45.840 + 2017-05-17T01:13:33Z + + + 45.928 + 2017-05-17T01:13:34Z + + + 46.265 + 2017-05-17T01:13:35Z + + + 46.540 + 2017-05-17T01:13:36Z + + + 46.794 + 2017-05-17T01:13:37Z + + + 47.035 + 2017-05-17T01:13:38Z + + + 47.348 + 2017-05-17T01:13:39Z + + + 47.248 + 2017-05-17T01:13:40Z + + + 47.115 + 2017-05-17T01:13:41Z + + + 46.923 + 2017-05-17T01:13:42Z + + + 47.109 + 2017-05-17T01:13:43Z + + + 47.281 + 2017-05-17T01:13:44Z + + + 47.452 + 2017-05-17T01:13:45Z + + + 47.614 + 2017-05-17T01:13:46Z + + + 47.839 + 2017-05-17T01:13:47Z + + + 47.937 + 2017-05-17T01:13:48Z + + + 47.914 + 2017-05-17T01:13:49Z + + + 48.199 + 2017-05-17T01:13:50Z + + + 48.299 + 2017-05-17T01:13:51Z + + + 48.352 + 2017-05-17T01:13:52Z + + + 48.350 + 2017-05-17T01:13:53Z + + + 48.141 + 2017-05-17T01:13:54Z + + + 47.961 + 2017-05-17T01:13:55Z + + + 47.650 + 2017-05-17T01:13:56Z + + + 47.839 + 2017-05-17T01:13:57Z + + + 47.986 + 2017-05-17T01:13:58Z + + + 48.098 + 2017-05-17T01:13:59Z + + + 48.659 + 2017-05-17T01:14:00Z + + + 49.055 + 2017-05-17T01:14:01Z + + + 49.979 + 2017-05-17T01:14:02Z + + + 50.733 + 2017-05-17T01:14:03Z + + + 51.367 + 2017-05-17T01:14:04Z + + + 51.843 + 2017-05-17T01:14:05Z + + + 52.252 + 2017-05-17T01:14:06Z + + + 52.567 + 2017-05-17T01:14:07Z + + + 53.182 + 2017-05-17T01:14:08Z + + + 53.715 + 2017-05-17T01:14:09Z + + + 53.734 + 2017-05-17T01:14:10Z + + + 53.753 + 2017-05-17T01:14:11Z + + + 53.521 + 2017-05-17T01:14:12Z + + + 53.300 + 2017-05-17T01:14:13Z + + + 53.001 + 2017-05-17T01:14:14Z + + + 52.755 + 2017-05-17T01:14:15Z + + + 52.799 + 2017-05-17T01:14:16Z + + + 52.925 + 2017-05-17T01:14:17Z + + + 52.804 + 2017-05-17T01:14:18Z + + + 52.680 + 2017-05-17T01:14:19Z + + + 52.397 + 2017-05-17T01:14:20Z + + + 51.878 + 2017-05-17T01:14:21Z + + + 51.405 + 2017-05-17T01:14:22Z + + + 51.120 + 2017-05-17T01:14:23Z + + + 50.998 + 2017-05-17T01:14:24Z + + + 50.933 + 2017-05-17T01:14:25Z + + + 50.914 + 2017-05-17T01:14:26Z + + + 50.876 + 2017-05-17T01:14:27Z + + + 50.798 + 2017-05-17T01:14:28Z + + + 50.727 + 2017-05-17T01:14:29Z + + + 50.623 + 2017-05-17T01:14:30Z + + + 50.337 + 2017-05-17T01:14:32Z + + + 50.201 + 2017-05-17T01:14:33Z + + + 49.986 + 2017-05-17T01:14:34Z + + + 49.801 + 2017-05-17T01:14:35Z + + + 49.610 + 2017-05-17T01:14:36Z + + + 49.464 + 2017-05-17T01:14:37Z + + + 49.302 + 2017-05-17T01:14:38Z + + + 49.118 + 2017-05-17T01:14:39Z + + + 48.779 + 2017-05-17T01:14:40Z + + + 48.451 + 2017-05-17T01:14:41Z + + + 48.225 + 2017-05-17T01:14:42Z + + + 47.963 + 2017-05-17T01:14:43Z + + + 47.715 + 2017-05-17T01:14:44Z + + + 47.583 + 2017-05-17T01:14:45Z + + + 47.773 + 2017-05-17T01:14:46Z + + + 47.724 + 2017-05-17T01:14:48Z + + + 47.796 + 2017-05-17T01:14:49Z + + + 47.798 + 2017-05-17T01:14:50Z + + + 47.889 + 2017-05-17T01:14:51Z + + + 48.025 + 2017-05-17T01:14:52Z + + + 48.122 + 2017-05-17T01:14:53Z + + + 48.137 + 2017-05-17T01:14:54Z + + + 48.093 + 2017-05-17T01:14:55Z + + + 47.997 + 2017-05-17T01:14:56Z + + + 47.996 + 2017-05-17T01:14:57Z + + + 47.878 + 2017-05-17T01:14:58Z + + + 47.799 + 2017-05-17T01:14:59Z + + + 47.790 + 2017-05-17T01:15:00Z + + + 47.817 + 2017-05-17T01:15:01Z + + + 47.902 + 2017-05-17T01:15:02Z + + + 48.038 + 2017-05-17T01:15:03Z + + + 48.167 + 2017-05-17T01:15:04Z + + + 48.153 + 2017-05-17T01:15:05Z + + + 48.156 + 2017-05-17T01:15:06Z + + + 48.010 + 2017-05-17T01:15:07Z + + + 47.634 + 2017-05-17T01:15:08Z + + + 47.267 + 2017-05-17T01:15:09Z + + + 46.826 + 2017-05-17T01:15:10Z + + + 46.591 + 2017-05-17T01:15:11Z + + + 46.083 + 2017-05-17T01:15:12Z + + + 45.630 + 2017-05-17T01:15:13Z + + + 45.151 + 2017-05-17T01:15:14Z + + + 44.686 + 2017-05-17T01:15:15Z + + + 44.406 + 2017-05-17T01:15:16Z + + + 44.208 + 2017-05-17T01:15:17Z + + + 44.112 + 2017-05-17T01:15:18Z + + + 44.059 + 2017-05-17T01:15:19Z + + + 43.945 + 2017-05-17T01:15:20Z + + + 43.759 + 2017-05-17T01:15:21Z + + + 43.492 + 2017-05-17T01:15:22Z + + + 43.286 + 2017-05-17T01:15:23Z + + + 43.113 + 2017-05-17T01:15:24Z + + + 42.729 + 2017-05-17T01:15:25Z + + + 42.252 + 2017-05-17T01:15:26Z + + + 41.756 + 2017-05-17T01:15:27Z + + + 41.507 + 2017-05-17T01:15:28Z + + + 41.329 + 2017-05-17T01:15:29Z + + + 41.210 + 2017-05-17T01:15:30Z + + + 41.026 + 2017-05-17T01:15:31Z + + + 40.800 + 2017-05-17T01:15:32Z + + + 40.420 + 2017-05-17T01:15:33Z + + + 40.066 + 2017-05-17T01:15:34Z + + + 39.753 + 2017-05-17T01:15:35Z + + + 39.580 + 2017-05-17T01:15:36Z + + + 39.375 + 2017-05-17T01:15:37Z + + + 39.426 + 2017-05-17T01:15:38Z + + + 39.536 + 2017-05-17T01:15:39Z + + + 39.481 + 2017-05-17T01:15:40Z + + + 39.485 + 2017-05-17T01:15:41Z + + + 39.510 + 2017-05-17T01:15:42Z + + + 39.664 + 2017-05-17T01:15:43Z + + + 39.748 + 2017-05-17T01:15:44Z + + + 39.834 + 2017-05-17T01:15:45Z + + + 39.741 + 2017-05-17T01:15:46Z + + + 39.646 + 2017-05-17T01:15:47Z + + + 39.501 + 2017-05-17T01:15:48Z + + + 39.408 + 2017-05-17T01:15:49Z + + + 39.233 + 2017-05-17T01:15:50Z + + + 39.098 + 2017-05-17T01:15:51Z + + + 38.977 + 2017-05-17T01:15:52Z + + + 38.913 + 2017-05-17T01:15:53Z + + + 38.764 + 2017-05-17T01:15:54Z + + + 38.580 + 2017-05-17T01:15:55Z + + + 38.273 + 2017-05-17T01:15:56Z + + + 38.219 + 2017-05-17T01:15:57Z + + + 38.189 + 2017-05-17T01:15:58Z + + + 38.687 + 2017-05-17T01:15:59Z + + + 39.031 + 2017-05-17T01:16:00Z + + + 39.385 + 2017-05-17T01:16:01Z + + + 39.770 + 2017-05-17T01:16:02Z + + + 40.104 + 2017-05-17T01:16:03Z + + + 40.340 + 2017-05-17T01:16:04Z + + + 40.536 + 2017-05-17T01:16:05Z + + + 40.772 + 2017-05-17T01:16:06Z + + + 40.866 + 2017-05-17T01:16:07Z + + + 40.900 + 2017-05-17T01:16:08Z + + + 40.956 + 2017-05-17T01:16:09Z + + + 40.894 + 2017-05-17T01:16:10Z + + + 40.882 + 2017-05-17T01:16:11Z + + + 40.951 + 2017-05-17T01:16:12Z + + + 40.880 + 2017-05-17T01:16:13Z + + + 40.961 + 2017-05-17T01:16:14Z + + + 41.005 + 2017-05-17T01:16:15Z + + + 41.008 + 2017-05-17T01:16:16Z + + + 41.220 + 2017-05-17T01:16:17Z + + + 41.278 + 2017-05-17T01:16:18Z + + + 41.398 + 2017-05-17T01:16:19Z + + + 41.418 + 2017-05-17T01:16:20Z + + + 41.484 + 2017-05-17T01:16:21Z + + + 41.523 + 2017-05-17T01:16:22Z + + + 41.745 + 2017-05-17T01:16:23Z + + + 42.505 + 2017-05-17T01:16:25Z + + + 42.776 + 2017-05-17T01:16:26Z + + + 42.953 + 2017-05-17T01:16:27Z + + + 43.218 + 2017-05-17T01:16:28Z + + + 43.214 + 2017-05-17T01:16:29Z + + + 43.060 + 2017-05-17T01:16:30Z + + + 42.884 + 2017-05-17T01:16:31Z + + + 42.603 + 2017-05-17T01:16:32Z + + + 42.629 + 2017-05-17T01:16:33Z + + + 42.956 + 2017-05-17T01:16:34Z + + + 43.269 + 2017-05-17T01:16:35Z + + + 43.642 + 2017-05-17T01:16:36Z + + + 43.882 + 2017-05-17T01:16:37Z + + + 44.223 + 2017-05-17T01:16:38Z + + + 44.649 + 2017-05-17T01:16:39Z + + + 45.193 + 2017-05-17T01:16:40Z + + + 45.906 + 2017-05-17T01:16:41Z + + + 46.143 + 2017-05-17T01:16:42Z + + + 46.359 + 2017-05-17T01:16:43Z + + + 46.540 + 2017-05-17T01:16:44Z + + + 46.651 + 2017-05-17T01:16:45Z + + + 46.731 + 2017-05-17T01:16:46Z + + + 46.786 + 2017-05-17T01:16:47Z + + + 46.721 + 2017-05-17T01:16:48Z + + + 46.687 + 2017-05-17T01:16:49Z + + + 46.561 + 2017-05-17T01:16:50Z + + + 46.255 + 2017-05-17T01:16:51Z + + + 46.158 + 2017-05-17T01:16:52Z + + + 45.891 + 2017-05-17T01:16:53Z + + + 45.615 + 2017-05-17T01:16:54Z + + + 45.250 + 2017-05-17T01:16:55Z + + + 44.972 + 2017-05-17T01:16:56Z + + + 44.731 + 2017-05-17T01:16:57Z + + + 44.390 + 2017-05-17T01:16:58Z + + + 44.244 + 2017-05-17T01:16:59Z + + + 44.279 + 2017-05-17T01:17:00Z + + + 44.496 + 2017-05-17T01:17:01Z + + + 44.925 + 2017-05-17T01:17:02Z + + + 45.250 + 2017-05-17T01:17:03Z + + + 45.538 + 2017-05-17T01:17:04Z + + + 45.777 + 2017-05-17T01:17:05Z + + + 46.004 + 2017-05-17T01:17:06Z + + + 46.200 + 2017-05-17T01:17:07Z + + + 46.409 + 2017-05-17T01:17:08Z + + + 46.541 + 2017-05-17T01:17:09Z + + + 46.777 + 2017-05-17T01:17:10Z + + + 46.972 + 2017-05-17T01:17:11Z + + + 47.129 + 2017-05-17T01:17:12Z + + + 47.111 + 2017-05-17T01:17:13Z + + + 46.998 + 2017-05-17T01:17:14Z + + + 46.835 + 2017-05-17T01:17:15Z + + + 46.638 + 2017-05-17T01:17:16Z + + + 46.649 + 2017-05-17T01:17:17Z + + + 46.451 + 2017-05-17T01:17:18Z + + + 46.227 + 2017-05-17T01:17:19Z + + + 46.090 + 2017-05-17T01:17:20Z + + + 45.891 + 2017-05-17T01:17:21Z + + + 45.656 + 2017-05-17T01:17:22Z + + + 45.425 + 2017-05-17T01:17:23Z + + + 45.143 + 2017-05-17T01:17:24Z + + + 45.043 + 2017-05-17T01:17:25Z + + + 44.836 + 2017-05-17T01:17:26Z + + + 44.999 + 2017-05-17T01:17:27Z + + + 45.050 + 2017-05-17T01:17:28Z + + + 44.657 + 2017-05-17T01:17:29Z + + + 44.338 + 2017-05-17T01:17:30Z + + + 44.396 + 2017-05-17T01:17:31Z + + + 43.953 + 2017-05-17T01:17:32Z + + + 42.954 + 2017-05-17T01:17:33Z + + + 41.928 + 2017-05-17T01:17:34Z + + + 41.104 + 2017-05-17T01:17:35Z + + + 40.646 + 2017-05-17T01:17:36Z + + + 40.444 + 2017-05-17T01:17:37Z + + + 40.435 + 2017-05-17T01:17:38Z + + + 40.702 + 2017-05-17T01:17:39Z + + + 40.795 + 2017-05-17T01:17:40Z + + + 40.906 + 2017-05-17T01:17:41Z + + + 40.992 + 2017-05-17T01:17:42Z + + + 41.088 + 2017-05-17T01:17:43Z + + + 41.245 + 2017-05-17T01:17:44Z + + + 41.384 + 2017-05-17T01:17:45Z + + + 41.415 + 2017-05-17T01:17:46Z + + + 41.429 + 2017-05-17T01:17:47Z + + + 41.396 + 2017-05-17T01:17:48Z + + + 41.438 + 2017-05-17T01:17:49Z + + + 41.423 + 2017-05-17T01:17:50Z + + + 41.611 + 2017-05-17T01:17:51Z + + + 41.561 + 2017-05-17T01:17:52Z + + + 41.540 + 2017-05-17T01:17:53Z + + + 41.447 + 2017-05-17T01:17:54Z + + + 41.416 + 2017-05-17T01:17:55Z + + + 41.528 + 2017-05-17T01:17:56Z + + + 41.720 + 2017-05-17T01:17:57Z + + + 41.896 + 2017-05-17T01:17:58Z + + + 42.176 + 2017-05-17T01:17:59Z + + + 42.383 + 2017-05-17T01:18:00Z + + + 42.612 + 2017-05-17T01:18:01Z + + + 42.722 + 2017-05-17T01:18:02Z + + + 42.836 + 2017-05-17T01:18:03Z + + + 42.928 + 2017-05-17T01:18:04Z + + + 43.070 + 2017-05-17T01:18:05Z + + + 43.216 + 2017-05-17T01:18:06Z + + + 43.559 + 2017-05-17T01:18:07Z + + + 43.781 + 2017-05-17T01:18:08Z + + + 43.752 + 2017-05-17T01:18:09Z + + + 43.846 + 2017-05-17T01:18:10Z + + + 44.097 + 2017-05-17T01:18:11Z + + + 44.196 + 2017-05-17T01:18:12Z + + + 44.396 + 2017-05-17T01:18:13Z + + + 44.352 + 2017-05-17T01:18:14Z + + + 44.205 + 2017-05-17T01:18:15Z + + + 44.103 + 2017-05-17T01:18:16Z + + + 44.068 + 2017-05-17T01:18:17Z + + + 44.394 + 2017-05-17T01:18:18Z + + + 44.678 + 2017-05-17T01:18:19Z + + + 44.884 + 2017-05-17T01:18:20Z + + + 45.103 + 2017-05-17T01:18:21Z + + + 45.236 + 2017-05-17T01:18:22Z + + + 45.247 + 2017-05-17T01:18:23Z + + + 45.345 + 2017-05-17T01:18:24Z + + + 45.382 + 2017-05-17T01:18:25Z + + + 45.476 + 2017-05-17T01:18:26Z + + + 45.539 + 2017-05-17T01:18:27Z + + + 45.527 + 2017-05-17T01:18:28Z + + + 45.522 + 2017-05-17T01:18:29Z + + + 45.757 + 2017-05-17T01:18:30Z + + + 45.979 + 2017-05-17T01:18:31Z + + + 45.929 + 2017-05-17T01:18:32Z + + + 46.152 + 2017-05-17T01:18:33Z + + + 46.447 + 2017-05-17T01:18:34Z + + + 46.762 + 2017-05-17T01:18:35Z + + + 46.952 + 2017-05-17T01:18:36Z + + + 46.870 + 2017-05-17T01:18:37Z + + + 46.721 + 2017-05-17T01:18:38Z + + + 46.964 + 2017-05-17T01:18:39Z + + + 47.261 + 2017-05-17T01:18:40Z + + + 47.241 + 2017-05-17T01:18:41Z + + + 47.319 + 2017-05-17T01:18:42Z + + + 47.448 + 2017-05-17T01:18:43Z + + + 47.467 + 2017-05-17T01:18:44Z + + + 47.494 + 2017-05-17T01:18:45Z + + + 47.382 + 2017-05-17T01:18:46Z + + + 47.275 + 2017-05-17T01:18:47Z + + + 47.156 + 2017-05-17T01:18:48Z + + + 47.028 + 2017-05-17T01:18:49Z + + + 46.925 + 2017-05-17T01:18:50Z + + + 46.669 + 2017-05-17T01:18:51Z + + + 46.455 + 2017-05-17T01:18:52Z + + + 46.466 + 2017-05-17T01:18:53Z + + + 46.507 + 2017-05-17T01:18:54Z + + + 46.472 + 2017-05-17T01:18:55Z + + + 46.667 + 2017-05-17T01:18:56Z + + + 46.974 + 2017-05-17T01:18:57Z + + + 47.207 + 2017-05-17T01:18:58Z + + + 47.416 + 2017-05-17T01:18:59Z + + + 47.513 + 2017-05-17T01:19:00Z + + + 47.658 + 2017-05-17T01:19:01Z + + + 48.004 + 2017-05-17T01:19:02Z + + + 48.202 + 2017-05-17T01:19:03Z + + + 48.379 + 2017-05-17T01:19:04Z + + + 48.706 + 2017-05-17T01:19:05Z + + + 48.930 + 2017-05-17T01:19:06Z + + + 49.078 + 2017-05-17T01:19:07Z + + + 49.055 + 2017-05-17T01:19:08Z + + + 48.818 + 2017-05-17T01:19:09Z + + + 48.802 + 2017-05-17T01:19:11Z + + + 48.904 + 2017-05-17T01:19:12Z + + + 48.885 + 2017-05-17T01:19:13Z + + + 48.742 + 2017-05-17T01:19:14Z + + + 48.749 + 2017-05-17T01:19:15Z + + + 48.660 + 2017-05-17T01:19:16Z + + + 48.486 + 2017-05-17T01:19:17Z + + + 48.287 + 2017-05-17T01:19:18Z + + + 48.205 + 2017-05-17T01:19:19Z + + + 48.179 + 2017-05-17T01:19:20Z + + + 48.165 + 2017-05-17T01:19:21Z + + + 48.157 + 2017-05-17T01:19:22Z + + + 48.141 + 2017-05-17T01:19:23Z + + + 48.080 + 2017-05-17T01:19:24Z + + + 48.205 + 2017-05-17T01:19:25Z + + + 48.385 + 2017-05-17T01:19:26Z + + + 48.359 + 2017-05-17T01:19:27Z + + + 48.352 + 2017-05-17T01:19:28Z + + + 48.320 + 2017-05-17T01:19:29Z + + + 48.157 + 2017-05-17T01:19:30Z + + + 48.050 + 2017-05-17T01:19:31Z + + + 47.917 + 2017-05-17T01:19:32Z + + + 47.847 + 2017-05-17T01:19:33Z + + + 47.710 + 2017-05-17T01:19:34Z + + + 47.266 + 2017-05-17T01:19:35Z + + + 46.381 + 2017-05-17T01:19:37Z + + + 46.068 + 2017-05-17T01:19:38Z + + + 45.794 + 2017-05-17T01:19:39Z + + + 45.476 + 2017-05-17T01:19:40Z + + + 45.183 + 2017-05-17T01:19:41Z + + + 44.849 + 2017-05-17T01:19:42Z + + + 44.385 + 2017-05-17T01:19:43Z + + + 43.999 + 2017-05-17T01:19:44Z + + + 43.599 + 2017-05-17T01:19:45Z + + + 43.129 + 2017-05-17T01:19:46Z + + + 42.602 + 2017-05-17T01:19:47Z + + + 42.314 + 2017-05-17T01:19:48Z + + + 42.176 + 2017-05-17T01:19:49Z + + + 42.184 + 2017-05-17T01:19:50Z + + + 42.285 + 2017-05-17T01:19:51Z + + + 42.245 + 2017-05-17T01:19:52Z + + + 42.061 + 2017-05-17T01:19:53Z + + + 41.722 + 2017-05-17T01:19:54Z + + + 41.410 + 2017-05-17T01:19:55Z + + + 41.223 + 2017-05-17T01:19:56Z + + + 41.281 + 2017-05-17T01:19:57Z + + + 41.251 + 2017-05-17T01:19:58Z + + + 41.076 + 2017-05-17T01:19:59Z + + + 40.892 + 2017-05-17T01:20:00Z + + + 40.789 + 2017-05-17T01:20:01Z + + + 40.720 + 2017-05-17T01:20:02Z + + + 41.042 + 2017-05-17T01:20:03Z + + + 41.641 + 2017-05-17T01:20:04Z + + + 41.876 + 2017-05-17T01:20:05Z + + + 42.021 + 2017-05-17T01:20:06Z + + + 42.171 + 2017-05-17T01:20:07Z + + + 42.251 + 2017-05-17T01:20:08Z + + + 42.544 + 2017-05-17T01:20:09Z + + + 42.800 + 2017-05-17T01:20:10Z + + + 43.038 + 2017-05-17T01:20:11Z + + + 43.481 + 2017-05-17T01:20:12Z + + + 43.870 + 2017-05-17T01:20:13Z + + + 44.068 + 2017-05-17T01:20:14Z + + + 44.149 + 2017-05-17T01:20:15Z + + + 44.273 + 2017-05-17T01:20:16Z + + + 44.492 + 2017-05-17T01:20:17Z + + + 44.670 + 2017-05-17T01:20:18Z + + + 44.856 + 2017-05-17T01:20:19Z + + + 45.062 + 2017-05-17T01:20:20Z + + + 45.170 + 2017-05-17T01:20:21Z + + + 45.377 + 2017-05-17T01:20:22Z + + + 45.631 + 2017-05-17T01:20:23Z + + + 45.866 + 2017-05-17T01:20:24Z + + + 46.062 + 2017-05-17T01:20:25Z + + + 46.273 + 2017-05-17T01:20:26Z + + + 46.333 + 2017-05-17T01:20:27Z + + + 46.382 + 2017-05-17T01:20:28Z + + + 46.369 + 2017-05-17T01:20:29Z + + + 46.285 + 2017-05-17T01:20:30Z + + + 46.222 + 2017-05-17T01:20:31Z + + + 46.102 + 2017-05-17T01:20:32Z + + + 46.228 + 2017-05-17T01:20:33Z + + + 46.310 + 2017-05-17T01:20:34Z + + + 46.403 + 2017-05-17T01:20:35Z + + + 46.781 + 2017-05-17T01:20:37Z + + + 46.969 + 2017-05-17T01:20:38Z + + + 47.139 + 2017-05-17T01:20:39Z + + + 47.007 + 2017-05-17T01:20:40Z + + + 46.898 + 2017-05-17T01:20:41Z + + + 46.736 + 2017-05-17T01:20:42Z + + + 46.469 + 2017-05-17T01:20:43Z + + + 46.244 + 2017-05-17T01:20:44Z + + + 46.041 + 2017-05-17T01:20:45Z + + + 45.806 + 2017-05-17T01:20:46Z + + + 45.662 + 2017-05-17T01:20:47Z + + + 45.486 + 2017-05-17T01:20:48Z + + + 45.283 + 2017-05-17T01:20:49Z + + + 45.006 + 2017-05-17T01:20:50Z + + + 44.720 + 2017-05-17T01:20:51Z + + + 44.581 + 2017-05-17T01:20:52Z + + + 44.499 + 2017-05-17T01:20:53Z + + + 44.436 + 2017-05-17T01:20:54Z + + + 44.385 + 2017-05-17T01:20:55Z + + + 44.369 + 2017-05-17T01:20:56Z + + + 44.396 + 2017-05-17T01:20:57Z + + + 44.511 + 2017-05-17T01:20:58Z + + + 44.601 + 2017-05-17T01:20:59Z + + + 44.506 + 2017-05-17T01:21:00Z + + + 44.357 + 2017-05-17T01:21:01Z + + + 44.180 + 2017-05-17T01:21:02Z + + + 43.865 + 2017-05-17T01:21:03Z + + + 43.480 + 2017-05-17T01:21:04Z + + + 43.060 + 2017-05-17T01:21:05Z + + + 42.477 + 2017-05-17T01:21:06Z + + + 41.853 + 2017-05-17T01:21:07Z + + + 41.170 + 2017-05-17T01:21:08Z + + + 40.541 + 2017-05-17T01:21:09Z + + + 39.945 + 2017-05-17T01:21:10Z + + + 39.408 + 2017-05-17T01:21:11Z + + + 38.792 + 2017-05-17T01:21:12Z + + + 38.416 + 2017-05-17T01:21:13Z + + + 38.152 + 2017-05-17T01:21:14Z + + + 37.904 + 2017-05-17T01:21:15Z + + + 37.859 + 2017-05-17T01:21:16Z + + + 37.887 + 2017-05-17T01:21:17Z + + + 37.970 + 2017-05-17T01:21:18Z + + + 37.985 + 2017-05-17T01:21:19Z + + + 37.845 + 2017-05-17T01:21:20Z + + + 37.792 + 2017-05-17T01:21:21Z + + + 37.766 + 2017-05-17T01:21:22Z + + + 37.772 + 2017-05-17T01:21:23Z + + + 37.897 + 2017-05-17T01:21:25Z + + + 37.929 + 2017-05-17T01:21:26Z + + + 37.973 + 2017-05-17T01:21:27Z + + + 38.074 + 2017-05-17T01:21:28Z + + + 38.098 + 2017-05-17T01:21:29Z + + + 37.903 + 2017-05-17T01:21:30Z + + + 37.676 + 2017-05-17T01:21:31Z + + + 37.564 + 2017-05-17T01:21:32Z + + + 37.504 + 2017-05-17T01:21:33Z + + + 37.346 + 2017-05-17T01:21:34Z + + + 37.390 + 2017-05-17T01:21:35Z + + + 37.358 + 2017-05-17T01:21:36Z + + + 37.452 + 2017-05-17T01:21:37Z + + + 37.514 + 2017-05-17T01:21:38Z + + + 37.640 + 2017-05-17T01:21:39Z + + + 37.709 + 2017-05-17T01:21:40Z + + + 37.763 + 2017-05-17T01:21:41Z + + + 37.713 + 2017-05-17T01:21:42Z + + + 37.614 + 2017-05-17T01:21:43Z + + + 37.519 + 2017-05-17T01:21:44Z + + + 37.431 + 2017-05-17T01:21:45Z + + + 37.281 + 2017-05-17T01:21:46Z + + + 37.222 + 2017-05-17T01:21:47Z + + + 37.245 + 2017-05-17T01:21:48Z + + + 37.285 + 2017-05-17T01:21:49Z + + + 37.606 + 2017-05-17T01:21:50Z + + + 38.125 + 2017-05-17T01:21:51Z + + + 38.653 + 2017-05-17T01:21:52Z + + + 39.235 + 2017-05-17T01:21:53Z + + + 39.941 + 2017-05-17T01:21:54Z + + + 40.455 + 2017-05-17T01:21:55Z + + + 40.935 + 2017-05-17T01:21:56Z + + + 41.337 + 2017-05-17T01:21:57Z + + + 41.852 + 2017-05-17T01:21:58Z + + + 42.353 + 2017-05-17T01:21:59Z + + + 42.658 + 2017-05-17T01:22:00Z + + + 42.839 + 2017-05-17T01:22:01Z + + + 43.117 + 2017-05-17T01:22:02Z + + + 43.409 + 2017-05-17T01:22:03Z + + + 43.698 + 2017-05-17T01:22:04Z + + + 43.812 + 2017-05-17T01:22:05Z + + + 43.965 + 2017-05-17T01:22:06Z + + + 44.263 + 2017-05-17T01:22:07Z + + + 44.420 + 2017-05-17T01:22:08Z + + + 44.399 + 2017-05-17T01:22:09Z + + + 44.179 + 2017-05-17T01:22:10Z + + + 43.868 + 2017-05-17T01:22:11Z + + + 43.340 + 2017-05-17T01:22:12Z + + + 43.039 + 2017-05-17T01:22:13Z + + + 42.958 + 2017-05-17T01:22:14Z + + + 42.895 + 2017-05-17T01:22:15Z + + + 42.811 + 2017-05-17T01:22:16Z + + + 42.574 + 2017-05-17T01:22:17Z + + + 42.665 + 2017-05-17T01:22:18Z + + + 42.412 + 2017-05-17T01:22:19Z + + + 42.268 + 2017-05-17T01:22:20Z + + + 42.151 + 2017-05-17T01:22:21Z + + + 42.007 + 2017-05-17T01:22:22Z + + + 41.721 + 2017-05-17T01:22:23Z + + + 41.389 + 2017-05-17T01:22:24Z + + + 41.151 + 2017-05-17T01:22:25Z + + + 41.118 + 2017-05-17T01:22:26Z + + + 41.081 + 2017-05-17T01:22:27Z + + + 40.979 + 2017-05-17T01:22:28Z + + + 40.911 + 2017-05-17T01:22:29Z + + + 40.636 + 2017-05-17T01:22:30Z + + + 40.299 + 2017-05-17T01:22:31Z + + + 39.840 + 2017-05-17T01:22:32Z + + + 39.392 + 2017-05-17T01:22:33Z + + + 39.100 + 2017-05-17T01:22:34Z + + + 38.982 + 2017-05-17T01:22:35Z + + + 38.995 + 2017-05-17T01:22:36Z + + + 39.355 + 2017-05-17T01:22:37Z + + + 40.049 + 2017-05-17T01:22:38Z + + + 40.375 + 2017-05-17T01:22:39Z + + + 40.529 + 2017-05-17T01:22:40Z + + + 40.501 + 2017-05-17T01:22:41Z + + + 40.646 + 2017-05-17T01:22:42Z + + + 40.607 + 2017-05-17T01:22:43Z + + + 40.620 + 2017-05-17T01:22:44Z + + + 40.190 + 2017-05-17T01:22:45Z + + + 39.632 + 2017-05-17T01:22:46Z + + + 39.168 + 2017-05-17T01:22:47Z + + + 38.836 + 2017-05-17T01:22:48Z + + + 38.879 + 2017-05-17T01:22:49Z + + + 39.055 + 2017-05-17T01:22:50Z + + + 39.289 + 2017-05-17T01:22:51Z + + + 39.617 + 2017-05-17T01:22:52Z + + + 39.820 + 2017-05-17T01:22:53Z + + + 39.682 + 2017-05-17T01:22:54Z + + + 39.541 + 2017-05-17T01:22:55Z + + + 39.332 + 2017-05-17T01:22:56Z + + + 39.175 + 2017-05-17T01:22:57Z + + + 39.205 + 2017-05-17T01:22:58Z + + + 39.304 + 2017-05-17T01:22:59Z + + + 39.411 + 2017-05-17T01:23:00Z + + + 39.527 + 2017-05-17T01:23:02Z + + + 39.497 + 2017-05-17T01:23:03Z + + + 39.432 + 2017-05-17T01:23:04Z + + + 39.386 + 2017-05-17T01:23:05Z + + + 39.265 + 2017-05-17T01:23:06Z + + + 39.096 + 2017-05-17T01:23:07Z + + + 39.025 + 2017-05-17T01:23:08Z + + + 38.919 + 2017-05-17T01:23:09Z + + + 38.878 + 2017-05-17T01:23:10Z + + + 38.834 + 2017-05-17T01:23:11Z + + + 38.704 + 2017-05-17T01:23:12Z + + + 38.765 + 2017-05-17T01:23:13Z + + + 39.124 + 2017-05-17T01:23:14Z + + + 39.160 + 2017-05-17T01:23:15Z + + + 39.240 + 2017-05-17T01:23:16Z + + + 39.373 + 2017-05-17T01:23:18Z + + + 39.397 + 2017-05-17T01:23:19Z + + + 39.334 + 2017-05-17T01:23:20Z + + + 39.280 + 2017-05-17T01:23:21Z + + + 39.455 + 2017-05-17T01:23:22Z + + + 39.397 + 2017-05-17T01:23:23Z + + + 38.954 + 2017-05-17T01:23:24Z + + + 38.375 + 2017-05-17T01:23:25Z + + + 37.750 + 2017-05-17T01:23:26Z + + + 37.243 + 2017-05-17T01:23:27Z + + + 36.726 + 2017-05-17T01:23:28Z + + + 36.261 + 2017-05-17T01:23:29Z + + + 36.067 + 2017-05-17T01:23:30Z + + + 35.847 + 2017-05-17T01:23:31Z + + + 35.559 + 2017-05-17T01:23:32Z + + + 35.226 + 2017-05-17T01:23:33Z + + + 34.892 + 2017-05-17T01:23:34Z + + + 34.558 + 2017-05-17T01:23:35Z + + + 34.128 + 2017-05-17T01:23:36Z + + + 33.710 + 2017-05-17T01:23:37Z + + + 33.277 + 2017-05-17T01:23:38Z + + + 32.855 + 2017-05-17T01:23:39Z + + + 32.777 + 2017-05-17T01:23:40Z + + + 33.038 + 2017-05-17T01:23:41Z + + + 33.068 + 2017-05-17T01:23:42Z + + + 33.330 + 2017-05-17T01:23:43Z + + + 33.537 + 2017-05-17T01:23:44Z + + + 33.767 + 2017-05-17T01:23:45Z + + + 34.059 + 2017-05-17T01:23:46Z + + + 34.409 + 2017-05-17T01:23:47Z + + + 35.030 + 2017-05-17T01:23:49Z + + + 35.367 + 2017-05-17T01:23:51Z + + + 35.550 + 2017-05-17T01:23:52Z + + + 35.569 + 2017-05-17T01:23:53Z + + + 35.544 + 2017-05-17T01:23:54Z + + + 35.691 + 2017-05-17T01:23:55Z + + + 35.754 + 2017-05-17T01:23:56Z + + + 35.863 + 2017-05-17T01:23:57Z + + + 35.931 + 2017-05-17T01:23:58Z + + + 35.987 + 2017-05-17T01:23:59Z + + + 36.202 + 2017-05-17T01:24:00Z + + + 36.336 + 2017-05-17T01:24:01Z + + + 36.422 + 2017-05-17T01:24:02Z + + + 36.473 + 2017-05-17T01:24:03Z + + + 36.533 + 2017-05-17T01:24:04Z + + + 36.596 + 2017-05-17T01:24:05Z + + + 36.592 + 2017-05-17T01:24:06Z + + + 36.553 + 2017-05-17T01:24:07Z + + + 36.517 + 2017-05-17T01:24:08Z + + + 36.615 + 2017-05-17T01:24:09Z + + + 36.825 + 2017-05-17T01:24:10Z + + + 37.056 + 2017-05-17T01:24:11Z + + + 37.158 + 2017-05-17T01:24:12Z + + + 37.310 + 2017-05-17T01:24:13Z + + + 37.532 + 2017-05-17T01:24:14Z + + + 37.683 + 2017-05-17T01:24:15Z + + + 37.895 + 2017-05-17T01:24:16Z + + + 38.063 + 2017-05-17T01:24:17Z + + + 38.140 + 2017-05-17T01:24:18Z + + + 38.239 + 2017-05-17T01:24:19Z + + + 38.328 + 2017-05-17T01:24:20Z + + + 38.374 + 2017-05-17T01:24:21Z + + + 38.537 + 2017-05-17T01:24:22Z + + + 38.729 + 2017-05-17T01:24:23Z + + + 38.853 + 2017-05-17T01:24:24Z + + + 38.903 + 2017-05-17T01:24:25Z + + + 38.957 + 2017-05-17T01:24:26Z + + + 39.109 + 2017-05-17T01:24:27Z + + + 39.277 + 2017-05-17T01:24:28Z + + + 39.384 + 2017-05-17T01:24:29Z + + + 39.480 + 2017-05-17T01:24:30Z + + + 39.727 + 2017-05-17T01:24:31Z + + + 39.897 + 2017-05-17T01:24:32Z + + + 40.257 + 2017-05-17T01:24:33Z + + + 40.524 + 2017-05-17T01:24:34Z + + + 40.774 + 2017-05-17T01:24:35Z + + + 41.107 + 2017-05-17T01:24:36Z + + + 41.518 + 2017-05-17T01:24:37Z + + + 41.744 + 2017-05-17T01:24:38Z + + + 42.107 + 2017-05-17T01:24:39Z + + + 42.380 + 2017-05-17T01:24:40Z + + + 42.670 + 2017-05-17T01:24:41Z + + + 43.062 + 2017-05-17T01:24:42Z + + + 43.384 + 2017-05-17T01:24:43Z + + + 43.738 + 2017-05-17T01:24:44Z + + + 44.182 + 2017-05-17T01:24:45Z + + + 44.374 + 2017-05-17T01:24:46Z + + + 44.656 + 2017-05-17T01:24:47Z + + + 44.974 + 2017-05-17T01:24:48Z + + + 45.396 + 2017-05-17T01:24:49Z + + + 45.773 + 2017-05-17T01:24:50Z + + + 46.146 + 2017-05-17T01:24:51Z + + + 46.609 + 2017-05-17T01:24:52Z + + + 46.920 + 2017-05-17T01:24:53Z + + + 47.206 + 2017-05-17T01:24:54Z + + + 47.525 + 2017-05-17T01:24:55Z + + + 47.555 + 2017-05-17T01:24:56Z + + + 47.619 + 2017-05-17T01:24:57Z + + + 47.695 + 2017-05-17T01:24:58Z + + + 47.819 + 2017-05-17T01:24:59Z + + + 47.928 + 2017-05-17T01:25:00Z + + + 47.957 + 2017-05-17T01:25:01Z + + + 48.102 + 2017-05-17T01:25:02Z + + + 48.201 + 2017-05-17T01:25:03Z + + + 48.368 + 2017-05-17T01:25:04Z + + + 48.317 + 2017-05-17T01:25:05Z + + + 48.352 + 2017-05-17T01:25:06Z + + + 48.240 + 2017-05-17T01:25:07Z + + + 48.139 + 2017-05-17T01:25:08Z + + + 48.078 + 2017-05-17T01:25:09Z + + + 48.027 + 2017-05-17T01:25:10Z + + + 47.833 + 2017-05-17T01:25:11Z + + + 47.657 + 2017-05-17T01:25:12Z + + + 47.563 + 2017-05-17T01:25:13Z + + + 47.595 + 2017-05-17T01:25:14Z + + + 47.609 + 2017-05-17T01:25:15Z + + + 47.683 + 2017-05-17T01:25:16Z + + + 48.067 + 2017-05-17T01:25:17Z + + + 48.501 + 2017-05-17T01:25:18Z + + + 48.937 + 2017-05-17T01:25:19Z + + + 49.062 + 2017-05-17T01:25:20Z + + + 49.129 + 2017-05-17T01:25:21Z + + + 49.080 + 2017-05-17T01:25:22Z + + + 49.240 + 2017-05-17T01:25:23Z + + + 49.408 + 2017-05-17T01:25:24Z + + + 49.634 + 2017-05-17T01:25:25Z + + + 49.882 + 2017-05-17T01:25:26Z + + + 50.074 + 2017-05-17T01:25:27Z + + + 50.329 + 2017-05-17T01:25:28Z + + + 50.381 + 2017-05-17T01:25:29Z + + + 50.539 + 2017-05-17T01:25:30Z + + + 50.388 + 2017-05-17T01:25:31Z + + + 50.276 + 2017-05-17T01:25:32Z + + + 49.848 + 2017-05-17T01:25:33Z + + + 49.755 + 2017-05-17T01:25:34Z + + + 49.745 + 2017-05-17T01:25:35Z + + + 49.818 + 2017-05-17T01:25:36Z + + + 49.652 + 2017-05-17T01:25:37Z + + + 49.542 + 2017-05-17T01:25:38Z + + + 49.565 + 2017-05-17T01:25:39Z + + + 49.708 + 2017-05-17T01:25:40Z + + + 49.841 + 2017-05-17T01:25:41Z + + + 50.142 + 2017-05-17T01:25:42Z + + + 50.428 + 2017-05-17T01:25:43Z + + + 50.616 + 2017-05-17T01:25:44Z + + + 50.728 + 2017-05-17T01:25:45Z + + + 50.792 + 2017-05-17T01:25:46Z + + + 50.908 + 2017-05-17T01:25:47Z + + + 51.011 + 2017-05-17T01:25:48Z + + + 51.116 + 2017-05-17T01:25:49Z + + + 51.212 + 2017-05-17T01:25:50Z + + + 51.320 + 2017-05-17T01:25:51Z + + + 51.424 + 2017-05-17T01:25:52Z + + + 51.494 + 2017-05-17T01:25:53Z + + + 51.508 + 2017-05-17T01:25:54Z + + + 51.408 + 2017-05-17T01:25:55Z + + + 51.425 + 2017-05-17T01:25:56Z + + + 51.314 + 2017-05-17T01:25:57Z + + + 51.127 + 2017-05-17T01:25:58Z + + + 50.885 + 2017-05-17T01:25:59Z + + + 50.617 + 2017-05-17T01:26:00Z + + + 50.337 + 2017-05-17T01:26:01Z + + + 50.023 + 2017-05-17T01:26:02Z + + + 49.626 + 2017-05-17T01:26:03Z + + + 49.195 + 2017-05-17T01:26:04Z + + + 48.733 + 2017-05-17T01:26:05Z + + + 48.294 + 2017-05-17T01:26:06Z + + + 47.902 + 2017-05-17T01:26:07Z + + + 47.748 + 2017-05-17T01:26:08Z + + + 47.875 + 2017-05-17T01:26:09Z + + + 48.056 + 2017-05-17T01:26:10Z + + + 48.170 + 2017-05-17T01:26:11Z + + + 48.144 + 2017-05-17T01:26:12Z + + + 48.063 + 2017-05-17T01:26:13Z + + + 48.016 + 2017-05-17T01:26:14Z + + + 47.866 + 2017-05-17T01:26:15Z + + + 47.721 + 2017-05-17T01:26:16Z + + + 47.664 + 2017-05-17T01:26:17Z + + + 47.416 + 2017-05-17T01:26:18Z + + + 47.046 + 2017-05-17T01:26:19Z + + + 46.232 + 2017-05-17T01:26:21Z + + + 45.867 + 2017-05-17T01:26:22Z + + + 45.516 + 2017-05-17T01:26:23Z + + + 45.201 + 2017-05-17T01:26:24Z + + + 44.878 + 2017-05-17T01:26:25Z + + + 44.566 + 2017-05-17T01:26:26Z + + + 44.133 + 2017-05-17T01:26:27Z + + + 43.924 + 2017-05-17T01:26:28Z + + + 43.812 + 2017-05-17T01:26:29Z + + + 43.717 + 2017-05-17T01:26:30Z + + + 43.529 + 2017-05-17T01:26:31Z + + + 43.618 + 2017-05-17T01:26:32Z + + + 43.783 + 2017-05-17T01:26:33Z + + + 43.918 + 2017-05-17T01:26:34Z + + + 43.930 + 2017-05-17T01:26:35Z + + + 43.982 + 2017-05-17T01:26:36Z + + + 43.998 + 2017-05-17T01:26:37Z + + + 44.082 + 2017-05-17T01:26:38Z + + + 44.202 + 2017-05-17T01:26:39Z + + + 44.167 + 2017-05-17T01:26:40Z + + + 43.969 + 2017-05-17T01:26:41Z + + + 44.037 + 2017-05-17T01:26:42Z + + + 44.293 + 2017-05-17T01:26:43Z + + + 44.061 + 2017-05-17T01:26:44Z + + + 43.674 + 2017-05-17T01:26:45Z + + + 43.374 + 2017-05-17T01:26:46Z + + + 43.172 + 2017-05-17T01:26:47Z + + + 42.927 + 2017-05-17T01:26:48Z + + + 42.775 + 2017-05-17T01:26:49Z + + + 42.556 + 2017-05-17T01:26:50Z + + + 42.523 + 2017-05-17T01:26:51Z + + + 42.507 + 2017-05-17T01:26:52Z + + + 42.428 + 2017-05-17T01:26:53Z + + + 42.373 + 2017-05-17T01:26:54Z + + + 42.126 + 2017-05-17T01:26:55Z + + + 41.980 + 2017-05-17T01:26:56Z + + + 41.888 + 2017-05-17T01:26:57Z + + + 42.060 + 2017-05-17T01:26:58Z + + + 42.114 + 2017-05-17T01:26:59Z + + + 42.127 + 2017-05-17T01:27:00Z + + + 41.983 + 2017-05-17T01:27:01Z + + + 42.017 + 2017-05-17T01:27:02Z + + + 42.125 + 2017-05-17T01:27:03Z + + + 42.226 + 2017-05-17T01:27:04Z + + + 42.080 + 2017-05-17T01:27:05Z + + + 41.725 + 2017-05-17T01:27:06Z + + + 41.419 + 2017-05-17T01:27:07Z + + + 41.887 + 2017-05-17T01:27:09Z + + + 42.293 + 2017-05-17T01:27:10Z + + + 42.643 + 2017-05-17T01:27:11Z + + + 42.930 + 2017-05-17T01:27:12Z + + + 43.220 + 2017-05-17T01:27:13Z + + + 43.390 + 2017-05-17T01:27:14Z + + + 43.581 + 2017-05-17T01:27:15Z + + + 43.899 + 2017-05-17T01:27:16Z + + + 44.232 + 2017-05-17T01:27:17Z + + + 44.019 + 2017-05-17T01:27:18Z + + + 43.741 + 2017-05-17T01:27:19Z + + + 43.381 + 2017-05-17T01:27:20Z + + + 43.016 + 2017-05-17T01:27:21Z + + + 42.607 + 2017-05-17T01:27:22Z + + + 42.108 + 2017-05-17T01:27:23Z + + + 42.118 + 2017-05-17T01:27:24Z + + + 42.148 + 2017-05-17T01:27:25Z + + + 42.317 + 2017-05-17T01:27:26Z + + + 42.482 + 2017-05-17T01:27:27Z + + + 42.634 + 2017-05-17T01:27:28Z + + + 42.815 + 2017-05-17T01:27:29Z + + + 43.113 + 2017-05-17T01:27:30Z + + + 43.329 + 2017-05-17T01:27:31Z + + + 43.390 + 2017-05-17T01:27:32Z + + + 43.514 + 2017-05-17T01:27:33Z + + + 43.714 + 2017-05-17T01:27:34Z + + + 43.883 + 2017-05-17T01:27:35Z + + + 44.009 + 2017-05-17T01:27:36Z + + + 44.139 + 2017-05-17T01:27:37Z + + + 44.297 + 2017-05-17T01:27:38Z + + + 44.408 + 2017-05-17T01:27:39Z + + + 44.587 + 2017-05-17T01:27:40Z + + + 44.797 + 2017-05-17T01:27:41Z + + + 45.043 + 2017-05-17T01:27:42Z + + + 45.325 + 2017-05-17T01:27:43Z + + + 45.622 + 2017-05-17T01:27:44Z + + + 45.839 + 2017-05-17T01:27:45Z + + + 46.068 + 2017-05-17T01:27:46Z + + + 46.164 + 2017-05-17T01:27:47Z + + + 46.014 + 2017-05-17T01:27:48Z + + + 45.648 + 2017-05-17T01:27:49Z + + + 45.315 + 2017-05-17T01:27:50Z + + + 44.852 + 2017-05-17T01:27:51Z + + + 44.397 + 2017-05-17T01:27:52Z + + + 44.007 + 2017-05-17T01:27:53Z + + + 43.865 + 2017-05-17T01:27:54Z + + + 43.675 + 2017-05-17T01:27:55Z + + + 43.397 + 2017-05-17T01:27:56Z + + + 43.071 + 2017-05-17T01:27:57Z + + + 42.874 + 2017-05-17T01:27:58Z + + + 42.452 + 2017-05-17T01:27:59Z + + + 42.188 + 2017-05-17T01:28:00Z + + + 41.880 + 2017-05-17T01:28:01Z + + + 41.554 + 2017-05-17T01:28:02Z + + + 41.182 + 2017-05-17T01:28:03Z + + + 40.878 + 2017-05-17T01:28:04Z + + + 40.613 + 2017-05-17T01:28:05Z + + + 40.296 + 2017-05-17T01:28:06Z + + + 39.813 + 2017-05-17T01:28:07Z + + + 39.481 + 2017-05-17T01:28:08Z + + + 39.358 + 2017-05-17T01:28:09Z + + + 39.284 + 2017-05-17T01:28:10Z + + + 38.950 + 2017-05-17T01:28:11Z + + + 38.754 + 2017-05-17T01:28:12Z + + + 38.409 + 2017-05-17T01:28:13Z + + + 38.456 + 2017-05-17T01:28:14Z + + + 38.410 + 2017-05-17T01:28:15Z + + + 38.380 + 2017-05-17T01:28:16Z + + + 38.369 + 2017-05-17T01:28:17Z + + + 38.213 + 2017-05-17T01:28:18Z + + + 38.056 + 2017-05-17T01:28:19Z + + + 38.203 + 2017-05-17T01:28:20Z + + + 38.349 + 2017-05-17T01:28:21Z + + + 38.339 + 2017-05-17T01:28:22Z + + + 38.392 + 2017-05-17T01:28:23Z + + + 38.890 + 2017-05-17T01:28:24Z + + + 39.742 + 2017-05-17T01:28:25Z + + + 40.532 + 2017-05-17T01:28:26Z + + + 41.158 + 2017-05-17T01:28:27Z + + + 41.832 + 2017-05-17T01:28:28Z + + + 42.166 + 2017-05-17T01:28:29Z + + + 42.306 + 2017-05-17T01:28:30Z + + + 42.038 + 2017-05-17T01:28:31Z + + + 41.840 + 2017-05-17T01:28:32Z + + + 41.688 + 2017-05-17T01:28:33Z + + + 41.602 + 2017-05-17T01:28:34Z + + + 41.484 + 2017-05-17T01:28:35Z + + + 41.242 + 2017-05-17T01:28:36Z + + + 40.958 + 2017-05-17T01:28:37Z + + + 40.744 + 2017-05-17T01:28:38Z + + + 40.548 + 2017-05-17T01:28:39Z + + + 40.354 + 2017-05-17T01:28:40Z + + + 40.184 + 2017-05-17T01:28:41Z + + + 40.185 + 2017-05-17T01:28:42Z + + + 40.228 + 2017-05-17T01:28:43Z + + + 40.279 + 2017-05-17T01:28:44Z + + + 40.276 + 2017-05-17T01:28:45Z + + + 40.093 + 2017-05-17T01:28:46Z + + + 40.042 + 2017-05-17T01:28:47Z + + + 39.915 + 2017-05-17T01:28:48Z + + + 39.779 + 2017-05-17T01:28:49Z + + + 39.647 + 2017-05-17T01:28:50Z + + + 39.521 + 2017-05-17T01:28:51Z + + + 39.394 + 2017-05-17T01:28:52Z + + + 39.270 + 2017-05-17T01:28:53Z + + + 39.155 + 2017-05-17T01:28:54Z + + + 39.041 + 2017-05-17T01:28:55Z + + + 38.927 + 2017-05-17T01:28:56Z + + + 38.801 + 2017-05-17T01:28:57Z + + + 38.663 + 2017-05-17T01:28:58Z + + + 38.517 + 2017-05-17T01:28:59Z + + + 38.371 + 2017-05-17T01:29:00Z + + + 38.225 + 2017-05-17T01:29:01Z + + + 38.080 + 2017-05-17T01:29:02Z + + + 37.938 + 2017-05-17T01:29:03Z + + + 37.802 + 2017-05-17T01:29:04Z + + + 37.683 + 2017-05-17T01:29:05Z + + + 37.574 + 2017-05-17T01:29:06Z + + + 37.456 + 2017-05-17T01:29:07Z + + + 37.349 + 2017-05-17T01:29:08Z + + + 37.250 + 2017-05-17T01:29:09Z + + + 37.111 + 2017-05-17T01:29:10Z + + + 37.027 + 2017-05-17T01:29:11Z + + + 36.950 + 2017-05-17T01:29:12Z + + + 36.879 + 2017-05-17T01:29:13Z + + + 36.805 + 2017-05-17T01:29:14Z + + + 36.761 + 2017-05-17T01:29:15Z + + + 36.709 + 2017-05-17T01:29:16Z + + + 36.643 + 2017-05-17T01:29:17Z + + + 36.578 + 2017-05-17T01:29:18Z + + + 36.503 + 2017-05-17T01:29:19Z + + + 36.431 + 2017-05-17T01:29:20Z + + + 36.346 + 2017-05-17T01:29:21Z + + + 36.260 + 2017-05-17T01:29:22Z + + + 36.160 + 2017-05-17T01:29:23Z + + + 36.072 + 2017-05-17T01:29:24Z + + + 35.964 + 2017-05-17T01:29:25Z + + + 35.839 + 2017-05-17T01:29:26Z + + + 35.752 + 2017-05-17T01:29:27Z + + + 35.663 + 2017-05-17T01:29:28Z + + + 35.580 + 2017-05-17T01:29:29Z + + + 35.511 + 2017-05-17T01:29:30Z + + + 35.428 + 2017-05-17T01:29:31Z + + + 35.372 + 2017-05-17T01:29:32Z + + + 35.334 + 2017-05-17T01:29:33Z + + + 35.314 + 2017-05-17T01:29:34Z + + + 35.307 + 2017-05-17T01:29:35Z + + + 35.293 + 2017-05-17T01:29:36Z + + + 35.288 + 2017-05-17T01:29:37Z + + + 35.258 + 2017-05-17T01:29:38Z + + + 35.191 + 2017-05-17T01:29:39Z + + + + diff --git a/src/test/data/20170518.gpx b/src/test/data/20170518.gpx new file mode 100644 index 0000000..32ec1cb --- /dev/null +++ b/src/test/data/20170518.gpx @@ -0,0 +1,6208 @@ + + + + ACTIVE LOG092126 + + + 83.455 + 2017-05-18T00:21:25Z + + + 82.968 + 2017-05-18T00:21:26Z + + + 82.084 + 2017-05-18T00:21:28Z + + + 81.598 + 2017-05-18T00:21:29Z + + + 81.086 + 2017-05-18T00:21:30Z + + + 80.517 + 2017-05-18T00:21:31Z + + + 80.207 + 2017-05-18T00:21:32Z + + + 79.826 + 2017-05-18T00:21:33Z + + + 79.443 + 2017-05-18T00:21:34Z + + + 77.951 + 2017-05-18T00:21:37Z + + + 77.464 + 2017-05-18T00:21:38Z + + + 76.627 + 2017-05-18T00:21:40Z + + + 75.457 + 2017-05-18T00:21:43Z + + + 75.154 + 2017-05-18T00:21:44Z + + + 74.335 + 2017-05-18T00:21:49Z + + + 74.189 + 2017-05-18T00:21:50Z + + + 73.966 + 2017-05-18T00:21:51Z + + + 73.134 + 2017-05-18T00:21:54Z + + + 73.140 + 2017-05-18T00:21:56Z + + + 73.475 + 2017-05-18T00:21:59Z + + + 73.624 + 2017-05-18T00:22:00Z + + + 73.642 + 2017-05-18T00:22:04Z + + + 73.633 + 2017-05-18T00:22:05Z + + + 73.489 + 2017-05-18T00:22:09Z + + + 82.719 + 2017-05-18T00:22:10Z + + + 75.938 + 2017-05-18T00:22:13Z + + + 69.962 + 2017-05-18T00:22:15Z + + + 67.924 + 2017-05-18T00:22:18Z + + + 67.810 + 2017-05-18T00:22:19Z + + + 67.810 + 2017-05-18T00:22:24Z + + + 67.831 + 2017-05-18T00:22:25Z + + + 67.910 + 2017-05-18T00:22:26Z + + + 67.622 + 2017-05-18T00:22:27Z + + + 67.432 + 2017-05-18T00:22:28Z + + + 67.313 + 2017-05-18T00:22:29Z + + + 67.146 + 2017-05-18T00:22:30Z + + + 67.020 + 2017-05-18T00:22:31Z + + + 66.824 + 2017-05-18T00:22:32Z + + + 66.714 + 2017-05-18T00:22:33Z + + + 66.567 + 2017-05-18T00:22:34Z + + + 66.350 + 2017-05-18T00:22:35Z + + + 66.143 + 2017-05-18T00:22:36Z + + + 65.958 + 2017-05-18T00:22:37Z + + + 65.998 + 2017-05-18T00:22:38Z + + + 65.905 + 2017-05-18T00:22:39Z + + + 65.688 + 2017-05-18T00:22:40Z + + + 65.495 + 2017-05-18T00:22:41Z + + + 65.335 + 2017-05-18T00:22:42Z + + + 65.346 + 2017-05-18T00:22:43Z + + + 65.320 + 2017-05-18T00:22:44Z + + + 65.291 + 2017-05-18T00:22:45Z + + + 65.267 + 2017-05-18T00:22:46Z + + + 65.369 + 2017-05-18T00:22:47Z + + + 65.465 + 2017-05-18T00:22:48Z + + + 59.141 + 2017-05-18T00:22:49Z + + + 57.383 + 2017-05-18T00:22:50Z + + + 56.962 + 2017-05-18T00:22:51Z + + + 56.812 + 2017-05-18T00:22:52Z + + + 56.667 + 2017-05-18T00:22:53Z + + + 57.037 + 2017-05-18T00:22:54Z + + + 57.361 + 2017-05-18T00:22:55Z + + + 57.511 + 2017-05-18T00:22:56Z + + + 57.404 + 2017-05-18T00:22:57Z + + + 57.573 + 2017-05-18T00:22:58Z + + + 57.686 + 2017-05-18T00:22:59Z + + + 57.625 + 2017-05-18T00:23:00Z + + + 57.609 + 2017-05-18T00:23:01Z + + + 57.453 + 2017-05-18T00:23:02Z + + + 57.332 + 2017-05-18T00:23:03Z + + + 57.301 + 2017-05-18T00:23:04Z + + + 57.160 + 2017-05-18T00:23:05Z + + + 56.944 + 2017-05-18T00:23:06Z + + + 56.834 + 2017-05-18T00:23:07Z + + + 56.674 + 2017-05-18T00:23:08Z + + + 56.604 + 2017-05-18T00:23:09Z + + + 56.640 + 2017-05-18T00:23:10Z + + + 56.662 + 2017-05-18T00:23:11Z + + + 56.688 + 2017-05-18T00:23:12Z + + + 56.660 + 2017-05-18T00:23:13Z + + + 56.660 + 2017-05-18T00:23:14Z + + + 56.763 + 2017-05-18T00:23:15Z + + + 56.858 + 2017-05-18T00:23:16Z + + + 56.917 + 2017-05-18T00:23:17Z + + + 57.003 + 2017-05-18T00:23:18Z + + + 56.979 + 2017-05-18T00:23:19Z + + + 56.998 + 2017-05-18T00:23:20Z + + + 57.064 + 2017-05-18T00:23:21Z + + + 57.164 + 2017-05-18T00:23:22Z + + + 57.336 + 2017-05-18T00:23:23Z + + + 57.422 + 2017-05-18T00:23:24Z + + + 57.580 + 2017-05-18T00:23:25Z + + + 57.809 + 2017-05-18T00:23:26Z + + + 58.170 + 2017-05-18T00:23:27Z + + + 58.161 + 2017-05-18T00:23:28Z + + + 58.071 + 2017-05-18T00:23:29Z + + + 58.005 + 2017-05-18T00:23:30Z + + + 57.886 + 2017-05-18T00:23:31Z + + + 57.714 + 2017-05-18T00:23:32Z + + + 57.625 + 2017-05-18T00:23:33Z + + + 57.595 + 2017-05-18T00:23:34Z + + + 57.409 + 2017-05-18T00:23:35Z + + + 57.144 + 2017-05-18T00:23:36Z + + + 57.063 + 2017-05-18T00:23:37Z + + + 57.149 + 2017-05-18T00:23:38Z + + + 56.678 + 2017-05-18T00:23:39Z + + + 56.180 + 2017-05-18T00:23:40Z + + + 55.476 + 2017-05-18T00:23:41Z + + + 54.350 + 2017-05-18T00:23:42Z + + + 53.611 + 2017-05-18T00:23:43Z + + + 53.155 + 2017-05-18T00:23:44Z + + + 52.874 + 2017-05-18T00:23:45Z + + + 52.491 + 2017-05-18T00:23:46Z + + + 52.067 + 2017-05-18T00:23:47Z + + + 51.935 + 2017-05-18T00:23:48Z + + + 52.213 + 2017-05-18T00:23:49Z + + + 52.099 + 2017-05-18T00:23:50Z + + + 52.031 + 2017-05-18T00:23:51Z + + + 52.248 + 2017-05-18T00:23:52Z + + + 52.578 + 2017-05-18T00:23:53Z + + + 52.794 + 2017-05-18T00:23:54Z + + + 52.782 + 2017-05-18T00:23:55Z + + + 53.019 + 2017-05-18T00:23:56Z + + + 53.235 + 2017-05-18T00:23:57Z + + + 53.422 + 2017-05-18T00:23:58Z + + + 53.468 + 2017-05-18T00:23:59Z + + + 53.576 + 2017-05-18T00:24:00Z + + + 53.692 + 2017-05-18T00:24:01Z + + + 53.843 + 2017-05-18T00:24:02Z + + + 54.086 + 2017-05-18T00:24:03Z + + + 54.355 + 2017-05-18T00:24:04Z + + + 54.669 + 2017-05-18T00:24:05Z + + + 54.823 + 2017-05-18T00:24:06Z + + + 54.911 + 2017-05-18T00:24:07Z + + + 54.973 + 2017-05-18T00:24:08Z + + + 54.877 + 2017-05-18T00:24:09Z + + + 54.735 + 2017-05-18T00:24:10Z + + + 54.661 + 2017-05-18T00:24:11Z + + + 54.530 + 2017-05-18T00:24:12Z + + + 54.280 + 2017-05-18T00:24:13Z + + + 54.064 + 2017-05-18T00:24:14Z + + + 53.927 + 2017-05-18T00:24:15Z + + + 53.636 + 2017-05-18T00:24:16Z + + + 53.200 + 2017-05-18T00:24:17Z + + + 52.835 + 2017-05-18T00:24:18Z + + + 52.483 + 2017-05-18T00:24:19Z + + + 52.521 + 2017-05-18T00:24:20Z + + + 52.431 + 2017-05-18T00:24:21Z + + + 52.067 + 2017-05-18T00:24:22Z + + + 51.582 + 2017-05-18T00:24:23Z + + + 51.135 + 2017-05-18T00:24:24Z + + + 50.508 + 2017-05-18T00:24:25Z + + + 49.916 + 2017-05-18T00:24:26Z + + + 49.372 + 2017-05-18T00:24:27Z + + + 48.778 + 2017-05-18T00:24:28Z + + + 48.099 + 2017-05-18T00:24:29Z + + + 47.403 + 2017-05-18T00:24:30Z + + + 46.868 + 2017-05-18T00:24:31Z + + + 46.262 + 2017-05-18T00:24:32Z + + + 45.842 + 2017-05-18T00:24:33Z + + + 45.284 + 2017-05-18T00:24:34Z + + + 44.912 + 2017-05-18T00:24:35Z + + + 44.768 + 2017-05-18T00:24:36Z + + + 44.501 + 2017-05-18T00:24:37Z + + + 44.307 + 2017-05-18T00:24:38Z + + + 44.138 + 2017-05-18T00:24:39Z + + + 44.023 + 2017-05-18T00:24:40Z + + + 43.948 + 2017-05-18T00:24:41Z + + + 44.115 + 2017-05-18T00:24:42Z + + + 44.249 + 2017-05-18T00:24:43Z + + + 44.492 + 2017-05-18T00:24:44Z + + + 44.660 + 2017-05-18T00:24:45Z + + + 44.780 + 2017-05-18T00:24:46Z + + + 44.801 + 2017-05-18T00:24:47Z + + + 44.762 + 2017-05-18T00:24:48Z + + + 44.829 + 2017-05-18T00:24:49Z + + + 44.905 + 2017-05-18T00:24:50Z + + + 44.904 + 2017-05-18T00:24:51Z + + + 44.972 + 2017-05-18T00:24:52Z + + + 45.100 + 2017-05-18T00:24:53Z + + + 45.241 + 2017-05-18T00:24:54Z + + + 45.381 + 2017-05-18T00:24:55Z + + + 45.386 + 2017-05-18T00:24:56Z + + + 45.412 + 2017-05-18T00:24:57Z + + + 45.559 + 2017-05-18T00:24:58Z + + + 45.551 + 2017-05-18T00:24:59Z + + + 45.572 + 2017-05-18T00:25:00Z + + + 45.732 + 2017-05-18T00:25:01Z + + + 45.934 + 2017-05-18T00:25:02Z + + + 46.239 + 2017-05-18T00:25:03Z + + + 46.662 + 2017-05-18T00:25:04Z + + + 47.003 + 2017-05-18T00:25:05Z + + + 47.459 + 2017-05-18T00:25:06Z + + + 47.984 + 2017-05-18T00:25:07Z + + + 48.572 + 2017-05-18T00:25:08Z + + + 49.088 + 2017-05-18T00:25:09Z + + + 49.574 + 2017-05-18T00:25:10Z + + + 50.001 + 2017-05-18T00:25:11Z + + + 50.469 + 2017-05-18T00:25:12Z + + + 50.930 + 2017-05-18T00:25:13Z + + + 51.343 + 2017-05-18T00:25:14Z + + + 51.680 + 2017-05-18T00:25:15Z + + + 51.951 + 2017-05-18T00:25:16Z + + + 52.251 + 2017-05-18T00:25:17Z + + + 52.625 + 2017-05-18T00:25:18Z + + + 53.032 + 2017-05-18T00:25:19Z + + + 53.314 + 2017-05-18T00:25:20Z + + + 53.659 + 2017-05-18T00:25:21Z + + + 53.981 + 2017-05-18T00:25:22Z + + + 54.362 + 2017-05-18T00:25:23Z + + + 54.746 + 2017-05-18T00:25:24Z + + + 55.104 + 2017-05-18T00:25:25Z + + + 55.431 + 2017-05-18T00:25:26Z + + + 55.772 + 2017-05-18T00:25:27Z + + + 56.249 + 2017-05-18T00:25:28Z + + + 56.791 + 2017-05-18T00:25:29Z + + + 57.414 + 2017-05-18T00:25:30Z + + + 57.968 + 2017-05-18T00:25:31Z + + + 58.428 + 2017-05-18T00:25:32Z + + + 58.809 + 2017-05-18T00:25:33Z + + + 59.406 + 2017-05-18T00:25:34Z + + + 59.820 + 2017-05-18T00:25:35Z + + + 60.215 + 2017-05-18T00:25:36Z + + + 60.443 + 2017-05-18T00:25:37Z + + + 60.715 + 2017-05-18T00:25:38Z + + + 60.935 + 2017-05-18T00:25:39Z + + + 61.044 + 2017-05-18T00:25:40Z + + + 60.972 + 2017-05-18T00:25:41Z + + + 61.007 + 2017-05-18T00:25:42Z + + + 60.977 + 2017-05-18T00:25:43Z + + + 60.930 + 2017-05-18T00:25:44Z + + + 60.889 + 2017-05-18T00:25:45Z + + + 60.864 + 2017-05-18T00:25:46Z + + + 60.826 + 2017-05-18T00:25:47Z + + + 60.690 + 2017-05-18T00:25:48Z + + + 60.458 + 2017-05-18T00:25:49Z + + + 60.249 + 2017-05-18T00:25:50Z + + + 60.081 + 2017-05-18T00:25:51Z + + + 59.910 + 2017-05-18T00:25:52Z + + + 59.826 + 2017-05-18T00:25:53Z + + + 59.723 + 2017-05-18T00:25:54Z + + + 59.324 + 2017-05-18T00:25:55Z + + + 59.032 + 2017-05-18T00:25:56Z + + + 58.780 + 2017-05-18T00:25:57Z + + + 58.463 + 2017-05-18T00:25:58Z + + + 58.301 + 2017-05-18T00:25:59Z + + + 58.137 + 2017-05-18T00:26:00Z + + + 58.024 + 2017-05-18T00:26:01Z + + + 58.066 + 2017-05-18T00:26:02Z + + + 58.229 + 2017-05-18T00:26:03Z + + + 58.404 + 2017-05-18T00:26:04Z + + + 58.553 + 2017-05-18T00:26:05Z + + + 58.729 + 2017-05-18T00:26:06Z + + + 58.933 + 2017-05-18T00:26:07Z + + + 59.146 + 2017-05-18T00:26:08Z + + + 59.124 + 2017-05-18T00:26:09Z + + + 59.310 + 2017-05-18T00:26:10Z + + + 58.617 + 2017-05-18T00:26:12Z + + + 58.016 + 2017-05-18T00:26:13Z + + + 57.502 + 2017-05-18T00:26:14Z + + + 57.232 + 2017-05-18T00:26:15Z + + + 57.220 + 2017-05-18T00:26:16Z + + + 57.088 + 2017-05-18T00:26:17Z + + + 57.181 + 2017-05-18T00:26:18Z + + + 57.977 + 2017-05-18T00:26:19Z + + + 58.886 + 2017-05-18T00:26:20Z + + + 59.584 + 2017-05-18T00:26:21Z + + + 60.446 + 2017-05-18T00:26:22Z + + + 61.246 + 2017-05-18T00:26:23Z + + + 61.472 + 2017-05-18T00:26:24Z + + + 61.755 + 2017-05-18T00:26:25Z + + + 62.223 + 2017-05-18T00:26:26Z + + + 62.388 + 2017-05-18T00:26:27Z + + + 62.671 + 2017-05-18T00:26:28Z + + + 62.953 + 2017-05-18T00:26:29Z + + + 63.444 + 2017-05-18T00:26:30Z + + + 63.539 + 2017-05-18T00:26:31Z + + + 63.370 + 2017-05-18T00:26:32Z + + + 63.201 + 2017-05-18T00:26:33Z + + + 63.081 + 2017-05-18T00:26:34Z + + + 62.605 + 2017-05-18T00:26:35Z + + + 62.081 + 2017-05-18T00:26:36Z + + + 61.793 + 2017-05-18T00:26:37Z + + + 61.699 + 2017-05-18T00:26:38Z + + + 61.651 + 2017-05-18T00:26:39Z + + + 61.592 + 2017-05-18T00:26:40Z + + + 61.521 + 2017-05-18T00:26:41Z + + + 61.438 + 2017-05-18T00:26:42Z + + + 61.380 + 2017-05-18T00:26:43Z + + + 61.331 + 2017-05-18T00:26:44Z + + + 61.407 + 2017-05-18T00:26:45Z + + + 61.525 + 2017-05-18T00:26:46Z + + + 61.732 + 2017-05-18T00:26:47Z + + + 61.913 + 2017-05-18T00:26:48Z + + + 62.015 + 2017-05-18T00:26:49Z + + + 62.153 + 2017-05-18T00:26:50Z + + + 62.381 + 2017-05-18T00:26:51Z + + + 63.366 + 2017-05-18T00:26:52Z + + + 64.048 + 2017-05-18T00:26:53Z + + + 64.211 + 2017-05-18T00:26:54Z + + + 64.045 + 2017-05-18T00:26:55Z + + + 63.621 + 2017-05-18T00:26:56Z + + + 63.372 + 2017-05-18T00:26:57Z + + + 63.274 + 2017-05-18T00:26:58Z + + + 62.916 + 2017-05-18T00:26:59Z + + + 62.479 + 2017-05-18T00:27:00Z + + + 62.169 + 2017-05-18T00:27:01Z + + + 62.003 + 2017-05-18T00:27:02Z + + + 62.033 + 2017-05-18T00:27:03Z + + + 62.019 + 2017-05-18T00:27:04Z + + + 61.962 + 2017-05-18T00:27:05Z + + + 61.883 + 2017-05-18T00:27:06Z + + + 61.845 + 2017-05-18T00:27:07Z + + + 61.912 + 2017-05-18T00:27:08Z + + + 61.933 + 2017-05-18T00:27:09Z + + + 62.197 + 2017-05-18T00:27:10Z + + + 62.458 + 2017-05-18T00:27:11Z + + + 62.818 + 2017-05-18T00:27:12Z + + + 63.184 + 2017-05-18T00:27:13Z + + + 63.594 + 2017-05-18T00:27:14Z + + + 63.821 + 2017-05-18T00:27:15Z + + + 64.166 + 2017-05-18T00:27:16Z + + + 64.443 + 2017-05-18T00:27:17Z + + + 64.789 + 2017-05-18T00:27:18Z + + + 65.159 + 2017-05-18T00:27:19Z + + + 65.579 + 2017-05-18T00:27:20Z + + + 65.972 + 2017-05-18T00:27:21Z + + + 66.168 + 2017-05-18T00:27:22Z + + + 66.408 + 2017-05-18T00:27:23Z + + + 66.645 + 2017-05-18T00:27:24Z + + + 66.903 + 2017-05-18T00:27:25Z + + + 66.969 + 2017-05-18T00:27:26Z + + + 66.914 + 2017-05-18T00:27:27Z + + + 66.900 + 2017-05-18T00:27:28Z + + + 66.988 + 2017-05-18T00:27:29Z + + + 67.071 + 2017-05-18T00:27:30Z + + + 66.981 + 2017-05-18T00:27:31Z + + + 67.082 + 2017-05-18T00:27:32Z + + + 66.979 + 2017-05-18T00:27:33Z + + + 66.836 + 2017-05-18T00:27:34Z + + + 66.684 + 2017-05-18T00:27:35Z + + + 66.648 + 2017-05-18T00:27:36Z + + + 66.638 + 2017-05-18T00:27:37Z + + + 66.693 + 2017-05-18T00:27:38Z + + + 66.901 + 2017-05-18T00:27:39Z + + + 67.089 + 2017-05-18T00:27:40Z + + + 67.369 + 2017-05-18T00:27:41Z + + + 67.503 + 2017-05-18T00:27:42Z + + + 67.572 + 2017-05-18T00:27:43Z + + + 67.638 + 2017-05-18T00:27:44Z + + + 67.847 + 2017-05-18T00:27:45Z + + + 68.181 + 2017-05-18T00:27:46Z + + + 68.561 + 2017-05-18T00:27:47Z + + + 68.819 + 2017-05-18T00:27:48Z + + + 69.152 + 2017-05-18T00:27:49Z + + + 69.599 + 2017-05-18T00:27:50Z + + + 69.935 + 2017-05-18T00:27:51Z + + + 70.050 + 2017-05-18T00:27:52Z + + + 70.077 + 2017-05-18T00:27:53Z + + + 70.030 + 2017-05-18T00:27:54Z + + + 69.912 + 2017-05-18T00:27:55Z + + + 69.822 + 2017-05-18T00:27:56Z + + + 69.880 + 2017-05-18T00:27:57Z + + + 69.926 + 2017-05-18T00:27:58Z + + + 70.101 + 2017-05-18T00:27:59Z + + + 70.374 + 2017-05-18T00:28:00Z + + + 70.344 + 2017-05-18T00:28:01Z + + + 70.369 + 2017-05-18T00:28:02Z + + + 70.287 + 2017-05-18T00:28:03Z + + + 70.336 + 2017-05-18T00:28:04Z + + + 70.398 + 2017-05-18T00:28:05Z + + + 70.214 + 2017-05-18T00:28:06Z + + + 70.136 + 2017-05-18T00:28:07Z + + + 69.985 + 2017-05-18T00:28:08Z + + + 69.883 + 2017-05-18T00:28:09Z + + + 69.700 + 2017-05-18T00:28:10Z + + + 69.553 + 2017-05-18T00:28:11Z + + + 69.573 + 2017-05-18T00:28:12Z + + + 69.521 + 2017-05-18T00:28:13Z + + + 69.537 + 2017-05-18T00:28:14Z + + + 69.484 + 2017-05-18T00:28:15Z + + + 69.240 + 2017-05-18T00:28:16Z + + + 68.931 + 2017-05-18T00:28:17Z + + + 68.727 + 2017-05-18T00:28:18Z + + + 68.441 + 2017-05-18T00:28:19Z + + + 68.038 + 2017-05-18T00:28:20Z + + + 67.729 + 2017-05-18T00:28:21Z + + + 67.290 + 2017-05-18T00:28:22Z + + + 67.129 + 2017-05-18T00:28:23Z + + + 67.146 + 2017-05-18T00:28:24Z + + + 67.181 + 2017-05-18T00:28:25Z + + + 67.329 + 2017-05-18T00:28:26Z + + + 67.561 + 2017-05-18T00:28:27Z + + + 67.815 + 2017-05-18T00:28:28Z + + + 68.286 + 2017-05-18T00:28:29Z + + + 68.569 + 2017-05-18T00:28:30Z + + + 68.562 + 2017-05-18T00:28:31Z + + + 68.722 + 2017-05-18T00:28:32Z + + + 68.704 + 2017-05-18T00:28:33Z + + + 67.659 + 2017-05-18T00:28:34Z + + + 66.435 + 2017-05-18T00:28:35Z + + + 65.259 + 2017-05-18T00:28:36Z + + + 64.157 + 2017-05-18T00:28:37Z + + + 63.192 + 2017-05-18T00:28:38Z + + + 62.457 + 2017-05-18T00:28:39Z + + + 62.043 + 2017-05-18T00:28:40Z + + + 61.622 + 2017-05-18T00:28:41Z + + + 61.320 + 2017-05-18T00:28:42Z + + + 61.012 + 2017-05-18T00:28:43Z + + + 60.733 + 2017-05-18T00:28:44Z + + + 60.626 + 2017-05-18T00:28:45Z + + + 60.655 + 2017-05-18T00:28:46Z + + + 60.722 + 2017-05-18T00:28:47Z + + + 60.767 + 2017-05-18T00:28:48Z + + + 60.686 + 2017-05-18T00:28:49Z + + + 60.735 + 2017-05-18T00:28:50Z + + + 60.773 + 2017-05-18T00:28:51Z + + + 60.802 + 2017-05-18T00:28:52Z + + + 60.985 + 2017-05-18T00:28:53Z + + + 61.048 + 2017-05-18T00:28:54Z + + + 61.177 + 2017-05-18T00:28:55Z + + + 61.255 + 2017-05-18T00:28:56Z + + + 61.520 + 2017-05-18T00:28:57Z + + + 61.946 + 2017-05-18T00:28:58Z + + + 62.367 + 2017-05-18T00:28:59Z + + + 62.868 + 2017-05-18T00:29:00Z + + + 63.597 + 2017-05-18T00:29:01Z + + + 64.507 + 2017-05-18T00:29:02Z + + + 65.226 + 2017-05-18T00:29:03Z + + + 65.808 + 2017-05-18T00:29:04Z + + + 65.880 + 2017-05-18T00:29:05Z + + + 66.060 + 2017-05-18T00:29:06Z + + + 66.282 + 2017-05-18T00:29:07Z + + + 66.555 + 2017-05-18T00:29:08Z + + + 66.966 + 2017-05-18T00:29:09Z + + + 67.301 + 2017-05-18T00:29:10Z + + + 67.510 + 2017-05-18T00:29:11Z + + + 67.639 + 2017-05-18T00:29:12Z + + + 67.682 + 2017-05-18T00:29:13Z + + + 67.725 + 2017-05-18T00:29:14Z + + + 67.649 + 2017-05-18T00:29:15Z + + + 67.593 + 2017-05-18T00:29:16Z + + + 67.699 + 2017-05-18T00:29:17Z + + + 67.703 + 2017-05-18T00:29:18Z + + + 67.807 + 2017-05-18T00:29:19Z + + + 67.908 + 2017-05-18T00:29:20Z + + + 68.084 + 2017-05-18T00:29:21Z + + + 67.788 + 2017-05-18T00:29:22Z + + + 67.277 + 2017-05-18T00:29:23Z + + + 66.971 + 2017-05-18T00:29:24Z + + + 66.877 + 2017-05-18T00:29:25Z + + + 66.649 + 2017-05-18T00:29:26Z + + + 66.357 + 2017-05-18T00:29:27Z + + + 66.289 + 2017-05-18T00:29:28Z + + + 66.103 + 2017-05-18T00:29:29Z + + + 65.880 + 2017-05-18T00:29:30Z + + + 65.694 + 2017-05-18T00:29:31Z + + + 65.426 + 2017-05-18T00:29:32Z + + + 65.395 + 2017-05-18T00:29:33Z + + + 65.346 + 2017-05-18T00:29:34Z + + + 65.305 + 2017-05-18T00:29:35Z + + + 65.205 + 2017-05-18T00:29:36Z + + + 65.164 + 2017-05-18T00:29:37Z + + + 64.920 + 2017-05-18T00:29:38Z + + + 64.620 + 2017-05-18T00:29:39Z + + + 64.532 + 2017-05-18T00:29:40Z + + + 64.532 + 2017-05-18T00:29:41Z + + + 64.467 + 2017-05-18T00:29:42Z + + + 64.362 + 2017-05-18T00:29:43Z + + + 64.291 + 2017-05-18T00:29:44Z + + + 64.220 + 2017-05-18T00:29:45Z + + + 64.168 + 2017-05-18T00:29:46Z + + + 64.262 + 2017-05-18T00:29:47Z + + + 64.238 + 2017-05-18T00:29:48Z + + + 64.146 + 2017-05-18T00:29:49Z + + + 64.148 + 2017-05-18T00:29:50Z + + + 64.037 + 2017-05-18T00:29:51Z + + + 63.941 + 2017-05-18T00:29:52Z + + + 63.911 + 2017-05-18T00:29:53Z + + + 63.850 + 2017-05-18T00:29:54Z + + + 64.105 + 2017-05-18T00:29:55Z + + + 64.370 + 2017-05-18T00:29:56Z + + + 64.398 + 2017-05-18T00:29:57Z + + + 64.656 + 2017-05-18T00:29:58Z + + + 64.850 + 2017-05-18T00:29:59Z + + + 64.959 + 2017-05-18T00:30:00Z + + + 64.716 + 2017-05-18T00:30:01Z + + + 64.640 + 2017-05-18T00:30:02Z + + + 64.596 + 2017-05-18T00:30:03Z + + + 64.341 + 2017-05-18T00:30:04Z + + + 64.172 + 2017-05-18T00:30:05Z + + + 64.294 + 2017-05-18T00:30:06Z + + + 64.246 + 2017-05-18T00:30:07Z + + + 64.121 + 2017-05-18T00:30:09Z + + + 63.992 + 2017-05-18T00:30:10Z + + + 63.938 + 2017-05-18T00:30:11Z + + + 63.876 + 2017-05-18T00:30:12Z + + + 63.663 + 2017-05-18T00:30:13Z + + + 63.292 + 2017-05-18T00:30:14Z + + + 62.872 + 2017-05-18T00:30:15Z + + + 62.497 + 2017-05-18T00:30:16Z + + + 62.277 + 2017-05-18T00:30:17Z + + + 62.181 + 2017-05-18T00:30:18Z + + + 62.188 + 2017-05-18T00:30:19Z + + + 62.181 + 2017-05-18T00:30:20Z + + + 62.181 + 2017-05-18T00:30:21Z + + + 62.132 + 2017-05-18T00:30:22Z + + + 61.977 + 2017-05-18T00:30:23Z + + + 61.811 + 2017-05-18T00:30:24Z + + + 61.546 + 2017-05-18T00:30:25Z + + + 61.255 + 2017-05-18T00:30:26Z + + + 60.910 + 2017-05-18T00:30:27Z + + + 60.723 + 2017-05-18T00:30:28Z + + + 60.654 + 2017-05-18T00:30:29Z + + + 60.519 + 2017-05-18T00:30:30Z + + + 60.556 + 2017-05-18T00:30:31Z + + + 60.640 + 2017-05-18T00:30:32Z + + + 60.636 + 2017-05-18T00:30:33Z + + + 60.585 + 2017-05-18T00:30:34Z + + + 60.417 + 2017-05-18T00:30:35Z + + + 60.189 + 2017-05-18T00:30:36Z + + + 59.753 + 2017-05-18T00:30:37Z + + + 59.042 + 2017-05-18T00:30:38Z + + + 58.420 + 2017-05-18T00:30:39Z + + + 57.845 + 2017-05-18T00:30:40Z + + + 57.489 + 2017-05-18T00:30:41Z + + + 57.535 + 2017-05-18T00:30:42Z + + + 57.384 + 2017-05-18T00:30:43Z + + + 57.299 + 2017-05-18T00:30:44Z + + + 57.178 + 2017-05-18T00:30:45Z + + + 56.977 + 2017-05-18T00:30:46Z + + + 56.742 + 2017-05-18T00:30:47Z + + + 56.607 + 2017-05-18T00:30:48Z + + + 56.610 + 2017-05-18T00:30:49Z + + + 56.717 + 2017-05-18T00:30:50Z + + + 56.936 + 2017-05-18T00:30:51Z + + + 57.129 + 2017-05-18T00:30:52Z + + + 57.360 + 2017-05-18T00:30:53Z + + + 57.666 + 2017-05-18T00:30:54Z + + + 58.015 + 2017-05-18T00:30:55Z + + + 58.251 + 2017-05-18T00:30:56Z + + + 58.487 + 2017-05-18T00:30:57Z + + + 58.983 + 2017-05-18T00:30:58Z + + + 59.251 + 2017-05-18T00:30:59Z + + + 59.573 + 2017-05-18T00:31:00Z + + + 59.970 + 2017-05-18T00:31:01Z + + + 60.182 + 2017-05-18T00:31:02Z + + + 60.222 + 2017-05-18T00:31:03Z + + + 60.390 + 2017-05-18T00:31:04Z + + + 60.509 + 2017-05-18T00:31:05Z + + + 60.649 + 2017-05-18T00:31:06Z + + + 60.825 + 2017-05-18T00:31:07Z + + + 60.914 + 2017-05-18T00:31:08Z + + + 60.818 + 2017-05-18T00:31:09Z + + + 60.890 + 2017-05-18T00:31:10Z + + + 61.020 + 2017-05-18T00:31:11Z + + + 61.123 + 2017-05-18T00:31:12Z + + + 61.250 + 2017-05-18T00:31:13Z + + + 61.384 + 2017-05-18T00:31:14Z + + + 61.557 + 2017-05-18T00:31:15Z + + + 61.746 + 2017-05-18T00:31:16Z + + + 61.973 + 2017-05-18T00:31:17Z + + + 62.220 + 2017-05-18T00:31:18Z + + + 62.520 + 2017-05-18T00:31:19Z + + + 62.697 + 2017-05-18T00:31:20Z + + + 62.756 + 2017-05-18T00:31:21Z + + + 62.883 + 2017-05-18T00:31:22Z + + + 62.969 + 2017-05-18T00:31:23Z + + + 63.083 + 2017-05-18T00:31:24Z + + + 63.285 + 2017-05-18T00:31:25Z + + + 63.502 + 2017-05-18T00:31:26Z + + + 63.573 + 2017-05-18T00:31:27Z + + + 63.777 + 2017-05-18T00:31:28Z + + + 63.959 + 2017-05-18T00:31:29Z + + + 64.055 + 2017-05-18T00:31:30Z + + + 64.181 + 2017-05-18T00:31:31Z + + + 64.277 + 2017-05-18T00:31:32Z + + + 64.413 + 2017-05-18T00:31:33Z + + + 64.380 + 2017-05-18T00:31:34Z + + + 64.447 + 2017-05-18T00:31:35Z + + + 64.629 + 2017-05-18T00:31:36Z + + + 64.954 + 2017-05-18T00:31:37Z + + + 65.293 + 2017-05-18T00:31:38Z + + + 65.601 + 2017-05-18T00:31:39Z + + + 65.861 + 2017-05-18T00:31:40Z + + + 66.165 + 2017-05-18T00:31:41Z + + + 66.384 + 2017-05-18T00:31:42Z + + + 66.616 + 2017-05-18T00:31:43Z + + + 66.809 + 2017-05-18T00:31:44Z + + + 67.028 + 2017-05-18T00:31:45Z + + + 67.168 + 2017-05-18T00:31:46Z + + + 67.287 + 2017-05-18T00:31:47Z + + + 67.366 + 2017-05-18T00:31:48Z + + + 67.447 + 2017-05-18T00:31:49Z + + + 67.579 + 2017-05-18T00:31:50Z + + + 67.818 + 2017-05-18T00:31:51Z + + + 67.863 + 2017-05-18T00:31:52Z + + + 67.868 + 2017-05-18T00:31:53Z + + + 67.948 + 2017-05-18T00:31:54Z + + + 67.976 + 2017-05-18T00:31:55Z + + + 67.876 + 2017-05-18T00:31:56Z + + + 67.761 + 2017-05-18T00:31:57Z + + + 67.775 + 2017-05-18T00:31:58Z + + + 67.845 + 2017-05-18T00:31:59Z + + + 67.885 + 2017-05-18T00:32:00Z + + + 67.880 + 2017-05-18T00:32:01Z + + + 67.873 + 2017-05-18T00:32:02Z + + + 67.891 + 2017-05-18T00:32:03Z + + + 67.792 + 2017-05-18T00:32:04Z + + + 67.755 + 2017-05-18T00:32:05Z + + + 67.706 + 2017-05-18T00:32:06Z + + + 67.632 + 2017-05-18T00:32:07Z + + + 67.525 + 2017-05-18T00:32:08Z + + + 67.362 + 2017-05-18T00:32:09Z + + + 67.402 + 2017-05-18T00:32:10Z + + + 67.387 + 2017-05-18T00:32:11Z + + + 67.241 + 2017-05-18T00:32:12Z + + + 66.727 + 2017-05-18T00:32:13Z + + + 66.269 + 2017-05-18T00:32:14Z + + + 65.902 + 2017-05-18T00:32:15Z + + + 65.430 + 2017-05-18T00:32:16Z + + + 65.014 + 2017-05-18T00:32:17Z + + + 64.536 + 2017-05-18T00:32:18Z + + + 64.098 + 2017-05-18T00:32:19Z + + + 63.715 + 2017-05-18T00:32:20Z + + + 63.415 + 2017-05-18T00:32:21Z + + + 63.124 + 2017-05-18T00:32:22Z + + + 62.867 + 2017-05-18T00:32:23Z + + + 62.711 + 2017-05-18T00:32:24Z + + + 62.617 + 2017-05-18T00:32:25Z + + + 62.555 + 2017-05-18T00:32:26Z + + + 62.604 + 2017-05-18T00:32:27Z + + + 62.745 + 2017-05-18T00:32:28Z + + + 62.935 + 2017-05-18T00:32:29Z + + + 63.072 + 2017-05-18T00:32:30Z + + + 63.326 + 2017-05-18T00:32:31Z + + + 63.591 + 2017-05-18T00:32:32Z + + + 64.023 + 2017-05-18T00:32:33Z + + + 64.462 + 2017-05-18T00:32:34Z + + + 64.946 + 2017-05-18T00:32:35Z + + + 65.111 + 2017-05-18T00:32:36Z + + + 65.312 + 2017-05-18T00:32:37Z + + + 65.464 + 2017-05-18T00:32:38Z + + + 65.561 + 2017-05-18T00:32:39Z + + + 65.461 + 2017-05-18T00:32:40Z + + + 65.273 + 2017-05-18T00:32:41Z + + + 65.153 + 2017-05-18T00:32:42Z + + + 65.035 + 2017-05-18T00:32:43Z + + + 65.035 + 2017-05-18T00:32:44Z + + + 65.083 + 2017-05-18T00:32:45Z + + + 64.979 + 2017-05-18T00:32:46Z + + + 65.021 + 2017-05-18T00:32:47Z + + + 65.105 + 2017-05-18T00:32:48Z + + + 65.111 + 2017-05-18T00:32:49Z + + + 65.173 + 2017-05-18T00:32:50Z + + + 65.496 + 2017-05-18T00:32:51Z + + + 65.671 + 2017-05-18T00:32:52Z + + + 65.943 + 2017-05-18T00:32:53Z + + + 66.140 + 2017-05-18T00:32:54Z + + + 66.315 + 2017-05-18T00:32:55Z + + + 66.473 + 2017-05-18T00:32:56Z + + + 66.796 + 2017-05-18T00:32:57Z + + + 67.118 + 2017-05-18T00:32:58Z + + + 67.558 + 2017-05-18T00:32:59Z + + + 68.071 + 2017-05-18T00:33:00Z + + + 68.318 + 2017-05-18T00:33:01Z + + + 68.590 + 2017-05-18T00:33:02Z + + + 68.793 + 2017-05-18T00:33:03Z + + + 69.020 + 2017-05-18T00:33:04Z + + + 69.137 + 2017-05-18T00:33:05Z + + + 69.147 + 2017-05-18T00:33:06Z + + + 69.406 + 2017-05-18T00:33:07Z + + + 69.593 + 2017-05-18T00:33:08Z + + + 69.696 + 2017-05-18T00:33:09Z + + + 69.709 + 2017-05-18T00:33:10Z + + + 69.817 + 2017-05-18T00:33:11Z + + + 69.962 + 2017-05-18T00:33:12Z + + + 70.005 + 2017-05-18T00:33:13Z + + + 70.027 + 2017-05-18T00:33:14Z + + + 70.019 + 2017-05-18T00:33:15Z + + + 70.103 + 2017-05-18T00:33:16Z + + + 70.237 + 2017-05-18T00:33:17Z + + + 70.427 + 2017-05-18T00:33:18Z + + + 70.613 + 2017-05-18T00:33:19Z + + + 70.809 + 2017-05-18T00:33:20Z + + + 71.010 + 2017-05-18T00:33:21Z + + + 71.051 + 2017-05-18T00:33:22Z + + + 70.991 + 2017-05-18T00:33:23Z + + + 70.802 + 2017-05-18T00:33:24Z + + + 70.712 + 2017-05-18T00:33:25Z + + + 70.559 + 2017-05-18T00:33:26Z + + + 70.401 + 2017-05-18T00:33:27Z + + + 70.307 + 2017-05-18T00:33:28Z + + + 70.124 + 2017-05-18T00:33:29Z + + + 69.814 + 2017-05-18T00:33:30Z + + + 69.506 + 2017-05-18T00:33:31Z + + + 69.248 + 2017-05-18T00:33:32Z + + + 69.111 + 2017-05-18T00:33:33Z + + + 68.829 + 2017-05-18T00:33:34Z + + + 68.685 + 2017-05-18T00:33:35Z + + + 68.478 + 2017-05-18T00:33:36Z + + + 68.487 + 2017-05-18T00:33:37Z + + + 68.638 + 2017-05-18T00:33:38Z + + + 68.837 + 2017-05-18T00:33:39Z + + + 68.816 + 2017-05-18T00:33:40Z + + + 69.106 + 2017-05-18T00:33:41Z + + + 69.182 + 2017-05-18T00:33:42Z + + + 69.242 + 2017-05-18T00:33:43Z + + + 69.431 + 2017-05-18T00:33:44Z + + + 69.557 + 2017-05-18T00:33:45Z + + + 69.866 + 2017-05-18T00:33:46Z + + + 70.022 + 2017-05-18T00:33:47Z + + + 69.908 + 2017-05-18T00:33:48Z + + + 69.895 + 2017-05-18T00:33:49Z + + + 69.151 + 2017-05-18T00:33:50Z + + + 68.183 + 2017-05-18T00:33:51Z + + + 67.086 + 2017-05-18T00:33:52Z + + + 66.201 + 2017-05-18T00:33:53Z + + + 65.764 + 2017-05-18T00:33:54Z + + + 65.187 + 2017-05-18T00:33:55Z + + + 64.691 + 2017-05-18T00:33:56Z + + + 64.547 + 2017-05-18T00:33:57Z + + + 64.220 + 2017-05-18T00:33:58Z + + + 63.943 + 2017-05-18T00:33:59Z + + + 63.808 + 2017-05-18T00:34:00Z + + + 63.890 + 2017-05-18T00:34:01Z + + + 64.268 + 2017-05-18T00:34:02Z + + + 64.133 + 2017-05-18T00:34:03Z + + + 63.953 + 2017-05-18T00:34:04Z + + + 63.722 + 2017-05-18T00:34:05Z + + + 63.610 + 2017-05-18T00:34:06Z + + + 63.409 + 2017-05-18T00:34:07Z + + + 63.477 + 2017-05-18T00:34:08Z + + + 63.447 + 2017-05-18T00:34:09Z + + + 63.487 + 2017-05-18T00:34:10Z + + + 63.390 + 2017-05-18T00:34:11Z + + + 63.298 + 2017-05-18T00:34:12Z + + + 63.314 + 2017-05-18T00:34:13Z + + + 63.301 + 2017-05-18T00:34:14Z + + + 63.397 + 2017-05-18T00:34:15Z + + + 63.416 + 2017-05-18T00:34:16Z + + + 63.374 + 2017-05-18T00:34:17Z + + + 63.423 + 2017-05-18T00:34:18Z + + + 63.333 + 2017-05-18T00:34:19Z + + + 63.255 + 2017-05-18T00:34:20Z + + + 63.203 + 2017-05-18T00:34:21Z + + + 63.279 + 2017-05-18T00:34:22Z + + + 63.442 + 2017-05-18T00:34:23Z + + + 63.445 + 2017-05-18T00:34:24Z + + + 63.316 + 2017-05-18T00:34:25Z + + + 63.250 + 2017-05-18T00:34:26Z + + + 63.184 + 2017-05-18T00:34:27Z + + + 63.125 + 2017-05-18T00:34:28Z + + + 63.108 + 2017-05-18T00:34:29Z + + + 62.899 + 2017-05-18T00:34:30Z + + + 62.718 + 2017-05-18T00:34:31Z + + + 62.390 + 2017-05-18T00:34:32Z + + + 62.467 + 2017-05-18T00:34:33Z + + + 62.399 + 2017-05-18T00:34:34Z + + + 62.281 + 2017-05-18T00:34:35Z + + + 62.125 + 2017-05-18T00:34:36Z + + + 61.950 + 2017-05-18T00:34:37Z + + + 61.725 + 2017-05-18T00:34:38Z + + + 61.664 + 2017-05-18T00:34:39Z + + + 61.915 + 2017-05-18T00:34:40Z + + + 62.144 + 2017-05-18T00:34:41Z + + + 62.401 + 2017-05-18T00:34:42Z + + + 62.799 + 2017-05-18T00:34:43Z + + + 63.087 + 2017-05-18T00:34:44Z + + + 63.259 + 2017-05-18T00:34:45Z + + + 63.277 + 2017-05-18T00:34:46Z + + + 63.150 + 2017-05-18T00:34:47Z + + + 62.760 + 2017-05-18T00:34:48Z + + + 62.427 + 2017-05-18T00:34:49Z + + + 62.313 + 2017-05-18T00:34:50Z + + + 62.258 + 2017-05-18T00:34:51Z + + + 62.259 + 2017-05-18T00:34:52Z + + + 62.099 + 2017-05-18T00:34:53Z + + + 62.104 + 2017-05-18T00:34:54Z + + + 62.120 + 2017-05-18T00:34:55Z + + + 62.324 + 2017-05-18T00:34:56Z + + + 62.521 + 2017-05-18T00:34:57Z + + + 62.655 + 2017-05-18T00:34:58Z + + + 62.866 + 2017-05-18T00:34:59Z + + + 63.060 + 2017-05-18T00:35:00Z + + + 63.157 + 2017-05-18T00:35:01Z + + + 63.288 + 2017-05-18T00:35:02Z + + + 63.351 + 2017-05-18T00:35:03Z + + + 63.338 + 2017-05-18T00:35:04Z + + + 63.397 + 2017-05-18T00:35:05Z + + + 63.599 + 2017-05-18T00:35:06Z + + + 63.588 + 2017-05-18T00:35:07Z + + + 63.612 + 2017-05-18T00:35:08Z + + + 63.706 + 2017-05-18T00:35:09Z + + + 63.844 + 2017-05-18T00:35:10Z + + + 63.809 + 2017-05-18T00:35:11Z + + + 63.813 + 2017-05-18T00:35:12Z + + + 63.697 + 2017-05-18T00:35:13Z + + + 63.304 + 2017-05-18T00:35:14Z + + + 62.738 + 2017-05-18T00:35:15Z + + + 62.117 + 2017-05-18T00:35:16Z + + + 61.497 + 2017-05-18T00:35:17Z + + + 60.780 + 2017-05-18T00:35:18Z + + + 60.160 + 2017-05-18T00:35:19Z + + + 59.427 + 2017-05-18T00:35:20Z + + + 58.765 + 2017-05-18T00:35:21Z + + + 58.333 + 2017-05-18T00:35:22Z + + + 58.055 + 2017-05-18T00:35:23Z + + + 57.727 + 2017-05-18T00:35:24Z + + + 57.493 + 2017-05-18T00:35:25Z + + + 57.228 + 2017-05-18T00:35:26Z + + + 57.078 + 2017-05-18T00:35:27Z + + + 56.984 + 2017-05-18T00:35:28Z + + + 57.061 + 2017-05-18T00:35:29Z + + + 56.699 + 2017-05-18T00:35:30Z + + + 56.404 + 2017-05-18T00:35:31Z + + + 56.245 + 2017-05-18T00:35:32Z + + + 56.033 + 2017-05-18T00:35:33Z + + + 56.091 + 2017-05-18T00:35:34Z + + + 56.095 + 2017-05-18T00:35:35Z + + + 56.173 + 2017-05-18T00:35:36Z + + + 56.417 + 2017-05-18T00:35:37Z + + + 57.117 + 2017-05-18T00:35:38Z + + + 57.681 + 2017-05-18T00:35:39Z + + + 58.093 + 2017-05-18T00:35:40Z + + + 58.505 + 2017-05-18T00:35:41Z + + + 58.732 + 2017-05-18T00:35:42Z + + + 58.961 + 2017-05-18T00:35:43Z + + + 59.122 + 2017-05-18T00:35:44Z + + + 59.342 + 2017-05-18T00:35:45Z + + + 59.382 + 2017-05-18T00:35:46Z + + + 59.382 + 2017-05-18T00:35:47Z + + + 59.458 + 2017-05-18T00:35:48Z + + + 59.545 + 2017-05-18T00:35:49Z + + + 59.608 + 2017-05-18T00:35:50Z + + + 59.751 + 2017-05-18T00:35:51Z + + + 59.862 + 2017-05-18T00:35:52Z + + + 59.958 + 2017-05-18T00:35:53Z + + + 60.034 + 2017-05-18T00:35:54Z + + + 60.196 + 2017-05-18T00:35:55Z + + + 60.341 + 2017-05-18T00:35:56Z + + + 60.456 + 2017-05-18T00:35:57Z + + + 60.698 + 2017-05-18T00:35:58Z + + + 60.970 + 2017-05-18T00:35:59Z + + + 61.142 + 2017-05-18T00:36:00Z + + + 61.351 + 2017-05-18T00:36:01Z + + + 61.507 + 2017-05-18T00:36:02Z + + + 61.471 + 2017-05-18T00:36:03Z + + + 61.465 + 2017-05-18T00:36:04Z + + + 61.533 + 2017-05-18T00:36:05Z + + + 61.727 + 2017-05-18T00:36:06Z + + + 61.793 + 2017-05-18T00:36:07Z + + + 61.887 + 2017-05-18T00:36:08Z + + + 61.938 + 2017-05-18T00:36:09Z + + + 61.967 + 2017-05-18T00:36:10Z + + + 61.890 + 2017-05-18T00:36:11Z + + + 62.006 + 2017-05-18T00:36:12Z + + + 62.196 + 2017-05-18T00:36:13Z + + + 62.339 + 2017-05-18T00:36:14Z + + + 62.448 + 2017-05-18T00:36:15Z + + + 62.599 + 2017-05-18T00:36:16Z + + + 62.681 + 2017-05-18T00:36:17Z + + + 62.756 + 2017-05-18T00:36:18Z + + + 62.955 + 2017-05-18T00:36:19Z + + + 63.205 + 2017-05-18T00:36:20Z + + + 63.572 + 2017-05-18T00:36:21Z + + + 63.816 + 2017-05-18T00:36:22Z + + + 64.189 + 2017-05-18T00:36:23Z + + + 64.543 + 2017-05-18T00:36:24Z + + + 64.958 + 2017-05-18T00:36:25Z + + + 65.266 + 2017-05-18T00:36:26Z + + + 65.690 + 2017-05-18T00:36:27Z + + + 66.168 + 2017-05-18T00:36:28Z + + + 66.548 + 2017-05-18T00:36:29Z + + + 66.902 + 2017-05-18T00:36:30Z + + + 67.398 + 2017-05-18T00:36:31Z + + + 67.747 + 2017-05-18T00:36:32Z + + + 67.543 + 2017-05-18T00:36:33Z + + + 67.506 + 2017-05-18T00:36:34Z + + + 67.441 + 2017-05-18T00:36:35Z + + + 67.328 + 2017-05-18T00:36:36Z + + + 67.305 + 2017-05-18T00:36:37Z + + + 67.291 + 2017-05-18T00:36:38Z + + + 67.335 + 2017-05-18T00:36:39Z + + + 67.310 + 2017-05-18T00:36:40Z + + + 67.438 + 2017-05-18T00:36:41Z + + + 67.582 + 2017-05-18T00:36:42Z + + + 67.703 + 2017-05-18T00:36:43Z + + + 67.771 + 2017-05-18T00:36:44Z + + + 67.795 + 2017-05-18T00:36:45Z + + + 67.942 + 2017-05-18T00:36:46Z + + + 68.001 + 2017-05-18T00:36:47Z + + + 67.982 + 2017-05-18T00:36:48Z + + + 68.063 + 2017-05-18T00:36:49Z + + + 68.156 + 2017-05-18T00:36:50Z + + + 68.228 + 2017-05-18T00:36:51Z + + + 68.318 + 2017-05-18T00:36:52Z + + + 68.237 + 2017-05-18T00:36:53Z + + + 68.067 + 2017-05-18T00:36:54Z + + + 67.994 + 2017-05-18T00:36:55Z + + + 67.822 + 2017-05-18T00:36:56Z + + + 67.757 + 2017-05-18T00:36:57Z + + + 67.730 + 2017-05-18T00:36:58Z + + + 67.788 + 2017-05-18T00:36:59Z + + + 67.788 + 2017-05-18T00:37:00Z + + + 67.670 + 2017-05-18T00:37:01Z + + + 67.672 + 2017-05-18T00:37:02Z + + + 67.755 + 2017-05-18T00:37:03Z + + + 67.816 + 2017-05-18T00:37:04Z + + + 67.758 + 2017-05-18T00:37:05Z + + + 67.866 + 2017-05-18T00:37:06Z + + + 67.944 + 2017-05-18T00:37:07Z + + + 67.917 + 2017-05-18T00:37:08Z + + + 67.891 + 2017-05-18T00:37:09Z + + + 67.928 + 2017-05-18T00:37:10Z + + + 68.042 + 2017-05-18T00:37:11Z + + + 68.214 + 2017-05-18T00:37:12Z + + + 68.249 + 2017-05-18T00:37:13Z + + + 68.260 + 2017-05-18T00:37:14Z + + + 68.232 + 2017-05-18T00:37:15Z + + + 68.158 + 2017-05-18T00:37:16Z + + + 68.113 + 2017-05-18T00:37:17Z + + + 68.066 + 2017-05-18T00:37:18Z + + + 68.058 + 2017-05-18T00:37:19Z + + + 68.058 + 2017-05-18T00:37:20Z + + + 68.007 + 2017-05-18T00:37:21Z + + + 67.985 + 2017-05-18T00:37:22Z + + + 67.921 + 2017-05-18T00:37:23Z + + + 67.851 + 2017-05-18T00:37:24Z + + + 68.015 + 2017-05-18T00:37:25Z + + + 68.314 + 2017-05-18T00:37:26Z + + + 68.428 + 2017-05-18T00:37:27Z + + + 68.484 + 2017-05-18T00:37:28Z + + + 68.561 + 2017-05-18T00:37:29Z + + + 68.570 + 2017-05-18T00:37:30Z + + + 68.618 + 2017-05-18T00:37:31Z + + + 68.610 + 2017-05-18T00:37:32Z + + + 68.374 + 2017-05-18T00:37:33Z + + + 68.101 + 2017-05-18T00:37:34Z + + + 67.883 + 2017-05-18T00:37:35Z + + + 67.664 + 2017-05-18T00:37:36Z + + + 67.157 + 2017-05-18T00:37:37Z + + + 66.623 + 2017-05-18T00:37:38Z + + + 66.019 + 2017-05-18T00:37:39Z + + + 65.567 + 2017-05-18T00:37:40Z + + + 64.986 + 2017-05-18T00:37:41Z + + + 64.587 + 2017-05-18T00:37:42Z + + + 64.136 + 2017-05-18T00:37:43Z + + + 63.797 + 2017-05-18T00:37:44Z + + + 63.505 + 2017-05-18T00:37:45Z + + + 63.352 + 2017-05-18T00:37:46Z + + + 63.297 + 2017-05-18T00:37:47Z + + + 63.556 + 2017-05-18T00:37:48Z + + + 63.850 + 2017-05-18T00:37:49Z + + + 64.330 + 2017-05-18T00:37:50Z + + + 64.593 + 2017-05-18T00:37:51Z + + + 65.017 + 2017-05-18T00:37:52Z + + + 65.228 + 2017-05-18T00:37:53Z + + + 65.417 + 2017-05-18T00:37:54Z + + + 65.599 + 2017-05-18T00:37:55Z + + + 65.701 + 2017-05-18T00:37:56Z + + + 66.065 + 2017-05-18T00:37:57Z + + + 66.243 + 2017-05-18T00:37:58Z + + + 66.456 + 2017-05-18T00:37:59Z + + + 66.714 + 2017-05-18T00:38:00Z + + + 66.867 + 2017-05-18T00:38:01Z + + + 67.086 + 2017-05-18T00:38:02Z + + + 67.256 + 2017-05-18T00:38:03Z + + + 67.344 + 2017-05-18T00:38:04Z + + + 67.391 + 2017-05-18T00:38:05Z + + + 67.381 + 2017-05-18T00:38:06Z + + + 67.537 + 2017-05-18T00:38:07Z + + + 67.788 + 2017-05-18T00:38:08Z + + + 68.014 + 2017-05-18T00:38:09Z + + + 68.333 + 2017-05-18T00:38:10Z + + + 68.529 + 2017-05-18T00:38:11Z + + + 68.750 + 2017-05-18T00:38:12Z + + + 68.940 + 2017-05-18T00:38:13Z + + + 69.051 + 2017-05-18T00:38:14Z + + + 69.248 + 2017-05-18T00:38:15Z + + + 69.538 + 2017-05-18T00:38:16Z + + + 69.766 + 2017-05-18T00:38:17Z + + + 69.973 + 2017-05-18T00:38:18Z + + + 70.057 + 2017-05-18T00:38:19Z + + + 70.279 + 2017-05-18T00:38:20Z + + + 70.455 + 2017-05-18T00:38:21Z + + + 70.624 + 2017-05-18T00:38:22Z + + + 70.724 + 2017-05-18T00:38:23Z + + + 70.738 + 2017-05-18T00:38:24Z + + + 70.627 + 2017-05-18T00:38:25Z + + + 70.334 + 2017-05-18T00:38:26Z + + + 69.978 + 2017-05-18T00:38:27Z + + + 69.652 + 2017-05-18T00:38:28Z + + + 69.581 + 2017-05-18T00:38:29Z + + + 69.679 + 2017-05-18T00:38:30Z + + + 69.804 + 2017-05-18T00:38:31Z + + + 69.565 + 2017-05-18T00:38:32Z + + + 69.513 + 2017-05-18T00:38:33Z + + + 69.438 + 2017-05-18T00:38:34Z + + + 69.293 + 2017-05-18T00:38:35Z + + + 69.205 + 2017-05-18T00:38:36Z + + + 69.260 + 2017-05-18T00:38:37Z + + + 69.229 + 2017-05-18T00:38:38Z + + + 68.923 + 2017-05-18T00:38:39Z + + + 68.890 + 2017-05-18T00:38:40Z + + + 68.888 + 2017-05-18T00:38:41Z + + + 68.860 + 2017-05-18T00:38:42Z + + + 68.823 + 2017-05-18T00:38:43Z + + + 68.799 + 2017-05-18T00:38:44Z + + + 68.781 + 2017-05-18T00:38:45Z + + + 68.916 + 2017-05-18T00:38:46Z + + + 69.153 + 2017-05-18T00:38:47Z + + + 69.466 + 2017-05-18T00:38:48Z + + + 69.743 + 2017-05-18T00:38:49Z + + + 69.963 + 2017-05-18T00:38:50Z + + + 69.926 + 2017-05-18T00:38:51Z + + + 70.026 + 2017-05-18T00:38:52Z + + + 70.083 + 2017-05-18T00:38:53Z + + + 70.029 + 2017-05-18T00:38:54Z + + + 69.852 + 2017-05-18T00:38:55Z + + + 69.709 + 2017-05-18T00:38:56Z + + + 69.698 + 2017-05-18T00:38:57Z + + + 69.703 + 2017-05-18T00:38:58Z + + + 69.857 + 2017-05-18T00:38:59Z + + + 70.136 + 2017-05-18T00:39:00Z + + + 70.380 + 2017-05-18T00:39:01Z + + + 70.551 + 2017-05-18T00:39:02Z + + + 70.519 + 2017-05-18T00:39:03Z + + + 69.999 + 2017-05-18T00:39:04Z + + + 69.453 + 2017-05-18T00:39:05Z + + + 69.078 + 2017-05-18T00:39:06Z + + + 68.560 + 2017-05-18T00:39:07Z + + + 68.015 + 2017-05-18T00:39:08Z + + + 67.954 + 2017-05-18T00:39:09Z + + + 68.010 + 2017-05-18T00:39:10Z + + + 67.904 + 2017-05-18T00:39:11Z + + + 67.902 + 2017-05-18T00:39:12Z + + + 67.879 + 2017-05-18T00:39:13Z + + + 67.820 + 2017-05-18T00:39:14Z + + + 67.860 + 2017-05-18T00:39:15Z + + + 67.839 + 2017-05-18T00:39:16Z + + + 67.668 + 2017-05-18T00:39:17Z + + + 67.617 + 2017-05-18T00:39:18Z + + + 67.510 + 2017-05-18T00:39:19Z + + + 67.468 + 2017-05-18T00:39:20Z + + + 67.350 + 2017-05-18T00:39:21Z + + + 67.254 + 2017-05-18T00:39:22Z + + + 67.251 + 2017-05-18T00:39:23Z + + + 67.114 + 2017-05-18T00:39:24Z + + + 66.856 + 2017-05-18T00:39:25Z + + + 66.754 + 2017-05-18T00:39:26Z + + + 66.569 + 2017-05-18T00:39:27Z + + + 66.509 + 2017-05-18T00:39:28Z + + + 66.404 + 2017-05-18T00:39:29Z + + + 66.396 + 2017-05-18T00:39:30Z + + + 66.388 + 2017-05-18T00:39:31Z + + + 66.327 + 2017-05-18T00:39:32Z + + + 66.316 + 2017-05-18T00:39:33Z + + + 66.289 + 2017-05-18T00:39:34Z + + + 66.233 + 2017-05-18T00:39:35Z + + + 66.317 + 2017-05-18T00:39:36Z + + + 66.426 + 2017-05-18T00:39:37Z + + + 66.579 + 2017-05-18T00:39:38Z + + + 66.679 + 2017-05-18T00:39:39Z + + + 66.868 + 2017-05-18T00:39:40Z + + + 66.969 + 2017-05-18T00:39:41Z + + + 67.184 + 2017-05-18T00:39:42Z + + + 67.398 + 2017-05-18T00:39:43Z + + + 67.564 + 2017-05-18T00:39:44Z + + + 67.596 + 2017-05-18T00:39:45Z + + + 67.688 + 2017-05-18T00:39:46Z + + + 67.850 + 2017-05-18T00:39:47Z + + + 67.994 + 2017-05-18T00:39:48Z + + + 68.054 + 2017-05-18T00:39:49Z + + + 68.230 + 2017-05-18T00:39:50Z + + + 68.500 + 2017-05-18T00:39:51Z + + + 68.732 + 2017-05-18T00:39:52Z + + + 68.935 + 2017-05-18T00:39:53Z + + + 69.149 + 2017-05-18T00:39:54Z + + + 69.324 + 2017-05-18T00:39:55Z + + + 69.480 + 2017-05-18T00:39:56Z + + + 69.587 + 2017-05-18T00:39:57Z + + + 69.669 + 2017-05-18T00:39:58Z + + + 69.704 + 2017-05-18T00:39:59Z + + + 69.733 + 2017-05-18T00:40:00Z + + + 69.819 + 2017-05-18T00:40:01Z + + + 70.048 + 2017-05-18T00:40:02Z + + + 70.256 + 2017-05-18T00:40:03Z + + + 70.535 + 2017-05-18T00:40:04Z + + + 70.771 + 2017-05-18T00:40:05Z + + + 71.090 + 2017-05-18T00:40:06Z + + + 71.219 + 2017-05-18T00:40:07Z + + + 71.562 + 2017-05-18T00:40:08Z + + + 72.033 + 2017-05-18T00:40:09Z + + + 72.528 + 2017-05-18T00:40:10Z + + + 72.872 + 2017-05-18T00:40:11Z + + + 73.197 + 2017-05-18T00:40:12Z + + + 73.631 + 2017-05-18T00:40:13Z + + + 74.003 + 2017-05-18T00:40:14Z + + + 74.322 + 2017-05-18T00:40:15Z + + + 74.713 + 2017-05-18T00:40:16Z + + + 74.966 + 2017-05-18T00:40:17Z + + + 75.181 + 2017-05-18T00:40:18Z + + + 75.546 + 2017-05-18T00:40:19Z + + + 75.941 + 2017-05-18T00:40:20Z + + + 76.148 + 2017-05-18T00:40:21Z + + + 76.438 + 2017-05-18T00:40:22Z + + + 76.501 + 2017-05-18T00:40:23Z + + + 76.372 + 2017-05-18T00:40:24Z + + + 76.196 + 2017-05-18T00:40:25Z + + + 76.186 + 2017-05-18T00:40:26Z + + + 75.461 + 2017-05-18T00:40:27Z + + + 74.594 + 2017-05-18T00:40:28Z + + + 74.391 + 2017-05-18T00:40:29Z + + + 74.128 + 2017-05-18T00:40:30Z + + + 73.906 + 2017-05-18T00:40:31Z + + + 73.749 + 2017-05-18T00:40:32Z + + + 73.484 + 2017-05-18T00:40:33Z + + + 73.187 + 2017-05-18T00:40:34Z + + + 73.057 + 2017-05-18T00:40:35Z + + + 72.795 + 2017-05-18T00:40:36Z + + + 72.536 + 2017-05-18T00:40:37Z + + + 72.325 + 2017-05-18T00:40:38Z + + + 72.060 + 2017-05-18T00:40:39Z + + + 71.712 + 2017-05-18T00:40:40Z + + + 71.485 + 2017-05-18T00:40:41Z + + + 71.178 + 2017-05-18T00:40:42Z + + + 70.853 + 2017-05-18T00:40:43Z + + + 70.652 + 2017-05-18T00:40:44Z + + + 70.449 + 2017-05-18T00:40:45Z + + + 69.818 + 2017-05-18T00:40:46Z + + + 69.091 + 2017-05-18T00:40:47Z + + + 68.233 + 2017-05-18T00:40:48Z + + + 67.550 + 2017-05-18T00:40:49Z + + + 67.048 + 2017-05-18T00:40:50Z + + + 66.527 + 2017-05-18T00:40:51Z + + + 66.183 + 2017-05-18T00:40:52Z + + + 65.844 + 2017-05-18T00:40:53Z + + + 65.511 + 2017-05-18T00:40:54Z + + + 65.267 + 2017-05-18T00:40:55Z + + + 65.153 + 2017-05-18T00:40:56Z + + + 64.997 + 2017-05-18T00:40:57Z + + + 64.942 + 2017-05-18T00:40:58Z + + + 64.848 + 2017-05-18T00:40:59Z + + + 64.748 + 2017-05-18T00:41:00Z + + + 64.560 + 2017-05-18T00:41:01Z + + + 64.236 + 2017-05-18T00:41:02Z + + + 64.044 + 2017-05-18T00:41:03Z + + + 63.800 + 2017-05-18T00:41:04Z + + + 63.545 + 2017-05-18T00:41:05Z + + + 63.252 + 2017-05-18T00:41:06Z + + + 63.029 + 2017-05-18T00:41:07Z + + + 62.806 + 2017-05-18T00:41:08Z + + + 62.602 + 2017-05-18T00:41:09Z + + + 62.420 + 2017-05-18T00:41:10Z + + + 62.133 + 2017-05-18T00:41:11Z + + + 61.984 + 2017-05-18T00:41:12Z + + + 61.909 + 2017-05-18T00:41:13Z + + + 61.924 + 2017-05-18T00:41:14Z + + + 61.807 + 2017-05-18T00:41:15Z + + + 61.673 + 2017-05-18T00:41:16Z + + + 61.357 + 2017-05-18T00:41:17Z + + + 60.973 + 2017-05-18T00:41:18Z + + + 60.596 + 2017-05-18T00:41:19Z + + + 60.368 + 2017-05-18T00:41:20Z + + + 60.145 + 2017-05-18T00:41:21Z + + + 59.958 + 2017-05-18T00:41:22Z + + + 59.786 + 2017-05-18T00:41:23Z + + + 59.801 + 2017-05-18T00:41:24Z + + + 59.781 + 2017-05-18T00:41:25Z + + + 59.833 + 2017-05-18T00:41:26Z + + + 59.962 + 2017-05-18T00:41:27Z + + + 60.259 + 2017-05-18T00:41:28Z + + + 60.563 + 2017-05-18T00:41:29Z + + + 60.764 + 2017-05-18T00:41:30Z + + + 60.684 + 2017-05-18T00:41:31Z + + + 60.730 + 2017-05-18T00:41:32Z + + + 60.672 + 2017-05-18T00:41:33Z + + + 60.570 + 2017-05-18T00:41:34Z + + + 60.450 + 2017-05-18T00:41:35Z + + + 60.636 + 2017-05-18T00:41:36Z + + + 60.586 + 2017-05-18T00:41:37Z + + + 60.937 + 2017-05-18T00:41:38Z + + + 61.431 + 2017-05-18T00:41:39Z + + + 61.776 + 2017-05-18T00:41:40Z + + + 62.177 + 2017-05-18T00:41:41Z + + + 62.332 + 2017-05-18T00:41:42Z + + + 62.640 + 2017-05-18T00:41:43Z + + + 62.785 + 2017-05-18T00:41:44Z + + + 62.663 + 2017-05-18T00:41:45Z + + + 62.536 + 2017-05-18T00:41:46Z + + + 62.435 + 2017-05-18T00:41:47Z + + + 62.472 + 2017-05-18T00:41:48Z + + + 62.449 + 2017-05-18T00:41:49Z + + + 62.384 + 2017-05-18T00:41:50Z + + + 62.471 + 2017-05-18T00:41:51Z + + + 62.444 + 2017-05-18T00:41:52Z + + + 62.597 + 2017-05-18T00:41:53Z + + + 62.698 + 2017-05-18T00:41:54Z + + + 62.782 + 2017-05-18T00:41:55Z + + + 62.870 + 2017-05-18T00:41:56Z + + + 62.893 + 2017-05-18T00:41:57Z + + + 62.891 + 2017-05-18T00:41:58Z + + + 62.742 + 2017-05-18T00:41:59Z + + + 62.745 + 2017-05-18T00:42:00Z + + + 62.650 + 2017-05-18T00:42:01Z + + + 62.420 + 2017-05-18T00:42:02Z + + + 62.243 + 2017-05-18T00:42:03Z + + + 62.411 + 2017-05-18T00:42:04Z + + + 62.419 + 2017-05-18T00:42:05Z + + + 62.543 + 2017-05-18T00:42:06Z + + + 62.647 + 2017-05-18T00:42:07Z + + + 62.743 + 2017-05-18T00:42:08Z + + + 62.714 + 2017-05-18T00:42:09Z + + + 62.684 + 2017-05-18T00:42:10Z + + + 62.530 + 2017-05-18T00:42:11Z + + + 62.459 + 2017-05-18T00:42:12Z + + + 62.447 + 2017-05-18T00:42:13Z + + + 62.525 + 2017-05-18T00:42:14Z + + + 62.566 + 2017-05-18T00:42:15Z + + + 62.532 + 2017-05-18T00:42:16Z + + + 62.447 + 2017-05-18T00:42:17Z + + + 62.277 + 2017-05-18T00:42:18Z + + + 62.084 + 2017-05-18T00:42:19Z + + + 61.865 + 2017-05-18T00:42:20Z + + + 61.718 + 2017-05-18T00:42:21Z + + + 61.666 + 2017-05-18T00:42:22Z + + + 61.662 + 2017-05-18T00:42:23Z + + + 61.742 + 2017-05-18T00:42:24Z + + + 61.796 + 2017-05-18T00:42:25Z + + + 61.958 + 2017-05-18T00:42:26Z + + + 61.852 + 2017-05-18T00:42:27Z + + + 61.796 + 2017-05-18T00:42:28Z + + + 61.798 + 2017-05-18T00:42:29Z + + + 61.700 + 2017-05-18T00:42:30Z + + + 61.615 + 2017-05-18T00:42:31Z + + + 61.400 + 2017-05-18T00:42:32Z + + + 61.120 + 2017-05-18T00:42:33Z + + + 60.970 + 2017-05-18T00:42:34Z + + + 60.902 + 2017-05-18T00:42:35Z + + + 60.738 + 2017-05-18T00:42:36Z + + + 60.627 + 2017-05-18T00:42:37Z + + + 60.564 + 2017-05-18T00:42:38Z + + + 60.547 + 2017-05-18T00:42:39Z + + + 60.496 + 2017-05-18T00:42:40Z + + + 60.494 + 2017-05-18T00:42:41Z + + + 60.497 + 2017-05-18T00:42:42Z + + + 60.529 + 2017-05-18T00:42:43Z + + + 60.435 + 2017-05-18T00:42:44Z + + + 60.492 + 2017-05-18T00:42:45Z + + + 60.567 + 2017-05-18T00:42:46Z + + + 60.674 + 2017-05-18T00:42:47Z + + + 60.755 + 2017-05-18T00:42:48Z + + + 60.766 + 2017-05-18T00:42:49Z + + + 60.663 + 2017-05-18T00:42:50Z + + + 60.368 + 2017-05-18T00:42:51Z + + + 60.034 + 2017-05-18T00:42:52Z + + + 59.781 + 2017-05-18T00:42:53Z + + + 59.481 + 2017-05-18T00:42:54Z + + + 59.277 + 2017-05-18T00:42:55Z + + + 59.186 + 2017-05-18T00:42:56Z + + + 59.367 + 2017-05-18T00:42:57Z + + + 59.549 + 2017-05-18T00:42:58Z + + + 59.542 + 2017-05-18T00:42:59Z + + + 59.608 + 2017-05-18T00:43:00Z + + + 59.479 + 2017-05-18T00:43:01Z + + + 59.451 + 2017-05-18T00:43:02Z + + + 59.578 + 2017-05-18T00:43:03Z + + + 59.641 + 2017-05-18T00:43:04Z + + + 59.731 + 2017-05-18T00:43:05Z + + + 59.904 + 2017-05-18T00:43:06Z + + + 60.022 + 2017-05-18T00:43:07Z + + + 60.149 + 2017-05-18T00:43:08Z + + + 60.552 + 2017-05-18T00:43:09Z + + + 60.881 + 2017-05-18T00:43:10Z + + + 61.324 + 2017-05-18T00:43:11Z + + + 61.838 + 2017-05-18T00:43:12Z + + + 62.191 + 2017-05-18T00:43:13Z + + + 62.624 + 2017-05-18T00:43:14Z + + + 63.160 + 2017-05-18T00:43:15Z + + + 63.582 + 2017-05-18T00:43:16Z + + + 64.066 + 2017-05-18T00:43:17Z + + + 64.454 + 2017-05-18T00:43:18Z + + + 64.885 + 2017-05-18T00:43:19Z + + + 65.264 + 2017-05-18T00:43:20Z + + + 65.668 + 2017-05-18T00:43:21Z + + + 66.074 + 2017-05-18T00:43:22Z + + + 66.445 + 2017-05-18T00:43:23Z + + + 66.691 + 2017-05-18T00:43:24Z + + + 66.617 + 2017-05-18T00:43:25Z + + + 66.428 + 2017-05-18T00:43:26Z + + + 66.366 + 2017-05-18T00:43:27Z + + + 66.335 + 2017-05-18T00:43:28Z + + + 66.271 + 2017-05-18T00:43:29Z + + + 66.374 + 2017-05-18T00:43:30Z + + + 66.440 + 2017-05-18T00:43:31Z + + + 66.419 + 2017-05-18T00:43:32Z + + + 66.441 + 2017-05-18T00:43:33Z + + + 66.439 + 2017-05-18T00:43:34Z + + + 66.279 + 2017-05-18T00:43:35Z + + + 66.384 + 2017-05-18T00:43:36Z + + + 66.400 + 2017-05-18T00:43:37Z + + + 66.420 + 2017-05-18T00:43:38Z + + + 66.446 + 2017-05-18T00:43:39Z + + + 66.488 + 2017-05-18T00:43:40Z + + + 66.564 + 2017-05-18T00:43:41Z + + + 66.704 + 2017-05-18T00:43:42Z + + + 66.813 + 2017-05-18T00:43:43Z + + + 67.037 + 2017-05-18T00:43:44Z + + + 66.985 + 2017-05-18T00:43:45Z + + + 66.986 + 2017-05-18T00:43:46Z + + + 67.126 + 2017-05-18T00:43:47Z + + + 67.227 + 2017-05-18T00:43:48Z + + + 67.334 + 2017-05-18T00:43:49Z + + + 67.628 + 2017-05-18T00:43:50Z + + + 67.938 + 2017-05-18T00:43:51Z + + + 68.267 + 2017-05-18T00:43:52Z + + + 68.634 + 2017-05-18T00:43:53Z + + + 68.914 + 2017-05-18T00:43:54Z + + + 69.035 + 2017-05-18T00:43:55Z + + + 69.006 + 2017-05-18T00:43:56Z + + + 68.855 + 2017-05-18T00:43:57Z + + + 68.683 + 2017-05-18T00:43:58Z + + + 68.507 + 2017-05-18T00:43:59Z + + + 68.477 + 2017-05-18T00:44:00Z + + + 68.514 + 2017-05-18T00:44:01Z + + + 68.571 + 2017-05-18T00:44:02Z + + + 68.748 + 2017-05-18T00:44:03Z + + + 68.966 + 2017-05-18T00:44:04Z + + + 69.109 + 2017-05-18T00:44:05Z + + + 69.347 + 2017-05-18T00:44:06Z + + + 69.920 + 2017-05-18T00:44:07Z + + + 70.504 + 2017-05-18T00:44:08Z + + + 70.967 + 2017-05-18T00:44:09Z + + + 71.281 + 2017-05-18T00:44:10Z + + + 71.528 + 2017-05-18T00:44:11Z + + + 71.814 + 2017-05-18T00:44:12Z + + + 71.889 + 2017-05-18T00:44:13Z + + + 71.993 + 2017-05-18T00:44:14Z + + + 72.029 + 2017-05-18T00:44:15Z + + + 72.039 + 2017-05-18T00:44:16Z + + + 72.226 + 2017-05-18T00:44:17Z + + + 72.327 + 2017-05-18T00:44:18Z + + + 72.492 + 2017-05-18T00:44:19Z + + + 72.536 + 2017-05-18T00:44:20Z + + + 72.786 + 2017-05-18T00:44:21Z + + + 72.864 + 2017-05-18T00:44:22Z + + + 72.910 + 2017-05-18T00:44:23Z + + + 72.972 + 2017-05-18T00:44:24Z + + + 72.988 + 2017-05-18T00:44:25Z + + + 73.037 + 2017-05-18T00:44:26Z + + + 73.241 + 2017-05-18T00:44:27Z + + + 73.501 + 2017-05-18T00:44:28Z + + + 73.983 + 2017-05-18T00:44:29Z + + + 74.372 + 2017-05-18T00:44:30Z + + + 74.545 + 2017-05-18T00:44:31Z + + + 74.704 + 2017-05-18T00:44:32Z + + + 74.661 + 2017-05-18T00:44:33Z + + + 74.478 + 2017-05-18T00:44:34Z + + + 74.572 + 2017-05-18T00:44:35Z + + + 74.446 + 2017-05-18T00:44:36Z + + + 74.554 + 2017-05-18T00:44:37Z + + + 74.647 + 2017-05-18T00:44:38Z + + + 74.786 + 2017-05-18T00:44:39Z + + + 74.989 + 2017-05-18T00:44:40Z + + + 74.975 + 2017-05-18T00:44:41Z + + + 74.898 + 2017-05-18T00:44:42Z + + + 74.980 + 2017-05-18T00:44:43Z + + + 75.505 + 2017-05-18T00:44:44Z + + + 75.981 + 2017-05-18T00:44:45Z + + + 76.566 + 2017-05-18T00:44:46Z + + + 77.058 + 2017-05-18T00:44:47Z + + + 77.319 + 2017-05-18T00:44:48Z + + + 77.662 + 2017-05-18T00:44:49Z + + + 77.936 + 2017-05-18T00:44:50Z + + + 78.210 + 2017-05-18T00:44:51Z + + + 78.333 + 2017-05-18T00:44:52Z + + + 78.386 + 2017-05-18T00:44:53Z + + + 78.471 + 2017-05-18T00:44:54Z + + + 78.424 + 2017-05-18T00:44:55Z + + + 78.086 + 2017-05-18T00:44:56Z + + + 77.591 + 2017-05-18T00:44:57Z + + + 77.283 + 2017-05-18T00:44:58Z + + + 77.159 + 2017-05-18T00:44:59Z + + + 77.169 + 2017-05-18T00:45:00Z + + + 77.349 + 2017-05-18T00:45:01Z + + + 77.447 + 2017-05-18T00:45:02Z + + + 77.443 + 2017-05-18T00:45:03Z + + + 77.476 + 2017-05-18T00:45:04Z + + + 77.557 + 2017-05-18T00:45:05Z + + + 77.419 + 2017-05-18T00:45:06Z + + + 77.292 + 2017-05-18T00:45:07Z + + + 76.995 + 2017-05-18T00:45:08Z + + + 76.573 + 2017-05-18T00:45:09Z + + + 76.312 + 2017-05-18T00:45:10Z + + + 76.191 + 2017-05-18T00:45:11Z + + + 76.159 + 2017-05-18T00:45:12Z + + + 76.069 + 2017-05-18T00:45:13Z + + + 76.043 + 2017-05-18T00:45:14Z + + + 75.778 + 2017-05-18T00:45:15Z + + + 75.595 + 2017-05-18T00:45:16Z + + + 75.458 + 2017-05-18T00:45:17Z + + + 75.330 + 2017-05-18T00:45:18Z + + + 75.312 + 2017-05-18T00:45:19Z + + + 75.164 + 2017-05-18T00:45:20Z + + + 75.275 + 2017-05-18T00:45:21Z + + + 75.431 + 2017-05-18T00:45:22Z + + + 75.729 + 2017-05-18T00:45:23Z + + + 76.021 + 2017-05-18T00:45:24Z + + + 76.187 + 2017-05-18T00:45:25Z + + + 76.060 + 2017-05-18T00:45:26Z + + + 76.132 + 2017-05-18T00:45:27Z + + + 76.232 + 2017-05-18T00:45:28Z + + + 76.297 + 2017-05-18T00:45:29Z + + + 76.469 + 2017-05-18T00:45:30Z + + + 76.612 + 2017-05-18T00:45:31Z + + + 76.590 + 2017-05-18T00:45:32Z + + + 76.678 + 2017-05-18T00:45:33Z + + + 76.606 + 2017-05-18T00:45:34Z + + + 76.380 + 2017-05-18T00:45:35Z + + + 76.158 + 2017-05-18T00:45:36Z + + + 76.069 + 2017-05-18T00:45:37Z + + + 76.014 + 2017-05-18T00:45:38Z + + + 75.939 + 2017-05-18T00:45:39Z + + + 75.932 + 2017-05-18T00:45:40Z + + + 75.887 + 2017-05-18T00:45:41Z + + + 75.921 + 2017-05-18T00:45:42Z + + + 76.102 + 2017-05-18T00:45:43Z + + + 76.083 + 2017-05-18T00:45:44Z + + + 76.049 + 2017-05-18T00:45:45Z + + + 75.961 + 2017-05-18T00:45:46Z + + + 75.740 + 2017-05-18T00:45:47Z + + + 75.629 + 2017-05-18T00:45:48Z + + + 75.608 + 2017-05-18T00:45:49Z + + + 75.550 + 2017-05-18T00:45:50Z + + + 75.662 + 2017-05-18T00:45:51Z + + + 75.512 + 2017-05-18T00:45:52Z + + + 75.257 + 2017-05-18T00:45:53Z + + + 75.297 + 2017-05-18T00:45:54Z + + + 75.432 + 2017-05-18T00:45:55Z + + + 75.543 + 2017-05-18T00:45:56Z + + + 75.522 + 2017-05-18T00:45:57Z + + + 75.331 + 2017-05-18T00:45:58Z + + + 75.173 + 2017-05-18T00:45:59Z + + + 75.138 + 2017-05-18T00:46:00Z + + + 75.015 + 2017-05-18T00:46:01Z + + + 74.946 + 2017-05-18T00:46:02Z + + + 74.623 + 2017-05-18T00:46:03Z + + + 74.250 + 2017-05-18T00:46:04Z + + + 74.148 + 2017-05-18T00:46:05Z + + + 74.156 + 2017-05-18T00:46:06Z + + + 74.032 + 2017-05-18T00:46:07Z + + + 74.003 + 2017-05-18T00:46:08Z + + + 73.978 + 2017-05-18T00:46:09Z + + + 73.901 + 2017-05-18T00:46:10Z + + + 73.772 + 2017-05-18T00:46:11Z + + + 73.715 + 2017-05-18T00:46:12Z + + + 73.446 + 2017-05-18T00:46:13Z + + + 73.126 + 2017-05-18T00:46:14Z + + + 72.756 + 2017-05-18T00:46:15Z + + + 72.706 + 2017-05-18T00:46:16Z + + + 72.532 + 2017-05-18T00:46:17Z + + + 72.428 + 2017-05-18T00:46:18Z + + + 72.179 + 2017-05-18T00:46:19Z + + + 71.913 + 2017-05-18T00:46:20Z + + + 71.633 + 2017-05-18T00:46:21Z + + + 71.585 + 2017-05-18T00:46:22Z + + + 71.638 + 2017-05-18T00:46:23Z + + + 71.579 + 2017-05-18T00:46:24Z + + + 71.387 + 2017-05-18T00:46:25Z + + + 71.068 + 2017-05-18T00:46:26Z + + + 71.089 + 2017-05-18T00:46:27Z + + + 71.221 + 2017-05-18T00:46:28Z + + + 71.157 + 2017-05-18T00:46:29Z + + + 70.966 + 2017-05-18T00:46:30Z + + + 70.825 + 2017-05-18T00:46:31Z + + + 70.989 + 2017-05-18T00:46:32Z + + + 70.918 + 2017-05-18T00:46:33Z + + + 70.835 + 2017-05-18T00:46:34Z + + + 70.717 + 2017-05-18T00:46:35Z + + + 70.464 + 2017-05-18T00:46:36Z + + + 70.242 + 2017-05-18T00:46:37Z + + + 69.954 + 2017-05-18T00:46:38Z + + + 69.799 + 2017-05-18T00:46:39Z + + + 69.791 + 2017-05-18T00:46:40Z + + + 69.659 + 2017-05-18T00:46:41Z + + + 69.624 + 2017-05-18T00:46:42Z + + + 69.473 + 2017-05-18T00:46:43Z + + + 69.333 + 2017-05-18T00:46:44Z + + + 69.143 + 2017-05-18T00:46:45Z + + + 68.932 + 2017-05-18T00:46:46Z + + + 68.789 + 2017-05-18T00:46:47Z + + + 68.637 + 2017-05-18T00:46:48Z + + + 68.509 + 2017-05-18T00:46:49Z + + + 68.379 + 2017-05-18T00:46:50Z + + + 68.276 + 2017-05-18T00:46:51Z + + + 68.177 + 2017-05-18T00:46:52Z + + + 68.124 + 2017-05-18T00:46:53Z + + + 68.071 + 2017-05-18T00:46:54Z + + + 67.988 + 2017-05-18T00:46:55Z + + + 67.918 + 2017-05-18T00:46:56Z + + + 67.870 + 2017-05-18T00:46:57Z + + + 67.810 + 2017-05-18T00:46:58Z + + + 67.849 + 2017-05-18T00:46:59Z + + + 67.823 + 2017-05-18T00:47:00Z + + + 67.722 + 2017-05-18T00:47:01Z + + + 67.633 + 2017-05-18T00:47:02Z + + + 67.553 + 2017-05-18T00:47:03Z + + + 67.412 + 2017-05-18T00:47:04Z + + + 67.300 + 2017-05-18T00:47:05Z + + + 67.104 + 2017-05-18T00:47:06Z + + + 66.958 + 2017-05-18T00:47:07Z + + + 66.839 + 2017-05-18T00:47:08Z + + + 66.617 + 2017-05-18T00:47:09Z + + + 66.399 + 2017-05-18T00:47:10Z + + + 66.224 + 2017-05-18T00:47:11Z + + + 66.141 + 2017-05-18T00:47:12Z + + + 66.075 + 2017-05-18T00:47:13Z + + + 66.017 + 2017-05-18T00:47:14Z + + + 65.903 + 2017-05-18T00:47:15Z + + + 65.840 + 2017-05-18T00:47:16Z + + + 65.741 + 2017-05-18T00:47:17Z + + + 65.654 + 2017-05-18T00:47:18Z + + + 65.586 + 2017-05-18T00:47:19Z + + + 65.560 + 2017-05-18T00:47:20Z + + + 65.531 + 2017-05-18T00:47:21Z + + + 65.516 + 2017-05-18T00:47:22Z + + + 65.488 + 2017-05-18T00:47:23Z + + + 65.504 + 2017-05-18T00:47:24Z + + + 65.493 + 2017-05-18T00:47:25Z + + + 65.487 + 2017-05-18T00:47:26Z + + + 65.524 + 2017-05-18T00:47:27Z + + + 65.578 + 2017-05-18T00:47:28Z + + + 65.646 + 2017-05-18T00:47:29Z + + + 65.648 + 2017-05-18T00:47:30Z + + + 65.590 + 2017-05-18T00:47:31Z + + + 65.510 + 2017-05-18T00:47:32Z + + + 65.567 + 2017-05-18T00:47:33Z + + + 65.537 + 2017-05-18T00:47:34Z + + + 65.387 + 2017-05-18T00:47:35Z + + + 65.185 + 2017-05-18T00:47:36Z + + + 64.969 + 2017-05-18T00:47:37Z + + + 64.807 + 2017-05-18T00:47:38Z + + + 64.736 + 2017-05-18T00:47:39Z + + + 64.690 + 2017-05-18T00:47:40Z + + + 64.575 + 2017-05-18T00:47:41Z + + + 64.467 + 2017-05-18T00:47:42Z + + + 64.524 + 2017-05-18T00:47:43Z + + + 64.372 + 2017-05-18T00:47:44Z + + + 64.349 + 2017-05-18T00:47:45Z + + + 64.330 + 2017-05-18T00:47:46Z + + + + diff --git a/src/test/data/2019-09-07 16.17.12 Day.gpx b/src/test/data/2019-09-07 16.17.12 Day.gpx new file mode 100755 index 0000000..f9f7303 --- /dev/null +++ b/src/test/data/2019-09-07 16.17.12 Day.gpx @@ -0,0 +1 @@ +Garmin International2019-09-07T10:02:02Z2019-09-07 16:17:12 DayDarkMagenta910.032019-09-07T07:17:12Z909.542019-09-07T07:17:13Z909.062019-09-07T07:17:14Z908.102019-09-07T07:17:15Z908.102019-09-07T07:17:16Z908.582019-09-07T07:17:17Z908.582019-09-07T07:17:18Z908.582019-09-07T07:17:19Z908.582019-09-07T07:17:20Z909.062019-09-07T07:17:21Z908.582019-09-07T07:17:22Z909.062019-09-07T07:17:23Z909.062019-09-07T07:17:24Z908.582019-09-07T07:17:25Z908.582019-09-07T07:17:26Z908.582019-09-07T07:17:27Z908.582019-09-07T07:17:28Z908.582019-09-07T07:17:29Z908.582019-09-07T07:17:30Z908.582019-09-07T07:17:31Z908.582019-09-07T07:17:32Z908.582019-09-07T07:17:33Z908.582019-09-07T07:17:34Z908.582019-09-07T07:17:35Z908.102019-09-07T07:17:36Z907.622019-09-07T07:17:37Z907.622019-09-07T07:17:38Z907.142019-09-07T07:17:39Z907.142019-09-07T07:17:40Z906.662019-09-07T07:17:41Z906.182019-09-07T07:17:42Z906.182019-09-07T07:17:43Z906.182019-09-07T07:17:44Z905.702019-09-07T07:17:45Z905.702019-09-07T07:17:46Z905.222019-09-07T07:17:47Z905.222019-09-07T07:17:48Z905.222019-09-07T07:17:49Z905.222019-09-07T07:17:50Z904.742019-09-07T07:17:51Z904.742019-09-07T07:17:52Z904.262019-09-07T07:17:53Z903.782019-09-07T07:17:54Z903.302019-09-07T07:17:55Z903.302019-09-07T07:17:56Z902.822019-09-07T07:17:57Z902.822019-09-07T07:17:58Z903.302019-09-07T07:17:59Z903.302019-09-07T07:18:00Z903.302019-09-07T07:18:01Z903.782019-09-07T07:18:02Z903.782019-09-07T07:18:03Z903.782019-09-07T07:18:04Z903.782019-09-07T07:18:05Z903.302019-09-07T07:18:06Z903.302019-09-07T07:18:07Z903.302019-09-07T07:18:08Z903.302019-09-07T07:18:09Z902.822019-09-07T07:18:10Z902.822019-09-07T07:18:11Z902.822019-09-07T07:18:12Z902.822019-09-07T07:18:13Z902.822019-09-07T07:18:14Z902.822019-09-07T07:18:15Z902.332019-09-07T07:18:16Z902.332019-09-07T07:18:17Z902.332019-09-07T07:18:18Z902.332019-09-07T07:18:19Z901.852019-09-07T07:18:20Z901.852019-09-07T07:18:21Z901.852019-09-07T07:18:22Z901.852019-09-07T07:18:23Z901.852019-09-07T07:18:24Z901.852019-09-07T07:18:25Z901.852019-09-07T07:18:26Z901.852019-09-07T07:18:27Z901.852019-09-07T07:18:28Z902.332019-09-07T07:18:29Z902.332019-09-07T07:18:30Z902.332019-09-07T07:18:31Z902.822019-09-07T07:18:32Z902.822019-09-07T07:18:33Z902.822019-09-07T07:18:34Z902.822019-09-07T07:18:35Z902.822019-09-07T07:18:36Z902.822019-09-07T07:18:37Z902.822019-09-07T07:18:38Z903.302019-09-07T07:18:39Z903.302019-09-07T07:18:40Z903.782019-09-07T07:18:41Z904.262019-09-07T07:18:42Z904.262019-09-07T07:18:43Z904.262019-09-07T07:18:44Z904.262019-09-07T07:18:45Z904.262019-09-07T07:18:46Z903.782019-09-07T07:18:47Z903.302019-09-07T07:18:48Z902.822019-09-07T07:18:49Z902.822019-09-07T07:18:50Z902.822019-09-07T07:18:51Z902.332019-09-07T07:18:52Z902.332019-09-07T07:18:53Z902.332019-09-07T07:18:54Z902.332019-09-07T07:18:55Z902.332019-09-07T07:18:56Z902.332019-09-07T07:18:57Z901.852019-09-07T07:18:58Z901.852019-09-07T07:18:59Z901.372019-09-07T07:19:00Z901.372019-09-07T07:19:01Z901.852019-09-07T07:19:02Z901.852019-09-07T07:19:03Z901.852019-09-07T07:19:04Z901.852019-09-07T07:19:05Z901.852019-09-07T07:19:06Z901.852019-09-07T07:19:07Z901.372019-09-07T07:19:08Z901.372019-09-07T07:19:09Z901.372019-09-07T07:19:10Z900.892019-09-07T07:19:11Z900.892019-09-07T07:19:12Z900.412019-09-07T07:19:13Z900.412019-09-07T07:19:14Z899.932019-09-07T07:19:15Z899.452019-09-07T07:19:16Z898.972019-09-07T07:19:17Z898.972019-09-07T07:19:18Z898.492019-09-07T07:19:19Z898.492019-09-07T07:19:20Z898.492019-09-07T07:19:21Z898.492019-09-07T07:19:22Z898.492019-09-07T07:19:23Z898.492019-09-07T07:19:24Z898.012019-09-07T07:19:25Z898.012019-09-07T07:19:26Z898.012019-09-07T07:19:27Z898.012019-09-07T07:19:28Z898.012019-09-07T07:19:29Z898.492019-09-07T07:19:30Z898.492019-09-07T07:19:31Z898.492019-09-07T07:19:32Z898.492019-09-07T07:19:33Z898.492019-09-07T07:19:34Z898.492019-09-07T07:19:35Z898.012019-09-07T07:19:36Z898.012019-09-07T07:19:37Z898.012019-09-07T07:19:38Z898.012019-09-07T07:19:39Z898.012019-09-07T07:19:40Z898.492019-09-07T07:19:41Z898.492019-09-07T07:19:42Z898.972019-09-07T07:19:43Z898.972019-09-07T07:19:44Z898.972019-09-07T07:19:45Z899.452019-09-07T07:19:46Z899.452019-09-07T07:19:47Z899.452019-09-07T07:19:48Z899.452019-09-07T07:19:49Z899.452019-09-07T07:19:50Z899.452019-09-07T07:19:51Z899.452019-09-07T07:19:52Z899.932019-09-07T07:19:53Z899.932019-09-07T07:19:54Z899.932019-09-07T07:19:55Z899.932019-09-07T07:19:56Z899.452019-09-07T07:19:57Z899.452019-09-07T07:19:58Z899.452019-09-07T07:19:59Z899.452019-09-07T07:20:00Z898.972019-09-07T07:20:01Z898.492019-09-07T07:20:02Z898.012019-09-07T07:20:03Z897.532019-09-07T07:20:04Z897.052019-09-07T07:20:05Z896.572019-09-07T07:20:06Z896.092019-09-07T07:20:07Z896.092019-09-07T07:20:08Z895.612019-09-07T07:20:09Z895.612019-09-07T07:20:10Z895.612019-09-07T07:20:11Z895.122019-09-07T07:20:12Z894.162019-09-07T07:20:13Z893.682019-09-07T07:20:14Z892.722019-09-07T07:20:15Z892.242019-09-07T07:20:16Z891.282019-09-07T07:20:17Z890.802019-09-07T07:20:18Z890.322019-09-07T07:20:19Z889.842019-09-07T07:20:20Z889.842019-09-07T07:20:21Z889.362019-09-07T07:20:22Z889.362019-09-07T07:20:23Z889.362019-09-07T07:20:24Z889.362019-09-07T07:20:25Z889.362019-09-07T07:20:26Z888.882019-09-07T07:20:27Z888.882019-09-07T07:20:28Z888.882019-09-07T07:20:29Z888.402019-09-07T07:20:30Z888.402019-09-07T07:20:31Z887.912019-09-07T07:20:32Z887.912019-09-07T07:20:33Z887.432019-09-07T07:20:34Z887.432019-09-07T07:20:35Z887.432019-09-07T07:20:36Z887.432019-09-07T07:20:37Z887.432019-09-07T07:20:38Z887.432019-09-07T07:20:39Z887.912019-09-07T07:20:40Z887.912019-09-07T07:20:41Z888.402019-09-07T07:20:42Z888.402019-09-07T07:20:43Z888.882019-09-07T07:20:44Z888.882019-09-07T07:20:45Z889.362019-09-07T07:20:46Z889.362019-09-07T07:20:47Z889.842019-09-07T07:20:48Z889.842019-09-07T07:20:49Z890.322019-09-07T07:20:50Z890.322019-09-07T07:20:51Z890.802019-09-07T07:20:52Z890.802019-09-07T07:20:53Z890.802019-09-07T07:20:54Z890.802019-09-07T07:20:55Z890.802019-09-07T07:20:56Z890.322019-09-07T07:20:57Z890.322019-09-07T07:20:58Z890.322019-09-07T07:20:59Z889.842019-09-07T07:21:00Z889.842019-09-07T07:21:01Z889.362019-09-07T07:21:02Z889.362019-09-07T07:21:03Z889.362019-09-07T07:21:04Z888.882019-09-07T07:21:05Z888.402019-09-07T07:21:06Z888.402019-09-07T07:21:07Z888.402019-09-07T07:21:08Z887.912019-09-07T07:21:09Z888.402019-09-07T07:21:10Z888.402019-09-07T07:21:11Z888.402019-09-07T07:21:12Z888.882019-09-07T07:21:13Z888.882019-09-07T07:21:14Z889.362019-09-07T07:21:15Z889.362019-09-07T07:21:16Z889.842019-09-07T07:21:17Z889.842019-09-07T07:21:18Z890.322019-09-07T07:21:19Z890.802019-09-07T07:21:20Z890.802019-09-07T07:21:21Z891.282019-09-07T07:21:22Z891.282019-09-07T07:21:23Z891.282019-09-07T07:21:24Z891.762019-09-07T07:21:25Z891.762019-09-07T07:21:26Z891.762019-09-07T07:21:27Z891.762019-09-07T07:21:28Z891.762019-09-07T07:21:29Z892.242019-09-07T07:21:30Z892.242019-09-07T07:21:31Z892.242019-09-07T07:21:32Z891.762019-09-07T07:21:33Z891.762019-09-07T07:21:34Z891.762019-09-07T07:21:35Z891.282019-09-07T07:21:36Z891.282019-09-07T07:21:37Z891.282019-09-07T07:21:38Z891.282019-09-07T07:21:39Z891.282019-09-07T07:21:40Z891.282019-09-07T07:21:41Z891.762019-09-07T07:21:42Z891.762019-09-07T07:21:43Z891.762019-09-07T07:21:44Z891.762019-09-07T07:21:45Z891.762019-09-07T07:21:46Z892.242019-09-07T07:21:47Z892.242019-09-07T07:21:48Z892.242019-09-07T07:21:49Z892.242019-09-07T07:21:50Z892.242019-09-07T07:21:51Z892.242019-09-07T07:21:52Z892.242019-09-07T07:21:53Z892.242019-09-07T07:21:54Z892.242019-09-07T07:21:55Z891.762019-09-07T07:21:56Z891.762019-09-07T07:21:57Z891.762019-09-07T07:21:58Z891.282019-09-07T07:21:59Z891.282019-09-07T07:22:00Z891.282019-09-07T07:22:01Z891.282019-09-07T07:22:02Z891.282019-09-07T07:22:03Z891.762019-09-07T07:22:04Z891.762019-09-07T07:22:05Z891.282019-09-07T07:22:06Z891.762019-09-07T07:22:07Z891.282019-09-07T07:22:08Z891.282019-09-07T07:22:09Z891.282019-09-07T07:22:10Z891.282019-09-07T07:22:11Z891.282019-09-07T07:22:12Z891.762019-09-07T07:22:13Z891.762019-09-07T07:22:14Z892.242019-09-07T07:22:15Z892.242019-09-07T07:22:16Z891.762019-09-07T07:22:17Z891.282019-09-07T07:22:18Z891.282019-09-07T07:22:19Z890.802019-09-07T07:22:20Z891.282019-09-07T07:22:21Z890.802019-09-07T07:22:22Z890.802019-09-07T07:22:23Z890.322019-09-07T07:22:24Z890.322019-09-07T07:22:25Z890.322019-09-07T07:22:26Z890.322019-09-07T07:22:27Z890.322019-09-07T07:22:28Z890.322019-09-07T07:22:29Z890.322019-09-07T07:22:30Z890.802019-09-07T07:22:31Z890.802019-09-07T07:22:32Z890.802019-09-07T07:22:33Z891.282019-09-07T07:22:34Z891.282019-09-07T07:22:35Z891.762019-09-07T07:22:36Z891.762019-09-07T07:22:37Z892.242019-09-07T07:22:38Z891.762019-09-07T07:22:39Z891.762019-09-07T07:22:40Z891.762019-09-07T07:22:41Z891.762019-09-07T07:22:42Z891.762019-09-07T07:22:43Z891.762019-09-07T07:22:44Z892.242019-09-07T07:22:45Z892.242019-09-07T07:22:46Z892.242019-09-07T07:22:47Z892.242019-09-07T07:22:48Z892.242019-09-07T07:22:49Z892.242019-09-07T07:22:50Z892.242019-09-07T07:22:51Z892.242019-09-07T07:22:52Z891.762019-09-07T07:22:53Z891.762019-09-07T07:22:54Z891.282019-09-07T07:22:55Z891.282019-09-07T07:22:56Z890.802019-09-07T07:22:57Z890.802019-09-07T07:22:58Z890.802019-09-07T07:22:59Z890.802019-09-07T07:23:00Z890.802019-09-07T07:23:01Z890.802019-09-07T07:23:02Z891.282019-09-07T07:23:03Z891.282019-09-07T07:23:04Z891.762019-09-07T07:23:05Z891.762019-09-07T07:23:06Z892.242019-09-07T07:23:07Z892.722019-09-07T07:23:08Z893.202019-09-07T07:23:09Z893.202019-09-07T07:23:10Z893.682019-09-07T07:23:11Z893.682019-09-07T07:23:12Z893.682019-09-07T07:23:13Z893.682019-09-07T07:23:14Z893.682019-09-07T07:23:15Z893.682019-09-07T07:23:16Z893.202019-09-07T07:23:17Z893.202019-09-07T07:23:18Z893.202019-09-07T07:23:19Z892.722019-09-07T07:23:20Z892.722019-09-07T07:23:21Z892.242019-09-07T07:23:22Z892.242019-09-07T07:23:23Z892.242019-09-07T07:23:24Z891.762019-09-07T07:23:25Z891.762019-09-07T07:23:26Z891.282019-09-07T07:23:27Z891.282019-09-07T07:23:28Z890.802019-09-07T07:23:29Z890.322019-09-07T07:23:30Z890.322019-09-07T07:23:31Z890.322019-09-07T07:23:32Z890.322019-09-07T07:23:33Z890.322019-09-07T07:23:34Z890.322019-09-07T07:23:35Z890.322019-09-07T07:23:36Z890.322019-09-07T07:23:37Z890.322019-09-07T07:23:38Z890.322019-09-07T07:23:39Z890.802019-09-07T07:23:40Z890.802019-09-07T07:23:41Z890.802019-09-07T07:23:42Z890.802019-09-07T07:23:43Z890.802019-09-07T07:23:44Z890.802019-09-07T07:23:45Z890.802019-09-07T07:23:46Z890.802019-09-07T07:23:47Z890.802019-09-07T07:23:48Z890.322019-09-07T07:23:49Z890.322019-09-07T07:23:50Z890.322019-09-07T07:23:51Z890.322019-09-07T07:23:52Z890.322019-09-07T07:23:53Z890.322019-09-07T07:23:54Z889.842019-09-07T07:23:55Z889.842019-09-07T07:23:56Z889.842019-09-07T07:23:57Z889.842019-09-07T07:23:58Z889.842019-09-07T07:23:59Z889.842019-09-07T07:24:00Z889.842019-09-07T07:24:01Z889.842019-09-07T07:24:02Z889.842019-09-07T07:24:03Z889.842019-09-07T07:24:04Z889.842019-09-07T07:24:05Z889.842019-09-07T07:24:06Z889.842019-09-07T07:24:07Z889.842019-09-07T07:24:08Z890.322019-09-07T07:24:09Z890.322019-09-07T07:24:10Z890.322019-09-07T07:24:11Z890.802019-09-07T07:24:12Z890.802019-09-07T07:24:13Z890.802019-09-07T07:24:14Z890.802019-09-07T07:24:15Z890.802019-09-07T07:24:16Z890.802019-09-07T07:24:17Z890.802019-09-07T07:24:18Z890.322019-09-07T07:24:19Z890.322019-09-07T07:24:20Z890.322019-09-07T07:24:21Z890.802019-09-07T07:24:22Z891.282019-09-07T07:24:23Z891.282019-09-07T07:24:24Z891.762019-09-07T07:24:25Z892.242019-09-07T07:24:26Z892.722019-09-07T07:24:27Z892.722019-09-07T07:24:28Z892.722019-09-07T07:24:29Z893.202019-09-07T07:24:30Z892.722019-09-07T07:24:31Z892.722019-09-07T07:24:32Z892.722019-09-07T07:24:33Z892.722019-09-07T07:24:34Z892.722019-09-07T07:24:35Z892.722019-09-07T07:24:36Z892.722019-09-07T07:24:37Z892.242019-09-07T07:24:38Z892.242019-09-07T07:24:39Z892.242019-09-07T07:24:40Z892.242019-09-07T07:24:41Z892.722019-09-07T07:24:42Z892.722019-09-07T07:24:43Z893.202019-09-07T07:24:44Z894.162019-09-07T07:24:45Z895.122019-09-07T07:24:46Z896.092019-09-07T07:24:47Z897.052019-09-07T07:24:48Z897.532019-09-07T07:24:49Z898.012019-09-07T07:24:50Z898.012019-09-07T07:24:51Z898.492019-09-07T07:24:52Z898.492019-09-07T07:24:53Z898.972019-09-07T07:24:54Z898.972019-09-07T07:24:55Z898.972019-09-07T07:24:56Z898.972019-09-07T07:24:57Z899.452019-09-07T07:24:58Z899.452019-09-07T07:24:59Z899.452019-09-07T07:25:00Z899.932019-09-07T07:25:01Z899.932019-09-07T07:25:02Z900.412019-09-07T07:25:03Z900.892019-09-07T07:25:04Z900.892019-09-07T07:25:05Z901.372019-09-07T07:25:06Z901.372019-09-07T07:25:07Z901.372019-09-07T07:25:08Z901.852019-09-07T07:25:09Z901.852019-09-07T07:25:10Z901.852019-09-07T07:25:11Z901.852019-09-07T07:25:12Z902.332019-09-07T07:25:13Z902.332019-09-07T07:25:14Z902.332019-09-07T07:25:15Z901.852019-09-07T07:25:16Z902.332019-09-07T07:25:17Z902.332019-09-07T07:25:18Z902.332019-09-07T07:25:19Z902.332019-09-07T07:25:20Z902.332019-09-07T07:25:21Z902.822019-09-07T07:25:22Z902.822019-09-07T07:25:23Z903.302019-09-07T07:25:24Z903.782019-09-07T07:25:25Z904.262019-09-07T07:25:26Z904.262019-09-07T07:25:27Z904.262019-09-07T07:25:28Z904.262019-09-07T07:25:29Z904.262019-09-07T07:25:30Z904.262019-09-07T07:25:31Z904.262019-09-07T07:25:32Z904.262019-09-07T07:25:33Z904.262019-09-07T07:25:34Z904.262019-09-07T07:25:35Z904.262019-09-07T07:25:36Z904.262019-09-07T07:25:37Z904.262019-09-07T07:25:38Z904.262019-09-07T07:25:39Z904.262019-09-07T07:25:40Z904.262019-09-07T07:25:41Z904.262019-09-07T07:25:42Z904.262019-09-07T07:25:43Z904.262019-09-07T07:25:44Z904.262019-09-07T07:25:45Z904.262019-09-07T07:25:46Z904.742019-09-07T07:25:47Z904.742019-09-07T07:25:48Z904.742019-09-07T07:25:49Z905.222019-09-07T07:25:50Z904.742019-09-07T07:25:51Z904.742019-09-07T07:25:52Z904.742019-09-07T07:25:53Z904.742019-09-07T07:25:54Z904.742019-09-07T07:25:55Z904.742019-09-07T07:25:56Z905.222019-09-07T07:25:57Z905.222019-09-07T07:25:58Z905.222019-09-07T07:25:59Z905.702019-09-07T07:26:00Z905.702019-09-07T07:26:01Z905.702019-09-07T07:26:02Z906.182019-09-07T07:26:03Z906.182019-09-07T07:26:04Z906.182019-09-07T07:26:05Z906.182019-09-07T07:26:06Z906.182019-09-07T07:26:07Z906.662019-09-07T07:26:08Z906.662019-09-07T07:26:09Z907.142019-09-07T07:26:10Z907.142019-09-07T07:26:11Z907.142019-09-07T07:26:12Z907.142019-09-07T07:26:13Z907.142019-09-07T07:26:14Z906.662019-09-07T07:26:15Z906.662019-09-07T07:26:16Z906.662019-09-07T07:26:17Z906.662019-09-07T07:26:18Z907.142019-09-07T07:26:19Z907.142019-09-07T07:26:20Z907.622019-09-07T07:26:21Z907.142019-09-07T07:26:22Z907.622019-09-07T07:26:23Z907.142019-09-07T07:26:24Z907.142019-09-07T07:26:25Z907.142019-09-07T07:26:26Z907.142019-09-07T07:26:27Z907.142019-09-07T07:26:28Z907.142019-09-07T07:26:29Z907.142019-09-07T07:26:30Z907.142019-09-07T07:26:31Z907.142019-09-07T07:26:32Z907.142019-09-07T07:26:33Z907.142019-09-07T07:26:34Z907.142019-09-07T07:26:35Z907.622019-09-07T07:26:36Z907.622019-09-07T07:26:37Z907.622019-09-07T07:26:38Z907.622019-09-07T07:26:39Z907.622019-09-07T07:26:40Z907.622019-09-07T07:26:41Z907.622019-09-07T07:26:42Z908.102019-09-07T07:26:43Z908.102019-09-07T07:26:44Z908.102019-09-07T07:26:45Z908.102019-09-07T07:26:46Z907.622019-09-07T07:26:47Z907.622019-09-07T07:26:48Z907.622019-09-07T07:26:49Z907.142019-09-07T07:26:50Z906.662019-09-07T07:26:51Z906.662019-09-07T07:26:52Z906.662019-09-07T07:26:53Z906.662019-09-07T07:26:54Z906.662019-09-07T07:26:55Z906.662019-09-07T07:26:56Z906.662019-09-07T07:26:57Z906.662019-09-07T07:26:58Z906.662019-09-07T07:26:59Z906.662019-09-07T07:27:00Z906.662019-09-07T07:27:01Z906.662019-09-07T07:27:02Z906.662019-09-07T07:27:03Z906.662019-09-07T07:27:04Z906.182019-09-07T07:27:05Z906.182019-09-07T07:27:06Z906.182019-09-07T07:27:07Z906.182019-09-07T07:27:08Z906.182019-09-07T07:27:09Z906.182019-09-07T07:27:10Z906.182019-09-07T07:27:11Z906.182019-09-07T07:27:12Z906.182019-09-07T07:27:13Z906.182019-09-07T07:27:14Z905.702019-09-07T07:27:15Z905.702019-09-07T07:27:16Z905.702019-09-07T07:27:17Z905.222019-09-07T07:27:18Z905.222019-09-07T07:27:19Z905.222019-09-07T07:27:20Z905.222019-09-07T07:27:21Z905.702019-09-07T07:27:22Z905.702019-09-07T07:27:23Z905.702019-09-07T07:27:24Z906.182019-09-07T07:27:25Z906.182019-09-07T07:27:26Z906.662019-09-07T07:27:27Z906.662019-09-07T07:27:28Z907.142019-09-07T07:27:29Z907.142019-09-07T07:27:30Z907.622019-09-07T07:27:31Z907.622019-09-07T07:27:32Z908.102019-09-07T07:27:33Z908.102019-09-07T07:27:34Z908.582019-09-07T07:27:35Z908.582019-09-07T07:27:36Z909.062019-09-07T07:27:37Z909.062019-09-07T07:27:39Z909.542019-09-07T07:27:40Z909.542019-09-07T07:27:41Z910.032019-09-07T07:27:42Z910.512019-09-07T07:27:43Z910.992019-09-07T07:27:44Z910.992019-09-07T07:27:45Z911.472019-09-07T07:27:46Z911.472019-09-07T07:27:47Z911.952019-09-07T07:27:48Z912.432019-09-07T07:27:49Z912.912019-09-07T07:27:50Z913.392019-09-07T07:27:51Z913.872019-09-07T07:27:52Z914.352019-09-07T07:27:53Z914.832019-09-07T07:27:54Z915.312019-09-07T07:27:55Z915.792019-09-07T07:27:56Z915.792019-09-07T07:27:57Z916.272019-09-07T07:27:58Z916.752019-09-07T07:27:59Z917.242019-09-07T07:28:00Z917.242019-09-07T07:28:01Z917.722019-09-07T07:28:02Z917.722019-09-07T07:28:03Z917.242019-09-07T07:28:04Z917.242019-09-07T07:28:05Z917.242019-09-07T07:28:06Z917.242019-09-07T07:28:07Z917.242019-09-07T07:28:08Z917.722019-09-07T07:28:09Z917.722019-09-07T07:28:10Z917.722019-09-07T07:28:11Z918.202019-09-07T07:28:12Z918.202019-09-07T07:28:13Z918.682019-09-07T07:28:14Z919.162019-09-07T07:28:15Z919.162019-09-07T07:28:16Z919.642019-09-07T07:28:17Z919.642019-09-07T07:28:18Z920.122019-09-07T07:28:19Z920.122019-09-07T07:28:20Z920.122019-09-07T07:28:21Z920.602019-09-07T07:28:22Z920.602019-09-07T07:28:23Z921.082019-09-07T07:28:24Z921.082019-09-07T07:28:25Z921.082019-09-07T07:28:26Z920.602019-09-07T07:28:27Z920.602019-09-07T07:28:28Z920.122019-09-07T07:28:29Z920.122019-09-07T07:28:30Z920.122019-09-07T07:28:31Z920.122019-09-07T07:28:32Z919.642019-09-07T07:28:33Z919.642019-09-07T07:28:34Z919.162019-09-07T07:28:35Z919.162019-09-07T07:28:36Z918.682019-09-07T07:28:37Z918.682019-09-07T07:28:38Z918.682019-09-07T07:28:39Z919.162019-09-07T07:28:40Z919.162019-09-07T07:28:41Z919.162019-09-07T07:28:42Z919.162019-09-07T07:28:43Z919.642019-09-07T07:28:44Z920.122019-09-07T07:28:45Z920.122019-09-07T07:28:46Z920.602019-09-07T07:28:47Z921.082019-09-07T07:28:48Z921.082019-09-07T07:28:49Z921.562019-09-07T07:28:50Z922.042019-09-07T07:28:51Z922.042019-09-07T07:28:52Z922.522019-09-07T07:28:53Z923.002019-09-07T07:28:54Z923.002019-09-07T07:28:55Z923.482019-09-07T07:28:56Z923.482019-09-07T07:28:57Z923.482019-09-07T07:28:58Z923.482019-09-07T07:28:59Z923.482019-09-07T07:29:00Z923.482019-09-07T07:29:01Z923.482019-09-07T07:29:02Z923.482019-09-07T07:29:03Z923.962019-09-07T07:29:04Z923.962019-09-07T07:29:05Z923.962019-09-07T07:29:06Z923.482019-09-07T07:29:07Z923.482019-09-07T07:29:08Z923.482019-09-07T07:29:09Z923.482019-09-07T07:29:10Z923.962019-09-07T07:29:11Z923.962019-09-07T07:29:12Z923.962019-09-07T07:29:13Z923.962019-09-07T07:29:14Z923.962019-09-07T07:29:15Z923.962019-09-07T07:29:16Z923.962019-09-07T07:29:17Z923.962019-09-07T07:29:18Z923.962019-09-07T07:29:19Z924.452019-09-07T07:29:20Z924.452019-09-07T07:29:21Z924.932019-09-07T07:29:22Z924.932019-09-07T07:29:23Z925.412019-09-07T07:29:24Z925.412019-09-07T07:29:25Z925.892019-09-07T07:29:26Z925.892019-09-07T07:29:27Z925.892019-09-07T07:29:28Z925.892019-09-07T07:29:29Z925.892019-09-07T07:29:30Z925.892019-09-07T07:29:31Z926.372019-09-07T07:29:32Z926.372019-09-07T07:29:33Z926.852019-09-07T07:29:34Z926.852019-09-07T07:29:35Z927.332019-09-07T07:29:36Z927.332019-09-07T07:29:37Z927.332019-09-07T07:29:38Z927.332019-09-07T07:29:39Z927.332019-09-07T07:29:40Z927.812019-09-07T07:29:41Z927.812019-09-07T07:29:42Z927.812019-09-07T07:29:43Z928.292019-09-07T07:29:44Z928.292019-09-07T07:29:45Z928.292019-09-07T07:29:46Z928.772019-09-07T07:29:47Z928.772019-09-07T07:29:48Z928.772019-09-07T07:29:49Z928.772019-09-07T07:29:50Z928.772019-09-07T07:29:51Z928.772019-09-07T07:29:52Z929.252019-09-07T07:29:53Z929.732019-09-07T07:29:54Z929.732019-09-07T07:29:55Z929.732019-09-07T07:29:56Z930.212019-09-07T07:29:57Z930.212019-09-07T07:29:58Z930.692019-09-07T07:29:59Z930.692019-09-07T07:30:00Z930.692019-09-07T07:30:01Z931.172019-09-07T07:30:02Z931.172019-09-07T07:30:03Z931.172019-09-07T07:30:04Z931.172019-09-07T07:30:05Z931.172019-09-07T07:30:06Z931.172019-09-07T07:30:07Z931.172019-09-07T07:30:08Z930.692019-09-07T07:30:09Z930.692019-09-07T07:30:10Z930.212019-09-07T07:30:11Z930.212019-09-07T07:30:12Z929.732019-09-07T07:30:13Z929.252019-09-07T07:30:14Z929.252019-09-07T07:30:15Z928.292019-09-07T07:30:16Z927.332019-09-07T07:30:17Z926.852019-09-07T07:30:18Z925.412019-09-07T07:30:20Z924.932019-09-07T07:30:21Z924.452019-09-07T07:30:22Z923.962019-09-07T07:30:23Z923.962019-09-07T07:30:24Z924.452019-09-07T07:30:25Z924.452019-09-07T07:30:26Z924.932019-09-07T07:30:27Z924.932019-09-07T07:30:28Z924.932019-09-07T07:30:29Z925.412019-09-07T07:30:30Z926.372019-09-07T07:30:32Z926.852019-09-07T07:30:36Z927.812019-09-07T07:30:41Z928.292019-09-07T07:30:43Z929.252019-09-07T07:30:46Z929.732019-09-07T07:30:47Z931.172019-09-07T07:30:52Z931.652019-09-07T07:30:55Z931.652019-09-07T07:30:56Z931.172019-09-07T07:30:57Z930.692019-09-07T07:30:58Z929.732019-09-07T07:30:59Z928.292019-09-07T07:31:01Z925.892019-09-07T07:31:04Z925.412019-09-07T07:31:05Z924.932019-09-07T07:31:06Z925.892019-09-07T07:31:13Z925.892019-09-07T07:31:14Z926.372019-09-07T07:31:17Z926.372019-09-07T07:31:22Z927.332019-09-07T07:31:27Z927.812019-09-07T07:31:33Z928.292019-09-07T07:31:36Z929.252019-09-07T07:31:39Z929.252019-09-07T07:31:40Z929.252019-09-07T07:31:42Z924.452019-09-07T07:31:47Z923.002019-09-07T07:31:48Z921.082019-09-07T07:31:49Z919.642019-09-07T07:31:50Z918.202019-09-07T07:31:51Z917.722019-09-07T07:31:52Z917.722019-09-07T07:31:53Z917.722019-09-07T07:31:54Z917.722019-09-07T07:31:55Z917.722019-09-07T07:31:56Z917.722019-09-07T07:31:57Z917.242019-09-07T07:31:59Z917.242019-09-07T07:32:00Z917.242019-09-07T07:32:01Z917.242019-09-07T07:32:02Z917.242019-09-07T07:32:03Z917.242019-09-07T07:32:04Z917.242019-09-07T07:32:05Z917.242019-09-07T07:32:06Z917.242019-09-07T07:32:07Z916.752019-09-07T07:32:08Z916.752019-09-07T07:32:09Z917.242019-09-07T07:32:10Z917.242019-09-07T07:32:11Z917.242019-09-07T07:32:12Z917.242019-09-07T07:32:13Z917.242019-09-07T07:32:14Z917.242019-09-07T07:32:15Z917.242019-09-07T07:32:16Z917.242019-09-07T07:32:17Z917.242019-09-07T07:32:18Z917.242019-09-07T07:32:19Z917.242019-09-07T07:32:20Z916.752019-09-07T07:32:21Z916.752019-09-07T07:32:22Z916.272019-09-07T07:32:23Z916.272019-09-07T07:32:24Z915.792019-09-07T07:32:25Z915.312019-09-07T07:32:26Z915.312019-09-07T07:32:27Z915.312019-09-07T07:32:28Z914.832019-09-07T07:32:29Z914.832019-09-07T07:32:30Z914.832019-09-07T07:32:31Z914.832019-09-07T07:32:32Z914.832019-09-07T07:32:33Z914.832019-09-07T07:32:34Z914.832019-09-07T07:32:35Z914.832019-09-07T07:32:36Z914.832019-09-07T07:32:37Z914.832019-09-07T07:32:38Z914.832019-09-07T07:32:39Z914.832019-09-07T07:32:40Z914.832019-09-07T07:32:41Z914.832019-09-07T07:32:42Z914.832019-09-07T07:32:43Z914.832019-09-07T07:32:44Z915.312019-09-07T07:32:45Z915.312019-09-07T07:32:46Z915.312019-09-07T07:32:47Z915.312019-09-07T07:32:48Z915.312019-09-07T07:32:49Z914.832019-09-07T07:32:50Z914.832019-09-07T07:32:51Z913.872019-09-07T07:32:52Z913.392019-09-07T07:32:53Z912.912019-09-07T07:32:54Z912.432019-09-07T07:32:55Z911.952019-09-07T07:32:56Z911.472019-09-07T07:32:57Z910.992019-09-07T07:32:58Z910.512019-09-07T07:32:59Z910.032019-09-07T07:33:00Z909.542019-09-07T07:33:01Z909.062019-09-07T07:33:02Z908.582019-09-07T07:33:03Z908.582019-09-07T07:33:04Z908.102019-09-07T07:33:05Z908.102019-09-07T07:33:06Z908.582019-09-07T07:33:07Z908.102019-09-07T07:33:08Z908.102019-09-07T07:33:09Z908.102019-09-07T07:33:10Z908.102019-09-07T07:33:11Z908.102019-09-07T07:33:12Z908.102019-09-07T07:33:13Z908.102019-09-07T07:33:14Z908.102019-09-07T07:33:15Z908.102019-09-07T07:33:16Z908.102019-09-07T07:33:17Z907.622019-09-07T07:33:18Z907.622019-09-07T07:33:19Z907.142019-09-07T07:33:20Z907.622019-09-07T07:33:21Z907.622019-09-07T07:33:22Z907.622019-09-07T07:33:23Z907.622019-09-07T07:33:24Z907.622019-09-07T07:33:25Z907.622019-09-07T07:33:26Z907.622019-09-07T07:33:27Z907.142019-09-07T07:33:28Z907.142019-09-07T07:33:29Z907.142019-09-07T07:33:30Z907.142019-09-07T07:33:31Z907.142019-09-07T07:33:32Z907.142019-09-07T07:33:33Z907.622019-09-07T07:33:34Z907.622019-09-07T07:33:35Z907.622019-09-07T07:33:36Z907.142019-09-07T07:33:37Z907.142019-09-07T07:33:38Z907.142019-09-07T07:33:39Z906.182019-09-07T07:33:40Z905.702019-09-07T07:33:41Z905.222019-09-07T07:33:42Z904.742019-09-07T07:33:43Z904.742019-09-07T07:33:44Z904.262019-09-07T07:33:45Z903.782019-09-07T07:33:46Z902.822019-09-07T07:33:47Z902.332019-09-07T07:33:48Z901.372019-09-07T07:33:49Z900.412019-09-07T07:33:50Z898.972019-09-07T07:33:51Z898.012019-09-07T07:33:52Z897.052019-09-07T07:33:53Z896.572019-09-07T07:33:54Z895.612019-09-07T07:33:55Z895.122019-09-07T07:33:56Z895.122019-09-07T07:33:57Z895.122019-09-07T07:33:58Z895.122019-09-07T07:33:59Z895.122019-09-07T07:34:00Z895.122019-09-07T07:34:01Z895.122019-09-07T07:34:02Z894.642019-09-07T07:34:03Z894.642019-09-07T07:34:04Z895.122019-09-07T07:34:05Z895.122019-09-07T07:34:06Z895.122019-09-07T07:34:07Z895.122019-09-07T07:34:08Z894.642019-09-07T07:34:09Z894.642019-09-07T07:34:10Z894.642019-09-07T07:34:11Z894.642019-09-07T07:34:12Z894.162019-09-07T07:34:13Z894.642019-09-07T07:34:14Z894.162019-09-07T07:34:15Z893.682019-09-07T07:34:16Z893.202019-09-07T07:34:17Z893.202019-09-07T07:34:18Z892.722019-09-07T07:34:19Z892.722019-09-07T07:34:20Z892.242019-09-07T07:34:21Z892.242019-09-07T07:34:22Z892.242019-09-07T07:34:23Z892.242019-09-07T07:34:24Z892.242019-09-07T07:34:25Z892.242019-09-07T07:34:26Z892.242019-09-07T07:34:27Z891.762019-09-07T07:34:28Z891.762019-09-07T07:34:29Z891.282019-09-07T07:34:30Z891.282019-09-07T07:34:31Z890.802019-09-07T07:34:32Z890.322019-09-07T07:34:33Z889.842019-09-07T07:34:34Z889.362019-09-07T07:34:35Z889.362019-09-07T07:34:36Z889.362019-09-07T07:34:37Z888.882019-09-07T07:34:38Z888.402019-09-07T07:34:39Z888.402019-09-07T07:34:40Z888.402019-09-07T07:34:41Z887.912019-09-07T07:34:42Z887.912019-09-07T07:34:43Z887.912019-09-07T07:34:44Z887.912019-09-07T07:34:45Z887.912019-09-07T07:34:46Z887.912019-09-07T07:34:47Z887.432019-09-07T07:34:48Z887.432019-09-07T07:34:49Z887.432019-09-07T07:34:50Z887.432019-09-07T07:34:51Z886.952019-09-07T07:34:52Z886.952019-09-07T07:34:53Z886.952019-09-07T07:34:54Z886.952019-09-07T07:34:55Z886.952019-09-07T07:34:56Z886.472019-09-07T07:34:57Z886.472019-09-07T07:34:58Z885.992019-09-07T07:34:59Z885.512019-09-07T07:35:00Z885.512019-09-07T07:35:01Z885.032019-09-07T07:35:02Z884.552019-09-07T07:35:03Z884.072019-09-07T07:35:04Z884.072019-09-07T07:35:05Z884.072019-09-07T07:35:06Z883.592019-09-07T07:35:07Z883.592019-09-07T07:35:08Z883.112019-09-07T07:35:09Z883.112019-09-07T07:35:10Z883.112019-09-07T07:35:11Z883.112019-09-07T07:35:12Z883.112019-09-07T07:35:13Z883.592019-09-07T07:35:14Z883.592019-09-07T07:35:15Z883.592019-09-07T07:35:16Z884.072019-09-07T07:35:17Z884.072019-09-07T07:35:18Z884.072019-09-07T07:35:19Z884.072019-09-07T07:35:20Z884.072019-09-07T07:35:21Z883.592019-09-07T07:35:22Z883.592019-09-07T07:35:23Z883.592019-09-07T07:35:24Z883.592019-09-07T07:35:25Z883.592019-09-07T07:35:26Z883.112019-09-07T07:35:27Z883.112019-09-07T07:35:28Z883.112019-09-07T07:35:29Z883.112019-09-07T07:35:30Z883.112019-09-07T07:35:31Z883.112019-09-07T07:35:32Z883.112019-09-07T07:35:33Z883.112019-09-07T07:35:34Z883.112019-09-07T07:35:35Z883.112019-09-07T07:35:36Z883.112019-09-07T07:35:37Z883.592019-09-07T07:35:38Z883.592019-09-07T07:35:39Z883.592019-09-07T07:35:40Z884.072019-09-07T07:35:41Z884.072019-09-07T07:35:42Z884.552019-09-07T07:35:43Z884.552019-09-07T07:35:44Z885.032019-09-07T07:35:45Z885.512019-09-07T07:35:46Z885.512019-09-07T07:35:47Z885.992019-09-07T07:35:48Z885.992019-09-07T07:35:49Z886.472019-09-07T07:35:50Z886.472019-09-07T07:35:51Z886.952019-09-07T07:35:52Z886.952019-09-07T07:35:53Z886.952019-09-07T07:35:54Z886.952019-09-07T07:35:55Z886.952019-09-07T07:35:56Z886.472019-09-07T07:35:57Z886.472019-09-07T07:35:58Z886.472019-09-07T07:35:59Z885.992019-09-07T07:36:00Z885.512019-09-07T07:36:01Z885.032019-09-07T07:36:02Z884.552019-09-07T07:36:03Z884.552019-09-07T07:36:04Z884.072019-09-07T07:36:05Z883.592019-09-07T07:36:06Z883.592019-09-07T07:36:07Z883.592019-09-07T07:36:08Z883.112019-09-07T07:36:09Z882.632019-09-07T07:36:10Z882.152019-09-07T07:36:11Z882.152019-09-07T07:36:12Z882.152019-09-07T07:36:13Z882.152019-09-07T07:36:14Z882.152019-09-07T07:36:15Z882.152019-09-07T07:36:16Z882.152019-09-07T07:36:17Z882.152019-09-07T07:36:18Z881.672019-09-07T07:36:19Z881.672019-09-07T07:36:20Z881.192019-09-07T07:36:21Z881.192019-09-07T07:36:22Z881.192019-09-07T07:36:23Z880.712019-09-07T07:36:24Z880.712019-09-07T07:36:25Z880.712019-09-07T07:36:26Z880.712019-09-07T07:36:27Z880.222019-09-07T07:36:28Z879.742019-09-07T07:36:29Z878.782019-09-07T07:36:30Z877.822019-09-07T07:36:31Z877.342019-09-07T07:36:32Z876.862019-09-07T07:36:33Z876.382019-09-07T07:36:34Z876.382019-09-07T07:36:35Z876.382019-09-07T07:36:36Z876.862019-09-07T07:36:37Z876.862019-09-07T07:36:38Z876.862019-09-07T07:36:39Z877.342019-09-07T07:36:40Z877.342019-09-07T07:36:41Z877.342019-09-07T07:36:42Z877.342019-09-07T07:36:43Z877.342019-09-07T07:36:44Z877.822019-09-07T07:36:45Z877.822019-09-07T07:36:46Z877.822019-09-07T07:36:47Z877.822019-09-07T07:36:48Z877.822019-09-07T07:36:49Z878.302019-09-07T07:36:50Z878.782019-09-07T07:36:51Z879.262019-09-07T07:36:52Z879.742019-09-07T07:36:53Z880.222019-09-07T07:36:54Z880.712019-09-07T07:36:55Z881.192019-09-07T07:36:56Z881.192019-09-07T07:36:57Z881.192019-09-07T07:36:58Z881.192019-09-07T07:36:59Z881.192019-09-07T07:37:00Z881.192019-09-07T07:37:01Z880.712019-09-07T07:37:02Z880.222019-09-07T07:37:03Z880.222019-09-07T07:37:04Z880.222019-09-07T07:37:05Z879.742019-09-07T07:37:06Z879.742019-09-07T07:37:07Z879.262019-09-07T07:37:08Z879.262019-09-07T07:37:09Z879.262019-09-07T07:37:10Z878.782019-09-07T07:37:11Z878.782019-09-07T07:37:12Z878.302019-09-07T07:37:14Z878.302019-09-07T07:37:15Z877.342019-09-07T07:37:16Z877.342019-09-07T07:37:17Z876.862019-09-07T07:37:18Z876.382019-09-07T07:37:19Z876.382019-09-07T07:37:20Z876.382019-09-07T07:37:21Z875.902019-09-07T07:37:22Z875.902019-09-07T07:37:23Z875.422019-09-07T07:37:24Z875.422019-09-07T07:37:25Z874.942019-09-07T07:37:26Z874.942019-09-07T07:37:27Z874.942019-09-07T07:37:28Z874.462019-09-07T07:37:29Z874.462019-09-07T07:37:30Z873.982019-09-07T07:37:31Z873.502019-09-07T07:37:32Z873.502019-09-07T07:37:33Z873.012019-09-07T07:37:34Z872.532019-09-07T07:37:35Z872.532019-09-07T07:37:36Z872.052019-09-07T07:37:37Z871.572019-09-07T07:37:38Z871.092019-09-07T07:37:39Z870.612019-09-07T07:37:40Z870.612019-09-07T07:37:41Z870.132019-09-07T07:37:42Z869.652019-09-07T07:37:43Z869.652019-09-07T07:37:44Z869.172019-09-07T07:37:45Z868.692019-09-07T07:37:46Z868.692019-09-07T07:37:47Z868.212019-09-07T07:37:48Z867.732019-09-07T07:37:49Z867.732019-09-07T07:37:50Z867.252019-09-07T07:37:51Z866.772019-09-07T07:37:52Z866.772019-09-07T07:37:53Z866.292019-09-07T07:37:54Z866.292019-09-07T07:37:55Z865.802019-09-07T07:37:56Z865.802019-09-07T07:37:57Z865.802019-09-07T07:37:58Z865.322019-09-07T07:37:59Z865.322019-09-07T07:38:00Z865.322019-09-07T07:38:01Z864.842019-09-07T07:38:02Z864.362019-09-07T07:38:03Z864.362019-09-07T07:38:04Z864.362019-09-07T07:38:05Z863.882019-09-07T07:38:06Z863.882019-09-07T07:38:07Z863.882019-09-07T07:38:08Z863.882019-09-07T07:38:09Z863.882019-09-07T07:38:10Z863.882019-09-07T07:38:11Z863.882019-09-07T07:38:12Z863.882019-09-07T07:38:13Z863.882019-09-07T07:38:14Z863.882019-09-07T07:38:15Z864.362019-09-07T07:38:16Z864.362019-09-07T07:38:17Z864.842019-09-07T07:38:18Z864.842019-09-07T07:38:19Z865.322019-09-07T07:38:20Z865.322019-09-07T07:38:21Z865.322019-09-07T07:38:22Z865.322019-09-07T07:38:23Z865.322019-09-07T07:38:24Z865.802019-09-07T07:38:25Z865.802019-09-07T07:38:26Z866.292019-09-07T07:38:27Z866.292019-09-07T07:38:28Z866.292019-09-07T07:38:29Z866.772019-09-07T07:38:30Z866.772019-09-07T07:38:31Z866.772019-09-07T07:38:32Z866.772019-09-07T07:38:33Z867.252019-09-07T07:38:34Z867.732019-09-07T07:38:35Z867.732019-09-07T07:38:36Z867.732019-09-07T07:38:37Z868.212019-09-07T07:38:38Z868.212019-09-07T07:38:39Z868.212019-09-07T07:38:40Z868.212019-09-07T07:38:41Z868.212019-09-07T07:38:42Z868.212019-09-07T07:38:43Z868.212019-09-07T07:38:44Z868.212019-09-07T07:38:45Z868.212019-09-07T07:38:46Z868.212019-09-07T07:38:47Z867.732019-09-07T07:38:48Z867.732019-09-07T07:38:49Z867.252019-09-07T07:38:50Z867.252019-09-07T07:38:51Z866.772019-09-07T07:38:52Z866.772019-09-07T07:38:53Z866.292019-09-07T07:38:54Z866.292019-09-07T07:38:55Z866.292019-09-07T07:38:56Z865.802019-09-07T07:38:57Z865.322019-09-07T07:38:58Z865.322019-09-07T07:38:59Z864.842019-09-07T07:39:00Z864.362019-09-07T07:39:01Z863.882019-09-07T07:39:02Z863.882019-09-07T07:39:03Z863.402019-09-07T07:39:04Z863.402019-09-07T07:39:05Z863.402019-09-07T07:39:06Z862.922019-09-07T07:39:07Z862.922019-09-07T07:39:08Z862.442019-09-07T07:39:09Z861.962019-09-07T07:39:10Z861.962019-09-07T07:39:11Z861.962019-09-07T07:39:12Z861.962019-09-07T07:39:13Z861.962019-09-07T07:39:14Z861.962019-09-07T07:39:15Z861.482019-09-07T07:39:16Z861.482019-09-07T07:39:17Z861.482019-09-07T07:39:18Z861.002019-09-07T07:39:19Z861.002019-09-07T07:39:20Z861.482019-09-07T07:39:21Z861.482019-09-07T07:39:22Z861.482019-09-07T07:39:23Z861.482019-09-07T07:39:24Z861.482019-09-07T07:39:25Z861.482019-09-07T07:39:26Z861.482019-09-07T07:39:27Z861.482019-09-07T07:39:28Z861.002019-09-07T07:39:29Z861.002019-09-07T07:39:30Z861.002019-09-07T07:39:31Z861.002019-09-07T07:39:32Z861.482019-09-07T07:39:33Z861.002019-09-07T07:39:34Z861.482019-09-07T07:39:35Z861.482019-09-07T07:39:36Z861.482019-09-07T07:39:37Z861.482019-09-07T07:39:38Z861.482019-09-07T07:39:39Z861.482019-09-07T07:39:40Z861.002019-09-07T07:39:41Z860.522019-09-07T07:39:42Z860.042019-09-07T07:39:43Z859.562019-09-07T07:39:44Z859.082019-09-07T07:39:45Z858.592019-09-07T07:39:46Z858.112019-09-07T07:39:47Z857.632019-09-07T07:39:48Z857.152019-09-07T07:39:49Z856.672019-09-07T07:39:50Z856.192019-09-07T07:39:51Z855.712019-09-07T07:39:52Z855.712019-09-07T07:39:53Z855.712019-09-07T07:39:54Z855.232019-09-07T07:39:55Z855.232019-09-07T07:39:56Z855.232019-09-07T07:39:57Z855.232019-09-07T07:39:58Z855.232019-09-07T07:39:59Z855.232019-09-07T07:40:00Z855.232019-09-07T07:40:01Z855.232019-09-07T07:40:02Z855.232019-09-07T07:40:03Z855.232019-09-07T07:40:04Z855.232019-09-07T07:40:05Z854.752019-09-07T07:40:06Z854.752019-09-07T07:40:07Z854.272019-09-07T07:40:08Z853.792019-09-07T07:40:09Z853.312019-09-07T07:40:10Z852.832019-09-07T07:40:11Z852.832019-09-07T07:40:12Z851.872019-09-07T07:40:13Z850.902019-09-07T07:40:14Z850.422019-09-07T07:40:15Z848.982019-09-07T07:40:16Z848.502019-09-07T07:40:17Z848.502019-09-07T07:40:18Z848.022019-09-07T07:40:19Z848.022019-09-07T07:40:20Z847.542019-09-07T07:40:21Z847.062019-09-07T07:40:22Z846.582019-09-07T07:40:23Z846.102019-09-07T07:40:24Z845.622019-09-07T07:40:25Z844.662019-09-07T07:40:26Z843.692019-09-07T07:40:27Z843.212019-09-07T07:40:28Z842.252019-09-07T07:40:29Z841.292019-09-07T07:40:30Z839.852019-09-07T07:40:31Z839.372019-09-07T07:40:32Z838.892019-09-07T07:40:33Z838.412019-09-07T07:40:34Z837.932019-09-07T07:40:35Z837.452019-09-07T07:40:36Z837.452019-09-07T07:40:37Z836.962019-09-07T07:40:38Z836.482019-09-07T07:40:39Z836.002019-09-07T07:40:40Z835.522019-09-07T07:40:41Z835.522019-09-07T07:40:42Z835.042019-09-07T07:40:43Z834.082019-09-07T07:40:44Z833.602019-09-07T07:40:45Z833.602019-09-07T07:40:46Z833.122019-09-07T07:40:47Z833.122019-09-07T07:40:48Z832.642019-09-07T07:40:49Z832.162019-09-07T07:40:50Z832.162019-09-07T07:40:51Z832.162019-09-07T07:40:52Z832.162019-09-07T07:40:53Z832.162019-09-07T07:40:54Z832.642019-09-07T07:40:55Z832.642019-09-07T07:40:56Z832.642019-09-07T07:40:57Z832.642019-09-07T07:40:58Z832.642019-09-07T07:40:59Z832.642019-09-07T07:41:00Z832.642019-09-07T07:41:01Z833.122019-09-07T07:41:02Z833.122019-09-07T07:41:03Z833.122019-09-07T07:41:04Z833.602019-09-07T07:41:05Z833.602019-09-07T07:41:06Z833.602019-09-07T07:41:07Z833.122019-09-07T07:41:08Z833.122019-09-07T07:41:09Z833.122019-09-07T07:41:10Z832.642019-09-07T07:41:11Z832.642019-09-07T07:41:12Z832.642019-09-07T07:41:13Z832.642019-09-07T07:41:14Z832.642019-09-07T07:41:15Z832.642019-09-07T07:41:16Z832.642019-09-07T07:41:17Z833.122019-09-07T07:41:18Z832.642019-09-07T07:41:19Z833.122019-09-07T07:41:20Z833.122019-09-07T07:41:21Z833.122019-09-07T07:41:22Z833.122019-09-07T07:41:23Z833.602019-09-07T07:41:24Z833.602019-09-07T07:41:25Z834.082019-09-07T07:41:26Z834.082019-09-07T07:41:27Z834.082019-09-07T07:41:28Z834.562019-09-07T07:41:29Z834.082019-09-07T07:41:30Z834.562019-09-07T07:41:31Z834.562019-09-07T07:41:32Z834.082019-09-07T07:41:33Z833.602019-09-07T07:41:34Z833.602019-09-07T07:41:35Z833.122019-09-07T07:41:36Z832.642019-09-07T07:41:37Z832.642019-09-07T07:41:38Z832.162019-09-07T07:41:39Z831.682019-09-07T07:41:40Z831.202019-09-07T07:41:41Z831.202019-09-07T07:41:42Z830.722019-09-07T07:41:43Z830.242019-09-07T07:41:44Z829.272019-09-07T07:41:45Z829.272019-09-07T07:41:46Z828.792019-09-07T07:41:47Z828.312019-09-07T07:41:48Z827.832019-09-07T07:41:49Z827.352019-09-07T07:41:50Z827.352019-09-07T07:41:51Z826.872019-09-07T07:41:52Z826.872019-09-07T07:41:53Z826.872019-09-07T07:41:54Z826.392019-09-07T07:41:55Z826.392019-09-07T07:41:56Z826.392019-09-07T07:41:57Z826.392019-09-07T07:41:58Z826.392019-09-07T07:41:59Z826.392019-09-07T07:42:00Z826.392019-09-07T07:42:01Z826.392019-09-07T07:42:02Z826.392019-09-07T07:42:03Z826.872019-09-07T07:42:04Z826.872019-09-07T07:42:05Z826.872019-09-07T07:42:06Z826.872019-09-07T07:42:07Z827.352019-09-07T07:42:08Z827.352019-09-07T07:42:09Z827.352019-09-07T07:42:10Z827.352019-09-07T07:42:11Z827.352019-09-07T07:42:12Z827.352019-09-07T07:42:13Z827.352019-09-07T07:42:14Z826.872019-09-07T07:42:15Z826.872019-09-07T07:42:16Z826.872019-09-07T07:42:17Z826.872019-09-07T07:42:18Z826.872019-09-07T07:42:19Z826.872019-09-07T07:42:20Z826.872019-09-07T07:42:21Z826.872019-09-07T07:42:22Z826.872019-09-07T07:42:23Z826.872019-09-07T07:42:24Z826.872019-09-07T07:42:25Z826.392019-09-07T07:42:26Z826.392019-09-07T07:42:27Z826.392019-09-07T07:42:28Z826.392019-09-07T07:42:29Z826.392019-09-07T07:42:30Z826.392019-09-07T07:42:31Z825.912019-09-07T07:42:32Z825.912019-09-07T07:42:33Z825.432019-09-07T07:42:35Z825.432019-09-07T07:42:36Z825.912019-09-07T07:42:37Z825.912019-09-07T07:42:38Z825.432019-09-07T07:42:39Z825.912019-09-07T07:42:40Z825.432019-09-07T07:42:41Z825.432019-09-07T07:42:42Z825.432019-09-07T07:42:43Z825.432019-09-07T07:42:44Z825.432019-09-07T07:42:45Z825.432019-09-07T07:42:46Z825.432019-09-07T07:42:47Z823.992019-09-07T07:42:48Z823.032019-09-07T07:42:49Z823.032019-09-07T07:42:50Z823.032019-09-07T07:42:51Z823.032019-09-07T07:42:52Z823.032019-09-07T07:42:53Z823.032019-09-07T07:42:54Z823.032019-09-07T07:42:55Z823.032019-09-07T07:42:56Z823.032019-09-07T07:42:57Z823.512019-09-07T07:42:58Z823.512019-09-07T07:42:59Z823.512019-09-07T07:43:00Z823.992019-09-07T07:43:01Z823.992019-09-07T07:43:02Z823.512019-09-07T07:43:03Z823.512019-09-07T07:43:04Z823.032019-09-07T07:43:05Z823.032019-09-07T07:43:06Z822.552019-09-07T07:43:07Z822.552019-09-07T07:43:08Z822.062019-09-07T07:43:09Z821.582019-09-07T07:43:10Z821.102019-09-07T07:43:11Z820.622019-09-07T07:43:12Z820.622019-09-07T07:43:13Z820.142019-09-07T07:43:14Z820.142019-09-07T07:43:15Z820.622019-09-07T07:43:16Z820.622019-09-07T07:43:17Z820.622019-09-07T07:43:18Z821.102019-09-07T07:43:19Z821.102019-09-07T07:43:20Z821.102019-09-07T07:43:21Z821.102019-09-07T07:43:22Z820.622019-09-07T07:43:23Z820.622019-09-07T07:43:24Z820.142019-09-07T07:43:25Z820.142019-09-07T07:43:26Z820.142019-09-07T07:43:27Z820.142019-09-07T07:43:28Z820.142019-09-07T07:43:29Z820.142019-09-07T07:43:30Z820.142019-09-07T07:43:31Z820.142019-09-07T07:43:32Z820.622019-09-07T07:43:33Z820.622019-09-07T07:43:34Z820.622019-09-07T07:43:35Z821.102019-09-07T07:43:36Z821.102019-09-07T07:43:37Z821.582019-09-07T07:43:38Z822.062019-09-07T07:43:39Z822.552019-09-07T07:43:40Z823.032019-09-07T07:43:41Z823.032019-09-07T07:43:42Z823.032019-09-07T07:43:43Z823.032019-09-07T07:43:44Z823.032019-09-07T07:43:45Z823.512019-09-07T07:43:46Z823.032019-09-07T07:43:47Z823.032019-09-07T07:43:48Z823.512019-09-07T07:43:49Z823.512019-09-07T07:43:50Z823.032019-09-07T07:43:51Z823.032019-09-07T07:43:52Z823.032019-09-07T07:43:53Z822.552019-09-07T07:43:54Z822.062019-09-07T07:43:55Z822.062019-09-07T07:43:56Z822.062019-09-07T07:43:57Z822.062019-09-07T07:43:58Z821.582019-09-07T07:43:59Z821.582019-09-07T07:44:00Z821.582019-09-07T07:44:01Z821.582019-09-07T07:44:02Z821.582019-09-07T07:44:03Z821.582019-09-07T07:44:04Z821.582019-09-07T07:44:05Z821.582019-09-07T07:44:06Z821.582019-09-07T07:44:07Z821.582019-09-07T07:44:08Z821.582019-09-07T07:44:09Z821.102019-09-07T07:44:10Z821.102019-09-07T07:44:11Z821.102019-09-07T07:44:12Z821.102019-09-07T07:44:13Z821.102019-09-07T07:44:14Z821.582019-09-07T07:44:15Z821.102019-09-07T07:44:16Z821.102019-09-07T07:44:17Z821.102019-09-07T07:44:18Z821.102019-09-07T07:44:19Z820.622019-09-07T07:44:20Z820.622019-09-07T07:44:21Z820.622019-09-07T07:44:22Z820.142019-09-07T07:44:23Z820.142019-09-07T07:44:24Z820.142019-09-07T07:44:25Z820.142019-09-07T07:44:26Z820.142019-09-07T07:44:27Z820.142019-09-07T07:44:28Z819.662019-09-07T07:44:29Z819.182019-09-07T07:44:30Z819.182019-09-07T07:44:31Z818.702019-09-07T07:44:32Z818.702019-09-07T07:44:33Z818.702019-09-07T07:44:34Z818.702019-09-07T07:44:35Z818.222019-09-07T07:44:36Z818.222019-09-07T07:44:37Z818.222019-09-07T07:44:38Z818.222019-09-07T07:44:39Z818.222019-09-07T07:44:40Z818.222019-09-07T07:44:41Z818.222019-09-07T07:44:42Z818.222019-09-07T07:44:43Z818.702019-09-07T07:44:44Z818.702019-09-07T07:44:45Z819.182019-09-07T07:44:46Z819.182019-09-07T07:44:47Z819.182019-09-07T07:44:48Z819.182019-09-07T07:44:49Z818.702019-09-07T07:44:50Z818.702019-09-07T07:44:51Z818.702019-09-07T07:44:52Z818.222019-09-07T07:44:53Z818.222019-09-07T07:44:54Z818.222019-09-07T07:44:55Z817.742019-09-07T07:44:56Z817.742019-09-07T07:44:57Z817.262019-09-07T07:44:58Z817.262019-09-07T07:44:59Z816.782019-09-07T07:45:00Z816.782019-09-07T07:45:01Z816.782019-09-07T07:45:02Z816.302019-09-07T07:45:03Z815.822019-09-07T07:45:04Z815.342019-09-07T07:45:05Z815.822019-09-07T07:45:06Z815.342019-09-07T07:45:07Z815.342019-09-07T07:45:08Z815.342019-09-07T07:45:09Z814.852019-09-07T07:45:10Z814.852019-09-07T07:45:11Z814.852019-09-07T07:45:12Z814.852019-09-07T07:45:13Z814.372019-09-07T07:45:14Z814.372019-09-07T07:45:15Z814.372019-09-07T07:45:16Z813.892019-09-07T07:45:17Z813.412019-09-07T07:45:18Z812.452019-09-07T07:45:19Z811.972019-09-07T07:45:20Z811.492019-09-07T07:45:21Z811.012019-09-07T07:45:22Z810.532019-09-07T07:45:23Z810.052019-09-07T07:45:24Z810.052019-09-07T07:45:25Z809.572019-09-07T07:45:26Z809.092019-09-07T07:45:27Z808.612019-09-07T07:45:28Z808.132019-09-07T07:45:29Z808.132019-09-07T07:45:30Z807.642019-09-07T07:45:31Z807.162019-09-07T07:45:32Z807.162019-09-07T07:45:33Z806.682019-09-07T07:45:34Z806.682019-09-07T07:45:35Z806.682019-09-07T07:45:36Z806.682019-09-07T07:45:37Z806.202019-09-07T07:45:38Z805.722019-09-07T07:45:39Z805.722019-09-07T07:45:40Z805.722019-09-07T07:45:41Z805.242019-09-07T07:45:42Z805.242019-09-07T07:45:43Z805.242019-09-07T07:45:44Z804.762019-09-07T07:45:45Z804.282019-09-07T07:45:46Z804.282019-09-07T07:45:47Z804.282019-09-07T07:45:48Z804.282019-09-07T07:45:49Z804.282019-09-07T07:45:50Z804.282019-09-07T07:45:51Z804.282019-09-07T07:45:52Z804.282019-09-07T07:45:53Z804.282019-09-07T07:45:54Z804.282019-09-07T07:45:55Z804.762019-09-07T07:45:56Z804.762019-09-07T07:45:57Z804.762019-09-07T07:45:58Z804.762019-09-07T07:45:59Z804.762019-09-07T07:46:00Z805.242019-09-07T07:46:01Z805.242019-09-07T07:46:02Z805.242019-09-07T07:46:03Z806.202019-09-07T07:46:04Z806.682019-09-07T07:46:05Z806.682019-09-07T07:46:06Z807.162019-09-07T07:46:07Z807.642019-09-07T07:46:08Z807.642019-09-07T07:46:09Z808.132019-09-07T07:46:10Z808.132019-09-07T07:46:11Z808.612019-09-07T07:46:12Z808.612019-09-07T07:46:13Z809.092019-09-07T07:46:14Z809.572019-09-07T07:46:15Z810.052019-09-07T07:46:16Z810.532019-09-07T07:46:17Z811.012019-09-07T07:46:18Z811.492019-09-07T07:46:19Z811.972019-09-07T07:46:20Z812.452019-09-07T07:46:21Z812.452019-09-07T07:46:22Z812.932019-09-07T07:46:23Z812.932019-09-07T07:46:24Z812.932019-09-07T07:46:25Z812.932019-09-07T07:46:26Z812.932019-09-07T07:46:27Z812.932019-09-07T07:46:28Z812.932019-09-07T07:46:29Z812.932019-09-07T07:46:30Z812.932019-09-07T07:46:31Z812.932019-09-07T07:46:32Z812.932019-09-07T07:46:33Z813.412019-09-07T07:46:34Z812.932019-09-07T07:46:35Z812.932019-09-07T07:46:36Z812.932019-09-07T07:46:37Z812.932019-09-07T07:46:38Z812.932019-09-07T07:46:39Z813.412019-09-07T07:46:40Z813.412019-09-07T07:46:41Z813.412019-09-07T07:46:42Z813.892019-09-07T07:46:43Z813.892019-09-07T07:46:44Z813.892019-09-07T07:46:45Z814.372019-09-07T07:46:46Z814.372019-09-07T07:46:47Z814.852019-09-07T07:46:48Z814.852019-09-07T07:46:49Z814.852019-09-07T07:46:50Z815.342019-09-07T07:46:51Z815.342019-09-07T07:46:52Z815.822019-09-07T07:46:53Z816.302019-09-07T07:46:54Z816.302019-09-07T07:46:55Z816.302019-09-07T07:46:56Z816.302019-09-07T07:46:57Z816.782019-09-07T07:46:58Z816.782019-09-07T07:46:59Z817.262019-09-07T07:47:00Z817.262019-09-07T07:47:01Z817.262019-09-07T07:47:02Z817.262019-09-07T07:47:03Z817.262019-09-07T07:47:04Z817.262019-09-07T07:47:05Z817.262019-09-07T07:47:06Z817.262019-09-07T07:47:07Z817.742019-09-07T07:47:08Z817.742019-09-07T07:47:09Z817.742019-09-07T07:47:10Z818.222019-09-07T07:47:11Z818.222019-09-07T07:47:12Z818.222019-09-07T07:47:13Z818.702019-09-07T07:47:14Z818.702019-09-07T07:47:15Z819.182019-09-07T07:47:16Z819.182019-09-07T07:47:17Z819.182019-09-07T07:47:18Z819.182019-09-07T07:47:19Z819.182019-09-07T07:47:20Z819.182019-09-07T07:47:21Z819.182019-09-07T07:47:22Z819.182019-09-07T07:47:23Z819.182019-09-07T07:47:24Z819.182019-09-07T07:47:25Z819.662019-09-07T07:47:26Z820.142019-09-07T07:47:27Z820.142019-09-07T07:47:28Z820.142019-09-07T07:47:29Z820.142019-09-07T07:47:30Z820.622019-09-07T07:47:31Z820.622019-09-07T07:47:32Z820.622019-09-07T07:47:33Z821.102019-09-07T07:47:34Z821.102019-09-07T07:47:35Z821.582019-09-07T07:47:36Z822.062019-09-07T07:47:37Z822.062019-09-07T07:47:38Z822.552019-09-07T07:47:39Z823.032019-09-07T07:47:40Z823.032019-09-07T07:47:41Z823.512019-09-07T07:47:42Z823.512019-09-07T07:47:43Z823.992019-09-07T07:47:44Z824.472019-09-07T07:47:45Z824.472019-09-07T07:47:46Z825.432019-09-07T07:47:47Z825.912019-09-07T07:47:48Z826.392019-09-07T07:47:49Z826.872019-09-07T07:47:50Z826.872019-09-07T07:47:51Z827.352019-09-07T07:47:52Z827.352019-09-07T07:47:53Z827.832019-09-07T07:47:54Z827.832019-09-07T07:47:55Z828.312019-09-07T07:47:56Z828.312019-09-07T07:47:57Z828.792019-09-07T07:47:58Z828.792019-09-07T07:47:59Z828.792019-09-07T07:48:00Z829.272019-09-07T07:48:01Z829.272019-09-07T07:48:02Z829.762019-09-07T07:48:03Z830.242019-09-07T07:48:04Z830.242019-09-07T07:48:05Z830.722019-09-07T07:48:06Z830.722019-09-07T07:48:07Z831.202019-09-07T07:48:08Z831.682019-09-07T07:48:09Z831.682019-09-07T07:48:10Z832.162019-09-07T07:48:11Z832.162019-09-07T07:48:12Z832.162019-09-07T07:48:13Z832.162019-09-07T07:48:14Z832.162019-09-07T07:48:15Z832.642019-09-07T07:48:16Z832.642019-09-07T07:48:17Z833.122019-09-07T07:48:18Z833.602019-09-07T07:48:19Z833.602019-09-07T07:48:20Z834.082019-09-07T07:48:21Z834.082019-09-07T07:48:22Z834.082019-09-07T07:48:23Z834.562019-09-07T07:48:24Z834.562019-09-07T07:48:25Z834.562019-09-07T07:48:26Z835.042019-09-07T07:48:27Z835.042019-09-07T07:48:28Z835.042019-09-07T07:48:29Z835.042019-09-07T07:48:30Z835.042019-09-07T07:48:31Z834.562019-09-07T07:48:32Z834.562019-09-07T07:48:33Z834.562019-09-07T07:48:34Z834.082019-09-07T07:48:35Z834.562019-09-07T07:48:36Z834.562019-09-07T07:48:37Z834.562019-09-07T07:48:38Z834.082019-09-07T07:48:39Z833.602019-09-07T07:48:40Z833.602019-09-07T07:48:41Z833.122019-09-07T07:48:42Z833.122019-09-07T07:48:43Z832.642019-09-07T07:48:44Z832.642019-09-07T07:48:45Z832.642019-09-07T07:48:46Z832.162019-09-07T07:48:47Z832.162019-09-07T07:48:48Z832.162019-09-07T07:48:49Z832.162019-09-07T07:48:50Z832.162019-09-07T07:48:51Z832.162019-09-07T07:48:52Z832.162019-09-07T07:48:53Z832.162019-09-07T07:48:54Z832.162019-09-07T07:48:55Z832.162019-09-07T07:48:56Z832.642019-09-07T07:48:57Z832.642019-09-07T07:48:58Z833.122019-09-07T07:48:59Z833.122019-09-07T07:49:00Z833.122019-09-07T07:49:01Z833.122019-09-07T07:49:02Z833.602019-09-07T07:49:03Z833.602019-09-07T07:49:04Z833.602019-09-07T07:49:05Z834.082019-09-07T07:49:06Z834.082019-09-07T07:49:07Z834.082019-09-07T07:49:08Z833.602019-09-07T07:49:09Z833.602019-09-07T07:49:10Z833.122019-09-07T07:49:11Z832.642019-09-07T07:49:12Z832.642019-09-07T07:49:13Z832.162019-09-07T07:49:14Z831.682019-09-07T07:49:15Z831.682019-09-07T07:49:16Z831.202019-09-07T07:49:17Z831.202019-09-07T07:49:18Z830.722019-09-07T07:49:19Z830.242019-09-07T07:49:20Z830.242019-09-07T07:49:21Z829.762019-09-07T07:49:22Z829.272019-09-07T07:49:23Z828.792019-09-07T07:49:24Z828.312019-09-07T07:49:25Z828.312019-09-07T07:49:26Z827.832019-09-07T07:49:27Z827.352019-09-07T07:49:28Z827.352019-09-07T07:49:29Z826.872019-09-07T07:49:30Z826.872019-09-07T07:49:31Z826.872019-09-07T07:49:32Z826.392019-09-07T07:49:33Z825.912019-09-07T07:49:34Z825.912019-09-07T07:49:35Z825.432019-09-07T07:49:36Z825.912019-09-07T07:49:37Z825.912019-09-07T07:49:38Z825.912019-09-07T07:49:39Z825.912019-09-07T07:49:40Z826.392019-09-07T07:49:41Z826.392019-09-07T07:49:42Z826.392019-09-07T07:49:43Z826.392019-09-07T07:49:44Z826.392019-09-07T07:49:45Z826.392019-09-07T07:49:46Z826.392019-09-07T07:49:47Z826.392019-09-07T07:49:48Z826.392019-09-07T07:49:49Z826.392019-09-07T07:49:50Z826.392019-09-07T07:49:51Z826.392019-09-07T07:49:52Z826.392019-09-07T07:49:53Z826.392019-09-07T07:49:54Z826.392019-09-07T07:49:55Z826.392019-09-07T07:49:56Z826.872019-09-07T07:49:57Z826.872019-09-07T07:49:58Z826.872019-09-07T07:49:59Z826.392019-09-07T07:50:00Z826.392019-09-07T07:50:01Z826.392019-09-07T07:50:02Z826.392019-09-07T07:50:03Z826.872019-09-07T07:50:04Z826.872019-09-07T07:50:05Z826.872019-09-07T07:50:06Z827.352019-09-07T07:50:07Z827.352019-09-07T07:50:08Z827.832019-09-07T07:50:09Z828.312019-09-07T07:50:10Z828.312019-09-07T07:50:11Z828.792019-09-07T07:50:12Z828.792019-09-07T07:50:13Z829.272019-09-07T07:50:14Z829.272019-09-07T07:50:15Z829.272019-09-07T07:50:16Z829.762019-09-07T07:50:17Z829.762019-09-07T07:50:18Z830.242019-09-07T07:50:19Z830.242019-09-07T07:50:20Z830.242019-09-07T07:50:21Z830.242019-09-07T07:50:22Z830.242019-09-07T07:50:23Z830.242019-09-07T07:50:24Z830.242019-09-07T07:50:25Z830.722019-09-07T07:50:26Z831.202019-09-07T07:50:27Z831.202019-09-07T07:50:28Z831.682019-09-07T07:50:29Z832.162019-09-07T07:50:30Z832.162019-09-07T07:50:31Z832.642019-09-07T07:50:32Z833.122019-09-07T07:50:33Z833.122019-09-07T07:50:34Z833.602019-09-07T07:50:35Z834.082019-09-07T07:50:36Z834.082019-09-07T07:50:37Z834.562019-09-07T07:50:38Z835.042019-09-07T07:50:39Z835.042019-09-07T07:50:40Z835.042019-09-07T07:50:41Z835.522019-09-07T07:50:42Z835.522019-09-07T07:50:43Z836.002019-09-07T07:50:44Z836.002019-09-07T07:50:45Z836.002019-09-07T07:50:46Z836.482019-09-07T07:50:47Z836.482019-09-07T07:50:48Z836.962019-09-07T07:50:49Z836.962019-09-07T07:50:50Z837.452019-09-07T07:50:51Z837.452019-09-07T07:50:52Z837.452019-09-07T07:50:53Z837.932019-09-07T07:50:54Z837.932019-09-07T07:50:55Z838.412019-09-07T07:50:56Z838.892019-09-07T07:50:57Z838.892019-09-07T07:50:58Z838.892019-09-07T07:50:59Z839.372019-09-07T07:51:00Z838.892019-09-07T07:51:02Z838.892019-09-07T07:51:03Z838.412019-09-07T07:51:04Z838.412019-09-07T07:51:05Z837.932019-09-07T07:51:06Z837.932019-09-07T07:51:07Z837.932019-09-07T07:51:08Z837.932019-09-07T07:51:09Z837.932019-09-07T07:51:10Z837.932019-09-07T07:51:11Z837.932019-09-07T07:51:12Z837.932019-09-07T07:51:13Z837.932019-09-07T07:51:14Z837.932019-09-07T07:51:15Z838.412019-09-07T07:51:16Z838.412019-09-07T07:51:17Z838.412019-09-07T07:51:18Z838.412019-09-07T07:51:19Z838.412019-09-07T07:51:20Z838.412019-09-07T07:51:21Z837.932019-09-07T07:51:22Z838.412019-09-07T07:51:23Z838.412019-09-07T07:51:24Z838.412019-09-07T07:51:25Z838.412019-09-07T07:51:26Z838.412019-09-07T07:51:27Z838.892019-09-07T07:51:28Z839.372019-09-07T07:51:29Z839.372019-09-07T07:51:30Z839.852019-09-07T07:51:31Z839.852019-09-07T07:51:32Z840.332019-09-07T07:51:33Z840.812019-09-07T07:51:34Z841.292019-09-07T07:51:35Z841.292019-09-07T07:51:36Z841.772019-09-07T07:51:37Z842.252019-09-07T07:51:38Z842.732019-09-07T07:51:39Z842.732019-09-07T07:51:40Z842.732019-09-07T07:51:41Z842.732019-09-07T07:51:42Z842.732019-09-07T07:51:43Z842.732019-09-07T07:51:44Z842.732019-09-07T07:51:45Z842.252019-09-07T07:51:46Z842.252019-09-07T07:51:47Z841.772019-09-07T07:51:48Z842.252019-09-07T07:51:49Z842.252019-09-07T07:51:50Z842.732019-09-07T07:51:51Z842.252019-09-07T07:51:52Z842.252019-09-07T07:51:53Z843.212019-09-07T07:51:55Z843.212019-09-07T07:51:56Z843.692019-09-07T07:51:57Z844.182019-09-07T07:51:58Z844.662019-09-07T07:51:59Z844.662019-09-07T07:52:00Z845.142019-09-07T07:52:01Z845.622019-09-07T07:52:02Z846.102019-09-07T07:52:03Z846.102019-09-07T07:52:04Z846.582019-09-07T07:52:05Z847.542019-09-07T07:52:06Z847.542019-09-07T07:52:07Z848.022019-09-07T07:52:08Z848.502019-09-07T07:52:09Z848.502019-09-07T07:52:10Z848.982019-09-07T07:52:11Z848.982019-09-07T07:52:12Z848.982019-09-07T07:52:13Z848.502019-09-07T07:52:14Z848.982019-09-07T07:52:15Z849.462019-09-07T07:52:16Z849.462019-09-07T07:52:17Z849.942019-09-07T07:52:18Z850.422019-09-07T07:52:19Z850.422019-09-07T07:52:20Z850.422019-09-07T07:52:21Z849.942019-09-07T07:52:22Z849.942019-09-07T07:52:23Z849.942019-09-07T07:52:24Z849.462019-09-07T07:52:25Z849.462019-09-07T07:52:26Z848.982019-09-07T07:52:27Z848.502019-09-07T07:52:28Z848.022019-09-07T07:52:29Z848.022019-09-07T07:52:30Z847.542019-09-07T07:52:31Z847.542019-09-07T07:52:32Z847.062019-09-07T07:52:33Z847.062019-09-07T07:52:34Z847.062019-09-07T07:52:35Z847.062019-09-07T07:52:36Z847.542019-09-07T07:52:37Z847.542019-09-07T07:52:38Z847.542019-09-07T07:52:39Z848.022019-09-07T07:52:40Z848.022019-09-07T07:52:41Z848.022019-09-07T07:52:42Z848.022019-09-07T07:52:43Z848.022019-09-07T07:52:44Z848.022019-09-07T07:52:45Z848.022019-09-07T07:52:46Z848.502019-09-07T07:52:47Z848.502019-09-07T07:52:48Z849.462019-09-07T07:52:49Z849.462019-09-07T07:52:50Z849.462019-09-07T07:52:51Z849.462019-09-07T07:52:52Z849.462019-09-07T07:52:53Z849.462019-09-07T07:52:54Z849.462019-09-07T07:52:55Z849.462019-09-07T07:52:56Z849.942019-09-07T07:52:57Z849.942019-09-07T07:52:58Z849.942019-09-07T07:52:59Z850.422019-09-07T07:53:00Z850.422019-09-07T07:53:01Z850.422019-09-07T07:53:02Z850.422019-09-07T07:53:03Z850.422019-09-07T07:53:04Z850.422019-09-07T07:53:05Z850.422019-09-07T07:53:06Z850.422019-09-07T07:53:07Z850.902019-09-07T07:53:08Z850.902019-09-07T07:53:09Z850.902019-09-07T07:53:10Z851.382019-09-07T07:53:11Z851.382019-09-07T07:53:12Z851.382019-09-07T07:53:13Z851.872019-09-07T07:53:14Z851.872019-09-07T07:53:15Z852.352019-09-07T07:53:16Z852.832019-09-07T07:53:17Z852.832019-09-07T07:53:18Z852.832019-09-07T07:53:19Z853.312019-09-07T07:53:20Z853.792019-09-07T07:53:21Z853.792019-09-07T07:53:22Z854.272019-09-07T07:53:23Z854.272019-09-07T07:53:24Z854.272019-09-07T07:53:25Z854.752019-09-07T07:53:26Z854.752019-09-07T07:53:27Z854.752019-09-07T07:53:28Z855.232019-09-07T07:53:29Z854.752019-09-07T07:53:30Z854.752019-09-07T07:53:31Z854.752019-09-07T07:53:32Z854.272019-09-07T07:53:33Z853.312019-09-07T07:53:34Z852.832019-09-07T07:53:35Z852.352019-09-07T07:53:36Z851.872019-09-07T07:53:37Z851.382019-09-07T07:53:38Z850.902019-09-07T07:53:39Z849.942019-09-07T07:53:40Z849.942019-09-07T07:53:41Z849.942019-09-07T07:53:42Z849.942019-09-07T07:53:43Z849.942019-09-07T07:53:44Z849.942019-09-07T07:53:45Z849.462019-09-07T07:53:46Z849.462019-09-07T07:53:47Z849.462019-09-07T07:53:48Z849.462019-09-07T07:53:49Z849.462019-09-07T07:53:50Z848.982019-09-07T07:53:51Z848.982019-09-07T07:53:52Z848.502019-09-07T07:53:53Z847.542019-09-07T07:53:54Z845.142019-09-07T07:53:55Z843.212019-09-07T07:53:56Z841.772019-09-07T07:53:57Z840.812019-09-07T07:53:58Z840.332019-09-07T07:53:59Z839.852019-09-07T07:54:00Z839.372019-09-07T07:54:01Z837.932019-09-07T07:54:02Z837.452019-09-07T07:54:03Z837.452019-09-07T07:54:04Z836.962019-09-07T07:54:05Z836.962019-09-07T07:54:06Z836.482019-09-07T07:54:07Z836.482019-09-07T07:54:08Z836.482019-09-07T07:54:09Z836.002019-09-07T07:54:10Z836.002019-09-07T07:54:11Z835.522019-09-07T07:54:12Z835.522019-09-07T07:54:13Z835.042019-09-07T07:54:14Z835.042019-09-07T07:54:15Z835.042019-09-07T07:54:16Z835.042019-09-07T07:54:17Z835.042019-09-07T07:54:18Z835.042019-09-07T07:54:19Z835.042019-09-07T07:54:20Z835.042019-09-07T07:54:21Z835.042019-09-07T07:54:22Z835.042019-09-07T07:54:23Z835.042019-09-07T07:54:24Z835.042019-09-07T07:54:25Z835.042019-09-07T07:54:26Z835.042019-09-07T07:54:27Z835.522019-09-07T07:54:28Z835.522019-09-07T07:54:29Z836.002019-09-07T07:54:30Z836.002019-09-07T07:54:31Z836.482019-09-07T07:54:32Z836.482019-09-07T07:54:33Z836.962019-09-07T07:54:34Z836.962019-09-07T07:54:35Z836.962019-09-07T07:54:36Z836.962019-09-07T07:54:37Z836.962019-09-07T07:54:38Z836.482019-09-07T07:54:39Z836.002019-09-07T07:54:40Z835.522019-09-07T07:54:41Z835.042019-09-07T07:54:42Z834.562019-09-07T07:54:43Z834.562019-09-07T07:54:44Z834.562019-09-07T07:54:45Z834.082019-09-07T07:54:46Z833.602019-09-07T07:54:47Z833.122019-09-07T07:54:48Z833.122019-09-07T07:54:49Z833.122019-09-07T07:54:50Z833.122019-09-07T07:54:51Z832.642019-09-07T07:54:52Z832.162019-09-07T07:54:53Z832.162019-09-07T07:54:54Z832.162019-09-07T07:54:55Z832.162019-09-07T07:54:56Z832.162019-09-07T07:54:57Z832.162019-09-07T07:54:58Z832.162019-09-07T07:54:59Z832.162019-09-07T07:55:00Z832.162019-09-07T07:55:01Z832.642019-09-07T07:55:02Z832.642019-09-07T07:55:03Z833.122019-09-07T07:55:04Z833.602019-09-07T07:55:05Z834.082019-09-07T07:55:06Z834.082019-09-07T07:55:07Z834.562019-09-07T07:55:08Z835.042019-09-07T07:55:09Z835.042019-09-07T07:55:10Z835.042019-09-07T07:55:11Z835.042019-09-07T07:55:12Z835.522019-09-07T07:55:13Z836.002019-09-07T07:55:14Z836.002019-09-07T07:55:15Z836.002019-09-07T07:55:16Z836.482019-09-07T07:55:17Z836.482019-09-07T07:55:18Z836.482019-09-07T07:55:19Z836.482019-09-07T07:55:20Z836.482019-09-07T07:55:21Z836.482019-09-07T07:55:22Z836.482019-09-07T07:55:23Z836.482019-09-07T07:55:24Z836.482019-09-07T07:55:25Z836.962019-09-07T07:55:26Z836.962019-09-07T07:55:27Z837.452019-09-07T07:55:28Z837.452019-09-07T07:55:29Z837.452019-09-07T07:55:30Z837.932019-09-07T07:55:31Z837.932019-09-07T07:55:32Z838.412019-09-07T07:55:33Z838.412019-09-07T07:55:34Z838.412019-09-07T07:55:35Z838.412019-09-07T07:55:36Z838.412019-09-07T07:55:37Z838.892019-09-07T07:55:38Z838.892019-09-07T07:55:39Z838.892019-09-07T07:55:40Z838.892019-09-07T07:55:41Z838.892019-09-07T07:55:42Z839.372019-09-07T07:55:43Z839.852019-09-07T07:55:44Z839.852019-09-07T07:55:45Z839.372019-09-07T07:55:46Z839.372019-09-07T07:55:47Z839.372019-09-07T07:55:48Z839.372019-09-07T07:55:49Z838.892019-09-07T07:55:50Z838.412019-09-07T07:55:51Z838.892019-09-07T07:55:52Z838.412019-09-07T07:55:53Z838.412019-09-07T07:55:54Z838.412019-09-07T07:55:55Z837.452019-09-07T07:55:56Z837.452019-09-07T07:55:57Z837.932019-09-07T07:55:58Z837.932019-09-07T07:55:59Z837.932019-09-07T07:56:00Z837.452019-09-07T07:56:01Z836.962019-09-07T07:56:02Z836.002019-09-07T07:56:03Z836.002019-09-07T07:56:04Z835.522019-09-07T07:56:05Z835.522019-09-07T07:56:06Z835.522019-09-07T07:56:07Z835.042019-09-07T07:56:08Z835.522019-09-07T07:56:09Z835.042019-09-07T07:56:10Z835.042019-09-07T07:56:11Z834.562019-09-07T07:56:12Z834.562019-09-07T07:56:13Z834.082019-09-07T07:56:14Z834.082019-09-07T07:56:15Z833.602019-09-07T07:56:16Z833.122019-09-07T07:56:17Z832.642019-09-07T07:56:18Z832.642019-09-07T07:56:19Z832.642019-09-07T07:56:20Z832.162019-09-07T07:56:21Z832.162019-09-07T07:56:22Z832.162019-09-07T07:56:23Z832.162019-09-07T07:56:24Z832.642019-09-07T07:56:25Z832.642019-09-07T07:56:26Z832.642019-09-07T07:56:27Z833.122019-09-07T07:56:28Z833.122019-09-07T07:56:29Z833.602019-09-07T07:56:30Z834.082019-09-07T07:56:31Z834.082019-09-07T07:56:32Z834.562019-09-07T07:56:33Z834.562019-09-07T07:56:34Z834.562019-09-07T07:56:35Z834.562019-09-07T07:56:36Z834.082019-09-07T07:56:37Z833.602019-09-07T07:56:38Z833.122019-09-07T07:56:39Z832.642019-09-07T07:56:40Z832.162019-09-07T07:56:41Z831.682019-09-07T07:56:42Z831.202019-09-07T07:56:43Z830.722019-09-07T07:56:44Z829.762019-09-07T07:56:45Z829.762019-09-07T07:56:46Z829.272019-09-07T07:56:47Z827.832019-09-07T07:56:48Z826.872019-09-07T07:56:49Z826.392019-09-07T07:56:50Z825.912019-09-07T07:56:51Z825.912019-09-07T07:56:52Z825.912019-09-07T07:56:53Z825.912019-09-07T07:56:54Z825.912019-09-07T07:56:55Z825.432019-09-07T07:56:56Z825.432019-09-07T07:56:57Z825.432019-09-07T07:56:58Z825.432019-09-07T07:56:59Z825.432019-09-07T07:57:00Z824.952019-09-07T07:57:01Z824.952019-09-07T07:57:02Z824.952019-09-07T07:57:03Z824.952019-09-07T07:57:04Z825.432019-09-07T07:57:05Z825.432019-09-07T07:57:06Z824.952019-09-07T07:57:07Z824.472019-09-07T07:57:08Z823.992019-09-07T07:57:09Z823.512019-09-07T07:57:10Z823.032019-09-07T07:57:11Z822.552019-09-07T07:57:12Z821.582019-09-07T07:57:13Z820.622019-09-07T07:57:14Z819.662019-09-07T07:57:15Z817.742019-09-07T07:57:16Z816.302019-09-07T07:57:17Z815.342019-09-07T07:57:18Z814.372019-09-07T07:57:19Z813.412019-09-07T07:57:20Z812.932019-09-07T07:57:21Z812.932019-09-07T07:57:22Z812.932019-09-07T07:57:23Z812.932019-09-07T07:57:24Z812.932019-09-07T07:57:25Z812.452019-09-07T07:57:26Z811.972019-09-07T07:57:27Z811.972019-09-07T07:57:28Z811.972019-09-07T07:57:29Z811.972019-09-07T07:57:30Z811.492019-09-07T07:57:31Z811.012019-09-07T07:57:32Z811.012019-09-07T07:57:33Z810.532019-09-07T07:57:34Z810.052019-09-07T07:57:35Z810.052019-09-07T07:57:36Z809.572019-09-07T07:57:37Z809.572019-09-07T07:57:38Z809.092019-09-07T07:57:39Z808.612019-09-07T07:57:40Z808.132019-09-07T07:57:41Z807.162019-09-07T07:57:42Z806.682019-09-07T07:57:43Z806.682019-09-07T07:57:44Z806.202019-09-07T07:57:45Z805.722019-09-07T07:57:46Z805.722019-09-07T07:57:47Z805.242019-09-07T07:57:48Z805.242019-09-07T07:57:49Z805.242019-09-07T07:57:50Z805.242019-09-07T07:57:51Z804.762019-09-07T07:57:52Z804.762019-09-07T07:57:53Z804.282019-09-07T07:57:54Z803.802019-09-07T07:57:55Z803.322019-09-07T07:57:56Z803.322019-09-07T07:57:57Z802.842019-09-07T07:57:58Z803.322019-09-07T07:57:59Z803.322019-09-07T07:58:00Z803.322019-09-07T07:58:01Z803.322019-09-07T07:58:02Z803.802019-09-07T07:58:03Z803.322019-09-07T07:58:04Z803.802019-09-07T07:58:05Z803.802019-09-07T07:58:06Z803.802019-09-07T07:58:07Z803.802019-09-07T07:58:08Z804.282019-09-07T07:58:09Z804.762019-09-07T07:58:10Z805.242019-09-07T07:58:11Z805.242019-09-07T07:58:12Z805.722019-09-07T07:58:13Z806.202019-09-07T07:58:14Z806.682019-09-07T07:58:15Z807.162019-09-07T07:58:16Z807.642019-09-07T07:58:17Z808.132019-09-07T07:58:18Z808.612019-09-07T07:58:19Z809.092019-09-07T07:58:20Z809.572019-09-07T07:58:21Z810.052019-09-07T07:58:22Z810.532019-09-07T07:58:23Z811.012019-09-07T07:58:24Z811.492019-09-07T07:58:25Z811.972019-09-07T07:58:26Z812.452019-09-07T07:58:27Z812.932019-09-07T07:58:28Z813.412019-09-07T07:58:29Z813.892019-09-07T07:58:30Z814.372019-09-07T07:58:31Z814.852019-09-07T07:58:32Z814.852019-09-07T07:58:33Z815.342019-09-07T07:58:34Z815.342019-09-07T07:58:35Z815.342019-09-07T07:58:36Z815.822019-09-07T07:58:37Z815.822019-09-07T07:58:38Z815.822019-09-07T07:58:39Z815.822019-09-07T07:58:40Z815.822019-09-07T07:58:41Z815.822019-09-07T07:58:42Z815.822019-09-07T07:58:43Z815.822019-09-07T07:58:44Z815.822019-09-07T07:58:45Z815.822019-09-07T07:58:46Z815.342019-09-07T07:58:47Z815.342019-09-07T07:58:48Z815.342019-09-07T07:58:49Z815.342019-09-07T07:58:50Z814.852019-09-07T07:58:51Z814.852019-09-07T07:58:52Z814.372019-09-07T07:58:53Z814.372019-09-07T07:58:54Z814.372019-09-07T07:58:55Z814.372019-09-07T07:58:56Z814.372019-09-07T07:58:57Z814.372019-09-07T07:58:58Z814.372019-09-07T07:58:59Z814.372019-09-07T07:59:00Z813.892019-09-07T07:59:01Z813.892019-09-07T07:59:02Z813.412019-09-07T07:59:03Z811.972019-09-07T07:59:04Z811.492019-09-07T07:59:05Z811.492019-09-07T07:59:06Z811.972019-09-07T07:59:07Z811.972019-09-07T07:59:08Z811.012019-09-07T07:59:09Z810.532019-09-07T07:59:10Z810.052019-09-07T07:59:11Z809.572019-09-07T07:59:12Z808.612019-09-07T07:59:13Z808.132019-09-07T07:59:14Z808.132019-09-07T07:59:15Z807.642019-09-07T07:59:16Z807.162019-09-07T07:59:17Z807.162019-09-07T07:59:18Z806.682019-09-07T07:59:19Z806.682019-09-07T07:59:20Z806.202019-09-07T07:59:21Z805.722019-09-07T07:59:22Z805.242019-09-07T07:59:23Z804.762019-09-07T07:59:24Z804.762019-09-07T07:59:25Z804.762019-09-07T07:59:26Z804.762019-09-07T07:59:27Z804.762019-09-07T07:59:28Z804.762019-09-07T07:59:29Z804.762019-09-07T07:59:30Z804.282019-09-07T07:59:31Z803.802019-09-07T07:59:32Z803.322019-09-07T07:59:33Z802.842019-09-07T07:59:34Z802.362019-09-07T07:59:35Z802.362019-09-07T07:59:36Z801.882019-09-07T07:59:37Z800.922019-09-07T07:59:38Z800.922019-09-07T07:59:39Z800.442019-09-07T07:59:40Z800.442019-09-07T07:59:41Z799.952019-09-07T07:59:42Z799.472019-09-07T07:59:43Z798.992019-09-07T07:59:44Z798.512019-09-07T07:59:45Z797.552019-09-07T07:59:46Z797.552019-09-07T07:59:47Z797.072019-09-07T07:59:48Z796.592019-09-07T07:59:49Z796.592019-09-07T07:59:50Z796.112019-09-07T07:59:51Z796.112019-09-07T07:59:52Z795.632019-09-07T07:59:53Z795.152019-09-07T07:59:54Z794.672019-09-07T07:59:55Z794.192019-09-07T07:59:56Z793.712019-09-07T07:59:57Z792.742019-09-07T07:59:58Z792.742019-09-07T07:59:59Z792.262019-09-07T08:00:00Z792.262019-09-07T08:00:01Z791.782019-09-07T08:00:02Z791.782019-09-07T08:00:03Z791.302019-09-07T08:00:04Z791.302019-09-07T08:00:05Z791.302019-09-07T08:00:06Z791.302019-09-07T08:00:07Z790.822019-09-07T08:00:08Z790.822019-09-07T08:00:09Z790.822019-09-07T08:00:10Z791.302019-09-07T08:00:11Z791.302019-09-07T08:00:12Z791.782019-09-07T08:00:13Z791.782019-09-07T08:00:14Z791.782019-09-07T08:00:15Z792.262019-09-07T08:00:16Z792.742019-09-07T08:00:17Z793.222019-09-07T08:00:18Z793.222019-09-07T08:00:19Z793.712019-09-07T08:00:20Z793.712019-09-07T08:00:21Z794.192019-09-07T08:00:22Z794.192019-09-07T08:00:23Z794.672019-09-07T08:00:24Z795.152019-09-07T08:00:25Z795.152019-09-07T08:00:26Z795.152019-09-07T08:00:27Z795.632019-09-07T08:00:28Z796.112019-09-07T08:00:29Z796.112019-09-07T08:00:30Z796.592019-09-07T08:00:31Z797.072019-09-07T08:00:32Z797.552019-09-07T08:00:33Z797.552019-09-07T08:00:34Z798.032019-09-07T08:00:35Z798.512019-09-07T08:00:36Z798.512019-09-07T08:00:37Z798.992019-09-07T08:00:38Z799.472019-09-07T08:00:39Z799.472019-09-07T08:00:40Z799.952019-09-07T08:00:41Z800.442019-09-07T08:00:42Z800.442019-09-07T08:00:43Z800.922019-09-07T08:00:44Z801.402019-09-07T08:00:45Z801.882019-09-07T08:00:46Z801.882019-09-07T08:00:47Z801.882019-09-07T08:00:48Z802.362019-09-07T08:00:49Z802.362019-09-07T08:00:50Z802.842019-09-07T08:00:51Z802.842019-09-07T08:00:52Z803.322019-09-07T08:00:53Z803.802019-09-07T08:00:54Z803.802019-09-07T08:00:55Z804.282019-09-07T08:00:56Z804.282019-09-07T08:00:57Z804.762019-09-07T08:00:58Z804.762019-09-07T08:00:59Z805.242019-09-07T08:01:00Z805.722019-09-07T08:01:01Z805.722019-09-07T08:01:02Z806.202019-09-07T08:01:03Z806.202019-09-07T08:01:04Z806.682019-09-07T08:01:05Z806.682019-09-07T08:01:06Z807.162019-09-07T08:01:07Z807.162019-09-07T08:01:08Z807.642019-09-07T08:01:09Z808.132019-09-07T08:01:10Z808.612019-09-07T08:01:11Z808.612019-09-07T08:01:12Z809.092019-09-07T08:01:13Z809.092019-09-07T08:01:14Z809.572019-09-07T08:01:15Z809.572019-09-07T08:01:16Z810.052019-09-07T08:01:17Z810.532019-09-07T08:01:18Z811.012019-09-07T08:01:19Z811.492019-09-07T08:01:20Z811.492019-09-07T08:01:21Z811.972019-09-07T08:01:22Z811.972019-09-07T08:01:23Z812.452019-09-07T08:01:24Z812.452019-09-07T08:01:25Z812.452019-09-07T08:01:26Z812.932019-09-07T08:01:27Z812.932019-09-07T08:01:28Z813.412019-09-07T08:01:29Z813.412019-09-07T08:01:30Z813.892019-09-07T08:01:31Z813.892019-09-07T08:01:32Z813.892019-09-07T08:01:33Z814.372019-09-07T08:01:34Z814.852019-09-07T08:01:35Z814.852019-09-07T08:01:36Z815.342019-09-07T08:01:37Z815.342019-09-07T08:01:38Z815.342019-09-07T08:01:39Z815.822019-09-07T08:01:40Z816.302019-09-07T08:01:41Z816.302019-09-07T08:01:42Z816.782019-09-07T08:01:43Z817.262019-09-07T08:01:44Z817.262019-09-07T08:01:45Z817.742019-09-07T08:01:46Z818.222019-09-07T08:01:47Z818.222019-09-07T08:01:48Z818.702019-09-07T08:01:49Z819.182019-09-07T08:01:50Z819.662019-09-07T08:01:51Z819.662019-09-07T08:01:52Z820.142019-09-07T08:01:53Z820.142019-09-07T08:01:54Z820.142019-09-07T08:01:55Z820.622019-09-07T08:01:56Z820.622019-09-07T08:01:57Z821.102019-09-07T08:01:58Z821.582019-09-07T08:01:59Z822.062019-09-07T08:02:00Z822.552019-09-07T08:02:01Z823.032019-09-07T08:02:02Z823.032019-09-07T08:02:03Z823.512019-09-07T08:02:04Z823.512019-09-07T08:02:05Z823.992019-09-07T08:02:06Z824.472019-09-07T08:02:07Z824.952019-09-07T08:02:08Z824.952019-09-07T08:02:09Z825.432019-09-07T08:02:10Z825.912019-09-07T08:02:11Z825.912019-09-07T08:02:12Z826.392019-09-07T08:02:13Z826.872019-09-07T08:02:14Z826.872019-09-07T08:02:15Z827.352019-09-07T08:02:16Z827.832019-09-07T08:02:17Z828.312019-09-07T08:02:18Z828.312019-09-07T08:02:19Z828.792019-09-07T08:02:20Z829.272019-09-07T08:02:21Z829.272019-09-07T08:02:22Z829.762019-09-07T08:02:23Z830.242019-09-07T08:02:24Z830.722019-09-07T08:02:25Z830.722019-09-07T08:02:26Z831.202019-09-07T08:02:27Z831.682019-09-07T08:02:28Z832.162019-09-07T08:02:29Z832.642019-09-07T08:02:30Z833.122019-09-07T08:02:31Z833.602019-09-07T08:02:32Z834.082019-09-07T08:02:33Z834.562019-09-07T08:02:34Z835.042019-09-07T08:02:35Z835.522019-09-07T08:02:36Z836.482019-09-07T08:02:37Z836.962019-09-07T08:02:38Z837.452019-09-07T08:02:39Z838.412019-09-07T08:02:40Z838.892019-09-07T08:02:41Z839.372019-09-07T08:02:42Z839.852019-09-07T08:02:43Z840.332019-09-07T08:02:44Z841.292019-09-07T08:02:45Z841.772019-09-07T08:02:46Z842.252019-09-07T08:02:47Z843.212019-09-07T08:02:48Z843.692019-09-07T08:02:49Z844.182019-09-07T08:02:50Z844.662019-09-07T08:02:51Z845.622019-09-07T08:02:52Z846.102019-09-07T08:02:53Z846.582019-09-07T08:02:54Z847.062019-09-07T08:02:55Z847.542019-09-07T08:02:56Z848.022019-09-07T08:02:57Z848.022019-09-07T08:02:58Z848.502019-09-07T08:02:59Z848.502019-09-07T08:03:00Z848.982019-09-07T08:03:01Z849.462019-09-07T08:03:02Z848.982019-09-07T08:03:03Z848.982019-09-07T08:03:04Z848.502019-09-07T08:03:05Z848.022019-09-07T08:03:06Z848.022019-09-07T08:03:07Z848.022019-09-07T08:03:08Z847.542019-09-07T08:03:09Z847.542019-09-07T08:03:10Z847.062019-09-07T08:03:11Z847.062019-09-07T08:03:12Z846.582019-09-07T08:03:13Z846.102019-09-07T08:03:14Z845.622019-09-07T08:03:15Z845.142019-09-07T08:03:16Z844.662019-09-07T08:03:17Z843.692019-09-07T08:03:18Z843.692019-09-07T08:03:19Z842.732019-09-07T08:03:20Z842.732019-09-07T08:03:21Z842.252019-09-07T08:03:22Z842.252019-09-07T08:03:23Z841.772019-09-07T08:03:24Z841.292019-09-07T08:03:25Z840.812019-09-07T08:03:26Z839.852019-09-07T08:03:27Z838.892019-09-07T08:03:28Z838.892019-09-07T08:03:29Z838.412019-09-07T08:03:30Z838.412019-09-07T08:03:31Z837.932019-09-07T08:03:32Z837.452019-09-07T08:03:33Z836.962019-09-07T08:03:34Z836.002019-09-07T08:03:35Z835.522019-09-07T08:03:36Z835.042019-09-07T08:03:37Z834.562019-09-07T08:03:38Z834.562019-09-07T08:03:39Z834.562019-09-07T08:03:40Z834.562019-09-07T08:03:41Z834.562019-09-07T08:03:42Z834.082019-09-07T08:03:43Z833.602019-09-07T08:03:44Z833.122019-09-07T08:03:45Z832.162019-09-07T08:03:46Z831.682019-09-07T08:03:47Z831.202019-09-07T08:03:48Z831.202019-09-07T08:03:49Z830.722019-09-07T08:03:50Z830.242019-09-07T08:03:51Z830.242019-09-07T08:03:52Z829.762019-09-07T08:03:53Z829.272019-09-07T08:03:54Z828.792019-09-07T08:03:55Z828.312019-09-07T08:03:56Z826.872019-09-07T08:03:57Z825.912019-09-07T08:03:58Z824.952019-09-07T08:03:59Z823.992019-09-07T08:04:00Z823.032019-09-07T08:04:01Z822.062019-09-07T08:04:02Z821.102019-09-07T08:04:03Z819.662019-09-07T08:04:04Z818.702019-09-07T08:04:05Z816.782019-09-07T08:04:06Z815.822019-09-07T08:04:07Z814.852019-09-07T08:04:08Z814.372019-09-07T08:04:09Z814.372019-09-07T08:04:10Z813.892019-09-07T08:04:11Z813.892019-09-07T08:04:12Z813.412019-09-07T08:04:13Z812.932019-09-07T08:04:14Z812.452019-09-07T08:04:15Z812.452019-09-07T08:04:16Z811.972019-09-07T08:04:17Z811.492019-09-07T08:04:18Z811.012019-09-07T08:04:19Z811.012019-09-07T08:04:20Z810.532019-09-07T08:04:21Z809.572019-09-07T08:04:22Z809.092019-09-07T08:04:23Z808.612019-09-07T08:04:24Z808.612019-09-07T08:04:25Z808.132019-09-07T08:04:26Z808.132019-09-07T08:04:27Z807.642019-09-07T08:04:28Z807.642019-09-07T08:04:29Z807.642019-09-07T08:04:30Z806.682019-09-07T08:04:31Z806.202019-09-07T08:04:32Z806.202019-09-07T08:04:33Z805.722019-09-07T08:04:34Z805.242019-09-07T08:04:35Z804.762019-09-07T08:04:36Z804.282019-09-07T08:04:37Z802.842019-09-07T08:04:38Z801.882019-09-07T08:04:39Z801.402019-09-07T08:04:40Z800.442019-09-07T08:04:41Z798.992019-09-07T08:04:42Z797.552019-09-07T08:04:43Z795.632019-09-07T08:04:44Z792.262019-09-07T08:04:45Z789.862019-09-07T08:04:46Z787.462019-09-07T08:04:47Z785.532019-09-07T08:04:48Z784.572019-09-07T08:04:49Z783.612019-09-07T08:04:50Z782.652019-09-07T08:04:51Z781.212019-09-07T08:04:52Z779.772019-09-07T08:04:53Z778.322019-09-07T08:04:54Z777.362019-09-07T08:04:55Z776.402019-09-07T08:04:56Z775.922019-09-07T08:04:57Z775.922019-09-07T08:04:58Z775.442019-09-07T08:04:59Z774.962019-09-07T08:05:00Z774.962019-09-07T08:05:01Z774.962019-09-07T08:05:02Z774.482019-09-07T08:05:03Z774.002019-09-07T08:05:04Z773.522019-09-07T08:05:06Z773.522019-09-07T08:05:07Z773.042019-09-07T08:05:08Z773.042019-09-07T08:05:09Z773.042019-09-07T08:05:10Z772.562019-09-07T08:05:11Z772.562019-09-07T08:05:12Z771.602019-09-07T08:05:13Z771.112019-09-07T08:05:14Z770.632019-09-07T08:05:15Z770.632019-09-07T08:05:16Z770.152019-09-07T08:05:17Z770.152019-09-07T08:05:18Z769.672019-09-07T08:05:19Z769.192019-09-07T08:05:20Z769.192019-09-07T08:05:21Z768.712019-09-07T08:05:22Z768.232019-09-07T08:05:23Z767.752019-09-07T08:05:24Z767.272019-09-07T08:05:25Z766.792019-09-07T08:05:26Z766.312019-09-07T08:05:27Z766.312019-09-07T08:05:28Z766.312019-09-07T08:05:29Z765.832019-09-07T08:05:30Z766.312019-09-07T08:05:31Z765.832019-09-07T08:05:32Z765.352019-09-07T08:05:33Z764.872019-09-07T08:05:34Z764.872019-09-07T08:05:35Z764.392019-09-07T08:05:36Z763.422019-09-07T08:05:37Z762.942019-09-07T08:05:38Z762.942019-09-07T08:05:39Z762.942019-09-07T08:05:40Z762.462019-09-07T08:05:41Z762.462019-09-07T08:05:42Z762.462019-09-07T08:05:43Z762.462019-09-07T08:05:44Z762.462019-09-07T08:05:45Z762.462019-09-07T08:05:46Z762.462019-09-07T08:05:47Z762.942019-09-07T08:05:48Z762.942019-09-07T08:05:49Z762.942019-09-07T08:05:50Z763.422019-09-07T08:05:51Z763.422019-09-07T08:05:52Z763.422019-09-07T08:05:53Z763.902019-09-07T08:05:54Z763.902019-09-07T08:05:55Z763.902019-09-07T08:05:56Z763.902019-09-07T08:05:57Z764.392019-09-07T08:05:58Z763.902019-09-07T08:05:59Z763.902019-09-07T08:06:00Z763.902019-09-07T08:06:01Z763.422019-09-07T08:06:02Z763.422019-09-07T08:06:03Z762.942019-09-07T08:06:04Z762.462019-09-07T08:06:05Z762.462019-09-07T08:06:06Z762.462019-09-07T08:06:07Z762.462019-09-07T08:06:08Z762.462019-09-07T08:06:09Z762.462019-09-07T08:06:10Z762.462019-09-07T08:06:11Z762.462019-09-07T08:06:12Z762.462019-09-07T08:06:13Z762.462019-09-07T08:06:14Z762.462019-09-07T08:06:15Z762.462019-09-07T08:06:16Z762.462019-09-07T08:06:17Z762.462019-09-07T08:06:18Z761.982019-09-07T08:06:19Z761.982019-09-07T08:06:20Z761.502019-09-07T08:06:21Z761.502019-09-07T08:06:22Z761.022019-09-07T08:06:23Z761.022019-09-07T08:06:24Z760.542019-09-07T08:06:25Z760.542019-09-07T08:06:26Z760.062019-09-07T08:06:27Z760.062019-09-07T08:06:28Z760.062019-09-07T08:06:29Z760.062019-09-07T08:06:30Z760.062019-09-07T08:06:31Z759.582019-09-07T08:06:32Z759.102019-09-07T08:06:33Z759.102019-09-07T08:06:34Z759.102019-09-07T08:06:35Z758.622019-09-07T08:06:36Z758.142019-09-07T08:06:37Z758.142019-09-07T08:06:38Z758.142019-09-07T08:06:39Z757.662019-09-07T08:06:40Z757.662019-09-07T08:06:41Z757.182019-09-07T08:06:42Z757.182019-09-07T08:06:43Z756.692019-09-07T08:06:44Z757.182019-09-07T08:06:45Z756.692019-09-07T08:06:46Z756.692019-09-07T08:06:47Z756.692019-09-07T08:06:48Z756.692019-09-07T08:06:49Z756.692019-09-07T08:06:50Z756.692019-09-07T08:06:51Z756.212019-09-07T08:06:52Z756.212019-09-07T08:06:53Z756.212019-09-07T08:06:54Z755.732019-09-07T08:06:55Z755.732019-09-07T08:06:56Z755.252019-09-07T08:06:57Z755.252019-09-07T08:06:58Z755.252019-09-07T08:06:59Z754.772019-09-07T08:07:00Z754.772019-09-07T08:07:01Z754.772019-09-07T08:07:02Z754.292019-09-07T08:07:03Z754.292019-09-07T08:07:04Z754.292019-09-07T08:07:05Z753.812019-09-07T08:07:06Z753.812019-09-07T08:07:07Z753.812019-09-07T08:07:08Z753.332019-09-07T08:07:09Z753.332019-09-07T08:07:10Z752.852019-09-07T08:07:11Z752.372019-09-07T08:07:12Z751.892019-09-07T08:07:13Z751.892019-09-07T08:07:14Z751.892019-09-07T08:07:15Z751.412019-09-07T08:07:16Z750.932019-09-07T08:07:17Z750.932019-09-07T08:07:18Z750.932019-09-07T08:07:19Z750.932019-09-07T08:07:20Z750.452019-09-07T08:07:21Z750.452019-09-07T08:07:22Z750.452019-09-07T08:07:23Z749.972019-09-07T08:07:24Z749.972019-09-07T08:07:25Z749.492019-09-07T08:07:26Z749.002019-09-07T08:07:27Z749.002019-09-07T08:07:28Z749.002019-09-07T08:07:29Z749.002019-09-07T08:07:30Z749.492019-09-07T08:07:31Z749.002019-09-07T08:07:32Z749.002019-09-07T08:07:33Z748.522019-09-07T08:07:34Z748.042019-09-07T08:07:35Z747.562019-09-07T08:07:36Z747.562019-09-07T08:07:37Z747.082019-09-07T08:07:38Z746.602019-09-07T08:07:39Z746.122019-09-07T08:07:40Z745.642019-09-07T08:07:41Z745.642019-09-07T08:07:42Z745.162019-09-07T08:07:43Z744.682019-09-07T08:07:44Z744.682019-09-07T08:07:45Z744.682019-09-07T08:07:46Z744.682019-09-07T08:07:47Z744.682019-09-07T08:07:48Z744.682019-09-07T08:07:49Z744.682019-09-07T08:07:50Z744.682019-09-07T08:07:51Z744.682019-09-07T08:07:52Z744.682019-09-07T08:07:53Z744.682019-09-07T08:07:54Z745.162019-09-07T08:07:55Z745.642019-09-07T08:07:56Z745.642019-09-07T08:07:57Z746.122019-09-07T08:07:58Z746.122019-09-07T08:07:59Z745.642019-09-07T08:08:00Z745.642019-09-07T08:08:01Z745.642019-09-07T08:08:02Z745.162019-09-07T08:08:03Z744.682019-09-07T08:08:04Z743.722019-09-07T08:08:05Z743.722019-09-07T08:08:06Z743.242019-09-07T08:08:07Z742.762019-09-07T08:08:08Z742.282019-09-07T08:08:09Z \ No newline at end of file diff --git a/src/test/data/2019-12-29 06.50.19 Day.gpx b/src/test/data/2019-12-29 06.50.19 Day.gpx new file mode 100755 index 0000000..1124536 --- /dev/null +++ b/src/test/data/2019-12-29 06.50.19 Day.gpx @@ -0,0 +1 @@ +Garmin International2019-12-29T00:33:55Z2019-12-29 06:50:19 DayDarkMagenta73.682019-12-28T21:50:19Z74.162019-12-28T21:50:20Z74.642019-12-28T21:50:21Z74.642019-12-28T21:50:22Z74.162019-12-28T21:50:23Z74.162019-12-28T21:50:24Z74.642019-12-28T21:50:25Z75.122019-12-28T21:50:26Z75.122019-12-28T21:50:27Z75.122019-12-28T21:50:28Z75.122019-12-28T21:50:29Z75.602019-12-28T21:50:30Z75.602019-12-28T21:50:31Z76.082019-12-28T21:50:32Z77.042019-12-28T21:50:33Z77.522019-12-28T21:50:34Z77.522019-12-28T21:50:35Z76.562019-12-28T21:50:36Z75.602019-12-28T21:50:37Z75.122019-12-28T21:50:38Z74.162019-12-28T21:50:39Z72.722019-12-28T21:50:40Z72.242019-12-28T21:50:41Z72.242019-12-28T21:50:42Z72.242019-12-28T21:50:43Z72.242019-12-28T21:50:44Z72.242019-12-28T21:50:45Z72.722019-12-28T21:50:46Z73.202019-12-28T21:50:47Z73.682019-12-28T21:50:48Z74.162019-12-28T21:50:49Z74.642019-12-28T21:50:50Z74.642019-12-28T21:50:51Z75.122019-12-28T21:50:52Z75.602019-12-28T21:50:53Z75.602019-12-28T21:50:54Z77.042019-12-28T21:50:55Z78.002019-12-28T21:50:56Z78.972019-12-28T21:50:57Z79.452019-12-28T21:50:58Z79.932019-12-28T21:50:59Z79.932019-12-28T21:51:00Z81.372019-12-28T21:51:01Z82.812019-12-28T21:51:02Z83.772019-12-28T21:51:03Z84.732019-12-28T21:51:04Z86.182019-12-28T21:51:05Z87.142019-12-28T21:51:06Z88.582019-12-28T21:51:07Z89.542019-12-28T21:51:08Z90.502019-12-28T21:51:09Z91.462019-12-28T21:51:10Z92.422019-12-28T21:51:11Z93.392019-12-28T21:51:12Z93.872019-12-28T21:51:13Z93.872019-12-28T21:51:14Z93.872019-12-28T21:51:15Z93.872019-12-28T21:51:16Z93.392019-12-28T21:51:17Z92.902019-12-28T21:51:18Z92.422019-12-28T21:51:19Z92.422019-12-28T21:51:20Z91.942019-12-28T21:51:21Z91.462019-12-28T21:51:22Z90.982019-12-28T21:51:23Z90.982019-12-28T21:51:24Z90.982019-12-28T21:51:25Z90.982019-12-28T21:51:26Z91.462019-12-28T21:51:27Z91.462019-12-28T21:51:28Z90.982019-12-28T21:51:29Z91.462019-12-28T21:51:30Z91.462019-12-28T21:51:31Z91.462019-12-28T21:51:32Z91.942019-12-28T21:51:33Z91.942019-12-28T21:51:34Z92.422019-12-28T21:51:35Z92.422019-12-28T21:51:36Z92.902019-12-28T21:51:37Z92.902019-12-28T21:51:38Z92.902019-12-28T21:51:39Z92.902019-12-28T21:51:40Z93.392019-12-28T21:51:41Z93.392019-12-28T21:51:42Z93.872019-12-28T21:51:43Z94.352019-12-28T21:51:44Z94.352019-12-28T21:51:45Z94.352019-12-28T21:51:46Z94.352019-12-28T21:51:47Z94.352019-12-28T21:51:48Z94.832019-12-28T21:51:49Z94.832019-12-28T21:51:50Z94.832019-12-28T21:51:51Z94.832019-12-28T21:51:52Z95.312019-12-28T21:51:53Z95.312019-12-28T21:51:54Z95.312019-12-28T21:51:55Z95.792019-12-28T21:51:56Z95.792019-12-28T21:51:57Z95.312019-12-28T21:51:58Z94.832019-12-28T21:51:59Z95.792019-12-28T21:52:00Z96.272019-12-28T21:52:01Z95.792019-12-28T21:52:02Z96.752019-12-28T21:52:03Z96.752019-12-28T21:52:04Z97.232019-12-28T21:52:05Z97.232019-12-28T21:52:06Z97.712019-12-28T21:52:07Z97.712019-12-28T21:52:08Z97.712019-12-28T21:52:09Z98.192019-12-28T21:52:10Z98.192019-12-28T21:52:11Z97.712019-12-28T21:52:12Z97.712019-12-28T21:52:13Z97.232019-12-28T21:52:14Z96.752019-12-28T21:52:15Z96.272019-12-28T21:52:16Z95.792019-12-28T21:52:17Z95.312019-12-28T21:52:18Z94.832019-12-28T21:52:19Z94.352019-12-28T21:52:20Z94.352019-12-28T21:52:21Z94.352019-12-28T21:52:22Z93.872019-12-28T21:52:23Z93.872019-12-28T21:52:24Z93.872019-12-28T21:52:25Z93.392019-12-28T21:52:26Z93.392019-12-28T21:52:27Z92.902019-12-28T21:52:28Z92.902019-12-28T21:52:29Z92.422019-12-28T21:52:30Z91.462019-12-28T21:52:31Z90.982019-12-28T21:52:32Z91.462019-12-28T21:52:33Z90.502019-12-28T21:52:34Z90.502019-12-28T21:52:35Z90.982019-12-28T21:52:36Z91.462019-12-28T21:52:37Z91.462019-12-28T21:52:38Z91.942019-12-28T21:52:39Z91.942019-12-28T21:52:40Z91.942019-12-28T21:52:41Z91.942019-12-28T21:52:42Z92.422019-12-28T21:52:43Z92.422019-12-28T21:52:44Z92.902019-12-28T21:52:45Z92.902019-12-28T21:52:46Z92.902019-12-28T21:52:47Z92.902019-12-28T21:52:48Z92.422019-12-28T21:52:49Z92.422019-12-28T21:52:50Z92.902019-12-28T21:52:51Z92.902019-12-28T21:52:52Z92.902019-12-28T21:52:53Z92.422019-12-28T21:52:54Z92.422019-12-28T21:52:55Z92.422019-12-28T21:52:56Z92.422019-12-28T21:52:57Z92.422019-12-28T21:52:58Z92.422019-12-28T21:52:59Z92.422019-12-28T21:53:00Z92.422019-12-28T21:53:01Z92.422019-12-28T21:53:02Z91.942019-12-28T21:53:03Z92.422019-12-28T21:53:04Z92.422019-12-28T21:53:05Z92.902019-12-28T21:53:06Z93.392019-12-28T21:53:07Z93.392019-12-28T21:53:08Z93.872019-12-28T21:53:09Z93.392019-12-28T21:53:10Z93.392019-12-28T21:53:11Z93.392019-12-28T21:53:12Z93.392019-12-28T21:53:13Z93.392019-12-28T21:53:14Z93.392019-12-28T21:53:15Z93.392019-12-28T21:53:16Z93.872019-12-28T21:53:17Z93.872019-12-28T21:53:18Z94.352019-12-28T21:53:19Z94.352019-12-28T21:53:20Z94.352019-12-28T21:53:21Z94.832019-12-28T21:53:22Z94.832019-12-28T21:53:23Z94.832019-12-28T21:53:24Z94.832019-12-28T21:53:25Z95.312019-12-28T21:53:26Z95.312019-12-28T21:53:27Z95.312019-12-28T21:53:28Z95.312019-12-28T21:53:29Z94.832019-12-28T21:53:30Z95.312019-12-28T21:53:31Z95.312019-12-28T21:53:32Z95.312019-12-28T21:53:33Z95.792019-12-28T21:53:34Z95.792019-12-28T21:53:35Z96.272019-12-28T21:53:36Z96.272019-12-28T21:53:37Z96.752019-12-28T21:53:38Z96.752019-12-28T21:53:39Z96.752019-12-28T21:53:40Z96.752019-12-28T21:53:41Z96.752019-12-28T21:53:42Z96.752019-12-28T21:53:43Z96.752019-12-28T21:53:44Z96.752019-12-28T21:53:45Z96.752019-12-28T21:53:46Z96.752019-12-28T21:53:47Z96.752019-12-28T21:53:48Z97.232019-12-28T21:53:49Z97.232019-12-28T21:53:50Z97.712019-12-28T21:53:51Z97.712019-12-28T21:53:52Z97.712019-12-28T21:53:53Z98.192019-12-28T21:53:54Z98.192019-12-28T21:53:55Z98.192019-12-28T21:53:56Z98.672019-12-28T21:53:57Z98.672019-12-28T21:53:58Z98.672019-12-28T21:53:59Z98.672019-12-28T21:54:00Z98.672019-12-28T21:54:01Z98.672019-12-28T21:54:02Z98.672019-12-28T21:54:03Z98.672019-12-28T21:54:04Z98.672019-12-28T21:54:05Z98.672019-12-28T21:54:06Z98.672019-12-28T21:54:07Z98.672019-12-28T21:54:08Z98.672019-12-28T21:54:09Z98.672019-12-28T21:54:10Z97.712019-12-28T21:54:11Z98.192019-12-28T21:54:12Z98.192019-12-28T21:54:13Z97.712019-12-28T21:54:14Z97.712019-12-28T21:54:15Z97.712019-12-28T21:54:16Z97.712019-12-28T21:54:17Z97.232019-12-28T21:54:18Z97.232019-12-28T21:54:19Z97.232019-12-28T21:54:20Z97.232019-12-28T21:54:21Z97.232019-12-28T21:54:22Z97.232019-12-28T21:54:23Z97.232019-12-28T21:54:24Z97.232019-12-28T21:54:25Z97.232019-12-28T21:54:26Z97.232019-12-28T21:54:27Z97.232019-12-28T21:54:28Z97.232019-12-28T21:54:29Z97.232019-12-28T21:54:30Z97.232019-12-28T21:54:31Z96.752019-12-28T21:54:32Z95.792019-12-28T21:54:33Z95.312019-12-28T21:54:34Z94.832019-12-28T21:54:35Z94.832019-12-28T21:54:36Z94.352019-12-28T21:54:37Z94.832019-12-28T21:54:38Z94.832019-12-28T21:54:39Z94.832019-12-28T21:54:40Z94.832019-12-28T21:54:41Z94.832019-12-28T21:54:42Z94.832019-12-28T21:54:43Z94.832019-12-28T21:54:44Z94.832019-12-28T21:54:45Z94.832019-12-28T21:54:46Z94.832019-12-28T21:54:47Z94.832019-12-28T21:54:48Z94.832019-12-28T21:54:49Z94.352019-12-28T21:54:50Z93.872019-12-28T21:54:51Z93.872019-12-28T21:54:52Z94.352019-12-28T21:54:53Z94.352019-12-28T21:54:54Z95.312019-12-28T21:54:55Z97.232019-12-28T21:54:56Z98.672019-12-28T21:54:57Z99.632019-12-28T21:54:58Z100.602019-12-28T21:54:59Z102.042019-12-28T21:55:00Z103.002019-12-28T21:55:01Z103.962019-12-28T21:55:02Z104.922019-12-28T21:55:03Z105.882019-12-28T21:55:04Z106.842019-12-28T21:55:05Z107.322019-12-28T21:55:06Z107.812019-12-28T21:55:07Z108.292019-12-28T21:55:08Z108.772019-12-28T21:55:09Z109.252019-12-28T21:55:10Z109.732019-12-28T21:55:11Z109.732019-12-28T21:55:12Z110.212019-12-28T21:55:13Z109.732019-12-28T21:55:14Z109.732019-12-28T21:55:15Z109.252019-12-28T21:55:16Z108.772019-12-28T21:55:17Z108.772019-12-28T21:55:18Z108.772019-12-28T21:55:19Z108.292019-12-28T21:55:20Z108.292019-12-28T21:55:21Z107.812019-12-28T21:55:22Z107.322019-12-28T21:55:23Z107.322019-12-28T21:55:24Z106.842019-12-28T21:55:25Z106.362019-12-28T21:55:26Z105.882019-12-28T21:55:27Z105.402019-12-28T21:55:28Z105.402019-12-28T21:55:29Z104.922019-12-28T21:55:30Z104.922019-12-28T21:55:31Z104.922019-12-28T21:55:32Z104.922019-12-28T21:55:33Z104.922019-12-28T21:55:34Z104.922019-12-28T21:55:35Z104.922019-12-28T21:55:36Z105.402019-12-28T21:55:37Z105.402019-12-28T21:55:38Z105.402019-12-28T21:55:39Z105.402019-12-28T21:55:40Z104.922019-12-28T21:55:41Z105.402019-12-28T21:55:42Z105.402019-12-28T21:55:43Z105.402019-12-28T21:55:44Z105.402019-12-28T21:55:45Z105.402019-12-28T21:55:46Z105.402019-12-28T21:55:47Z105.402019-12-28T21:55:48Z104.922019-12-28T21:55:49Z104.442019-12-28T21:55:50Z103.962019-12-28T21:55:51Z103.482019-12-28T21:55:52Z103.002019-12-28T21:55:53Z102.522019-12-28T21:55:54Z102.522019-12-28T21:55:55Z102.042019-12-28T21:55:56Z102.042019-12-28T21:55:57Z101.562019-12-28T21:55:58Z101.562019-12-28T21:55:59Z101.562019-12-28T21:56:00Z101.562019-12-28T21:56:01Z101.562019-12-28T21:56:02Z101.562019-12-28T21:56:03Z101.562019-12-28T21:56:04Z102.042019-12-28T21:56:05Z102.042019-12-28T21:56:06Z102.042019-12-28T21:56:07Z102.042019-12-28T21:56:08Z101.562019-12-28T21:56:09Z101.562019-12-28T21:56:10Z101.562019-12-28T21:56:11Z101.082019-12-28T21:56:12Z101.082019-12-28T21:56:13Z101.082019-12-28T21:56:14Z101.082019-12-28T21:56:15Z101.082019-12-28T21:56:16Z101.082019-12-28T21:56:17Z101.082019-12-28T21:56:18Z101.082019-12-28T21:56:19Z101.082019-12-28T21:56:20Z101.082019-12-28T21:56:21Z101.082019-12-28T21:56:22Z101.082019-12-28T21:56:23Z100.602019-12-28T21:56:24Z100.602019-12-28T21:56:25Z100.602019-12-28T21:56:26Z100.602019-12-28T21:56:27Z100.602019-12-28T21:56:28Z100.602019-12-28T21:56:29Z100.602019-12-28T21:56:30Z100.602019-12-28T21:56:31Z100.602019-12-28T21:56:32Z100.602019-12-28T21:56:33Z100.602019-12-28T21:56:34Z100.112019-12-28T21:56:35Z100.112019-12-28T21:56:36Z99.632019-12-28T21:56:37Z99.632019-12-28T21:56:38Z99.632019-12-28T21:56:39Z99.152019-12-28T21:56:40Z99.632019-12-28T21:56:41Z99.632019-12-28T21:56:42Z99.632019-12-28T21:56:43Z99.632019-12-28T21:56:44Z99.632019-12-28T21:56:45Z99.632019-12-28T21:56:46Z99.632019-12-28T21:56:47Z100.112019-12-28T21:56:48Z100.112019-12-28T21:56:49Z100.602019-12-28T21:56:50Z100.602019-12-28T21:56:51Z100.602019-12-28T21:56:52Z101.082019-12-28T21:56:53Z101.082019-12-28T21:56:54Z101.082019-12-28T21:56:55Z101.082019-12-28T21:56:56Z101.082019-12-28T21:56:57Z100.602019-12-28T21:56:58Z100.112019-12-28T21:56:59Z99.632019-12-28T21:57:00Z99.152019-12-28T21:57:01Z99.152019-12-28T21:57:02Z98.672019-12-28T21:57:03Z98.672019-12-28T21:57:04Z98.192019-12-28T21:57:05Z98.192019-12-28T21:57:06Z98.672019-12-28T21:57:07Z98.672019-12-28T21:57:08Z98.672019-12-28T21:57:09Z98.672019-12-28T21:57:10Z98.672019-12-28T21:57:11Z98.672019-12-28T21:57:12Z98.192019-12-28T21:57:13Z98.192019-12-28T21:57:14Z98.192019-12-28T21:57:15Z98.192019-12-28T21:57:16Z98.192019-12-28T21:57:17Z98.192019-12-28T21:57:18Z98.192019-12-28T21:57:19Z98.192019-12-28T21:57:20Z98.192019-12-28T21:57:21Z97.712019-12-28T21:57:22Z97.712019-12-28T21:57:23Z97.232019-12-28T21:57:24Z96.752019-12-28T21:57:25Z96.272019-12-28T21:57:26Z95.792019-12-28T21:57:27Z95.312019-12-28T21:57:28Z94.832019-12-28T21:57:29Z94.832019-12-28T21:57:30Z94.352019-12-28T21:57:31Z94.352019-12-28T21:57:32Z94.352019-12-28T21:57:33Z93.872019-12-28T21:57:34Z93.872019-12-28T21:57:35Z93.872019-12-28T21:57:36Z93.392019-12-28T21:57:37Z92.902019-12-28T21:57:38Z92.902019-12-28T21:57:39Z92.902019-12-28T21:57:40Z92.422019-12-28T21:57:41Z92.422019-12-28T21:57:42Z92.422019-12-28T21:57:43Z92.422019-12-28T21:57:44Z92.422019-12-28T21:57:45Z92.902019-12-28T21:57:46Z92.902019-12-28T21:57:47Z92.902019-12-28T21:57:48Z93.392019-12-28T21:57:49Z93.392019-12-28T21:57:50Z93.392019-12-28T21:57:51Z93.392019-12-28T21:57:52Z93.392019-12-28T21:57:53Z93.392019-12-28T21:57:54Z93.392019-12-28T21:57:55Z93.392019-12-28T21:57:56Z93.872019-12-28T21:57:57Z93.392019-12-28T21:57:58Z93.392019-12-28T21:57:59Z93.392019-12-28T21:58:00Z93.392019-12-28T21:58:01Z93.392019-12-28T21:58:02Z93.392019-12-28T21:58:03Z93.392019-12-28T21:58:04Z93.392019-12-28T21:58:05Z93.392019-12-28T21:58:06Z93.872019-12-28T21:58:07Z93.872019-12-28T21:58:08Z94.352019-12-28T21:58:09Z94.352019-12-28T21:58:10Z94.352019-12-28T21:58:11Z93.872019-12-28T21:58:12Z93.872019-12-28T21:58:13Z93.872019-12-28T21:58:14Z93.392019-12-28T21:58:15Z93.392019-12-28T21:58:16Z92.902019-12-28T21:58:17Z92.422019-12-28T21:58:18Z92.422019-12-28T21:58:19Z92.422019-12-28T21:58:20Z91.942019-12-28T21:58:21Z91.942019-12-28T21:58:22Z91.462019-12-28T21:58:23Z90.982019-12-28T21:58:24Z90.982019-12-28T21:58:25Z90.982019-12-28T21:58:26Z90.982019-12-28T21:58:27Z90.502019-12-28T21:58:28Z90.982019-12-28T21:58:29Z90.982019-12-28T21:58:30Z90.982019-12-28T21:58:31Z90.982019-12-28T21:58:32Z91.462019-12-28T21:58:33Z91.462019-12-28T21:58:34Z91.462019-12-28T21:58:35Z91.462019-12-28T21:58:36Z91.942019-12-28T21:58:37Z91.942019-12-28T21:58:38Z91.942019-12-28T21:58:39Z91.942019-12-28T21:58:40Z91.942019-12-28T21:58:41Z91.942019-12-28T21:58:42Z91.942019-12-28T21:58:43Z91.942019-12-28T21:58:44Z91.942019-12-28T21:58:45Z91.942019-12-28T21:58:46Z91.462019-12-28T21:58:47Z91.462019-12-28T21:58:48Z91.462019-12-28T21:58:49Z91.462019-12-28T21:58:50Z91.462019-12-28T21:58:51Z91.462019-12-28T21:58:52Z91.462019-12-28T21:58:53Z91.942019-12-28T21:58:54Z91.942019-12-28T21:58:55Z91.942019-12-28T21:58:56Z92.422019-12-28T21:58:57Z92.422019-12-28T21:58:58Z92.902019-12-28T21:58:59Z92.902019-12-28T21:59:00Z93.392019-12-28T21:59:01Z94.352019-12-28T21:59:02Z94.832019-12-28T21:59:03Z95.312019-12-28T21:59:04Z96.272019-12-28T21:59:05Z96.752019-12-28T21:59:06Z97.232019-12-28T21:59:07Z97.712019-12-28T21:59:08Z98.672019-12-28T21:59:09Z99.632019-12-28T21:59:10Z101.082019-12-28T21:59:11Z102.042019-12-28T21:59:12Z102.522019-12-28T21:59:13Z103.002019-12-28T21:59:14Z103.482019-12-28T21:59:15Z103.962019-12-28T21:59:16Z104.442019-12-28T21:59:17Z104.922019-12-28T21:59:18Z104.922019-12-28T21:59:19Z105.882019-12-28T21:59:20Z106.362019-12-28T21:59:21Z106.362019-12-28T21:59:22Z106.842019-12-28T21:59:23Z106.842019-12-28T21:59:24Z106.842019-12-28T21:59:25Z106.362019-12-28T21:59:26Z106.362019-12-28T21:59:27Z105.882019-12-28T21:59:28Z106.362019-12-28T21:59:29Z106.362019-12-28T21:59:30Z105.882019-12-28T21:59:31Z105.882019-12-28T21:59:32Z106.362019-12-28T21:59:33Z106.362019-12-28T21:59:34Z106.362019-12-28T21:59:35Z106.362019-12-28T21:59:36Z106.362019-12-28T21:59:37Z106.362019-12-28T21:59:38Z106.362019-12-28T21:59:39Z106.362019-12-28T21:59:40Z106.842019-12-28T21:59:41Z106.842019-12-28T21:59:42Z106.842019-12-28T21:59:43Z106.842019-12-28T21:59:44Z107.322019-12-28T21:59:45Z107.812019-12-28T21:59:46Z108.292019-12-28T21:59:47Z108.772019-12-28T21:59:48Z109.252019-12-28T21:59:49Z109.732019-12-28T21:59:50Z109.732019-12-28T21:59:51Z110.692019-12-28T21:59:52Z111.172019-12-28T21:59:53Z112.132019-12-28T21:59:54Z113.092019-12-28T21:59:55Z113.572019-12-28T21:59:56Z114.052019-12-28T21:59:57Z114.532019-12-28T21:59:58Z115.502019-12-28T21:59:59Z116.462019-12-28T22:00:00Z116.942019-12-28T22:00:01Z117.902019-12-28T22:00:02Z118.382019-12-28T22:00:03Z118.862019-12-28T22:00:04Z119.342019-12-28T22:00:05Z119.822019-12-28T22:00:06Z120.302019-12-28T22:00:07Z120.782019-12-28T22:00:08Z121.262019-12-28T22:00:09Z121.742019-12-28T22:00:10Z122.222019-12-28T22:00:11Z122.712019-12-28T22:00:12Z122.712019-12-28T22:00:13Z122.712019-12-28T22:00:14Z122.712019-12-28T22:00:15Z122.712019-12-28T22:00:16Z122.222019-12-28T22:00:17Z122.222019-12-28T22:00:18Z122.222019-12-28T22:00:19Z122.222019-12-28T22:00:20Z121.742019-12-28T22:00:21Z120.782019-12-28T22:00:22Z120.302019-12-28T22:00:23Z120.302019-12-28T22:00:24Z120.302019-12-28T22:00:25Z119.822019-12-28T22:00:26Z119.342019-12-28T22:00:27Z118.862019-12-28T22:00:28Z118.862019-12-28T22:00:29Z118.862019-12-28T22:00:30Z117.902019-12-28T22:00:31Z117.902019-12-28T22:00:32Z117.902019-12-28T22:00:33Z117.422019-12-28T22:00:34Z117.422019-12-28T22:00:35Z117.422019-12-28T22:00:36Z115.982019-12-28T22:00:37Z115.502019-12-28T22:00:38Z115.502019-12-28T22:00:39Z115.012019-12-28T22:00:40Z115.012019-12-28T22:00:41Z114.532019-12-28T22:00:42Z114.532019-12-28T22:00:43Z114.532019-12-28T22:00:44Z115.012019-12-28T22:00:45Z115.012019-12-28T22:00:46Z115.502019-12-28T22:00:47Z115.982019-12-28T22:00:48Z116.462019-12-28T22:00:49Z117.422019-12-28T22:00:50Z117.902019-12-28T22:00:51Z118.382019-12-28T22:00:52Z118.382019-12-28T22:00:53Z117.902019-12-28T22:00:54Z116.942019-12-28T22:00:55Z116.462019-12-28T22:00:56Z115.982019-12-28T22:00:57Z115.502019-12-28T22:00:58Z115.012019-12-28T22:00:59Z114.532019-12-28T22:01:00Z114.532019-12-28T22:01:01Z114.532019-12-28T22:01:02Z114.052019-12-28T22:01:03Z114.052019-12-28T22:01:04Z114.052019-12-28T22:01:05Z114.052019-12-28T22:01:06Z114.052019-12-28T22:01:07Z113.572019-12-28T22:01:08Z113.572019-12-28T22:01:09Z113.572019-12-28T22:01:10Z113.572019-12-28T22:01:11Z114.052019-12-28T22:01:12Z114.532019-12-28T22:01:13Z115.012019-12-28T22:01:14Z115.012019-12-28T22:01:15Z115.012019-12-28T22:01:16Z115.012019-12-28T22:01:17Z114.532019-12-28T22:01:18Z114.532019-12-28T22:01:19Z114.532019-12-28T22:01:20Z115.012019-12-28T22:01:21Z115.502019-12-28T22:01:22Z115.502019-12-28T22:01:23Z115.502019-12-28T22:01:24Z115.502019-12-28T22:01:25Z115.502019-12-28T22:01:26Z115.502019-12-28T22:01:27Z115.012019-12-28T22:01:28Z115.012019-12-28T22:01:29Z115.012019-12-28T22:01:30Z115.502019-12-28T22:01:31Z115.502019-12-28T22:01:32Z115.502019-12-28T22:01:33Z115.502019-12-28T22:01:34Z115.502019-12-28T22:01:35Z115.982019-12-28T22:01:36Z115.982019-12-28T22:01:37Z115.982019-12-28T22:01:38Z115.982019-12-28T22:01:39Z115.982019-12-28T22:01:40Z115.502019-12-28T22:01:41Z115.502019-12-28T22:01:42Z115.012019-12-28T22:01:43Z115.012019-12-28T22:01:44Z115.012019-12-28T22:01:45Z114.532019-12-28T22:01:46Z114.532019-12-28T22:01:47Z114.532019-12-28T22:01:48Z114.532019-12-28T22:01:49Z114.052019-12-28T22:01:50Z114.052019-12-28T22:01:51Z114.052019-12-28T22:01:52Z114.052019-12-28T22:01:53Z113.572019-12-28T22:01:54Z113.572019-12-28T22:01:55Z113.572019-12-28T22:01:56Z113.092019-12-28T22:01:57Z113.092019-12-28T22:01:58Z113.572019-12-28T22:01:59Z113.572019-12-28T22:02:00Z113.572019-12-28T22:02:01Z113.092019-12-28T22:02:02Z112.612019-12-28T22:02:03Z112.612019-12-28T22:02:04Z112.132019-12-28T22:02:05Z112.132019-12-28T22:02:06Z112.132019-12-28T22:02:07Z112.612019-12-28T22:02:08Z113.572019-12-28T22:02:09Z114.532019-12-28T22:02:10Z115.502019-12-28T22:02:11Z116.462019-12-28T22:02:12Z116.942019-12-28T22:02:13Z116.942019-12-28T22:02:14Z117.902019-12-28T22:02:15Z118.382019-12-28T22:02:16Z119.342019-12-28T22:02:17Z119.822019-12-28T22:02:18Z120.782019-12-28T22:02:19Z121.262019-12-28T22:02:20Z121.262019-12-28T22:02:21Z121.742019-12-28T22:02:22Z121.742019-12-28T22:02:23Z121.742019-12-28T22:02:24Z121.262019-12-28T22:02:25Z121.262019-12-28T22:02:26Z121.262019-12-28T22:02:27Z120.782019-12-28T22:02:28Z120.302019-12-28T22:02:29Z119.822019-12-28T22:02:30Z119.342019-12-28T22:02:31Z118.382019-12-28T22:02:32Z117.902019-12-28T22:02:33Z117.422019-12-28T22:02:34Z116.942019-12-28T22:02:35Z116.942019-12-28T22:02:36Z116.942019-12-28T22:02:37Z116.462019-12-28T22:02:38Z116.462019-12-28T22:02:39Z116.462019-12-28T22:02:40Z115.982019-12-28T22:02:41Z115.502019-12-28T22:02:42Z115.012019-12-28T22:02:43Z114.532019-12-28T22:02:44Z114.052019-12-28T22:02:45Z114.532019-12-28T22:02:46Z114.532019-12-28T22:02:47Z114.532019-12-28T22:02:48Z114.532019-12-28T22:02:49Z114.532019-12-28T22:02:50Z114.532019-12-28T22:02:51Z114.532019-12-28T22:02:52Z114.532019-12-28T22:02:53Z115.012019-12-28T22:02:54Z115.012019-12-28T22:02:55Z115.012019-12-28T22:02:56Z115.012019-12-28T22:02:57Z115.502019-12-28T22:02:58Z115.982019-12-28T22:02:59Z115.982019-12-28T22:03:00Z116.462019-12-28T22:03:01Z116.462019-12-28T22:03:02Z116.942019-12-28T22:03:03Z116.942019-12-28T22:03:04Z116.942019-12-28T22:03:05Z116.942019-12-28T22:03:06Z116.942019-12-28T22:03:07Z116.942019-12-28T22:03:08Z116.942019-12-28T22:03:09Z116.942019-12-28T22:03:10Z117.902019-12-28T22:03:11Z118.382019-12-28T22:03:12Z118.862019-12-28T22:03:13Z119.342019-12-28T22:03:14Z119.822019-12-28T22:03:15Z120.302019-12-28T22:03:16Z121.262019-12-28T22:03:17Z121.742019-12-28T22:03:18Z122.222019-12-28T22:03:19Z122.712019-12-28T22:03:20Z123.672019-12-28T22:03:21Z125.112019-12-28T22:03:22Z125.592019-12-28T22:03:23Z126.072019-12-28T22:03:24Z127.032019-12-28T22:03:25Z127.992019-12-28T22:03:26Z128.472019-12-28T22:03:27Z129.432019-12-28T22:03:28Z129.922019-12-28T22:03:29Z130.402019-12-28T22:03:30Z131.362019-12-28T22:03:31Z131.842019-12-28T22:03:32Z132.322019-12-28T22:03:33Z132.322019-12-28T22:03:34Z132.802019-12-28T22:03:35Z133.282019-12-28T22:03:36Z133.282019-12-28T22:03:37Z133.762019-12-28T22:03:38Z133.282019-12-28T22:03:39Z134.242019-12-28T22:03:40Z135.202019-12-28T22:03:41Z136.642019-12-28T22:03:42Z137.612019-12-28T22:03:43Z138.092019-12-28T22:03:44Z139.052019-12-28T22:03:45Z140.012019-12-28T22:03:46Z140.492019-12-28T22:03:47Z140.972019-12-28T22:03:48Z141.932019-12-28T22:03:49Z142.412019-12-28T22:03:50Z143.372019-12-28T22:03:51Z144.342019-12-28T22:03:52Z144.822019-12-28T22:03:53Z145.782019-12-28T22:03:54Z146.262019-12-28T22:03:55Z147.222019-12-28T22:03:56Z147.702019-12-28T22:03:57Z148.182019-12-28T22:03:58Z148.182019-12-28T22:03:59Z148.662019-12-28T22:04:00Z149.142019-12-28T22:04:01Z149.622019-12-28T22:04:02Z149.622019-12-28T22:04:03Z149.622019-12-28T22:04:04Z149.142019-12-28T22:04:05Z148.662019-12-28T22:04:06Z148.182019-12-28T22:04:07Z146.742019-12-28T22:04:08Z146.262019-12-28T22:04:09Z145.782019-12-28T22:04:10Z144.342019-12-28T22:04:11Z143.372019-12-28T22:04:12Z142.892019-12-28T22:04:13Z141.452019-12-28T22:04:14Z140.492019-12-28T22:04:15Z139.532019-12-28T22:04:16Z138.572019-12-28T22:04:17Z137.612019-12-28T22:04:18Z137.132019-12-28T22:04:19Z136.162019-12-28T22:04:20Z135.682019-12-28T22:04:21Z135.682019-12-28T22:04:22Z134.722019-12-28T22:04:23Z134.242019-12-28T22:04:24Z133.762019-12-28T22:04:25Z133.282019-12-28T22:04:26Z132.802019-12-28T22:04:27Z132.322019-12-28T22:04:28Z131.842019-12-28T22:04:29Z131.362019-12-28T22:04:30Z130.882019-12-28T22:04:31Z130.402019-12-28T22:04:32Z130.402019-12-28T22:04:33Z130.402019-12-28T22:04:34Z129.922019-12-28T22:04:35Z129.922019-12-28T22:04:36Z129.922019-12-28T22:04:37Z130.402019-12-28T22:04:38Z130.402019-12-28T22:04:39Z130.882019-12-28T22:04:40Z130.882019-12-28T22:04:41Z131.362019-12-28T22:04:42Z131.842019-12-28T22:04:43Z131.842019-12-28T22:04:44Z131.362019-12-28T22:04:45Z131.842019-12-28T22:04:46Z131.842019-12-28T22:04:47Z131.842019-12-28T22:04:48Z131.362019-12-28T22:04:49Z131.362019-12-28T22:04:50Z130.882019-12-28T22:04:51Z130.882019-12-28T22:04:52Z131.362019-12-28T22:04:53Z131.842019-12-28T22:04:54Z132.322019-12-28T22:04:55Z132.802019-12-28T22:04:56Z132.802019-12-28T22:04:57Z133.282019-12-28T22:04:58Z133.282019-12-28T22:04:59Z133.762019-12-28T22:05:00Z134.722019-12-28T22:05:01Z134.722019-12-28T22:05:02Z135.202019-12-28T22:05:03Z135.202019-12-28T22:05:04Z135.682019-12-28T22:05:05Z136.162019-12-28T22:05:06Z136.642019-12-28T22:05:07Z136.642019-12-28T22:05:08Z136.642019-12-28T22:05:09Z136.162019-12-28T22:05:10Z136.162019-12-28T22:05:11Z136.162019-12-28T22:05:12Z135.682019-12-28T22:05:13Z134.722019-12-28T22:05:14Z134.242019-12-28T22:05:15Z133.762019-12-28T22:05:16Z132.802019-12-28T22:05:17Z132.322019-12-28T22:05:18Z131.842019-12-28T22:05:19Z131.362019-12-28T22:05:20Z130.882019-12-28T22:05:21Z130.402019-12-28T22:05:22Z130.402019-12-28T22:05:23Z130.402019-12-28T22:05:24Z129.922019-12-28T22:05:25Z129.922019-12-28T22:05:26Z129.922019-12-28T22:05:27Z129.922019-12-28T22:05:28Z129.922019-12-28T22:05:29Z129.922019-12-28T22:05:30Z129.922019-12-28T22:05:31Z129.432019-12-28T22:05:32Z129.432019-12-28T22:05:33Z128.952019-12-28T22:05:34Z129.432019-12-28T22:05:35Z129.922019-12-28T22:05:36Z130.402019-12-28T22:05:37Z130.882019-12-28T22:05:38Z130.882019-12-28T22:05:39Z130.402019-12-28T22:05:40Z129.922019-12-28T22:05:41Z129.922019-12-28T22:05:42Z129.922019-12-28T22:05:43Z129.432019-12-28T22:05:44Z129.432019-12-28T22:05:45Z129.432019-12-28T22:05:46Z129.432019-12-28T22:05:47Z128.952019-12-28T22:05:48Z128.472019-12-28T22:05:49Z127.992019-12-28T22:05:50Z127.992019-12-28T22:05:51Z127.992019-12-28T22:05:52Z127.512019-12-28T22:05:53Z127.512019-12-28T22:05:54Z126.552019-12-28T22:05:55Z125.592019-12-28T22:05:56Z125.112019-12-28T22:05:57Z124.632019-12-28T22:05:58Z124.152019-12-28T22:05:59Z124.632019-12-28T22:06:00Z124.632019-12-28T22:06:01Z124.632019-12-28T22:06:02Z124.632019-12-28T22:06:03Z124.632019-12-28T22:06:04Z124.152019-12-28T22:06:05Z124.152019-12-28T22:06:06Z124.152019-12-28T22:06:07Z123.672019-12-28T22:06:08Z123.672019-12-28T22:06:09Z123.192019-12-28T22:06:10Z123.192019-12-28T22:06:11Z123.192019-12-28T22:06:12Z123.192019-12-28T22:06:13Z123.192019-12-28T22:06:14Z122.712019-12-28T22:06:15Z122.222019-12-28T22:06:16Z121.262019-12-28T22:06:17Z121.262019-12-28T22:06:18Z120.782019-12-28T22:06:19Z120.782019-12-28T22:06:20Z120.782019-12-28T22:06:21Z120.302019-12-28T22:06:22Z120.302019-12-28T22:06:23Z120.302019-12-28T22:06:24Z120.302019-12-28T22:06:25Z120.302019-12-28T22:06:26Z120.782019-12-28T22:06:27Z120.782019-12-28T22:06:28Z120.782019-12-28T22:06:29Z121.262019-12-28T22:06:30Z121.262019-12-28T22:06:31Z121.742019-12-28T22:06:32Z122.222019-12-28T22:06:33Z122.712019-12-28T22:06:34Z122.712019-12-28T22:06:35Z123.192019-12-28T22:06:36Z123.192019-12-28T22:06:37Z124.152019-12-28T22:06:38Z124.632019-12-28T22:06:39Z125.112019-12-28T22:06:40Z125.592019-12-28T22:06:41Z126.072019-12-28T22:06:42Z126.552019-12-28T22:06:43Z127.032019-12-28T22:06:44Z127.992019-12-28T22:06:45Z128.472019-12-28T22:06:46Z128.952019-12-28T22:06:47Z129.432019-12-28T22:06:48Z130.402019-12-28T22:06:49Z130.882019-12-28T22:06:50Z131.362019-12-28T22:06:51Z131.842019-12-28T22:06:52Z132.322019-12-28T22:06:53Z132.802019-12-28T22:06:54Z133.282019-12-28T22:06:55Z133.762019-12-28T22:06:56Z134.242019-12-28T22:06:57Z134.722019-12-28T22:06:58Z134.722019-12-28T22:06:59Z134.722019-12-28T22:07:00Z135.202019-12-28T22:07:01Z135.202019-12-28T22:07:02Z135.202019-12-28T22:07:03Z135.682019-12-28T22:07:04Z135.682019-12-28T22:07:05Z136.162019-12-28T22:07:06Z136.162019-12-28T22:07:07Z135.682019-12-28T22:07:08Z135.682019-12-28T22:07:09Z135.202019-12-28T22:07:10Z134.722019-12-28T22:07:11Z134.242019-12-28T22:07:12Z133.762019-12-28T22:07:13Z132.802019-12-28T22:07:14Z132.322019-12-28T22:07:15Z132.322019-12-28T22:07:16Z132.322019-12-28T22:07:17Z132.322019-12-28T22:07:18Z132.322019-12-28T22:07:19Z132.802019-12-28T22:07:20Z133.282019-12-28T22:07:21Z133.282019-12-28T22:07:22Z133.282019-12-28T22:07:23Z133.762019-12-28T22:07:24Z133.762019-12-28T22:07:25Z133.762019-12-28T22:07:26Z133.762019-12-28T22:07:27Z134.242019-12-28T22:07:28Z134.242019-12-28T22:07:29Z134.722019-12-28T22:07:30Z134.722019-12-28T22:07:31Z135.202019-12-28T22:07:32Z135.202019-12-28T22:07:33Z135.682019-12-28T22:07:34Z135.682019-12-28T22:07:35Z136.162019-12-28T22:07:36Z136.162019-12-28T22:07:37Z136.162019-12-28T22:07:38Z136.162019-12-28T22:07:39Z135.682019-12-28T22:07:40Z135.682019-12-28T22:07:41Z135.202019-12-28T22:07:42Z134.722019-12-28T22:07:43Z134.722019-12-28T22:07:44Z134.242019-12-28T22:07:45Z133.762019-12-28T22:07:46Z133.282019-12-28T22:07:47Z133.282019-12-28T22:07:48Z133.282019-12-28T22:07:49Z133.282019-12-28T22:07:50Z133.282019-12-28T22:07:51Z133.282019-12-28T22:07:52Z133.282019-12-28T22:07:53Z133.282019-12-28T22:07:54Z133.282019-12-28T22:07:55Z133.282019-12-28T22:07:56Z133.282019-12-28T22:07:57Z133.282019-12-28T22:07:58Z133.282019-12-28T22:07:59Z133.762019-12-28T22:08:00Z133.762019-12-28T22:08:01Z133.762019-12-28T22:08:02Z133.762019-12-28T22:08:03Z133.282019-12-28T22:08:04Z133.282019-12-28T22:08:05Z133.282019-12-28T22:08:06Z133.282019-12-28T22:08:07Z133.282019-12-28T22:08:08Z133.282019-12-28T22:08:09Z133.282019-12-28T22:08:10Z133.762019-12-28T22:08:11Z133.762019-12-28T22:08:12Z133.762019-12-28T22:08:13Z134.242019-12-28T22:08:14Z134.242019-12-28T22:08:15Z134.722019-12-28T22:08:16Z135.202019-12-28T22:08:17Z135.202019-12-28T22:08:18Z135.682019-12-28T22:08:19Z136.162019-12-28T22:08:20Z136.642019-12-28T22:08:21Z137.132019-12-28T22:08:22Z137.132019-12-28T22:08:23Z137.612019-12-28T22:08:24Z138.092019-12-28T22:08:25Z138.572019-12-28T22:08:26Z139.052019-12-28T22:08:27Z139.532019-12-28T22:08:28Z140.012019-12-28T22:08:29Z140.492019-12-28T22:08:30Z141.452019-12-28T22:08:31Z142.412019-12-28T22:08:32Z143.372019-12-28T22:08:33Z144.342019-12-28T22:08:34Z145.302019-12-28T22:08:35Z146.262019-12-28T22:08:36Z147.222019-12-28T22:08:37Z147.702019-12-28T22:08:38Z148.662019-12-28T22:08:39Z149.142019-12-28T22:08:40Z150.102019-12-28T22:08:41Z151.062019-12-28T22:08:42Z151.542019-12-28T22:08:43Z152.512019-12-28T22:08:44Z152.992019-12-28T22:08:45Z153.472019-12-28T22:08:46Z153.952019-12-28T22:08:47Z153.952019-12-28T22:08:48Z154.432019-12-28T22:08:49Z154.912019-12-28T22:08:50Z155.392019-12-28T22:08:51Z155.872019-12-28T22:08:52Z156.352019-12-28T22:08:53Z156.352019-12-28T22:08:54Z156.352019-12-28T22:08:55Z156.352019-12-28T22:08:56Z156.352019-12-28T22:08:57Z156.352019-12-28T22:08:58Z156.352019-12-28T22:08:59Z155.392019-12-28T22:09:00Z154.912019-12-28T22:09:01Z154.432019-12-28T22:09:02Z153.952019-12-28T22:09:03Z153.952019-12-28T22:09:04Z153.472019-12-28T22:09:05Z152.512019-12-28T22:09:06Z152.032019-12-28T22:09:07Z152.032019-12-28T22:09:08Z151.542019-12-28T22:09:09Z150.582019-12-28T22:09:10Z150.102019-12-28T22:09:11Z149.622019-12-28T22:09:12Z149.142019-12-28T22:09:13Z148.182019-12-28T22:09:14Z147.222019-12-28T22:09:15Z146.262019-12-28T22:09:16Z145.302019-12-28T22:09:17Z144.342019-12-28T22:09:18Z143.372019-12-28T22:09:19Z142.412019-12-28T22:09:20Z141.452019-12-28T22:09:21Z140.492019-12-28T22:09:22Z139.532019-12-28T22:09:23Z138.092019-12-28T22:09:24Z136.642019-12-28T22:09:25Z134.722019-12-28T22:09:26Z133.282019-12-28T22:09:27Z131.842019-12-28T22:09:28Z130.402019-12-28T22:09:29Z128.952019-12-28T22:09:30Z128.472019-12-28T22:09:31Z127.992019-12-28T22:09:32Z127.992019-12-28T22:09:33Z127.512019-12-28T22:09:34Z127.992019-12-28T22:09:35Z127.992019-12-28T22:09:36Z127.992019-12-28T22:09:37Z127.992019-12-28T22:09:38Z127.512019-12-28T22:09:39Z127.032019-12-28T22:09:40Z126.552019-12-28T22:09:41Z126.072019-12-28T22:09:42Z125.592019-12-28T22:09:43Z125.112019-12-28T22:09:44Z124.632019-12-28T22:09:45Z124.152019-12-28T22:09:46Z124.152019-12-28T22:09:47Z123.672019-12-28T22:09:48Z122.712019-12-28T22:09:49Z120.782019-12-28T22:09:50Z119.342019-12-28T22:09:51Z118.382019-12-28T22:09:52Z116.942019-12-28T22:09:53Z116.462019-12-28T22:09:54Z115.982019-12-28T22:09:55Z115.502019-12-28T22:09:56Z115.012019-12-28T22:09:57Z114.052019-12-28T22:09:58Z113.092019-12-28T22:09:59Z112.612019-12-28T22:10:00Z112.132019-12-28T22:10:01Z112.132019-12-28T22:10:02Z111.652019-12-28T22:10:03Z111.652019-12-28T22:10:04Z111.172019-12-28T22:10:05Z111.172019-12-28T22:10:06Z110.212019-12-28T22:10:07Z109.732019-12-28T22:10:08Z109.732019-12-28T22:10:09Z109.252019-12-28T22:10:10Z108.772019-12-28T22:10:11Z108.292019-12-28T22:10:12Z108.772019-12-28T22:10:13Z109.252019-12-28T22:10:14Z109.252019-12-28T22:10:15Z109.732019-12-28T22:10:16Z109.732019-12-28T22:10:17Z109.732019-12-28T22:10:18Z110.212019-12-28T22:10:19Z110.692019-12-28T22:10:20Z111.652019-12-28T22:10:21Z112.612019-12-28T22:10:22Z113.572019-12-28T22:10:23Z114.532019-12-28T22:10:24Z115.502019-12-28T22:10:25Z116.462019-12-28T22:10:26Z116.942019-12-28T22:10:27Z117.902019-12-28T22:10:28Z118.862019-12-28T22:10:29Z119.342019-12-28T22:10:30Z119.822019-12-28T22:10:31Z120.302019-12-28T22:10:32Z121.262019-12-28T22:10:33Z122.222019-12-28T22:10:34Z122.712019-12-28T22:10:35Z123.192019-12-28T22:10:36Z123.192019-12-28T22:10:37Z123.672019-12-28T22:10:38Z123.672019-12-28T22:10:39Z123.672019-12-28T22:10:40Z123.672019-12-28T22:10:41Z124.152019-12-28T22:10:42Z124.152019-12-28T22:10:43Z123.672019-12-28T22:10:44Z124.152019-12-28T22:10:45Z124.152019-12-28T22:10:46Z124.632019-12-28T22:10:47Z124.632019-12-28T22:10:48Z125.112019-12-28T22:10:49Z125.592019-12-28T22:10:50Z125.592019-12-28T22:10:51Z125.592019-12-28T22:10:52Z126.072019-12-28T22:10:53Z126.072019-12-28T22:10:54Z126.072019-12-28T22:10:55Z126.072019-12-28T22:10:56Z126.072019-12-28T22:10:57Z126.072019-12-28T22:10:58Z126.072019-12-28T22:10:59Z126.072019-12-28T22:11:00Z126.072019-12-28T22:11:01Z126.552019-12-28T22:11:02Z127.032019-12-28T22:11:03Z127.512019-12-28T22:11:04Z127.512019-12-28T22:11:05Z127.512019-12-28T22:11:06Z127.512019-12-28T22:11:07Z127.512019-12-28T22:11:08Z127.992019-12-28T22:11:09Z127.992019-12-28T22:11:10Z127.512019-12-28T22:11:11Z127.512019-12-28T22:11:12Z127.992019-12-28T22:11:13Z127.992019-12-28T22:11:14Z127.512019-12-28T22:11:15Z127.512019-12-28T22:11:16Z126.552019-12-28T22:11:17Z126.072019-12-28T22:11:18Z125.592019-12-28T22:11:19Z123.672019-12-28T22:11:20Z122.222019-12-28T22:11:21Z121.742019-12-28T22:11:22Z121.742019-12-28T22:11:23Z121.262019-12-28T22:11:24Z120.782019-12-28T22:11:25Z120.302019-12-28T22:11:26Z119.822019-12-28T22:11:27Z118.382019-12-28T22:11:28Z117.902019-12-28T22:11:29Z117.902019-12-28T22:11:30Z117.422019-12-28T22:11:31Z117.422019-12-28T22:11:32Z116.462019-12-28T22:11:33Z115.502019-12-28T22:11:34Z114.052019-12-28T22:11:35Z113.092019-12-28T22:11:36Z112.132019-12-28T22:11:37Z111.652019-12-28T22:11:38Z110.692019-12-28T22:11:39Z110.212019-12-28T22:11:40Z109.732019-12-28T22:11:41Z109.252019-12-28T22:11:42Z109.252019-12-28T22:11:43Z108.772019-12-28T22:11:44Z108.292019-12-28T22:11:45Z107.812019-12-28T22:11:46Z107.322019-12-28T22:11:47Z107.322019-12-28T22:11:48Z106.842019-12-28T22:11:49Z106.842019-12-28T22:11:50Z106.362019-12-28T22:11:51Z106.362019-12-28T22:11:52Z106.362019-12-28T22:11:53Z106.362019-12-28T22:11:54Z105.882019-12-28T22:11:55Z105.882019-12-28T22:11:56Z105.402019-12-28T22:11:57Z104.922019-12-28T22:11:58Z104.442019-12-28T22:11:59Z103.962019-12-28T22:12:00Z103.482019-12-28T22:12:01Z103.482019-12-28T22:12:02Z103.002019-12-28T22:12:03Z103.002019-12-28T22:12:04Z102.522019-12-28T22:12:05Z102.042019-12-28T22:12:06Z101.562019-12-28T22:12:07Z101.082019-12-28T22:12:08Z100.602019-12-28T22:12:09Z100.112019-12-28T22:12:10Z99.152019-12-28T22:12:11Z98.672019-12-28T22:12:12Z97.712019-12-28T22:12:13Z97.232019-12-28T22:12:14Z97.232019-12-28T22:12:15Z96.752019-12-28T22:12:16Z97.232019-12-28T22:12:17Z97.232019-12-28T22:12:18Z97.232019-12-28T22:12:19Z97.232019-12-28T22:12:20Z97.712019-12-28T22:12:21Z98.192019-12-28T22:12:22Z98.672019-12-28T22:12:23Z99.632019-12-28T22:12:24Z100.112019-12-28T22:12:25Z101.082019-12-28T22:12:26Z102.042019-12-28T22:12:27Z103.002019-12-28T22:12:28Z103.482019-12-28T22:12:29Z104.442019-12-28T22:12:30Z104.922019-12-28T22:12:31Z106.362019-12-28T22:12:32Z106.842019-12-28T22:12:33Z107.812019-12-28T22:12:34Z108.292019-12-28T22:12:35Z108.772019-12-28T22:12:36Z109.732019-12-28T22:12:37Z110.212019-12-28T22:12:38Z111.172019-12-28T22:12:39Z112.132019-12-28T22:12:40Z112.612019-12-28T22:12:41Z113.572019-12-28T22:12:42Z114.532019-12-28T22:12:43Z115.502019-12-28T22:12:44Z116.462019-12-28T22:12:45Z117.422019-12-28T22:12:46Z118.382019-12-28T22:12:47Z119.342019-12-28T22:12:48Z118.862019-12-28T22:12:49Z119.822019-12-28T22:12:50Z120.302019-12-28T22:12:51Z120.782019-12-28T22:12:52Z121.262019-12-28T22:12:53Z122.222019-12-28T22:12:54Z122.712019-12-28T22:12:55Z122.712019-12-28T22:12:56Z123.192019-12-28T22:12:57Z123.672019-12-28T22:12:58Z124.632019-12-28T22:12:59Z126.072019-12-28T22:13:00Z127.032019-12-28T22:13:01Z127.992019-12-28T22:13:02Z128.472019-12-28T22:13:03Z128.952019-12-28T22:13:04Z129.432019-12-28T22:13:05Z129.432019-12-28T22:13:06Z129.922019-12-28T22:13:07Z130.882019-12-28T22:13:08Z132.322019-12-28T22:13:09Z133.762019-12-28T22:13:10Z135.202019-12-28T22:13:11Z136.162019-12-28T22:13:12Z137.612019-12-28T22:13:13Z139.052019-12-28T22:13:14Z140.012019-12-28T22:13:15Z141.452019-12-28T22:13:16Z142.412019-12-28T22:13:17Z143.372019-12-28T22:13:18Z144.342019-12-28T22:13:19Z145.302019-12-28T22:13:20Z146.262019-12-28T22:13:21Z147.222019-12-28T22:13:22Z147.702019-12-28T22:13:23Z148.182019-12-28T22:13:24Z148.182019-12-28T22:13:25Z148.182019-12-28T22:13:26Z148.662019-12-28T22:13:27Z148.662019-12-28T22:13:28Z148.662019-12-28T22:13:29Z149.142019-12-28T22:13:30Z149.142019-12-28T22:13:31Z149.142019-12-28T22:13:32Z148.662019-12-28T22:13:33Z148.182019-12-28T22:13:34Z147.702019-12-28T22:13:35Z147.222019-12-28T22:13:36Z147.222019-12-28T22:13:37Z147.222019-12-28T22:13:38Z146.742019-12-28T22:13:39Z146.262019-12-28T22:13:40Z146.262019-12-28T22:13:41Z145.782019-12-28T22:13:42Z145.302019-12-28T22:13:43Z144.822019-12-28T22:13:44Z143.852019-12-28T22:13:45Z143.372019-12-28T22:13:46Z142.412019-12-28T22:13:47Z141.932019-12-28T22:13:48Z141.932019-12-28T22:13:49Z141.452019-12-28T22:13:50Z140.972019-12-28T22:13:51Z140.492019-12-28T22:13:52Z140.012019-12-28T22:13:53Z139.052019-12-28T22:13:54Z138.572019-12-28T22:13:55Z138.092019-12-28T22:13:56Z137.612019-12-28T22:13:57Z137.132019-12-28T22:13:58Z137.132019-12-28T22:13:59Z136.642019-12-28T22:14:00Z136.162019-12-28T22:14:01Z136.162019-12-28T22:14:02Z135.682019-12-28T22:14:03Z135.682019-12-28T22:14:04Z135.202019-12-28T22:14:05Z134.722019-12-28T22:14:06Z134.722019-12-28T22:14:07Z134.242019-12-28T22:14:08Z133.762019-12-28T22:14:09Z133.762019-12-28T22:14:10Z133.762019-12-28T22:14:11Z133.762019-12-28T22:14:12Z133.762019-12-28T22:14:13Z133.282019-12-28T22:14:14Z133.282019-12-28T22:14:15Z132.802019-12-28T22:14:16Z132.802019-12-28T22:14:17Z132.322019-12-28T22:14:18Z131.842019-12-28T22:14:19Z130.882019-12-28T22:14:20Z128.472019-12-28T22:14:21Z126.552019-12-28T22:14:22Z125.592019-12-28T22:14:23Z125.592019-12-28T22:14:24Z125.592019-12-28T22:14:25Z125.592019-12-28T22:14:26Z124.152019-12-28T22:14:27Z123.192019-12-28T22:14:28Z121.742019-12-28T22:14:29Z121.262019-12-28T22:14:30Z120.302019-12-28T22:14:31Z119.822019-12-28T22:14:32Z119.342019-12-28T22:14:33Z118.862019-12-28T22:14:34Z118.382019-12-28T22:14:35Z117.902019-12-28T22:14:36Z117.902019-12-28T22:14:37Z117.422019-12-28T22:14:38Z116.942019-12-28T22:14:39Z116.462019-12-28T22:14:40Z115.982019-12-28T22:14:41Z115.502019-12-28T22:14:42Z115.012019-12-28T22:14:43Z114.532019-12-28T22:14:44Z114.052019-12-28T22:14:45Z114.052019-12-28T22:14:46Z113.572019-12-28T22:14:47Z113.092019-12-28T22:14:48Z112.612019-12-28T22:14:49Z112.132019-12-28T22:14:50Z111.652019-12-28T22:14:51Z111.652019-12-28T22:14:52Z111.652019-12-28T22:14:53Z111.652019-12-28T22:14:54Z111.172019-12-28T22:14:55Z111.172019-12-28T22:14:56Z110.692019-12-28T22:14:57Z109.732019-12-28T22:14:58Z108.772019-12-28T22:14:59Z108.292019-12-28T22:15:00Z106.842019-12-28T22:15:01Z105.882019-12-28T22:15:02Z103.962019-12-28T22:15:03Z102.042019-12-28T22:15:04Z100.112019-12-28T22:15:05Z98.672019-12-28T22:15:06Z97.232019-12-28T22:15:07Z96.272019-12-28T22:15:08Z95.312019-12-28T22:15:09Z94.832019-12-28T22:15:10Z94.352019-12-28T22:15:11Z93.872019-12-28T22:15:12Z93.872019-12-28T22:15:13Z93.872019-12-28T22:15:14Z93.872019-12-28T22:15:15Z93.872019-12-28T22:15:16Z93.392019-12-28T22:15:17Z93.392019-12-28T22:15:18Z93.872019-12-28T22:15:19Z94.352019-12-28T22:15:20Z94.352019-12-28T22:15:21Z94.832019-12-28T22:15:22Z95.792019-12-28T22:15:23Z96.272019-12-28T22:15:24Z96.752019-12-28T22:15:25Z97.232019-12-28T22:15:26Z97.712019-12-28T22:15:27Z98.192019-12-28T22:15:28Z99.152019-12-28T22:15:29Z99.632019-12-28T22:15:30Z100.112019-12-28T22:15:31Z100.602019-12-28T22:15:32Z100.602019-12-28T22:15:33Z101.082019-12-28T22:15:34Z101.082019-12-28T22:15:35Z101.562019-12-28T22:15:36Z101.562019-12-28T22:15:37Z101.562019-12-28T22:15:38Z102.042019-12-28T22:15:39Z102.042019-12-28T22:15:40Z102.522019-12-28T22:15:41Z102.522019-12-28T22:15:42Z102.522019-12-28T22:15:43Z101.562019-12-28T22:15:44Z101.562019-12-28T22:15:45Z101.082019-12-28T22:15:46Z101.082019-12-28T22:15:47Z100.602019-12-28T22:15:48Z101.082019-12-28T22:15:49Z101.082019-12-28T22:15:50Z101.562019-12-28T22:15:51Z101.562019-12-28T22:15:52Z101.562019-12-28T22:15:53Z101.562019-12-28T22:15:54Z101.082019-12-28T22:15:55Z101.082019-12-28T22:15:56Z100.602019-12-28T22:15:57Z100.602019-12-28T22:15:58Z100.602019-12-28T22:15:59Z100.602019-12-28T22:16:00Z100.602019-12-28T22:16:01Z100.602019-12-28T22:16:02Z100.602019-12-28T22:16:03Z100.602019-12-28T22:16:04Z100.602019-12-28T22:16:05Z100.112019-12-28T22:16:06Z100.112019-12-28T22:16:07Z100.112019-12-28T22:16:08Z100.112019-12-28T22:16:09Z100.112019-12-28T22:16:10Z100.112019-12-28T22:16:11Z99.632019-12-28T22:16:12Z99.632019-12-28T22:16:13Z99.632019-12-28T22:16:14Z99.152019-12-28T22:16:15Z99.152019-12-28T22:16:16Z98.672019-12-28T22:16:17Z98.672019-12-28T22:16:18Z98.672019-12-28T22:16:19Z98.672019-12-28T22:16:20Z98.192019-12-28T22:16:21Z98.192019-12-28T22:16:22Z98.192019-12-28T22:16:23Z98.192019-12-28T22:16:24Z98.192019-12-28T22:16:25Z98.192019-12-28T22:16:26Z98.192019-12-28T22:16:27Z98.192019-12-28T22:16:28Z98.192019-12-28T22:16:29Z98.672019-12-28T22:16:30Z98.672019-12-28T22:16:31Z99.152019-12-28T22:16:32Z99.152019-12-28T22:16:33Z99.152019-12-28T22:16:34Z99.632019-12-28T22:16:35Z99.632019-12-28T22:16:36Z99.632019-12-28T22:16:37Z99.632019-12-28T22:16:38Z99.632019-12-28T22:16:39Z99.632019-12-28T22:16:40Z99.632019-12-28T22:16:41Z99.632019-12-28T22:16:42Z99.632019-12-28T22:16:43Z99.152019-12-28T22:16:44Z99.152019-12-28T22:16:45Z99.152019-12-28T22:16:46Z99.152019-12-28T22:16:47Z99.152019-12-28T22:16:48Z99.152019-12-28T22:16:49Z98.672019-12-28T22:16:50Z98.672019-12-28T22:16:51Z98.672019-12-28T22:16:52Z99.152019-12-28T22:16:53Z99.152019-12-28T22:16:54Z98.672019-12-28T22:16:55Z98.672019-12-28T22:16:56Z98.672019-12-28T22:16:57Z99.152019-12-28T22:16:58Z99.152019-12-28T22:16:59Z99.152019-12-28T22:17:00Z98.672019-12-28T22:17:01Z98.672019-12-28T22:17:02Z98.192019-12-28T22:17:03Z98.192019-12-28T22:17:04Z97.712019-12-28T22:17:05Z97.712019-12-28T22:17:06Z97.232019-12-28T22:17:07Z96.752019-12-28T22:17:08Z96.752019-12-28T22:17:09Z96.272019-12-28T22:17:10Z96.272019-12-28T22:17:11Z95.792019-12-28T22:17:12Z96.272019-12-28T22:17:13Z95.792019-12-28T22:17:14Z95.792019-12-28T22:17:15Z95.792019-12-28T22:17:16Z95.312019-12-28T22:17:17Z94.832019-12-28T22:17:18Z94.832019-12-28T22:17:19Z94.832019-12-28T22:17:20Z94.832019-12-28T22:17:21Z94.352019-12-28T22:17:22Z94.352019-12-28T22:17:23Z94.352019-12-28T22:17:24Z93.872019-12-28T22:17:25Z93.872019-12-28T22:17:26Z93.872019-12-28T22:17:27Z93.392019-12-28T22:17:28Z93.392019-12-28T22:17:29Z92.902019-12-28T22:17:30Z92.902019-12-28T22:17:31Z92.422019-12-28T22:17:32Z92.422019-12-28T22:17:33Z92.422019-12-28T22:17:34Z92.422019-12-28T22:17:35Z92.422019-12-28T22:17:36Z91.942019-12-28T22:17:37Z91.942019-12-28T22:17:38Z91.462019-12-28T22:17:39Z91.462019-12-28T22:17:40Z91.462019-12-28T22:17:41Z90.982019-12-28T22:17:42Z90.502019-12-28T22:17:43Z90.502019-12-28T22:17:44Z90.502019-12-28T22:17:45Z90.982019-12-28T22:17:46Z90.982019-12-28T22:17:47Z91.462019-12-28T22:17:48Z91.942019-12-28T22:17:49Z91.942019-12-28T22:17:50Z92.422019-12-28T22:17:51Z92.422019-12-28T22:17:52Z92.422019-12-28T22:17:53Z92.422019-12-28T22:17:54Z92.422019-12-28T22:17:55Z92.422019-12-28T22:17:56Z92.422019-12-28T22:17:57Z92.422019-12-28T22:17:58Z92.422019-12-28T22:17:59Z91.942019-12-28T22:18:00Z91.942019-12-28T22:18:01Z91.942019-12-28T22:18:02Z91.942019-12-28T22:18:03Z91.942019-12-28T22:18:04Z91.462019-12-28T22:18:05Z91.462019-12-28T22:18:06Z91.462019-12-28T22:18:07Z91.462019-12-28T22:18:08Z91.942019-12-28T22:18:09Z91.942019-12-28T22:18:10Z91.942019-12-28T22:18:11Z91.942019-12-28T22:18:12Z91.942019-12-28T22:18:13Z91.942019-12-28T22:18:14Z91.462019-12-28T22:18:15Z91.462019-12-28T22:18:16Z90.982019-12-28T22:18:17Z91.462019-12-28T22:18:18Z90.982019-12-28T22:18:19Z90.982019-12-28T22:18:20Z90.982019-12-28T22:18:21Z90.502019-12-28T22:18:22Z90.502019-12-28T22:18:23Z90.982019-12-28T22:18:24Z90.982019-12-28T22:18:25Z91.462019-12-28T22:18:26Z91.942019-12-28T22:18:27Z92.422019-12-28T22:18:28Z93.392019-12-28T22:18:29Z93.872019-12-28T22:18:30Z94.832019-12-28T22:18:31Z95.792019-12-28T22:18:32Z96.272019-12-28T22:18:33Z96.752019-12-28T22:18:34Z97.232019-12-28T22:18:35Z97.712019-12-28T22:18:36Z98.192019-12-28T22:18:37Z98.672019-12-28T22:18:38Z99.152019-12-28T22:18:39Z99.152019-12-28T22:18:40Z99.632019-12-28T22:18:41Z100.112019-12-28T22:18:42Z100.602019-12-28T22:18:43Z101.082019-12-28T22:18:44Z101.562019-12-28T22:18:45Z101.562019-12-28T22:18:46Z102.042019-12-28T22:18:47Z102.522019-12-28T22:18:48Z103.002019-12-28T22:18:49Z103.482019-12-28T22:18:50Z103.962019-12-28T22:18:51Z104.442019-12-28T22:18:52Z105.402019-12-28T22:18:53Z106.362019-12-28T22:18:54Z106.842019-12-28T22:18:55Z106.362019-12-28T22:18:56Z106.362019-12-28T22:18:57Z106.842019-12-28T22:18:58Z107.812019-12-28T22:18:59Z109.252019-12-28T22:19:00Z110.212019-12-28T22:19:01Z111.172019-12-28T22:19:02Z111.652019-12-28T22:19:03Z112.612019-12-28T22:19:04Z113.092019-12-28T22:19:05Z113.092019-12-28T22:19:06Z111.652019-12-28T22:19:07Z111.172019-12-28T22:19:08Z111.652019-12-28T22:19:09Z112.132019-12-28T22:19:10Z112.612019-12-28T22:19:11Z113.092019-12-28T22:19:12Z114.052019-12-28T22:19:13Z114.532019-12-28T22:19:14Z115.012019-12-28T22:19:15Z115.012019-12-28T22:19:16Z115.012019-12-28T22:19:17Z115.502019-12-28T22:19:18Z116.462019-12-28T22:19:19Z116.942019-12-28T22:19:20Z117.422019-12-28T22:19:21Z117.902019-12-28T22:19:22Z118.862019-12-28T22:19:23Z119.342019-12-28T22:19:24Z119.822019-12-28T22:19:25Z120.302019-12-28T22:19:26Z120.302019-12-28T22:19:27Z120.302019-12-28T22:19:28Z120.302019-12-28T22:19:29Z120.302019-12-28T22:19:30Z120.302019-12-28T22:19:31Z120.782019-12-28T22:19:32Z120.302019-12-28T22:19:33Z120.302019-12-28T22:19:34Z119.822019-12-28T22:19:35Z120.302019-12-28T22:19:36Z120.302019-12-28T22:19:37Z120.302019-12-28T22:19:38Z120.782019-12-28T22:19:39Z120.782019-12-28T22:19:40Z120.782019-12-28T22:19:41Z120.782019-12-28T22:19:42Z120.782019-12-28T22:19:43Z121.262019-12-28T22:19:44Z121.262019-12-28T22:19:45Z121.742019-12-28T22:19:46Z121.742019-12-28T22:19:47Z122.222019-12-28T22:19:48Z122.222019-12-28T22:19:49Z122.712019-12-28T22:19:50Z123.192019-12-28T22:19:51Z123.192019-12-28T22:19:52Z123.672019-12-28T22:19:53Z124.152019-12-28T22:19:54Z124.632019-12-28T22:19:55Z125.112019-12-28T22:19:56Z125.592019-12-28T22:19:57Z125.592019-12-28T22:19:58Z126.072019-12-28T22:19:59Z126.552019-12-28T22:20:00Z127.032019-12-28T22:20:01Z127.512019-12-28T22:20:02Z127.512019-12-28T22:20:03Z127.512019-12-28T22:20:04Z127.512019-12-28T22:20:05Z127.512019-12-28T22:20:06Z127.032019-12-28T22:20:07Z127.032019-12-28T22:20:08Z126.552019-12-28T22:20:09Z126.552019-12-28T22:20:10Z126.552019-12-28T22:20:11Z127.032019-12-28T22:20:12Z127.512019-12-28T22:20:13Z127.992019-12-28T22:20:14Z128.472019-12-28T22:20:15Z128.952019-12-28T22:20:16Z129.432019-12-28T22:20:17Z129.432019-12-28T22:20:18Z129.922019-12-28T22:20:19Z130.402019-12-28T22:20:20Z130.882019-12-28T22:20:21Z131.842019-12-28T22:20:22Z132.322019-12-28T22:20:23Z132.802019-12-28T22:20:24Z132.802019-12-28T22:20:25Z133.282019-12-28T22:20:26Z133.282019-12-28T22:20:27Z133.282019-12-28T22:20:28Z133.282019-12-28T22:20:29Z133.762019-12-28T22:20:30Z133.762019-12-28T22:20:31Z134.242019-12-28T22:20:32Z134.242019-12-28T22:20:33Z134.722019-12-28T22:20:34Z134.722019-12-28T22:20:35Z135.202019-12-28T22:20:36Z135.202019-12-28T22:20:37Z135.682019-12-28T22:20:38Z135.682019-12-28T22:20:39Z135.682019-12-28T22:20:40Z135.202019-12-28T22:20:41Z135.202019-12-28T22:20:42Z135.682019-12-28T22:20:43Z135.682019-12-28T22:20:44Z136.162019-12-28T22:20:45Z136.642019-12-28T22:20:46Z136.642019-12-28T22:20:47Z137.132019-12-28T22:20:48Z137.132019-12-28T22:20:49Z137.612019-12-28T22:20:50Z137.612019-12-28T22:20:51Z137.612019-12-28T22:20:52Z137.612019-12-28T22:20:53Z137.612019-12-28T22:20:54Z137.612019-12-28T22:20:55Z137.612019-12-28T22:20:56Z138.092019-12-28T22:20:57Z138.092019-12-28T22:20:58Z138.092019-12-28T22:20:59Z138.572019-12-28T22:21:00Z139.052019-12-28T22:21:01Z139.532019-12-28T22:21:02Z139.532019-12-28T22:21:03Z139.532019-12-28T22:21:04Z139.532019-12-28T22:21:05Z140.012019-12-28T22:21:06Z140.492019-12-28T22:21:07Z141.452019-12-28T22:21:08Z142.412019-12-28T22:21:09Z142.892019-12-28T22:21:10Z143.372019-12-28T22:21:11Z143.372019-12-28T22:21:12Z143.852019-12-28T22:21:13Z143.852019-12-28T22:21:14Z144.342019-12-28T22:21:15Z144.342019-12-28T22:21:16Z144.822019-12-28T22:21:17Z145.302019-12-28T22:21:18Z145.302019-12-28T22:21:19Z145.302019-12-28T22:21:20Z145.782019-12-28T22:21:21Z145.782019-12-28T22:21:22Z146.262019-12-28T22:21:23Z146.742019-12-28T22:21:24Z147.222019-12-28T22:21:25Z147.702019-12-28T22:21:26Z148.662019-12-28T22:21:27Z149.142019-12-28T22:21:28Z149.142019-12-28T22:21:29Z149.622019-12-28T22:21:30Z150.102019-12-28T22:21:31Z150.102019-12-28T22:21:32Z150.582019-12-28T22:21:33Z150.582019-12-28T22:21:34Z151.062019-12-28T22:21:35Z150.582019-12-28T22:21:36Z149.622019-12-28T22:21:37Z148.662019-12-28T22:21:38Z148.182019-12-28T22:21:39Z148.182019-12-28T22:21:40Z147.702019-12-28T22:21:41Z146.742019-12-28T22:21:42Z145.782019-12-28T22:21:43Z144.822019-12-28T22:21:44Z144.342019-12-28T22:21:45Z143.852019-12-28T22:21:46Z142.892019-12-28T22:21:47Z142.412019-12-28T22:21:48Z141.932019-12-28T22:21:49Z141.452019-12-28T22:21:50Z140.492019-12-28T22:21:51Z140.012019-12-28T22:21:52Z139.052019-12-28T22:21:53Z138.092019-12-28T22:21:54Z137.612019-12-28T22:21:55Z136.642019-12-28T22:21:56Z136.162019-12-28T22:21:57Z135.682019-12-28T22:21:58Z135.202019-12-28T22:21:59Z134.722019-12-28T22:22:00Z134.242019-12-28T22:22:01Z133.282019-12-28T22:22:02Z133.762019-12-28T22:22:03Z133.762019-12-28T22:22:04Z134.242019-12-28T22:22:05Z134.722019-12-28T22:22:06Z134.722019-12-28T22:22:07Z134.722019-12-28T22:22:08Z135.202019-12-28T22:22:09Z135.202019-12-28T22:22:10Z135.682019-12-28T22:22:11Z136.162019-12-28T22:22:12Z137.132019-12-28T22:22:13Z137.612019-12-28T22:22:14Z138.092019-12-28T22:22:15Z139.052019-12-28T22:22:16Z139.532019-12-28T22:22:17Z140.012019-12-28T22:22:18Z140.972019-12-28T22:22:19Z140.972019-12-28T22:22:20Z141.452019-12-28T22:22:21Z141.932019-12-28T22:22:22Z142.412019-12-28T22:22:23Z143.372019-12-28T22:22:24Z143.372019-12-28T22:22:25Z143.852019-12-28T22:22:26Z143.852019-12-28T22:22:27Z143.852019-12-28T22:22:28Z143.852019-12-28T22:22:29Z143.372019-12-28T22:22:30Z143.372019-12-28T22:22:31Z143.372019-12-28T22:22:32Z143.372019-12-28T22:22:33Z143.852019-12-28T22:22:34Z143.852019-12-28T22:22:35Z143.852019-12-28T22:22:36Z143.852019-12-28T22:22:37Z143.372019-12-28T22:22:38Z143.372019-12-28T22:22:39Z143.372019-12-28T22:22:40Z143.372019-12-28T22:22:41Z143.372019-12-28T22:22:42Z143.372019-12-28T22:22:43Z143.372019-12-28T22:22:44Z143.372019-12-28T22:22:45Z143.372019-12-28T22:22:46Z143.372019-12-28T22:22:47Z142.892019-12-28T22:22:48Z141.452019-12-28T22:22:49Z141.452019-12-28T22:22:50Z140.972019-12-28T22:22:51Z140.492019-12-28T22:22:52Z139.532019-12-28T22:22:53Z137.612019-12-28T22:22:54Z136.162019-12-28T22:22:55Z134.722019-12-28T22:22:56Z133.282019-12-28T22:22:57Z132.802019-12-28T22:22:58Z132.322019-12-28T22:22:59Z132.322019-12-28T22:23:00Z131.842019-12-28T22:23:01Z131.842019-12-28T22:23:02Z131.362019-12-28T22:23:03Z130.882019-12-28T22:23:04Z130.402019-12-28T22:23:05Z129.922019-12-28T22:23:06Z129.432019-12-28T22:23:07Z128.472019-12-28T22:23:08Z127.512019-12-28T22:23:09Z127.032019-12-28T22:23:10Z126.072019-12-28T22:23:11Z125.592019-12-28T22:23:12Z125.592019-12-28T22:23:13Z125.592019-12-28T22:23:14Z126.072019-12-28T22:23:15Z126.072019-12-28T22:23:16Z126.072019-12-28T22:23:17Z126.072019-12-28T22:23:18Z126.072019-12-28T22:23:19Z126.072019-12-28T22:23:20Z126.072019-12-28T22:23:21Z126.072019-12-28T22:23:22Z126.072019-12-28T22:23:23Z126.072019-12-28T22:23:24Z126.552019-12-28T22:23:25Z126.552019-12-28T22:23:26Z127.032019-12-28T22:23:27Z127.032019-12-28T22:23:28Z126.072019-12-28T22:23:29Z126.072019-12-28T22:23:30Z125.592019-12-28T22:23:31Z125.592019-12-28T22:23:32Z125.592019-12-28T22:23:33Z126.072019-12-28T22:23:34Z125.592019-12-28T22:23:35Z125.592019-12-28T22:23:36Z125.112019-12-28T22:23:37Z124.632019-12-28T22:23:38Z124.152019-12-28T22:23:39Z124.152019-12-28T22:23:40Z124.152019-12-28T22:23:41Z124.152019-12-28T22:23:42Z124.152019-12-28T22:23:43Z124.632019-12-28T22:23:44Z124.632019-12-28T22:23:45Z125.112019-12-28T22:23:46Z125.112019-12-28T22:23:47Z125.592019-12-28T22:23:48Z126.072019-12-28T22:23:49Z126.552019-12-28T22:23:50Z127.032019-12-28T22:23:51Z127.512019-12-28T22:23:52Z127.992019-12-28T22:23:53Z128.472019-12-28T22:23:54Z128.952019-12-28T22:23:55Z129.432019-12-28T22:23:56Z129.922019-12-28T22:23:57Z130.402019-12-28T22:23:58Z130.402019-12-28T22:23:59Z130.882019-12-28T22:24:00Z130.882019-12-28T22:24:01Z130.882019-12-28T22:24:02Z131.362019-12-28T22:24:03Z131.362019-12-28T22:24:04Z131.362019-12-28T22:24:05Z131.362019-12-28T22:24:06Z131.362019-12-28T22:24:07Z130.882019-12-28T22:24:08Z130.402019-12-28T22:24:09Z129.922019-12-28T22:24:10Z128.952019-12-28T22:24:11Z128.472019-12-28T22:24:12Z127.992019-12-28T22:24:13Z127.512019-12-28T22:24:14Z127.512019-12-28T22:24:15Z126.552019-12-28T22:24:16Z126.072019-12-28T22:24:17Z125.592019-12-28T22:24:18Z125.112019-12-28T22:24:19Z125.112019-12-28T22:24:20Z124.632019-12-28T22:24:21Z124.152019-12-28T22:24:22Z123.672019-12-28T22:24:23Z123.672019-12-28T22:24:24Z123.192019-12-28T22:24:25Z123.192019-12-28T22:24:26Z123.192019-12-28T22:24:27Z123.672019-12-28T22:24:28Z124.152019-12-28T22:24:29Z124.152019-12-28T22:24:30Z124.632019-12-28T22:24:31Z124.632019-12-28T22:24:32Z124.632019-12-28T22:24:33Z125.112019-12-28T22:24:34Z125.112019-12-28T22:24:35Z124.632019-12-28T22:24:36Z124.632019-12-28T22:24:37Z124.632019-12-28T22:24:38Z124.632019-12-28T22:24:39Z124.152019-12-28T22:24:40Z124.152019-12-28T22:24:41Z124.152019-12-28T22:24:42Z124.152019-12-28T22:24:43Z123.672019-12-28T22:24:44Z123.672019-12-28T22:24:45Z123.672019-12-28T22:24:46Z124.152019-12-28T22:24:47Z124.152019-12-28T22:24:48Z124.152019-12-28T22:24:49Z124.152019-12-28T22:24:50Z124.152019-12-28T22:24:51Z124.152019-12-28T22:24:52Z124.152019-12-28T22:24:53Z124.152019-12-28T22:24:54Z124.152019-12-28T22:24:55Z124.152019-12-28T22:24:56Z124.152019-12-28T22:24:57Z123.672019-12-28T22:24:58Z123.672019-12-28T22:24:59Z123.672019-12-28T22:25:00Z124.152019-12-28T22:25:01Z124.152019-12-28T22:25:02Z124.632019-12-28T22:25:03Z124.632019-12-28T22:25:04Z124.632019-12-28T22:25:05Z124.152019-12-28T22:25:06Z124.152019-12-28T22:25:07Z123.672019-12-28T22:25:08Z123.192019-12-28T22:25:09Z123.192019-12-28T22:25:10Z122.712019-12-28T22:25:11Z122.712019-12-28T22:25:12Z123.192019-12-28T22:25:13Z123.192019-12-28T22:25:14Z123.192019-12-28T22:25:15Z123.672019-12-28T22:25:16Z123.672019-12-28T22:25:17Z123.672019-12-28T22:25:18Z123.672019-12-28T22:25:19Z123.672019-12-28T22:25:20Z123.192019-12-28T22:25:21Z122.712019-12-28T22:25:22Z121.742019-12-28T22:25:23Z121.262019-12-28T22:25:24Z120.782019-12-28T22:25:25Z120.302019-12-28T22:25:26Z119.822019-12-28T22:25:27Z119.342019-12-28T22:25:28Z118.862019-12-28T22:25:29Z118.862019-12-28T22:25:30Z118.862019-12-28T22:25:31Z118.862019-12-28T22:25:32Z118.862019-12-28T22:25:33Z116.462019-12-28T22:25:34Z115.982019-12-28T22:25:35Z115.982019-12-28T22:25:36Z115.982019-12-28T22:25:37Z115.982019-12-28T22:25:38Z115.982019-12-28T22:25:39Z115.982019-12-28T22:25:40Z116.462019-12-28T22:25:41Z116.942019-12-28T22:25:42Z116.942019-12-28T22:25:43Z117.422019-12-28T22:25:44Z118.382019-12-28T22:25:45Z119.342019-12-28T22:25:46Z120.782019-12-28T22:25:47Z121.742019-12-28T22:25:48Z123.192019-12-28T22:25:49Z124.632019-12-28T22:25:50Z126.552019-12-28T22:25:51Z127.992019-12-28T22:25:52Z129.922019-12-28T22:25:53Z131.842019-12-28T22:25:54Z133.762019-12-28T22:25:55Z135.202019-12-28T22:25:56Z137.132019-12-28T22:25:57Z138.092019-12-28T22:25:58Z139.052019-12-28T22:25:59Z140.012019-12-28T22:26:00Z140.492019-12-28T22:26:01Z140.972019-12-28T22:26:02Z141.452019-12-28T22:26:03Z141.452019-12-28T22:26:04Z141.932019-12-28T22:26:05Z142.412019-12-28T22:26:06Z142.892019-12-28T22:26:07Z142.892019-12-28T22:26:08Z143.372019-12-28T22:26:09Z143.372019-12-28T22:26:10Z143.372019-12-28T22:26:11Z142.892019-12-28T22:26:12Z142.892019-12-28T22:26:13Z142.412019-12-28T22:26:14Z142.412019-12-28T22:26:15Z141.932019-12-28T22:26:16Z141.452019-12-28T22:26:17Z141.452019-12-28T22:26:18Z141.452019-12-28T22:26:19Z140.972019-12-28T22:26:20Z140.972019-12-28T22:26:21Z140.972019-12-28T22:26:22Z141.452019-12-28T22:26:23Z141.452019-12-28T22:26:24Z141.932019-12-28T22:26:25Z141.932019-12-28T22:26:26Z141.932019-12-28T22:26:27Z141.932019-12-28T22:26:28Z141.932019-12-28T22:26:29Z141.932019-12-28T22:26:30Z141.452019-12-28T22:26:31Z140.972019-12-28T22:26:32Z140.492019-12-28T22:26:33Z140.012019-12-28T22:26:34Z140.012019-12-28T22:26:35Z139.532019-12-28T22:26:36Z139.052019-12-28T22:26:37Z138.572019-12-28T22:26:38Z137.132019-12-28T22:26:39Z137.132019-12-28T22:26:40Z137.132019-12-28T22:26:41Z136.162019-12-28T22:26:42Z134.722019-12-28T22:26:43Z132.802019-12-28T22:26:44Z130.882019-12-28T22:26:45Z129.922019-12-28T22:26:46Z128.952019-12-28T22:26:47Z127.992019-12-28T22:26:48Z126.552019-12-28T22:26:49Z125.592019-12-28T22:26:50Z125.592019-12-28T22:26:51Z125.112019-12-28T22:26:52Z125.112019-12-28T22:26:53Z125.112019-12-28T22:26:54Z125.592019-12-28T22:26:55Z125.592019-12-28T22:26:56Z125.592019-12-28T22:26:57Z125.112019-12-28T22:26:58Z125.112019-12-28T22:26:59Z125.112019-12-28T22:27:00Z125.112019-12-28T22:27:01Z124.152019-12-28T22:27:02Z123.672019-12-28T22:27:03Z123.192019-12-28T22:27:04Z123.192019-12-28T22:27:05Z122.712019-12-28T22:27:06Z122.712019-12-28T22:27:07Z122.712019-12-28T22:27:08Z121.742019-12-28T22:27:09Z120.782019-12-28T22:27:10Z120.782019-12-28T22:27:11Z120.302019-12-28T22:27:12Z120.302019-12-28T22:27:13Z120.302019-12-28T22:27:14Z120.302019-12-28T22:27:15Z119.822019-12-28T22:27:16Z119.822019-12-28T22:27:17Z120.302019-12-28T22:27:18Z120.302019-12-28T22:27:19Z120.782019-12-28T22:27:20Z121.262019-12-28T22:27:21Z122.222019-12-28T22:27:22Z122.712019-12-28T22:27:23Z123.192019-12-28T22:27:24Z123.192019-12-28T22:27:25Z124.152019-12-28T22:27:26Z124.632019-12-28T22:27:27Z125.112019-12-28T22:27:28Z125.592019-12-28T22:27:29Z126.072019-12-28T22:27:30Z126.552019-12-28T22:27:31Z127.032019-12-28T22:27:32Z127.512019-12-28T22:27:33Z127.992019-12-28T22:27:34Z128.472019-12-28T22:27:35Z128.472019-12-28T22:27:36Z128.952019-12-28T22:27:37Z128.952019-12-28T22:27:38Z129.432019-12-28T22:27:39Z129.432019-12-28T22:27:40Z129.432019-12-28T22:27:41Z129.432019-12-28T22:27:42Z129.432019-12-28T22:27:43Z128.952019-12-28T22:27:44Z128.472019-12-28T22:27:45Z128.952019-12-28T22:27:46Z128.952019-12-28T22:27:47Z129.432019-12-28T22:27:48Z129.432019-12-28T22:27:49Z129.922019-12-28T22:27:50Z129.922019-12-28T22:27:51Z129.922019-12-28T22:27:52Z129.922019-12-28T22:27:53Z129.922019-12-28T22:27:54Z129.922019-12-28T22:27:55Z129.922019-12-28T22:27:56Z129.922019-12-28T22:27:57Z129.922019-12-28T22:27:58Z129.922019-12-28T22:27:59Z129.922019-12-28T22:28:00Z129.922019-12-28T22:28:01Z129.922019-12-28T22:28:02Z129.922019-12-28T22:28:03Z129.432019-12-28T22:28:04Z129.432019-12-28T22:28:05Z129.432019-12-28T22:28:06Z129.432019-12-28T22:28:07Z129.432019-12-28T22:28:08Z129.432019-12-28T22:28:09Z129.432019-12-28T22:28:10Z129.922019-12-28T22:28:11Z129.922019-12-28T22:28:12Z130.402019-12-28T22:28:13Z130.402019-12-28T22:28:14Z130.882019-12-28T22:28:15Z130.882019-12-28T22:28:16Z130.882019-12-28T22:28:17Z130.402019-12-28T22:28:18Z130.402019-12-28T22:28:19Z130.402019-12-28T22:28:20Z130.402019-12-28T22:28:21Z130.402019-12-28T22:28:22Z130.402019-12-28T22:28:23Z130.402019-12-28T22:28:24Z130.402019-12-28T22:28:25Z130.882019-12-28T22:28:26Z130.882019-12-28T22:28:27Z130.882019-12-28T22:28:28Z131.362019-12-28T22:28:29Z131.362019-12-28T22:28:30Z131.362019-12-28T22:28:31Z131.842019-12-28T22:28:32Z131.842019-12-28T22:28:33Z131.362019-12-28T22:28:34Z131.842019-12-28T22:28:35Z130.882019-12-28T22:28:36Z130.882019-12-28T22:28:37Z130.402019-12-28T22:28:38Z130.402019-12-28T22:28:39Z130.402019-12-28T22:28:40Z130.402019-12-28T22:28:41Z129.922019-12-28T22:28:42Z130.402019-12-28T22:28:43Z130.402019-12-28T22:28:44Z130.402019-12-28T22:28:45Z130.882019-12-28T22:28:46Z130.882019-12-28T22:28:47Z130.882019-12-28T22:28:48Z131.362019-12-28T22:28:49Z131.362019-12-28T22:28:50Z130.882019-12-28T22:28:51Z130.882019-12-28T22:28:52Z130.882019-12-28T22:28:53Z131.362019-12-28T22:28:54Z131.362019-12-28T22:28:55Z131.842019-12-28T22:28:56Z131.842019-12-28T22:28:57Z131.842019-12-28T22:28:58Z131.842019-12-28T22:28:59Z132.322019-12-28T22:29:00Z131.842019-12-28T22:29:01Z132.322019-12-28T22:29:02Z132.322019-12-28T22:29:03Z132.322019-12-28T22:29:04Z132.322019-12-28T22:29:05Z132.322019-12-28T22:29:06Z132.802019-12-28T22:29:07Z132.802019-12-28T22:29:08Z132.802019-12-28T22:29:09Z132.802019-12-28T22:29:10Z133.282019-12-28T22:29:11Z133.762019-12-28T22:29:12Z133.762019-12-28T22:29:13Z134.242019-12-28T22:29:14Z134.242019-12-28T22:29:15Z134.722019-12-28T22:29:16Z135.202019-12-28T22:29:17Z135.202019-12-28T22:29:18Z135.682019-12-28T22:29:19Z135.682019-12-28T22:29:20Z136.162019-12-28T22:29:21Z136.162019-12-28T22:29:22Z136.642019-12-28T22:29:23Z136.642019-12-28T22:29:24Z137.132019-12-28T22:29:25Z137.612019-12-28T22:29:26Z137.612019-12-28T22:29:27Z137.612019-12-28T22:29:28Z138.092019-12-28T22:29:29Z138.092019-12-28T22:29:30Z138.572019-12-28T22:29:31Z138.572019-12-28T22:29:32Z138.572019-12-28T22:29:33Z138.092019-12-28T22:29:34Z136.642019-12-28T22:29:35Z136.162019-12-28T22:29:36Z136.162019-12-28T22:29:37Z135.682019-12-28T22:29:38Z135.682019-12-28T22:29:39Z135.202019-12-28T22:29:40Z134.722019-12-28T22:29:41Z134.242019-12-28T22:29:42Z134.242019-12-28T22:29:43Z133.762019-12-28T22:29:44Z134.242019-12-28T22:29:45Z134.722019-12-28T22:29:46Z134.722019-12-28T22:29:47Z134.722019-12-28T22:29:48Z135.202019-12-28T22:29:49Z135.202019-12-28T22:29:50Z135.202019-12-28T22:29:51Z135.682019-12-28T22:29:52Z135.682019-12-28T22:29:53Z136.162019-12-28T22:29:54Z136.162019-12-28T22:29:55Z136.642019-12-28T22:29:56Z137.132019-12-28T22:29:57Z137.132019-12-28T22:29:58Z137.612019-12-28T22:29:59Z138.092019-12-28T22:30:00Z138.092019-12-28T22:30:01Z138.092019-12-28T22:30:02Z139.052019-12-28T22:30:03Z139.532019-12-28T22:30:04Z140.492019-12-28T22:30:05Z141.452019-12-28T22:30:06Z142.412019-12-28T22:30:07Z143.372019-12-28T22:30:08Z143.852019-12-28T22:30:09Z144.342019-12-28T22:30:10Z144.822019-12-28T22:30:11Z145.782019-12-28T22:30:12Z146.262019-12-28T22:30:13Z146.742019-12-28T22:30:14Z147.222019-12-28T22:30:15Z147.222019-12-28T22:30:16Z147.222019-12-28T22:30:17Z147.222019-12-28T22:30:18Z147.702019-12-28T22:30:19Z147.702019-12-28T22:30:20Z147.702019-12-28T22:30:21Z147.222019-12-28T22:30:22Z146.742019-12-28T22:30:23Z146.742019-12-28T22:30:24Z146.262019-12-28T22:30:25Z146.262019-12-28T22:30:26Z145.782019-12-28T22:30:27Z145.302019-12-28T22:30:28Z145.302019-12-28T22:30:29Z145.302019-12-28T22:30:30Z144.822019-12-28T22:30:31Z144.822019-12-28T22:30:32Z144.342019-12-28T22:30:33Z143.852019-12-28T22:30:34Z143.852019-12-28T22:30:35Z143.372019-12-28T22:30:36Z143.372019-12-28T22:30:37Z142.892019-12-28T22:30:38Z142.412019-12-28T22:30:39Z142.412019-12-28T22:30:40Z142.412019-12-28T22:30:41Z141.932019-12-28T22:30:42Z141.932019-12-28T22:30:43Z141.452019-12-28T22:30:44Z141.452019-12-28T22:30:45Z140.972019-12-28T22:30:46Z140.492019-12-28T22:30:47Z140.012019-12-28T22:30:48Z140.012019-12-28T22:30:49Z138.092019-12-28T22:30:50Z137.132019-12-28T22:30:51Z135.682019-12-28T22:30:52Z134.722019-12-28T22:30:53Z134.722019-12-28T22:30:54Z134.722019-12-28T22:30:55Z134.722019-12-28T22:30:56Z134.242019-12-28T22:30:57Z134.242019-12-28T22:30:58Z134.242019-12-28T22:30:59Z134.722019-12-28T22:31:00Z134.722019-12-28T22:31:01Z134.242019-12-28T22:31:02Z133.762019-12-28T22:31:03Z131.362019-12-28T22:31:04Z128.952019-12-28T22:31:05Z125.592019-12-28T22:31:06Z123.192019-12-28T22:31:07Z121.262019-12-28T22:31:08Z119.822019-12-28T22:31:09Z118.862019-12-28T22:31:10Z117.902019-12-28T22:31:11Z117.422019-12-28T22:31:12Z116.462019-12-28T22:31:13Z116.462019-12-28T22:31:14Z115.982019-12-28T22:31:15Z115.502019-12-28T22:31:16Z114.532019-12-28T22:31:17Z114.052019-12-28T22:31:18Z113.572019-12-28T22:31:19Z112.612019-12-28T22:31:20Z111.652019-12-28T22:31:21Z111.172019-12-28T22:31:22Z110.692019-12-28T22:31:23Z110.692019-12-28T22:31:24Z110.692019-12-28T22:31:25Z110.692019-12-28T22:31:26Z110.692019-12-28T22:31:27Z111.172019-12-28T22:31:28Z111.172019-12-28T22:31:29Z111.652019-12-28T22:31:30Z111.652019-12-28T22:31:31Z111.172019-12-28T22:31:32Z110.692019-12-28T22:31:33Z110.212019-12-28T22:31:34Z109.732019-12-28T22:31:35Z109.732019-12-28T22:31:36Z109.732019-12-28T22:31:37Z109.732019-12-28T22:31:38Z109.732019-12-28T22:31:39Z109.252019-12-28T22:31:40Z109.252019-12-28T22:31:41Z108.772019-12-28T22:31:42Z108.292019-12-28T22:31:43Z108.292019-12-28T22:31:44Z107.812019-12-28T22:31:45Z107.322019-12-28T22:31:46Z107.322019-12-28T22:31:47Z107.322019-12-28T22:31:48Z107.322019-12-28T22:31:49Z107.322019-12-28T22:31:50Z106.842019-12-28T22:31:51Z107.322019-12-28T22:31:52Z107.322019-12-28T22:31:53Z107.322019-12-28T22:31:54Z106.842019-12-28T22:31:55Z106.842019-12-28T22:31:56Z106.842019-12-28T22:31:57Z106.842019-12-28T22:31:58Z106.842019-12-28T22:31:59Z106.842019-12-28T22:32:00Z106.842019-12-28T22:32:01Z107.322019-12-28T22:32:02Z107.322019-12-28T22:32:03Z107.812019-12-28T22:32:04Z108.292019-12-28T22:32:05Z108.292019-12-28T22:32:06Z108.772019-12-28T22:32:07Z109.252019-12-28T22:32:08Z109.252019-12-28T22:32:09Z109.732019-12-28T22:32:10Z109.732019-12-28T22:32:11Z110.212019-12-28T22:32:12Z110.692019-12-28T22:32:13Z110.692019-12-28T22:32:14Z111.172019-12-28T22:32:15Z111.172019-12-28T22:32:16Z111.172019-12-28T22:32:17Z111.652019-12-28T22:32:18Z111.652019-12-28T22:32:19Z111.652019-12-28T22:32:20Z111.652019-12-28T22:32:21Z111.652019-12-28T22:32:22Z111.652019-12-28T22:32:23Z112.132019-12-28T22:32:24Z112.132019-12-28T22:32:25Z112.132019-12-28T22:32:26Z112.132019-12-28T22:32:27Z112.132019-12-28T22:32:28Z112.132019-12-28T22:32:29Z111.172019-12-28T22:32:30Z110.692019-12-28T22:32:31Z110.212019-12-28T22:32:32Z109.252019-12-28T22:32:33Z108.772019-12-28T22:32:34Z108.772019-12-28T22:32:35Z108.772019-12-28T22:32:36Z108.772019-12-28T22:32:37Z109.252019-12-28T22:32:38Z109.252019-12-28T22:32:39Z109.252019-12-28T22:32:40Z109.252019-12-28T22:32:41Z108.772019-12-28T22:32:42Z108.292019-12-28T22:32:43Z108.292019-12-28T22:32:44Z108.292019-12-28T22:32:45Z107.812019-12-28T22:32:46Z108.292019-12-28T22:32:47Z108.292019-12-28T22:32:48Z108.292019-12-28T22:32:49Z108.772019-12-28T22:32:50Z108.772019-12-28T22:32:51Z108.772019-12-28T22:32:52Z109.252019-12-28T22:32:53Z108.772019-12-28T22:32:54Z108.772019-12-28T22:32:55Z108.772019-12-28T22:32:56Z108.772019-12-28T22:32:57Z108.292019-12-28T22:32:58Z108.292019-12-28T22:32:59Z107.812019-12-28T22:33:00Z107.812019-12-28T22:33:01Z107.812019-12-28T22:33:02Z107.812019-12-28T22:33:03Z107.322019-12-28T22:33:04Z107.322019-12-28T22:33:05Z106.842019-12-28T22:33:06Z106.842019-12-28T22:33:07Z106.842019-12-28T22:33:08Z106.842019-12-28T22:33:09Z106.842019-12-28T22:33:10Z106.362019-12-28T22:33:11Z106.362019-12-28T22:33:12Z105.882019-12-28T22:33:13Z105.882019-12-28T22:33:14Z105.402019-12-28T22:33:15Z105.402019-12-28T22:33:16Z104.922019-12-28T22:33:17Z104.922019-12-28T22:33:18Z104.922019-12-28T22:33:19Z104.922019-12-28T22:33:20Z104.442019-12-28T22:33:21Z104.442019-12-28T22:33:22Z103.962019-12-28T22:33:23Z103.482019-12-28T22:33:24Z103.962019-12-28T22:33:25Z103.962019-12-28T22:33:26Z104.442019-12-28T22:33:27Z104.442019-12-28T22:33:28Z104.442019-12-28T22:33:29Z104.442019-12-28T22:33:30Z104.442019-12-28T22:33:31Z104.922019-12-28T22:33:32Z104.922019-12-28T22:33:33Z104.922019-12-28T22:33:34Z105.402019-12-28T22:33:35Z105.402019-12-28T22:33:36Z105.402019-12-28T22:33:37Z105.882019-12-28T22:33:38Z105.882019-12-28T22:33:39Z105.882019-12-28T22:33:40Z105.882019-12-28T22:33:41Z105.882019-12-28T22:33:42Z105.402019-12-28T22:33:43Z105.402019-12-28T22:33:44Z105.402019-12-28T22:33:45Z105.402019-12-28T22:33:46Z105.402019-12-28T22:33:47Z105.402019-12-28T22:33:48Z105.402019-12-28T22:33:49Z104.922019-12-28T22:33:50Z104.922019-12-28T22:33:51Z104.922019-12-28T22:33:52Z104.922019-12-28T22:33:53Z104.922019-12-28T22:33:54Z105.402019-12-28T22:33:55Z104.922019-12-28T22:33:56Z104.922019-12-28T22:33:57Z104.922019-12-28T22:33:58Z104.442019-12-28T22:33:59Z103.962019-12-28T22:34:00Z103.962019-12-28T22:34:01Z103.482019-12-28T22:34:02Z103.482019-12-28T22:34:03Z103.482019-12-28T22:34:04Z103.482019-12-28T22:34:05Z103.482019-12-28T22:34:06Z103.962019-12-28T22:34:07Z103.962019-12-28T22:34:08Z103.962019-12-28T22:34:09Z103.482019-12-28T22:34:10Z103.482019-12-28T22:34:11Z103.482019-12-28T22:34:12Z103.482019-12-28T22:34:13Z103.962019-12-28T22:34:14Z103.962019-12-28T22:34:15Z103.962019-12-28T22:34:16Z104.442019-12-28T22:34:17Z104.442019-12-28T22:34:18Z103.962019-12-28T22:34:19Z103.482019-12-28T22:34:20Z103.002019-12-28T22:34:21Z102.522019-12-28T22:34:22Z102.522019-12-28T22:34:23Z102.042019-12-28T22:34:24Z102.042019-12-28T22:34:25Z101.562019-12-28T22:34:26Z101.562019-12-28T22:34:27Z101.082019-12-28T22:34:28Z101.082019-12-28T22:34:29Z101.082019-12-28T22:34:30Z101.082019-12-28T22:34:31Z100.602019-12-28T22:34:32Z100.602019-12-28T22:34:33Z100.602019-12-28T22:34:34Z100.112019-12-28T22:34:35Z100.112019-12-28T22:34:36Z100.112019-12-28T22:34:37Z100.112019-12-28T22:34:38Z100.602019-12-28T22:34:39Z100.602019-12-28T22:34:40Z100.602019-12-28T22:34:41Z101.082019-12-28T22:34:42Z101.082019-12-28T22:34:43Z101.082019-12-28T22:34:44Z101.082019-12-28T22:34:45Z101.082019-12-28T22:34:46Z100.602019-12-28T22:34:47Z100.602019-12-28T22:34:48Z100.602019-12-28T22:34:49Z100.112019-12-28T22:34:50Z100.112019-12-28T22:34:51Z100.112019-12-28T22:34:52Z100.112019-12-28T22:34:53Z100.112019-12-28T22:34:54Z100.112019-12-28T22:34:55Z99.632019-12-28T22:34:56Z99.632019-12-28T22:34:57Z99.632019-12-28T22:34:58Z100.112019-12-28T22:34:59Z100.112019-12-28T22:35:00Z100.112019-12-28T22:35:01Z100.602019-12-28T22:35:02Z100.602019-12-28T22:35:03Z100.602019-12-28T22:35:04Z100.602019-12-28T22:35:05Z101.082019-12-28T22:35:06Z101.082019-12-28T22:35:07Z101.082019-12-28T22:35:08Z101.562019-12-28T22:35:09Z101.562019-12-28T22:35:10Z101.562019-12-28T22:35:11Z101.562019-12-28T22:35:12Z101.562019-12-28T22:35:13Z101.562019-12-28T22:35:14Z102.042019-12-28T22:35:15Z102.042019-12-28T22:35:16Z102.042019-12-28T22:35:17Z101.562019-12-28T22:35:18Z101.562019-12-28T22:35:19Z101.082019-12-28T22:35:20Z101.082019-12-28T22:35:21Z101.082019-12-28T22:35:22Z101.082019-12-28T22:35:23Z101.082019-12-28T22:35:24Z101.082019-12-28T22:35:25Z100.602019-12-28T22:35:26Z100.602019-12-28T22:35:27Z100.602019-12-28T22:35:28Z100.602019-12-28T22:35:29Z100.602019-12-28T22:35:30Z100.602019-12-28T22:35:31Z100.602019-12-28T22:35:32Z100.112019-12-28T22:35:33Z100.112019-12-28T22:35:34Z100.112019-12-28T22:35:35Z100.112019-12-28T22:35:36Z100.112019-12-28T22:35:37Z100.112019-12-28T22:35:38Z100.112019-12-28T22:35:39Z100.112019-12-28T22:35:40Z100.112019-12-28T22:35:41Z100.112019-12-28T22:35:42Z100.112019-12-28T22:35:43Z100.112019-12-28T22:35:44Z100.602019-12-28T22:35:45Z100.602019-12-28T22:35:46Z100.602019-12-28T22:35:47Z100.602019-12-28T22:35:48Z100.602019-12-28T22:35:49Z100.602019-12-28T22:35:50Z100.602019-12-28T22:35:51Z100.602019-12-28T22:35:52Z100.602019-12-28T22:35:53Z100.602019-12-28T22:35:54Z100.112019-12-28T22:35:55Z100.602019-12-28T22:35:56Z100.602019-12-28T22:35:57Z100.602019-12-28T22:35:58Z100.602019-12-28T22:35:59Z100.602019-12-28T22:36:00Z100.602019-12-28T22:36:01Z100.602019-12-28T22:36:02Z100.602019-12-28T22:36:03Z101.082019-12-28T22:36:04Z101.082019-12-28T22:36:05Z101.562019-12-28T22:36:06Z101.562019-12-28T22:36:07Z102.042019-12-28T22:36:08Z102.042019-12-28T22:36:09Z102.042019-12-28T22:36:10Z102.042019-12-28T22:36:11Z102.042019-12-28T22:36:12Z102.042019-12-28T22:36:13Z102.042019-12-28T22:36:14Z102.042019-12-28T22:36:15Z102.522019-12-28T22:36:16Z102.522019-12-28T22:36:17Z103.002019-12-28T22:36:18Z103.002019-12-28T22:36:19Z103.002019-12-28T22:36:20Z103.002019-12-28T22:36:21Z103.002019-12-28T22:36:22Z103.002019-12-28T22:36:23Z103.002019-12-28T22:36:24Z102.522019-12-28T22:36:25Z102.522019-12-28T22:36:26Z103.002019-12-28T22:36:27Z103.002019-12-28T22:36:28Z103.482019-12-28T22:36:29Z103.482019-12-28T22:36:30Z103.482019-12-28T22:36:31Z103.482019-12-28T22:36:32Z103.962019-12-28T22:36:33Z103.962019-12-28T22:36:34Z103.962019-12-28T22:36:35Z104.442019-12-28T22:36:36Z104.442019-12-28T22:36:37Z104.442019-12-28T22:36:38Z104.442019-12-28T22:36:39Z104.442019-12-28T22:36:40Z104.922019-12-28T22:36:41Z105.402019-12-28T22:36:42Z105.882019-12-28T22:36:43Z105.882019-12-28T22:36:44Z106.362019-12-28T22:36:45Z106.362019-12-28T22:36:46Z106.362019-12-28T22:36:47Z106.842019-12-28T22:36:48Z106.842019-12-28T22:36:49Z107.322019-12-28T22:36:50Z107.322019-12-28T22:36:51Z107.812019-12-28T22:36:52Z108.292019-12-28T22:36:53Z108.772019-12-28T22:36:54Z109.252019-12-28T22:36:55Z109.252019-12-28T22:36:56Z109.732019-12-28T22:36:57Z110.212019-12-28T22:36:58Z110.692019-12-28T22:36:59Z111.172019-12-28T22:37:00Z111.172019-12-28T22:37:01Z111.172019-12-28T22:37:02Z111.652019-12-28T22:37:03Z111.652019-12-28T22:37:04Z112.132019-12-28T22:37:05Z112.132019-12-28T22:37:06Z112.612019-12-28T22:37:07Z112.612019-12-28T22:37:08Z112.612019-12-28T22:37:09Z112.612019-12-28T22:37:10Z112.612019-12-28T22:37:11Z112.612019-12-28T22:37:12Z112.612019-12-28T22:37:13Z112.612019-12-28T22:37:14Z113.092019-12-28T22:37:15Z113.092019-12-28T22:37:16Z113.092019-12-28T22:37:17Z113.092019-12-28T22:37:18Z113.092019-12-28T22:37:19Z113.092019-12-28T22:37:20Z113.092019-12-28T22:37:21Z113.572019-12-28T22:37:22Z113.572019-12-28T22:37:23Z113.572019-12-28T22:37:24Z113.572019-12-28T22:37:25Z113.572019-12-28T22:37:26Z113.572019-12-28T22:37:27Z113.572019-12-28T22:37:28Z113.572019-12-28T22:37:29Z113.572019-12-28T22:37:30Z113.572019-12-28T22:37:31Z113.572019-12-28T22:37:32Z114.052019-12-28T22:37:33Z114.052019-12-28T22:37:34Z114.052019-12-28T22:37:35Z114.532019-12-28T22:37:36Z114.532019-12-28T22:37:37Z114.532019-12-28T22:37:38Z114.052019-12-28T22:37:39Z114.052019-12-28T22:37:40Z113.572019-12-28T22:37:41Z113.572019-12-28T22:37:42Z113.092019-12-28T22:37:43Z113.092019-12-28T22:37:44Z112.612019-12-28T22:37:45Z112.612019-12-28T22:37:46Z112.612019-12-28T22:37:47Z112.612019-12-28T22:37:48Z113.092019-12-28T22:37:49Z113.092019-12-28T22:37:50Z113.092019-12-28T22:37:51Z113.572019-12-28T22:37:52Z113.572019-12-28T22:37:53Z113.572019-12-28T22:37:54Z113.092019-12-28T22:37:55Z113.092019-12-28T22:37:56Z113.572019-12-28T22:37:57Z113.572019-12-28T22:37:58Z113.572019-12-28T22:37:59Z113.092019-12-28T22:38:00Z113.092019-12-28T22:38:01Z113.572019-12-28T22:38:02Z113.572019-12-28T22:38:03Z113.572019-12-28T22:38:04Z113.572019-12-28T22:38:05Z113.092019-12-28T22:38:06Z113.092019-12-28T22:38:07Z113.092019-12-28T22:38:08Z113.092019-12-28T22:38:09Z113.092019-12-28T22:38:10Z113.092019-12-28T22:38:11Z113.092019-12-28T22:38:12Z112.612019-12-28T22:38:13Z112.612019-12-28T22:38:14Z112.612019-12-28T22:38:15Z112.132019-12-28T22:38:16Z112.132019-12-28T22:38:17Z111.652019-12-28T22:38:18Z111.652019-12-28T22:38:19Z111.652019-12-28T22:38:20Z111.652019-12-28T22:38:21Z111.652019-12-28T22:38:22Z111.652019-12-28T22:38:23Z111.172019-12-28T22:38:24Z111.172019-12-28T22:38:25Z111.172019-12-28T22:38:26Z111.172019-12-28T22:38:27Z110.692019-12-28T22:38:28Z110.692019-12-28T22:38:29Z110.692019-12-28T22:38:30Z110.692019-12-28T22:38:31Z111.172019-12-28T22:38:32Z111.172019-12-28T22:38:33Z111.172019-12-28T22:38:34Z111.172019-12-28T22:38:35Z111.172019-12-28T22:38:36Z111.172019-12-28T22:38:37Z110.692019-12-28T22:38:38Z110.692019-12-28T22:38:39Z110.692019-12-28T22:38:40Z110.692019-12-28T22:38:41Z110.692019-12-28T22:38:42Z110.692019-12-28T22:38:43Z111.172019-12-28T22:38:44Z111.172019-12-28T22:38:45Z111.172019-12-28T22:38:46Z111.172019-12-28T22:38:47Z111.172019-12-28T22:38:48Z111.172019-12-28T22:38:49Z111.172019-12-28T22:38:50Z111.172019-12-28T22:38:51Z111.172019-12-28T22:38:52Z110.692019-12-28T22:38:53Z110.212019-12-28T22:38:54Z110.212019-12-28T22:38:55Z109.732019-12-28T22:38:56Z109.252019-12-28T22:38:57Z109.252019-12-28T22:38:58Z108.772019-12-28T22:38:59Z108.292019-12-28T22:39:00Z108.292019-12-28T22:39:01Z107.812019-12-28T22:39:02Z107.322019-12-28T22:39:03Z107.322019-12-28T22:39:04Z106.842019-12-28T22:39:05Z106.842019-12-28T22:39:06Z106.842019-12-28T22:39:07Z107.322019-12-28T22:39:08Z107.322019-12-28T22:39:09Z107.322019-12-28T22:39:10Z107.322019-12-28T22:39:11Z107.322019-12-28T22:39:12Z107.322019-12-28T22:39:13Z107.322019-12-28T22:39:14Z107.812019-12-28T22:39:15Z108.292019-12-28T22:39:16Z108.292019-12-28T22:39:17Z108.772019-12-28T22:39:18Z109.252019-12-28T22:39:19Z109.252019-12-28T22:39:20Z109.252019-12-28T22:39:21Z109.732019-12-28T22:39:22Z109.732019-12-28T22:39:23Z110.212019-12-28T22:39:24Z109.732019-12-28T22:39:25Z109.732019-12-28T22:39:26Z109.732019-12-28T22:39:27Z109.732019-12-28T22:39:28Z109.252019-12-28T22:39:29Z108.772019-12-28T22:39:30Z108.772019-12-28T22:39:31Z109.252019-12-28T22:39:32Z109.732019-12-28T22:39:33Z110.212019-12-28T22:39:34Z111.172019-12-28T22:39:35Z111.652019-12-28T22:39:36Z112.132019-12-28T22:39:37Z112.132019-12-28T22:39:38Z112.132019-12-28T22:39:39Z111.652019-12-28T22:39:40Z111.652019-12-28T22:39:41Z111.652019-12-28T22:39:42Z111.172019-12-28T22:39:43Z111.172019-12-28T22:39:44Z111.172019-12-28T22:39:45Z110.692019-12-28T22:39:46Z110.692019-12-28T22:39:47Z110.692019-12-28T22:39:48Z110.692019-12-28T22:39:49Z110.212019-12-28T22:39:50Z110.212019-12-28T22:39:51Z109.732019-12-28T22:39:52Z109.252019-12-28T22:39:53Z109.252019-12-28T22:39:54Z108.772019-12-28T22:39:55Z108.292019-12-28T22:39:56Z107.322019-12-28T22:39:57Z107.322019-12-28T22:39:58Z106.842019-12-28T22:39:59Z105.882019-12-28T22:40:00Z105.402019-12-28T22:40:01Z105.402019-12-28T22:40:02Z104.922019-12-28T22:40:03Z104.922019-12-28T22:40:04Z104.922019-12-28T22:40:05Z104.922019-12-28T22:40:06Z104.922019-12-28T22:40:07Z104.922019-12-28T22:40:08Z104.922019-12-28T22:40:09Z104.922019-12-28T22:40:10Z104.442019-12-28T22:40:11Z104.442019-12-28T22:40:12Z104.442019-12-28T22:40:13Z104.442019-12-28T22:40:14Z104.442019-12-28T22:40:15Z104.442019-12-28T22:40:16Z104.442019-12-28T22:40:17Z103.962019-12-28T22:40:18Z \ No newline at end of file diff --git a/src/test/data/AdjustTime.20170517.ini b/src/test/data/AdjustTime.20170517.ini new file mode 100644 index 0000000..d86002c --- /dev/null +++ b/src/test/data/AdjustTime.20170517.ini @@ -0,0 +1,16 @@ +#by AdjustTime +#Wed May 17 19:07:03 JST 2017 +GPX.BASETIME=FILE_UPDATE +IMG.OUTPUT_EXIF=true +GPX.OUTPUT_WPT=false +GPX.OUTPUT_SPEED=false +GPX.noFirstNode=true +IMG.OUTPUT=true +GPX.gpxSplit=true +IMG.TIME=2017-05-17T10\:02\:51 +GPX.OVERWRITE_MAGVAR=false +GPX.REUSE=false +IMG.BASE_FILE=DSC05105.JPG +IMG.SOURCE_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/testdata/cameradata/10070517/10070517 +GPX.SOURCE_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/testdata/cameradata/10070517/10070517/20170517.gpx +IMG.OUTPUT_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/testdata/cameradata/ diff --git a/src/test/data/AdjustTime.20170518.A1.ini b/src/test/data/AdjustTime.20170518.A1.ini new file mode 100644 index 0000000..5db4a3e --- /dev/null +++ b/src/test/data/AdjustTime.20170518.A1.ini @@ -0,0 +1,17 @@ +#by AdjustTime +#Sat Jun 24 20:33:37 JST 2017 +GPX.BASETIME=FILE_UPDATE +IMG.OUTPUT_EXIF=true +GPX.OUTPUT_WPT=false +GPX.OUTPUT_SPEED=false +IMG.OUTPUT_ALL=false +GPX.noFirstNode=true +IMG.OUTPUT=true +GPX.gpxSplit=true +IMG.BASE_FILE=DSC05183.JPG +IMG.TIME=2017-05-18T00\:16\:48Z +GPX.OVERWRITE_MAGVAR=false +GPX.REUSE=false +IMG.SOURCE_FOLDER=testdata/cameradata/10170518 +GPX.SOURCE_FOLDER=testdata/cameradata/20170518.gpx +IMG.OUTPUT_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/testdata/output diff --git a/src/test/data/AdjustTime.20170518.A2.ini b/src/test/data/AdjustTime.20170518.A2.ini new file mode 100644 index 0000000..6277705 --- /dev/null +++ b/src/test/data/AdjustTime.20170518.A2.ini @@ -0,0 +1,17 @@ +#by AdjustTime +#Sat Jun 24 20:33:37 JST 2017 +GPX.BASETIME=FILE_UPDATE +IMG.OUTPUT_EXIF=true +GPX.OUTPUT_WPT=false +GPX.OUTPUT_SPEED=false +IMG.OUTPUT_ALL=true +GPX.noFirstNode=true +IMG.OUTPUT=true +GPX.gpxSplit=true +IMG.BASE_FILE=DSC05183.JPG +IMG.TIME=2017-05-18T00\:16\:48Z +GPX.OVERWRITE_MAGVAR=false +GPX.REUSE=false +IMG.SOURCE_FOLDER=testdata/cameradata/10170518 +GPX.SOURCE_FOLDER=testdata/cameradata/20170518.gpx +IMG.OUTPUT_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/testdata/output diff --git a/src/test/data/AdjustTime.20170518.B1.ini b/src/test/data/AdjustTime.20170518.B1.ini new file mode 100644 index 0000000..0b37f82 --- /dev/null +++ b/src/test/data/AdjustTime.20170518.B1.ini @@ -0,0 +1,17 @@ +#by AdjustTime +#Sat Jun 24 20:33:37 JST 2017 +GPX.BASETIME=FILE_UPDATE +IMG.OUTPUT_EXIF=true +GPX.OUTPUT_WPT=false +GPX.OUTPUT_SPEED=false +IMG.OUTPUT_ALL=false +GPX.noFirstNode=true +IMG.OUTPUT=true +GPX.gpxSplit=true +IMG.TIME=2017-05-18T00\:20\:30Z +GPX.OVERWRITE_MAGVAR=false +GPX.REUSE=false +IMG.BASE_FILE=20170518_092031A.jpg +IMG.SOURCE_FOLDER=testdata/cameradata +GPX.SOURCE_FOLDER=testdata/cameradata/20170518.gpx +IMG.OUTPUT_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/testdata/output diff --git a/src/test/data/AdjustTime.20170518.B2.ini b/src/test/data/AdjustTime.20170518.B2.ini new file mode 100644 index 0000000..502984d --- /dev/null +++ b/src/test/data/AdjustTime.20170518.B2.ini @@ -0,0 +1,17 @@ +#by AdjustTime +#Sat Jun 24 20:33:37 JST 2017 +GPX.BASETIME=FILE_UPDATE +IMG.OUTPUT_EXIF=true +GPX.OUTPUT_WPT=false +GPX.OUTPUT_SPEED=false +IMG.OUTPUT_ALL=true +GPX.noFirstNode=true +IMG.OUTPUT=true +GPX.gpxSplit=true +IMG.TIME=2017-05-18T00\:20\:30Z +GPX.OVERWRITE_MAGVAR=false +GPX.REUSE=false +IMG.BASE_FILE=20170518_092031A.jpg +IMG.SOURCE_FOLDER=testdata/cameradata +GPX.SOURCE_FOLDER=testdata/cameradata/20170518.gpx +IMG.OUTPUT_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/testdata/output diff --git a/src/test/data/AdjustTime.20170518.ini b/src/test/data/AdjustTime.20170518.ini new file mode 100644 index 0000000..0b37f82 --- /dev/null +++ b/src/test/data/AdjustTime.20170518.ini @@ -0,0 +1,17 @@ +#by AdjustTime +#Sat Jun 24 20:33:37 JST 2017 +GPX.BASETIME=FILE_UPDATE +IMG.OUTPUT_EXIF=true +GPX.OUTPUT_WPT=false +GPX.OUTPUT_SPEED=false +IMG.OUTPUT_ALL=false +GPX.noFirstNode=true +IMG.OUTPUT=true +GPX.gpxSplit=true +IMG.TIME=2017-05-18T00\:20\:30Z +GPX.OVERWRITE_MAGVAR=false +GPX.REUSE=false +IMG.BASE_FILE=20170518_092031A.jpg +IMG.SOURCE_FOLDER=testdata/cameradata +GPX.SOURCE_FOLDER=testdata/cameradata/20170518.gpx +IMG.OUTPUT_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/testdata/output diff --git a/src/test/data/AdjustTime.M1a.separate.ini b/src/test/data/AdjustTime.M1a.separate.ini new file mode 100644 index 0000000..25e9f7c --- /dev/null +++ b/src/test/data/AdjustTime.M1a.separate.ini @@ -0,0 +1,17 @@ +#by AdjustTime +#Sun Jun 25 09:32:18 JST 2017 +GPX.BASETIME=FILE_UPDATE +IMG.OUTPUT_EXIF=true +GPX.OUTPUT_WPT=false +GPX.OUTPUT_SPEED=true +IMG.OUTPUT_ALL=false +GPX.noFirstNode=true +IMG.OUTPUT=true +GPX.gpxSplit=true +IMG.TIME=2017-05-29T01\:31\:46Z +GPX.OVERWRITE_MAGVAR=true +GPX.REUSE=false +IMG.BASE_FILE=20170529_103146A.jpg +IMG.SOURCE_FOLDER=testdata/cameradata/separate +GPX.SOURCE_FOLDER=testdata/cameradata/separate.gpx +IMG.OUTPUT_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/testdata/output diff --git a/src/test/data/AdjustTime.M1b.separate.ini b/src/test/data/AdjustTime.M1b.separate.ini new file mode 100644 index 0000000..12b8aed --- /dev/null +++ b/src/test/data/AdjustTime.M1b.separate.ini @@ -0,0 +1,17 @@ +#by AdjustTime +#Sun Jun 25 09:32:18 JST 2017 +GPX.BASETIME=FILE_UPDATE +IMG.OUTPUT_EXIF=true +GPX.OUTPUT_WPT=false +GPX.OUTPUT_SPEED=true +IMG.OUTPUT_ALL=true +GPX.noFirstNode=true +IMG.OUTPUT=true +GPX.gpxSplit=true +IMG.TIME=2017-05-29T01\:31\:46Z +GPX.OVERWRITE_MAGVAR=true +GPX.REUSE=false +IMG.BASE_FILE=20170529_103146A.jpg +IMG.SOURCE_FOLDER=testdata/cameradata/separate +GPX.SOURCE_FOLDER=testdata/cameradata/separate.gpx +IMG.OUTPUT_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/testdata/output diff --git a/src/test/data/AdjustTime.M1c.separate.ini b/src/test/data/AdjustTime.M1c.separate.ini new file mode 100644 index 0000000..f432ba7 --- /dev/null +++ b/src/test/data/AdjustTime.M1c.separate.ini @@ -0,0 +1,17 @@ +#by AdjustTime +#Sun Jun 25 09:32:18 JST 2017 +GPX.BASETIME=EXIF_TIME +IMG.OUTPUT_EXIF=true +GPX.OUTPUT_WPT=false +GPX.OUTPUT_SPEED=true +IMG.OUTPUT_ALL=false +GPX.noFirstNode=true +IMG.OUTPUT=true +GPX.gpxSplit=true +IMG.TIME=2017-05-29T01\:31\:46Z +GPX.OVERWRITE_MAGVAR=true +GPX.REUSE=false +IMG.BASE_FILE=20170529_103146A.jpg +IMG.SOURCE_FOLDER=testdata/cameradata/separate +GPX.SOURCE_FOLDER=testdata/cameradata/separate.gpx +IMG.OUTPUT_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/testdata/output diff --git a/src/test/data/AdjustTime.M1d.separate.ini b/src/test/data/AdjustTime.M1d.separate.ini new file mode 100644 index 0000000..d0ab153 --- /dev/null +++ b/src/test/data/AdjustTime.M1d.separate.ini @@ -0,0 +1,17 @@ +#by AdjustTime +#Sun Jun 25 09:32:18 JST 2017 +GPX.BASETIME=EXIF_TIME +IMG.OUTPUT_EXIF=true +GPX.OUTPUT_WPT=false +GPX.OUTPUT_SPEED=true +IMG.OUTPUT_ALL=true +GPX.noFirstNode=true +IMG.OUTPUT=true +GPX.gpxSplit=true +IMG.TIME=2017-05-29T01\:31\:46Z +GPX.OVERWRITE_MAGVAR=true +GPX.REUSE=false +IMG.BASE_FILE=20170529_103146A.jpg +IMG.SOURCE_FOLDER=testdata/cameradata/separate +GPX.SOURCE_FOLDER=testdata/cameradata/separate.gpx +IMG.OUTPUT_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/testdata/output diff --git a/src/test/data/AdjustTime.M2a.separate.ini b/src/test/data/AdjustTime.M2a.separate.ini new file mode 100644 index 0000000..25e9f7c --- /dev/null +++ b/src/test/data/AdjustTime.M2a.separate.ini @@ -0,0 +1,17 @@ +#by AdjustTime +#Sun Jun 25 09:32:18 JST 2017 +GPX.BASETIME=FILE_UPDATE +IMG.OUTPUT_EXIF=true +GPX.OUTPUT_WPT=false +GPX.OUTPUT_SPEED=true +IMG.OUTPUT_ALL=false +GPX.noFirstNode=true +IMG.OUTPUT=true +GPX.gpxSplit=true +IMG.TIME=2017-05-29T01\:31\:46Z +GPX.OVERWRITE_MAGVAR=true +GPX.REUSE=false +IMG.BASE_FILE=20170529_103146A.jpg +IMG.SOURCE_FOLDER=testdata/cameradata/separate +GPX.SOURCE_FOLDER=testdata/cameradata/separate.gpx +IMG.OUTPUT_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/testdata/output diff --git a/src/test/data/AdjustTime.M2b.separate.ini b/src/test/data/AdjustTime.M2b.separate.ini new file mode 100644 index 0000000..12b8aed --- /dev/null +++ b/src/test/data/AdjustTime.M2b.separate.ini @@ -0,0 +1,17 @@ +#by AdjustTime +#Sun Jun 25 09:32:18 JST 2017 +GPX.BASETIME=FILE_UPDATE +IMG.OUTPUT_EXIF=true +GPX.OUTPUT_WPT=false +GPX.OUTPUT_SPEED=true +IMG.OUTPUT_ALL=true +GPX.noFirstNode=true +IMG.OUTPUT=true +GPX.gpxSplit=true +IMG.TIME=2017-05-29T01\:31\:46Z +GPX.OVERWRITE_MAGVAR=true +GPX.REUSE=false +IMG.BASE_FILE=20170529_103146A.jpg +IMG.SOURCE_FOLDER=testdata/cameradata/separate +GPX.SOURCE_FOLDER=testdata/cameradata/separate.gpx +IMG.OUTPUT_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/testdata/output diff --git a/src/test/data/AdjustTime.M2c.separate.ini b/src/test/data/AdjustTime.M2c.separate.ini new file mode 100644 index 0000000..f432ba7 --- /dev/null +++ b/src/test/data/AdjustTime.M2c.separate.ini @@ -0,0 +1,17 @@ +#by AdjustTime +#Sun Jun 25 09:32:18 JST 2017 +GPX.BASETIME=EXIF_TIME +IMG.OUTPUT_EXIF=true +GPX.OUTPUT_WPT=false +GPX.OUTPUT_SPEED=true +IMG.OUTPUT_ALL=false +GPX.noFirstNode=true +IMG.OUTPUT=true +GPX.gpxSplit=true +IMG.TIME=2017-05-29T01\:31\:46Z +GPX.OVERWRITE_MAGVAR=true +GPX.REUSE=false +IMG.BASE_FILE=20170529_103146A.jpg +IMG.SOURCE_FOLDER=testdata/cameradata/separate +GPX.SOURCE_FOLDER=testdata/cameradata/separate.gpx +IMG.OUTPUT_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/testdata/output diff --git a/src/test/data/AdjustTime.M2d.separate.ini b/src/test/data/AdjustTime.M2d.separate.ini new file mode 100644 index 0000000..d0ab153 --- /dev/null +++ b/src/test/data/AdjustTime.M2d.separate.ini @@ -0,0 +1,17 @@ +#by AdjustTime +#Sun Jun 25 09:32:18 JST 2017 +GPX.BASETIME=EXIF_TIME +IMG.OUTPUT_EXIF=true +GPX.OUTPUT_WPT=false +GPX.OUTPUT_SPEED=true +IMG.OUTPUT_ALL=true +GPX.noFirstNode=true +IMG.OUTPUT=true +GPX.gpxSplit=true +IMG.TIME=2017-05-29T01\:31\:46Z +GPX.OVERWRITE_MAGVAR=true +GPX.REUSE=false +IMG.BASE_FILE=20170529_103146A.jpg +IMG.SOURCE_FOLDER=testdata/cameradata/separate +GPX.SOURCE_FOLDER=testdata/cameradata/separate.gpx +IMG.OUTPUT_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/testdata/output diff --git a/src/test/data/AdjustTime.null.ini b/src/test/data/AdjustTime.null.ini new file mode 100644 index 0000000..7b60e49 --- /dev/null +++ b/src/test/data/AdjustTime.null.ini @@ -0,0 +1,16 @@ +#defuilt settings +#Tue May 16 15:59:01 JST 2017 +GPX.BASETIME= +IMG.OUTPUT_EXIF= +GPX.OUTPUT_SPEED= +GPX.OUTPUT_WPT= +IMG.OUTPUT_ALL= +GPX.noFirstNode= +IMG.OUTPUT= +GPX.gpxSplit= +GPX.REUSE= +GPX.OVERWRITE_MAGVAR= +IMG.BASE_FILE= +IMG.SOURCE_FOLDER= +GPX.SOURCE_FOLDER= +IMG.OUTPUT_FOLDER= diff --git a/src/test/data/AdjustTime.off.ini b/src/test/data/AdjustTime.off.ini new file mode 100644 index 0000000..3494d77 --- /dev/null +++ b/src/test/data/AdjustTime.off.ini @@ -0,0 +1,16 @@ +#defuilt settings +#Tue May 16 15:59:01 JST 2017 +GPX.BASETIME=FILE_UPDATE +IMG.OUTPUT_EXIF=false +GPX.OUTPUT_SPEED=false +GPX.OUTPUT_WPT=false +IMG.OUTPUT_ALL=false +GPX.noFirstNode=false +IMG.OUTPUT=false +GPX.gpxSplit=false +GPX.REUSE=false +GPX.OVERWRITE_MAGVAR=false +IMG.BASE_FILE= +IMG.SOURCE_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/. +GPX.SOURCE_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/. +IMG.OUTPUT_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/. diff --git a/src/test/data/AdjustTime.on.ini b/src/test/data/AdjustTime.on.ini new file mode 100644 index 0000000..8a9a96b --- /dev/null +++ b/src/test/data/AdjustTime.on.ini @@ -0,0 +1,16 @@ +#defuilt settings +#Tue May 16 15:59:01 JST 2017 +GPX.BASETIME=FILE_UPDATE +IMG.OUTPUT_EXIF=true +GPX.OUTPUT_SPEED=true +GPX.OUTPUT_WPT=true +IMG.OUTPUT_ALL=true +GPX.noFirstNode=true +IMG.OUTPUT=true +GPX.gpxSplit=true +GPX.REUSE=true +GPX.OVERWRITE_MAGVAR=true +IMG.BASE_FILE= +IMG.SOURCE_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/. +GPX.SOURCE_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/. +IMG.OUTPUT_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/. diff --git a/src/test/data/AdjustTime.separate.ini b/src/test/data/AdjustTime.separate.ini new file mode 100644 index 0000000..26f1d1d --- /dev/null +++ b/src/test/data/AdjustTime.separate.ini @@ -0,0 +1,17 @@ +#by AdjustTime +#Sun Jun 25 09:32:18 JST 2017 +GPX.BASETIME=FILE_UPDATE +IMG.OUTPUT_EXIF=true +GPX.OUTPUT_WPT=false +GPX.OUTPUT_SPEED=true +IMG.OUTPUT_ALL=false +GPX.noFirstNode=true +IMG.OUTPUT=true +GPX.gpxSplit=true +IMG.TIME=2017-05-29T01\:31\:46Z +GPX.OVERWRITE_MAGVAR=true +GPX.REUSE=false +IMG.BASE_FILE=20170529_103146A.jpg +IMG.SOURCE_FOLDER=./testdata/cameradata/separate +GPX.SOURCE_FOLDER=./testdata/cameradata/separate.gpx +IMG.OUTPUT_FOLDER=/home/yuu/workspace/AdjustTime/importPicture/testdata/output diff --git a/src/test/data/images/00001.jpg b/src/test/data/images/00001.jpg new file mode 100644 index 0000000..250b249 --- /dev/null +++ b/src/test/data/images/00001.jpg Binary files differ diff --git a/src/test/data/images/00002.jpg b/src/test/data/images/00002.jpg new file mode 100644 index 0000000..8938854 --- /dev/null +++ b/src/test/data/images/00002.jpg Binary files differ diff --git a/src/test/data/images/00003.jpg b/src/test/data/images/00003.jpg new file mode 100644 index 0000000..ee8642f --- /dev/null +++ b/src/test/data/images/00003.jpg Binary files differ diff --git a/src/test/data/images/00004.jpg b/src/test/data/images/00004.jpg new file mode 100755 index 0000000..4e457b9 --- /dev/null +++ b/src/test/data/images/00004.jpg Binary files differ diff --git a/src/test/data/images/00005.jpg b/src/test/data/images/00005.jpg new file mode 100755 index 0000000..6cd9dfc --- /dev/null +++ b/src/test/data/images/00005.jpg Binary files differ diff --git a/src/test/data/images/IMG_0092.JPG b/src/test/data/images/IMG_0092.JPG new file mode 100755 index 0000000..6ec147f --- /dev/null +++ b/src/test/data/images/IMG_0092.JPG Binary files differ diff --git a/src/test/data/images/IMG_0093.JPG b/src/test/data/images/IMG_0093.JPG new file mode 100755 index 0000000..64699c6 --- /dev/null +++ b/src/test/data/images/IMG_0093.JPG Binary files differ diff --git a/src/test/data/images/IMG_0097.JPG b/src/test/data/images/IMG_0097.JPG new file mode 100755 index 0000000..50795b1 --- /dev/null +++ b/src/test/data/images/IMG_0097.JPG Binary files differ diff --git a/src/test/data/images/IMG_0291.JPG b/src/test/data/images/IMG_0291.JPG new file mode 100755 index 0000000..baf8ac2 --- /dev/null +++ b/src/test/data/images/IMG_0291.JPG Binary files differ diff --git a/src/test/java/osm/surveyor/matchtime/AppParametersTest.java b/src/test/java/osm/surveyor/matchtime/AppParametersTest.java new file mode 100644 index 0000000..2260dd9 --- /dev/null +++ b/src/test/java/osm/surveyor/matchtime/AppParametersTest.java @@ -0,0 +1,203 @@ +package osm.surveyor.matchtime; + +import osm.surveyor.matchtime.AppParameters; +import static org.hamcrest.CoreMatchers.is; +import static org.junit.Assert.*; + +import java.io.File; +import java.io.FileInputStream; +import java.io.FileOutputStream; +import java.io.IOException; +import java.nio.channels.FileChannel; + +import org.junit.After; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.junit.experimental.runners.*; + +@RunWith(Enclosed.class) +public class AppParametersTest { + + public static class 定義ファイルが存在しない場合 { + AppParameters params; + + @Before + public void setUp() throws Exception { + File iniFile = new File("AdjustTime.ini"); + File orgFile = new File("AdjustTime.ini.org"); + + if (orgFile.exists()) { + orgFile.delete(); + } + if (iniFile.exists()) { + iniFile.renameTo(orgFile); + } + } + + @After + public void tearDown() throws Exception { + File iniFile = new File("AdjustTime.ini"); + File orgFile = new File("AdjustTime.ini.org"); + if (iniFile.exists()) { + iniFile.delete(); + } + if (orgFile.exists()) { + orgFile.renameTo(iniFile); + } + } + + @Test + public void IMG_OUTPUT_ALLが定義されていない時() { + try { + params = new AppParameters("src/test/data/AdjustTime.off.ini"); + String valueStr = params.getProperty(AppParameters.IMG_OUTPUT_ALL); + assertThat(valueStr, is("false")); + } + catch (IOException e) { + fail("Exceptionが発生した。"); + } + } + } + + public static class 定義ファイルがtureに定義されているとき { + + @Before + public void setUp() throws Exception { + File iniFile = new File("AdjustTime.ini"); + File orgFile = new File("AdjustTime.ini.org"); + File testFile = new File("src/test/data", "AdjustTime.on.ini"); + + if (orgFile.exists()) { + orgFile.delete(); + } + if (iniFile.exists()) { + iniFile.renameTo(orgFile); + } + + FileInputStream inStream = new FileInputStream(testFile); + FileOutputStream outStream = new FileOutputStream(new File("AdjustTime.ini")); + FileChannel inChannel = inStream.getChannel(); + FileChannel outChannel = outStream.getChannel(); + try { + inChannel.transferTo(0, inChannel.size(),outChannel); + } + finally { + if (inChannel != null) inChannel.close(); + if (outChannel != null) outChannel.close(); + inStream.close(); + outStream.close(); + } + } + + @After + public void tearDown() throws Exception { + File iniFile = new File("AdjustTime.ini"); + File orgFile = new File("AdjustTime.ini.org"); + if (iniFile.exists()) { + iniFile.delete(); + } + if (orgFile.exists()) { + orgFile.renameTo(iniFile); + } + } + + @Test + public void IMG_OUTPUT_ALLがtureに定義されているとき() { + try { + AppParameters params; + params = new AppParameters(); + String valueStr = params.getProperty(AppParameters.IMG_OUTPUT_ALL); + assertThat(valueStr, is("true")); + } + catch (IOException e) { + fail("Exceptionが発生した。"); + } + } + + @Test + public void IMG_OUTPUT_ALLをfalseに書き換える() { + try { + AppParameters params = new AppParameters(); + params.setProperty(AppParameters.IMG_OUTPUT_ALL, "false"); + params.store(); + AppParameters newParams = new AppParameters(); + String valueStr = newParams.getProperty(AppParameters.IMG_OUTPUT_ALL); + assertThat(valueStr, is("false")); + } + catch (IOException e) { + fail("Exceptionが発生した。"); + } + } + } + + public static class 定義ファイルがfalseに定義されているとき { + + @Before + public void setUp() throws Exception { + File iniFile = new File("AdjustTime.ini"); + File orgFile = new File("AdjustTime.ini.org"); + File testFile = new File("src/test/data", "AdjustTime.off.ini"); + + if (orgFile.exists()) { + orgFile.delete(); + } + if (iniFile.exists()) { + iniFile.renameTo(orgFile); + } + + FileInputStream inStream = new FileInputStream(testFile); + FileOutputStream outStream = new FileOutputStream(new File("AdjustTime.ini")); + FileChannel inChannel = inStream.getChannel(); + FileChannel outChannel = outStream.getChannel(); + try { + inChannel.transferTo(0, inChannel.size(),outChannel); + } + finally { + if (inChannel != null) inChannel.close(); + if (outChannel != null) outChannel.close(); + inStream.close(); + outStream.close(); + } + } + + @After + public void tearDown() throws Exception { + File iniFile = new File("AdjustTime.ini"); + File orgFile = new File("AdjustTime.ini.org"); + if (iniFile.exists()) { + iniFile.delete(); + } + if (orgFile.exists()) { + orgFile.renameTo(iniFile); + } + } + + @Test + public void IMG_OUTPUT_ALLがfalseに定義されているとき() { + try { + AppParameters params = new AppParameters(); + String valueStr = params.getProperty(AppParameters.IMG_OUTPUT_ALL); + assertThat(valueStr, is("false")); + } + catch (IOException e) { + fail("Exceptionが発生した。"); + } + } + + @Test + public void IMG_OUTPUT_ALLをtrueに書き換える() { + try { + AppParameters params = new AppParameters(); + params.setProperty(AppParameters.IMG_OUTPUT_ALL, "true"); + params.store(); + AppParameters newParams = new AppParameters(); + String valueStr = newParams.getProperty(AppParameters.IMG_OUTPUT_ALL); + assertThat(valueStr, is("true")); + } + catch (IOException e) { + fail("Exceptionが発生した。"); + } + } + } +} diff --git a/src/test/java/osm/surveyor/matchtime/RestampTest.java b/src/test/java/osm/surveyor/matchtime/RestampTest.java new file mode 100644 index 0000000..f1dec34 --- /dev/null +++ b/src/test/java/osm/surveyor/matchtime/RestampTest.java @@ -0,0 +1,179 @@ +package osm.surveyor.matchtime; + +import java.io.File; +import java.text.DateFormat; +import java.text.SimpleDateFormat; +import java.util.Date; +import static org.hamcrest.CoreMatchers.is; +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; +import static org.junit.Assert.*; + +/** + * + * @author yuu + */ +public class RestampTest { + + public RestampTest() { + } + + @BeforeClass + public static void setUpClass() { + } + + @AfterClass + public static void tearDownClass() { + } + + @Before + public void setUp() { + dirPath = "./src/test/data/images"; + } + + @After + public void tearDown() { + } + + String dirPath; + + @Test + public void testMain() { + String[] ans = { + "2019-09-01 16:26:51 JST", + "2019-09-01 16:26:56 JST", + "2019-09-01 16:27:01 JST", + "2019-09-01 16:27:06 JST", + "2019-09-01 16:27:11 JST", + "2019-09-01 16:27:16 JST", + "2019-09-01 16:27:21 JST", + "2019-09-01 16:27:26 JST", + "2019-09-01 16:27:31 JST", + }; + + try { + String[] argv = new String[]{ + dirPath, + "00001.jpg", + "2019-09-01 16:26:51 JST", + "00003.jpg", + "2019-09-01 16:27:01 JST" + }; + Restamp.main(argv); + check(new File(dirPath), ans); + } + catch (Exception e) { + fail(); + } + } + + @Test + public void testMain_2() { + String[] ans = { + "2019-09-02 16:26:53 JST", // 0.0 sec + "2019-09-02 16:26:56 JST", // 3.0 sec + "2019-09-02 16:26:58 JST", // 2.0 sec + "2019-09-02 16:27:01 JST", // 3.0 sec + "2019-09-02 16:27:03 JST", // 2.0 sec + "2019-09-02 16:27:06 JST", // 3.0 sec + "2019-09-02 16:27:08 JST", // 2.0 sec + "2019-09-02 16:27:11 JST", // 3.0 sec + "2019-09-02 16:27:13 JST", // 2.0 sec + }; + + try { + String[] argv = new String[]{ + dirPath, + "00002.jpg", + "2019-09-02 16:26:56 JST", + "00004.jpg", + "2019-09-02 16:27:01 JST" + }; + Restamp.main(argv); + check(new File(dirPath), ans); + } + catch (Exception e) { + fail(); + } + } + + @Test + public void testMain_3() { + String[] ans = { + "2019-09-03 16:26:53 JST", // 0.0 + "2019-09-03 16:26:55 JST", // 2.0 + "2019-09-03 16:26:58 JST", // 3.0 + "2019-09-03 16:27:00 JST", // 2.0 + "2019-09-03 16:27:03 JST", // 3.0 + "2019-09-03 16:27:05 JST", // 2.0 + "2019-09-03 16:27:08 JST", // 3.0 + "2019-09-03 16:27:10 JST", // 2.0 + "2019-09-03 16:27:13 JST", // 3.0 + }; + + try { + String[] argv = new String[]{ + dirPath, + "00001.jpg", + "2019-09-03 16:26:53 JST", + "00003.jpg", + "2019-09-03 16:26:58 JST" + }; + Restamp.main(argv); + check(new File(dirPath), ans); + } + catch (Exception e) { + fail(); + } + } + + @Test + public void testMain_4() { + String[] ans = { + "2019-09-04 16:26:53 JST", // 0.0 + "2019-09-04 16:26:55 JST", // 2.0 + "2019-09-04 16:26:58 JST", // 3.0 + "2019-09-04 16:27:00 JST", // 2.0 + "2019-09-04 16:27:03 JST", // 3.0 + "2019-09-04 16:27:05 JST", // 2.0 + "2019-09-04 16:27:08 JST", // 3.0 + "2019-09-04 16:27:10 JST", // 2.0 + "2019-09-04 16:27:13 JST", // 3.0 + }; + + try { + String[] argv = new String[]{ + dirPath, + "00003.jpg", + "2019-09-04 16:26:58 JST", + "00005.jpg", + "2019-09-04 16:27:03 JST" + }; + Restamp.main(argv); + check(new File(dirPath), ans); + } + catch (Exception e) { + fail(); + } + } + + void check(File imgDir, String[] ans) { + DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss z"); + + File[] files = imgDir.listFiles(); + java.util.Arrays.sort(files, (File file1, File file2) -> file1.getName().compareTo(file2.getName())); + + int i = 0; + for (File jpgFile : files) { + long msec = jpgFile.lastModified(); + String lastModifiedStr = df.format(new Date(msec)); + assertThat(lastModifiedStr, is(ans[i])); + i++; + } + + } + +} diff --git a/src/test/java/osm/surveyor/matchtime/UnZip.java b/src/test/java/osm/surveyor/matchtime/UnZip.java new file mode 100644 index 0000000..76eac6f --- /dev/null +++ b/src/test/java/osm/surveyor/matchtime/UnZip.java @@ -0,0 +1,75 @@ +package osm.surveyor.matchtime; +import java.io.File; +import java.io.FileInputStream; +import java.io.FileOutputStream; +import java.io.IOException; +import java.util.zip.ZipEntry; +import java.util.zip.ZipInputStream; + +public class UnZip { + + /** + * Zipファイルを展開します + * @param aZipFile zipファイル + * @param aOutDir 出力先ディレクトリ + * @throws java.io.IOException + */ + public static void decode(File aZipFile, String aOutDir) throws IOException { + FileInputStream fileIn = null; + FileOutputStream fileOut = null; + ZipInputStream zipIn = null; + + try { + File outDir = new File(aOutDir); + outDir.mkdirs(); + + fileIn = new FileInputStream(aZipFile); + zipIn = new ZipInputStream(fileIn); + + ZipEntry entry = null; + while ((entry = zipIn.getNextEntry()) != null) { + if (entry.isDirectory()) { + String relativePath = entry.getName(); + outDir = new File(outDir, relativePath); + outDir.mkdirs(); + } + else { + String relativePath = entry.getName(); + File outFile = new File( outDir, relativePath ); + + File parentFile = outFile.getParentFile(); + parentFile.mkdirs(); + + fileOut = new FileOutputStream( outFile ); + + byte[] buf = new byte[ 256 ]; + int size = 0; + while ((size = zipIn.read(buf)) > 0){ + fileOut.write(buf, 0, size); + } + fileOut.close(); + fileOut = null; + } + zipIn.closeEntry(); + } + } + catch (IOException e) { + e.printStackTrace(); + } + finally { + if (fileIn != null) { + try { + fileIn.close(); + } + catch (IOException e) {} + } + if (fileOut != null) { + try { + fileOut.close(); + } + catch(IOException e) {} + } + zipIn.close(); + } + } +}
5. %s
%s
1. Select image source folder.
2. Choose an image whose exact shooting time can be known.
3. enter the correct shooting time.
4. Please select a GPX file to perform the matching.
1. \u4f4d\u7f6e\u60c5\u5831\u3092\u4ed8\u52a0\u3057\u305f\u3044\u753b\u50cf\u30d5\u30a1\u30a4\u30eb\u304c\u683c\u7d0d\u3055\u308c\u3066\u3044\u308b\u30d5\u30a9\u30eb\u30c0\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002
2. \u6b63\u78ba\u306a\u64ae\u5f71\u6642\u523b\u304c\u5224\u660e\u3067\u304d\u308b\u753b\u50cf\u3092\u9078\u3093\u3067\u304f\u3060\u3055\u3044\u3002
3. \u6b63\u78ba\u306a\u64ae\u5f71\u6642\u523b\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002
4. \u30d2\u30e2\u4ed8\u3092\u884c\u3046GPX\u30d5\u30a1\u30a4\u30eb\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002