From be6b33c84a563af8b06d5e068b898eb3a3c2c86d Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Fri, 26 Jul 2019 08:20:04 -0400 Subject: [PATCH 01/63] appkernel e-mail report: fixed resource and appkernel query filter, which lead to empty report --- classes/AppKernel/PerformanceMap.php | 30 +++++++++++++++++----------- 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/classes/AppKernel/PerformanceMap.php b/classes/AppKernel/PerformanceMap.php index 952e079..fb1f913 100644 --- a/classes/AppKernel/PerformanceMap.php +++ b/classes/AppKernel/PerformanceMap.php @@ -110,16 +110,23 @@ public function __construct($options) $params = array(); if(isset($this->resource)) { - $quotedResourceIds = array_reduce( - $this->resource['data'], - function ($carry, $item) use ($pdo) { - $carry[] = $pdo->quote($item['id']); - return $carry; - }, - array() - ); - $sql = "SELECT akr.resource_id, akr.resource, akr.nickname FROM mod_appkernel.resource akr " . - "WHERE akr.xdmod_resource_id IN (" . implode(', ', $quotedResourceIds) . ')'; + if(array_key_exists('data', $this->resource)) { + // not sure where it is called from + $quotedResourceIds = array_reduce( + $this->resource['data'], + function ($carry, $item) use ($pdo) { + $carry[] = $pdo->quote($item['id']); + return $carry; + }, + array() + ); + $sql = "SELECT akr.resource_id, akr.resource, akr.nickname FROM mod_appkernel.resource akr " . + "WHERE akr.xdmod_resource_id IN (" . implode(', ', $quotedResourceIds) . ')'; + } else { + // probably here should be xdmod_resource_id to limit user to his resource + $sql = "SELECT akr.resource_id, akr.resource, akr.nickname FROM mod_appkernel.resource akr " . + "WHERE akr.resource IN ('" . implode("', '", $this->resource) . "')"; + } } $sqlres_tasdb=$pdo->query($sql, $params); @@ -644,7 +651,7 @@ function ($value) use ($arr_db) { // Proceed with filtering the values... if ((!isset($ak_id)) || (isset($this->resource_ids) && !array_key_exists($resource, $this->resource_ids)) || - (isset($this->appKer) && !in_array($this->ak_shortnames[$appKer], $this->appKer)) || + (isset($this->appKer) && (!(empty($this->appKer) || in_array($this->ak_shortnames[$appKer], $this->appKer)))) || (isset($this->problemSize) && !in_array($problemSize, $this->problemSize)) ) { continue; @@ -683,7 +690,6 @@ function ($value) use ($arr_db) { $runsStatus[$resource][$appKer][$problemSize][$rec_date]->add_task($task); } } - //sort ksort($runsStatus); foreach ($runsStatus as $resource => $val1) { From e805ad10826e901398e4da0145703dcbe33638ab Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Fri, 26 Jul 2019 08:23:55 -0400 Subject: [PATCH 02/63] App Kernel Report script: add verbose option, removed explicit mod_appkernel db use from sql query --- bin/appkernel_reports_manager | 58 ++++++++++++++++++++++++++--------- 1 file changed, 43 insertions(+), 15 deletions(-) diff --git a/bin/appkernel_reports_manager b/bin/appkernel_reports_manager index 9896dd3..d566341 100755 --- a/bin/appkernel_reports_manager +++ b/bin/appkernel_reports_manager @@ -14,6 +14,14 @@ use CCR\Log; use AppKernel\AppKernelDb; use AppKernel\Report; +/** + * Log level determined by "verbose" and "debug". + * + * @var int + */ +$logLevel = -1; + + // ================================================================================ // Parse command line options $options = array( @@ -41,6 +49,16 @@ $options = array( "r:", "resource:", "Generate report ony for specified resource" + ), + array( + "v", + "verbose", + "verbose output" + ), + array( + "d", + "debug", + "debug output" ) ); $options1 = ""; @@ -50,7 +68,7 @@ foreach ($options as $opt) { $options2[$opt[0]] = $opt[1]; } $args = getopt($options1, $options2); - + // default values // With the '-m' argument passed into this script along with a username, // reports only associated with the username will be built and sent. @@ -97,22 +115,32 @@ foreach ($args as $arg => $value) { case 'resource': $resource = $value; break; - + case 'v': + case 'verbose': + $logLevel = max($logLevel, Log::INFO); + break; + case 'd': + case 'debug': + $logLevel = max($logLevel, Log::DEBUG); + break; default: fwrite(STDERR, 'Invalid arguments: '.$arg.' => '.$value."\n"); break; } } -print("Accepted arguments:\n"); -foreach ($args as $arg => $value) { - print("\t" . $arg . ' => ' . $value . "\n"); +if($logLevel >= Log::DEBUG) { + print("Accepted arguments:\n"); + foreach ($args as $arg => $value) { + print("\t" . $arg . ' => ' . $value . "\n"); + } } - // ================================================================================ - +// ================================================================================ + // Logger configuration. $conf = array( 'file' => false, - 'emailSubject' => 'App Kernel Report Scheduler' + 'emailSubject' => 'App Kernel Report Scheduler', + 'consoleLogLevel' => $logLevel ); $conf['emailSubject'] .= (APPLICATION_ENV == 'dev') ? ' [Dev]' : ''; $logger = Log::factory('ak-reports', $conf); @@ -128,14 +156,14 @@ $logger->notice(array( $dailyDeliveries = $db->query( 'SELECT user_id, send_report_daily, send_report_weekly, send_report_monthly, settings - FROM mod_appkernel.report + FROM report WHERE send_report_daily = 1' ); $dayOfTheWeek = intval($end_date->format('w')) + 1; $weeklyDeliveries = $db->query( 'SELECT user_id, send_report_daily, send_report_weekly, send_report_monthly, settings - FROM mod_appkernel.report + FROM report WHERE send_report_weekly = :dayOfTheWeek', array(':dayOfTheWeek' => $dayOfTheWeek) ); @@ -147,7 +175,7 @@ if ($lastDayOfTheMonth == $dayOfTheMonth) { 'SELECT user_id, send_report_daily, send_report_weekly, send_report_monthly, settings - FROM mod_appkernel.report + FROM report WHERE send_report_monthly >= :dayOfTheMonth', array(':dayOfTheMonth' => $dayOfTheMonth) ); @@ -156,7 +184,7 @@ if ($lastDayOfTheMonth == $dayOfTheMonth) { 'SELECT user_id, send_report_daily, send_report_weekly, send_report_monthly, settings - FROM mod_appkernel.report + FROM report WHERE send_report_monthly = :dayOfTheMonth', array(':dayOfTheMonth' => $dayOfTheMonth) ); @@ -198,11 +226,11 @@ foreach ($allGroupDeliveries as $groupDeliveries) { $logger->err( "can not find user with id: {$delivery['user_id']}"); continue; } - + $username = $user->getUsername(); $user_email = $user->getEmailAddress(); $internal_dashboard_user=$user->isDeveloper() || $user->isDeveloper(); - + if ($maint_mode && $username != $maint_user) { continue; } @@ -211,7 +239,7 @@ foreach ($allGroupDeliveries as $groupDeliveries) { $logger->info("Preparing report $report_type for $username ({$delivery['user_id']})"); $report_param = json_decode($delivery['settings'], true); - + if ($appkernel !== null) { $report_param['appKer'] = array( $appkernel From 5b258f73f107d699bb0e93e911a3f280c99bc6ca Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Fri, 26 Jul 2019 08:53:52 -0400 Subject: [PATCH 03/63] mod_akrr db: converted tables and column names to new ones, remove explicit database naming in sql quories --- classes/AppKernel/CurrentQueue.php | 12 +++++----- classes/AppKernel/PerfPatternRecognition.php | 2 +- classes/AppKernel/PerformanceMap.php | 4 ++-- classes/AppKernel/Report.php | 2 +- .../Controllers/AkrrControllerProvider.php | 16 +++++++------- .../AppKernelControllerProvider.php | 8 +++---- html/controllers/arr/get_active_tasks.php | 8 +++---- html/controllers/arr/get_errmsg.php | 2 +- html/controllers/arr/get_summary.php | 12 +++++----- html/controllers/arr/scheduler.php | 2 +- .../js/Arr/ActiveTasksGrid.js | 10 ++++----- .../js/Arr/ActiveTasksPanel.js | 22 +++++++++---------- .../js/Arr/ActiveTasksStore.js | 10 ++++----- .../js/Arr/CompletedTasksStore.js | 6 ++--- 14 files changed, 58 insertions(+), 58 deletions(-) diff --git a/classes/AppKernel/CurrentQueue.php b/classes/AppKernel/CurrentQueue.php index 91eea2c..24f7b71 100644 --- a/classes/AppKernel/CurrentQueue.php +++ b/classes/AppKernel/CurrentQueue.php @@ -127,9 +127,9 @@ private function get_active_tasks() $sqlres=$arr_db->query('SELECT task_id, next_check_time, status, - statusinfo, - statusupdatetime, - datetimestamp, + status_info, + status_update_time, + datetime_stamp, time_activated, time_submitted_to_queue, task_lock, @@ -141,11 +141,11 @@ private function get_active_tasks() app_param, task_param, group_id, - FatalErrorsCount, - FailsToSubmitToTheQueue, + fatal_errors_count, + fails_to_submit_to_the_queue, taskexeclog, master_task_id - FROM mod_akrr.ACTIVETASKS + FROM active_tasks ORDER BY resource,app' ); foreach ($sqlres as $res) { diff --git a/classes/AppKernel/PerfPatternRecognition.php b/classes/AppKernel/PerfPatternRecognition.php index 957d01d..eda3938 100644 --- a/classes/AppKernel/PerfPatternRecognition.php +++ b/classes/AppKernel/PerfPatternRecognition.php @@ -149,7 +149,7 @@ public function __construct($options) foreach ($result as $r) { $resourcesEnabled[$r['name']]=$r['enabled']; } - $result = $db_akrr->query('SELECT COUNT( * ) AS `Rows` , `resource` FROM `SCHEDULEDTASKS` GROUP BY `resource` ORDER BY `resource`'); + $result = $db_akrr->query('SELECT COUNT( * ) AS `Rows` , `resource` FROM `scheduled_tasks` GROUP BY `resource` ORDER BY `resource`'); foreach ($result as $r) { if(! array_key_exists($r['resource'],$resourcesEnabled)) $resourcesEnabled[$r['resource']]=1; diff --git a/classes/AppKernel/PerformanceMap.php b/classes/AppKernel/PerformanceMap.php index fb1f913..23ab9f2 100644 --- a/classes/AppKernel/PerformanceMap.php +++ b/classes/AppKernel/PerformanceMap.php @@ -587,7 +587,7 @@ private function getMap() axi.reporter, axi.reporternickname, axi.status - FROM mod_akrr.akrr_xdmod_instanceinfo AS axi + FROM akrr_xdmod_instanceinfo AS axi WHERE axi.collected >= :start_date AND axi.collected < :end_date ORDER BY axi.collected ASC; @@ -619,7 +619,7 @@ function ($value) use ($arr_db) { axi.reporter, axi.reporternickname, axi.status - FROM mod_akrr.akrr_xdmod_instanceinfo AS axi + FROM akrr_xdmod_instanceinfo AS axi WHERE axi.collected >= :start_date AND axi.collected < :end_date AND axi.resource IN ( $quotedResources ) diff --git a/classes/AppKernel/Report.php b/classes/AppKernel/Report.php index 959676b..f0f6e2a 100644 --- a/classes/AppKernel/Report.php +++ b/classes/AppKernel/Report.php @@ -143,7 +143,7 @@ public function __construct($options = array()) $this->report_params[$key]=$value; } - //clone some variables to avoid data curraption + //clone some variables to avoid data corruption if ($this->report_params['start_date']!==null) { $this->report_params['start_date']=clone $this->report_params['start_date']; } diff --git a/classes/Rest/Controllers/AkrrControllerProvider.php b/classes/Rest/Controllers/AkrrControllerProvider.php index fbfa932..bf4a032 100644 --- a/classes/Rest/Controllers/AkrrControllerProvider.php +++ b/classes/Rest/Controllers/AkrrControllerProvider.php @@ -162,7 +162,7 @@ public function getKernels(Request $request, Application $app) } /** - * Retrieves a listing of the contents of the SCHEDULEDTASKS table from the + * Retrieves a listing of the contents of the scheduled_tasks table from the * AKRR REST API. * * @param Request $request that will be used to collect the required information. @@ -405,7 +405,7 @@ public function deleteWalltime(Request $request, Application $app, $id) } /** - * Retrieves a listing of the ACTIVETASKS table. These tasks should be currently running on a resource. + * Retrieves a listing of the active_tasks table. These tasks should be currently running on a resource. * * @param Request $request that will be used to collect the required information. * @param Application $app that will be used to facilitate setting up the response. @@ -414,19 +414,19 @@ public function deleteWalltime(Request $request, Application $app, $id) * "message": , * "data": [ * { - * "statusupdatetime": , + * "status_update_time": , * "master_task_id": , * "app": , * "resource_param": , * "task_lock": , - * "datetimestamp": , + * "datetime_stamp": , * "time_submitted_to_queue": , - * "FatalErrorsCount": , - * "FailsToSubmitToTheQueue": , + * "fatal_errors_count": , + * "fails_to_submit_to_the_queue": , * "status": , * "next_time_check": , * "time_to_start": , - * "statusinfo": , + * "status_info": , * "resource": , * "task_id": , * "time_activated": , @@ -606,7 +606,7 @@ private function callAPI( $data = false, $useToken = true ) { - + $url = $path; diff --git a/classes/Rest/Controllers/AppKernelControllerProvider.php b/classes/Rest/Controllers/AppKernelControllerProvider.php index de0bef0..40d0284 100644 --- a/classes/Rest/Controllers/AppKernelControllerProvider.php +++ b/classes/Rest/Controllers/AppKernelControllerProvider.php @@ -1343,7 +1343,7 @@ public function getAppKernelSuccessRate(Request $req, Application $app) $sql = " SELECT resource,reporter,reporternickname,COUNT(*) as total_tasks,AVG(status) as success_rate - FROM mod_akrr.akrr_xdmod_instanceinfo + FROM akrr_xdmod_instanceinfo WHERE '$start_date' <=collected AND collected < '$end_date' AND status=1 $extraFilters GROUP BY resource,reporternickname ORDER BY resource,reporternickname ASC;"; @@ -1375,7 +1375,7 @@ public function getAppKernelSuccessRate(Request $req, Application $app) //Count unsuccessfull Tasks $sql = " SELECT resource,reporter,reporternickname,COUNT(*) as total_tasks,AVG(status) as success_rate - FROM mod_akrr.akrr_xdmod_instanceinfo + FROM akrr_xdmod_instanceinfo WHERE '$start_date' <=collected AND collected < '$end_date' AND status=0 $extraFilters GROUP BY resource,reporternickname ORDER BY resource,reporternickname ASC;"; @@ -1429,7 +1429,7 @@ public function getAppKernelSuccessRate(Request $req, Application $app) if ((int)$row["unsucc"] > 0) { $sql = " SELECT instance_id - FROM mod_akrr.akrr_xdmod_instanceinfo + FROM akrr_xdmod_instanceinfo WHERE '$start_date' <=collected AND collected < '$end_date' AND status=0 AND resource='$resource' AND reporternickname='$appKer.$problemSize' $extraFilters @@ -1455,7 +1455,7 @@ public function getAppKernelSuccessRate(Request $req, Application $app) if ((int)$row["succ"] > 0) { $sql = " SELECT instance_id - FROM mod_akrr.akrr_xdmod_instanceinfo + FROM akrr_xdmod_instanceinfo WHERE '$start_date' <=collected AND collected < '$end_date' AND status=1 AND resource='$resource' AND reporternickname='$appKer.$problemSize' $extraFilters diff --git a/html/controllers/arr/get_active_tasks.php b/html/controllers/arr/get_active_tasks.php index f87904c..54b28c4 100644 --- a/html/controllers/arr/get_active_tasks.php +++ b/html/controllers/arr/get_active_tasks.php @@ -12,12 +12,12 @@ $db = DB::factory('akrr-db'); $sql = ' - SELECT task_id, next_check_time, status, statusinfo, - statusupdatetime, datetimestamp, time_activated, + SELECT task_id, next_check_time, status, status_info, + status_update_time, datetime_stamp, time_activated, time_submitted_to_queue, task_lock, time_to_start, repeat_in, resource, app, resource_param, app_param, task_param, group_id, - FatalErrorsCount, FailsToSubmitToTheQueue - FROM mod_akrr.ACTIVETASKS + fatal_errors_count, fails_to_submit_to_the_queue + FROM active_tasks ORDER BY time_to_start DESC '; diff --git a/html/controllers/arr/get_errmsg.php b/html/controllers/arr/get_errmsg.php index d9d65f4..8ac7a9b 100644 --- a/html/controllers/arr/get_errmsg.php +++ b/html/controllers/arr/get_errmsg.php @@ -13,7 +13,7 @@ $sql = ' SELECT appstdout, stderr, stdout, taskexeclog - FROM mod_akrr.akrr_errmsg + FROM akrr_errmsg WHERE task_id = ? LIMIT 1 '; diff --git a/html/controllers/arr/get_summary.php b/html/controllers/arr/get_summary.php index a3d86f0..577fde2 100644 --- a/html/controllers/arr/get_summary.php +++ b/html/controllers/arr/get_summary.php @@ -11,28 +11,28 @@ $db = DB::factory('akrr-db'); - $sql = 'SELECT COUNT(*) AS count FROM mod_akrr.ACTIVETASKS'; + $sql = 'SELECT COUNT(*) AS count FROM active_tasks'; list($countRow) = $db->query($sql); $activeCount = $countRow['count']; // TODO: Refactor these queries. - $sql = 'SELECT COUNT(*) AS count FROM mod_akrr.ACTIVETASKS WHERE DATEDIFF(NOW(), time_submitted_to_queue) >= 1'; + $sql = 'SELECT COUNT(*) AS count FROM active_tasks WHERE DATEDIFF(NOW(), time_submitted_to_queue) >= 1'; list($countRow) = $db->query($sql); $queued1DayCount = $countRow['count']; - $sql = 'SELECT COUNT(*) AS count FROM mod_akrr.ACTIVETASKS WHERE DATEDIFF(NOW(), time_submitted_to_queue) >= 2'; + $sql = 'SELECT COUNT(*) AS count FROM active_tasks WHERE DATEDIFF(NOW(), time_submitted_to_queue) >= 2'; list($countRow) = $db->query($sql); $queued2DaysCount = $countRow['count']; - $sql = 'SELECT COUNT(*) AS count FROM mod_akrr.ACTIVETASKS WHERE DATEDIFF(NOW(), time_submitted_to_queue) >= 3'; + $sql = 'SELECT COUNT(*) AS count FROM active_tasks WHERE DATEDIFF(NOW(), time_submitted_to_queue) >= 3'; list($countRow) = $db->query($sql); $queued3DaysCount = $countRow['count']; - $sql = 'SELECT COUNT(*) AS count FROM mod_akrr.ACTIVETASKS WHERE DATEDIFF(NOW(), time_submitted_to_queue) >= 4'; + $sql = 'SELECT COUNT(*) AS count FROM active_tasks WHERE DATEDIFF(NOW(), time_submitted_to_queue) >= 4'; list($countRow) = $db->query($sql); $queued4DaysCount = $countRow['count']; - $sql = 'SELECT COUNT(*) AS count FROM mod_akrr.ACTIVETASKS WHERE DATEDIFF(NOW(), time_submitted_to_queue) >= 5'; + $sql = 'SELECT COUNT(*) AS count FROM active_tasks WHERE DATEDIFF(NOW(), time_submitted_to_queue) >= 5'; list($countRow) = $db->query($sql); $queued5DaysCount = $countRow['count']; diff --git a/html/controllers/arr/scheduler.php b/html/controllers/arr/scheduler.php index 57fc80b..095dc67 100644 --- a/html/controllers/arr/scheduler.php +++ b/html/controllers/arr/scheduler.php @@ -51,7 +51,7 @@ task_param, group_id, parent_task_id - FROM mod_akrr.SCHEDULEDTASKS' + FROM scheduled_tasks' ); $bundle=array(); foreach ($scheduled_tasks as &$task) { diff --git a/html/internal_dashboard/js/Arr/ActiveTasksGrid.js b/html/internal_dashboard/js/Arr/ActiveTasksGrid.js index dc1f4e9..4e47e82 100644 --- a/html/internal_dashboard/js/Arr/ActiveTasksGrid.js +++ b/html/internal_dashboard/js/Arr/ActiveTasksGrid.js @@ -27,7 +27,7 @@ XDMoD.Arr.ActiveTasksGrid = Ext.extend(Ext.grid.GridPanel, { var expander = new Ext.ux.grid.RowExpander({ tpl: new Ext.Template( - '
{statusinfo}
' + '
{status_info}
' ) }); @@ -42,7 +42,7 @@ XDMoD.Arr.ActiveTasksGrid = Ext.extend(Ext.grid.GridPanel, { if (record.get('status').match(/ERROR/)) { return rowClass + ' grid-row-error'; - } else if (record.get('FatalErrorsCount') > 0 || record.get('FailsToSubmitToTheQueue') > 0) { + } else if (record.get('fatal_errors_count') > 0 || record.get('fails_to_submit_to_the_queue') > 0) { return rowClass + ' grid-row-warning'; } @@ -73,7 +73,7 @@ XDMoD.Arr.ActiveTasksGrid = Ext.extend(Ext.grid.GridPanel, { }, { header: 'Status Info', - dataIndex: 'statusinfo' + dataIndex: 'status_info' }, { header: 'Time in Queue', @@ -112,12 +112,12 @@ XDMoD.Arr.ActiveTasksGrid = Ext.extend(Ext.grid.GridPanel, { }, { header: 'Fatal Errors', - dataIndex: 'FatalErrorsCount', + dataIndex: 'fatal_errors_count', align: 'right' }, { header: 'Fails to Submit', - dataIndex: 'FailsToSubmitToTheQueue', + dataIndex: 'fails_to_submit_to_the_queue', align: 'right' } ] diff --git a/html/internal_dashboard/js/Arr/ActiveTasksPanel.js b/html/internal_dashboard/js/Arr/ActiveTasksPanel.js index 3d06baf..e708591 100644 --- a/html/internal_dashboard/js/Arr/ActiveTasksPanel.js +++ b/html/internal_dashboard/js/Arr/ActiveTasksPanel.js @@ -187,19 +187,19 @@ XDMoD.Arr.ActiveTasksPanel = Ext.extend(Ext.Panel, { url: XDMoD.REST.url + '/akrr/tasks/active?token=' + XDMoD.REST.token }), fields: [ - {name: 'statusupdatetime', type: 'string'}, + {name: 'status_update_time', type: 'string'}, {name: 'master_task_id', type: 'int'}, {name: 'app', type: 'string'}, {name: 'resource_param', type: 'string'}, {name: 'task_lock', type: 'int'}, - {name: 'datetimestamp', type: 'string'}, + {name: 'datetime_stamp', type: 'string'}, {name: 'time_submitted_to_queue', type: 'string'}, - {name: 'FatalErrorsCount', type: 'int'}, - {name: 'FailsToSubmitToTheQueue', type: 'int'}, + {name: 'fatal_errors_count', type: 'int'}, + {name: 'fails_to_submit_to_the_queue', type: 'int'}, {name: 'status', type: 'string'}, {name: 'next_check_time', type: 'string'}, {name: 'time_to_start', type: 'string'}, - {name: 'statusinfo', type: 'string'}, + {name: 'status_info', type: 'string'}, {name: 'resource', type: 'string'}, {name: 'task_id', type: 'int'}, {name: 'time_activated', type: 'string'}, @@ -237,18 +237,18 @@ XDMoD.Arr.ActiveTasksPanel = Ext.extend(Ext.Panel, { {header: 'Time Submitted', dataIndex: 'time_submitted_to_queue', sortable: true}, {header: 'time_to_start', dataIndex: 'time_to_start', sortable: true}, {header: 'next_check_time', dataIndex: 'next_check_time', sortable: true}, - {header: 'statusupdatetime', dataIndex: 'statusupdatetime', sortable: true}, + {header: 'status_update_time', dataIndex: 'status_update_time', sortable: true}, {header: 'time_activated', dataIndex: 'time_activated', sortable: true}, /*{header: 'master_task_id', dataIndex: 'master_task_id', sortable: true},*/ - {header: 'datetimestamp', dataIndex: 'datetimestamp', sortable: true}, + {header: 'datetime_stamp', dataIndex: 'datetime_stamp', sortable: true}, {header: 'status', dataIndex: 'status', sortable: true}, - {header: 'statusinfo', dataIndex: 'statusinfo', sortable: true}, + {header: 'status_info', dataIndex: 'status_info', sortable: true}, /*{header: 'task_id', dataIndex: 'task_id', sortable: true},*/ /*{header: 'repeat_in', dataIndex: 'repeat_in', sortable: true},*/ /*{header: 'task_param', dataIndex: 'task_param', sortable: true},*/ {header: 'task_exec_log', dataIndex: 'task_exec_log', sortable: true}, - {header: 'FatalErrorsCount', dataIndex: 'FatalErrorsCount', sortable: true}, - {header: 'FailsToSubmitToTheQueue', dataIndex: 'FailsToSubmitToTheQueue', sortable: true}, + {header: 'fatal_errors_count', dataIndex: 'fatal_errors_count', sortable: true}, + {header: 'fails_to_submit_to_the_queue', dataIndex: 'fails_to_submit_to_the_queue', sortable: true}, {header: 'task_lock', dataIndex: 'task_lock', sortable: true} /*{header: 'parent_task_id', dataIndex: 'parent_task_id', sortable: true}, {header: 'app_param', dataIndex: 'app_param', sortable: true}, @@ -265,4 +265,4 @@ XDMoD.Arr.ActiveTasksPanel = Ext.extend(Ext.Panel, { }) }); } -}); \ No newline at end of file +}); diff --git a/html/internal_dashboard/js/Arr/ActiveTasksStore.js b/html/internal_dashboard/js/Arr/ActiveTasksStore.js index ed2ffbc..3b886f0 100644 --- a/html/internal_dashboard/js/Arr/ActiveTasksStore.js +++ b/html/internal_dashboard/js/Arr/ActiveTasksStore.js @@ -46,16 +46,16 @@ XDMoD.Arr.ActiveTasksStore = Ext.extend(Ext.data.JsonStore, { type: 'string' }, { - name: 'statusinfo', + name: 'status_info', type: 'string' }, { - name: 'statusupdatetime', + name: 'status_update_time', type: 'date', dateFormat: 'Y-m-d H:i:s' }, { - name: 'datetimestamp', + name: 'datetime_stamp', type: 'string' }, { @@ -119,11 +119,11 @@ XDMoD.Arr.ActiveTasksStore = Ext.extend(Ext.data.JsonStore, { type: 'string' }, { - name: 'FatalErrorsCount', + name: 'fatal_errors_count', type: 'int' }, { - name: 'FailsToSubmitToTheQueue', + name: 'fails_to_submit_to_the_queue', type: 'int' }, { diff --git a/html/internal_dashboard/js/Arr/CompletedTasksStore.js b/html/internal_dashboard/js/Arr/CompletedTasksStore.js index d6f9089..df27b74 100644 --- a/html/internal_dashboard/js/Arr/CompletedTasksStore.js +++ b/html/internal_dashboard/js/Arr/CompletedTasksStore.js @@ -44,7 +44,7 @@ XDMoD.Arr.CompletedTasksStore = Ext.extend(Ext.data.JsonStore, { type: 'string' }, { - name: 'statusinfo', + name: 'status_info', type: 'string' }, { @@ -60,11 +60,11 @@ XDMoD.Arr.CompletedTasksStore = Ext.extend(Ext.data.JsonStore, { type: 'string' }, { - name: 'FatalErrorsCount', + name: 'fatal_errors_count', type: 'int' }, { - name: 'FailsToSubmitToTheQueue', + name: 'fails_to_submit_to_the_queue', type: 'int' } ] From 268248444aea6ab3f93657116d8b6606825d4d4e Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Wed, 7 Aug 2019 14:27:13 -0400 Subject: [PATCH 04/63] updated linker.php location in bin/xdmod-akrr-ingestor --- bin/xdmod-akrr-ingestor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/xdmod-akrr-ingestor b/bin/xdmod-akrr-ingestor index d70e0b7..2dac8ce 100755 --- a/bin/xdmod-akrr-ingestor +++ b/bin/xdmod-akrr-ingestor @@ -14,7 +14,7 @@ * @author Jeffrey T. Palmer */ -require_once __DIR__ . '/../configuration/linker.php'; +require_once __DIR__ . '/../share/configuration/linker.php'; use CCR\Log; use AppKernel\AppKernelDb; From 55848f0febe4edd7bd00c449b5f083958a00d308 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Fri, 16 Aug 2019 15:30:17 -0400 Subject: [PATCH 05/63] xdmod-setup: appkernels: added skip optin if can not connect to db --- classes/OpenXdmod/Setup/AppKernelsSetup.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/classes/OpenXdmod/Setup/AppKernelsSetup.php b/classes/OpenXdmod/Setup/AppKernelsSetup.php index b0b74a1..6b474f7 100644 --- a/classes/OpenXdmod/Setup/AppKernelsSetup.php +++ b/classes/OpenXdmod/Setup/AppKernelsSetup.php @@ -123,11 +123,13 @@ public function handle() $answer = $this->console->prompt( 'Try again?', 'yes', - array('yes', 'abort') + array('yes', 'skip', 'abort') ); - if ($answer != 'yes') { + if ($answer === 'abort') { exit(1); + } else if ($answer === 'skip') { + break; } } else { From e748482c0ef2fffb8e7f5c1acbdde075beb6d095 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Fri, 27 Sep 2019 11:19:10 -0400 Subject: [PATCH 06/63] fixed link.php in xdmod-akrr-ingestor --- bin/xdmod-akrr-ingestor | 2 +- xdmod-appkernels.spec.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/xdmod-akrr-ingestor b/bin/xdmod-akrr-ingestor index 2dac8ce..d70e0b7 100755 --- a/bin/xdmod-akrr-ingestor +++ b/bin/xdmod-akrr-ingestor @@ -14,7 +14,7 @@ * @author Jeffrey T. Palmer */ -require_once __DIR__ . '/../share/configuration/linker.php'; +require_once __DIR__ . '/../configuration/linker.php'; use CCR\Log; use AppKernel\AppKernelDb; diff --git a/xdmod-appkernels.spec.in b/xdmod-appkernels.spec.in index 4ccc707..7ab55cf 100644 --- a/xdmod-appkernels.spec.in +++ b/xdmod-appkernels.spec.in @@ -11,7 +11,7 @@ Source: %{name}-%{version}__PRERELEASE__.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}__PRERELEASE__-%{release}-XXXXXX) BuildArch: noarch BuildRequires: php-cli -Requires: xdmod >= 8.5.0, xdmod < 8.6.0 +Requires: xdmod >= 8.1.0, xdmod < 8.6.0 %description This package provides application kernel support for Open XDMoD. The From e04b3c7a55e4b266c5a2b65a155a13bfe7b7b188 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Fri, 27 Sep 2019 11:23:41 -0400 Subject: [PATCH 07/63] removed forgotten print --- classes/AppKernel/PerformanceMap.php | 1 - 1 file changed, 1 deletion(-) diff --git a/classes/AppKernel/PerformanceMap.php b/classes/AppKernel/PerformanceMap.php index 742e8c0..74f0e37 100644 --- a/classes/AppKernel/PerformanceMap.php +++ b/classes/AppKernel/PerformanceMap.php @@ -210,7 +210,6 @@ public function make_report($internal_dashboard_user=false) $message.="\n"; $message.='The status code is linked to full report of the last run.

'; - print($message); $totalColumns=1+count($rec_dates)+1; From 58a6f467df139b555e8a7c840e809e147aba10ff Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Fri, 27 Mar 2020 00:18:45 -0400 Subject: [PATCH 08/63] add skipping update for new xdmod version in CI tests --- tests/ci/scripts/xdmod-appkernels-setup.tcl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/ci/scripts/xdmod-appkernels-setup.tcl b/tests/ci/scripts/xdmod-appkernels-setup.tcl index 4d650aa..f836859 100644 --- a/tests/ci/scripts/xdmod-appkernels-setup.tcl +++ b/tests/ci/scripts/xdmod-appkernels-setup.tcl @@ -17,12 +17,15 @@ source [file join [file dirname [info script]] helper-functions.tcl] set timeout 240 spawn "xdmod-setup" -selectMenuOption 8 +provideInput {Do you want to continue (yes, no)? \[no\]} yes + +selectMenuOption 9 # MySQL DB answerQuestion {DB Hostname or IP} {} answerQuestion {DB Port} {} answerQuestion {DB Username} {} +provideInput {Try again (yes, skip, abort)? \[yes\]} skip # AKRR REST API answerQuestion {AKRR REST API username} {} From cdd627499e573d165ae99d035c56a9519a200304 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Fri, 27 Mar 2020 00:19:30 -0400 Subject: [PATCH 09/63] added aggregation of datapoint for plotting AK results if there are too many records --- classes/AppKernel/AppKernelDb.php | 444 +++++++++++------- classes/DataWarehouse/Access/DataExplorer.php | 39 +- .../Visualization/HighChartAppKernel.php | 105 +++-- .../AppKernelControllerProvider.php | 2 + 4 files changed, 367 insertions(+), 223 deletions(-) diff --git a/classes/AppKernel/AppKernelDb.php b/classes/AppKernel/AppKernelDb.php index 2d85dea..65e3945 100644 --- a/classes/AppKernel/AppKernelDb.php +++ b/classes/AppKernel/AppKernelDb.php @@ -18,8 +18,8 @@ * it does not attempt to improve the code or algorithm in any way. It will * raise a warning if you have fewer than 2 values in your array, just like * the extension does (although as an E_USER_WARNING, not E_WARNING). - * - * @param array $a + * + * @param array $a * @param bool $sample [optional] Defaults to false * @return float|bool The standard deviation or false on error. */ @@ -73,7 +73,7 @@ class AppKernelDb private $akIdMap = NULL; // List of existing metric and their relationship to application kernels. - //definitions. Metrics are uniquely defined by the name, + //definitions. Metrics are uniquely defined by the name, private $akMetrics = NULL; //$this->akMetrics[$name][$numUnits][$guid] = $metricId; @@ -85,7 +85,7 @@ class AppKernelDb // List of parameter guids mapped to parameter ids private $akParameterGuids = NULL; - + //default control criteria in standard deviations private $control_criteria=3.0; @@ -332,8 +332,8 @@ private function getProcessorCountWheres(array $pu_counts = array()) foreach($pu_counts as $pu_count) { $processorCountWheres[] = "vt.num_units = $pu_count"; - } - + } + return $processorCountWheres; } // getProcessorCountWheres() @@ -348,13 +348,13 @@ private function getMetricWheres(array $metrics = array()) if(preg_match('/ak_(?P\d+)_metric_(?P\d+)_(?P\d+)/', $metric, $matches)) { $metricWheres[] = "(vt.ak_def_id = {$matches['ak']} and vt.metric_id = {$matches['metric']} and vt.num_units = {$matches['pu']})"; - + }else if(preg_match('/ak_(?P\d+)_metric_(?P\d+)/', $metric, $matches)) { $metricWheres[] = "(vt.ak_def_id = {$matches['ak']} and vt.metric_id = {$matches['metric']})"; } - + } return $metricWheres; } // getMetricWheres() @@ -370,9 +370,9 @@ public function getResources($start_date = NULL, $end_date = NULL, array $pu_cou FROM `a_tree` vt, resource r where vt.resource_id = r.resource_id ". ($start_date !== NULL ? " and '$start_date' <= end_time " : " "). - ($end_date !== NULL ? " and '$end_date' >= start_time " : " "). - (count($processorCountWheres)>0 ? " and ( ".implode(' or ',$processorCountWheres)." ) " : " "). - (count($metricWheres)>0 ? " and ( ".implode(' or ',$metricWheres)." ) " : " "). + ($end_date !== NULL ? " and '$end_date' >= start_time " : " "). + (count($processorCountWheres)>0 ? " and ( ".implode(' or ',$processorCountWheres)." ) " : " "). + (count($metricWheres)>0 ? " and ( ".implode(' or ',$metricWheres)." ) " : " "). " order by r.resource "; $results = $this->db->query($sql); @@ -391,30 +391,30 @@ public function getResources($start_date = NULL, $end_date = NULL, array $pu_cou $resource->xdmod_cluster_id = $row['xdmod_cluster_id']; $resources[$row['nickname']] = $resource; } - + if($user!==NULL){ $roles=$user->getRoles(); - + if(in_array("mgr",$roles)||in_array("po",$roles)||in_array("dev",$roles)){ //$allResources } elseif(in_array("cd",$roles)||in_array("cs",$roles)){ $access_to_some_resource=true; - + //get all associated organization $organizations = array( $user->getOrganizationID() ); - + #get resource_id for all associated resources $rr=$this->getResourceListing(date_format(date_sub(date_create(), date_interval_create_from_date_string("90 days")),'Y-m-d'),date_format(date_create(),'Y-m-d')); - + $organizations_resources_id=array(); foreach($rr as $r){ if(in_array($r["organization_id"], $organizations)) $organizations_resources_id[]=$r["id"]; } - + $allResources2=array(); foreach($resources as $resource) { @@ -528,14 +528,14 @@ public function getResourceListing($start_date = null, $end_date = null) { public function getProcessingUnits($start_date = NULL, $end_date = NULL, array $resource_ids = array(), array $metrics = array()) - { + { $processingUnitList = array(); $metricWheres = $this->getMetricWheres($metrics); - $sql = "SELECT distinct vt.num_units, vt.processor_unit FROM `a_tree` vt, app_kernel_def akd + $sql = "SELECT distinct vt.num_units, vt.processor_unit FROM `a_tree` vt, app_kernel_def akd where vt.ak_def_id = akd.ak_def_id ". ($start_date !== NULL ? " and '$start_date' <= end_time " : " "). - ($end_date !== NULL ? " and '$end_date' >= start_time " : " "). + ($end_date !== NULL ? " and '$end_date' >= start_time " : " "). (count($resource_ids)>0?" and vt.resource_id in (".implode(',',$resource_ids).") ": " "). (count($metricWheres)>0 ? " and ( ".implode(' or ',$metricWheres)." ) " : " "). "order by vt.processor_unit, vt.num_units "; @@ -558,10 +558,10 @@ public function getUniqueAppKernels(array $resource_ids = array(), array $node_c $processorCountWheres = $this->getProcessorCountWheres($node_counts,$core_counts); $sql = "SELECT distinct vt.ak_def_id, vt.ak_name, akd.description, unix_timestamp(min(start_time)) as start_ts, unix_timestamp(max(end_time)) as end_ts - FROM `a_tree` vt, app_kernel_def akd + FROM `a_tree` vt, app_kernel_def akd where vt.ak_def_id = akd.ak_def_id and akd.enabled = 1 and akd.visible = 1 ". - (count($resource_ids)>0?" and vt.resource_id in (".implode(',',$resource_ids).") ": " "). - (count($processorCountWheres)>0 ? " and ( ".implode(' or ',$processorCountWheres)." ) " : " "). + (count($resource_ids)>0?" and vt.resource_id in (".implode(',',$resource_ids).") ": " "). + (count($processorCountWheres)>0 ? " and ( ".implode(' or ',$processorCountWheres)." ) " : " "). "group by vt.ak_def_id order by vt.ak_name "; $result = $this->db->query($sql); @@ -591,13 +591,13 @@ public function getMetrics($ak_def_id, $start_date = NULL, $end_date = NULL, ar $processorCountWheres = $this->getProcessorCountWheres($pu_counts); $sql = "SELECT distinct vt.metric_id, vt.metric, vt.processor_unit, vt.num_units - FROM `a_tree` vt, app_kernel_def akd + FROM `a_tree` vt, app_kernel_def akd where vt.ak_def_id = akd.ak_def_id and akd.enabled = 1 and akd.visible = 1 ". ($ak_def_id !== NULL ? " and vt.ak_def_id = $ak_def_id " : " " ). ($start_date !== NULL ? " and '$start_date' <= end_time " : " "). ($end_date !== NULL ? " and '$end_date' >= start_time " : " "). (count($resource_ids)>0?" and vt.resource_id in (".implode(',',$resource_ids).") ": " "). - (count($processorCountWheres)>0 ? " and ( ".implode(' or ',$processorCountWheres)." ) " : " "). + (count($processorCountWheres)>0 ? " and ( ".implode(' or ',$processorCountWheres)." ) " : " "). "order by vt.metric"; $result = $this->db->query($sql); @@ -620,13 +620,13 @@ public function getDataset($akId, $metricId, $numProcUnits, $startTime, - $endTime, + $endTime, $metadataOnly = false, - $debugMode = false, + $debugMode = false, $datesAsEpoch = true, $maximizeQueryCacheUsage = true) { - + $restrictions = array('ak' => $akId, //'resource' => $resourceId, //'metric' => $metricId, @@ -663,7 +663,7 @@ public function getDataset($akId, } list($query, $params) = $this->getDataPointsQuery($restrictions); - + $retStatement = $this->getDB()->query($query, $params, true); $retStatement->execute(); @@ -674,7 +674,7 @@ public function getDataset($akId, $datasetList = array(); $dataset = NULL; - while ( $row = $retStatement->fetch(\PDO::FETCH_ASSOC, \PDO::FETCH_ORI_NEXT) ) + while ( $row = $retStatement->fetch(\PDO::FETCH_ASSOC, \PDO::FETCH_ORI_NEXT) ) { // Amin needs the query to return all data for building thumbnails so skip // unwanted records here. @@ -687,7 +687,8 @@ public function getDataset($akId, if ( $current != $prev ) { - if ( NULL !== $dataset ) $datasetList[] = $dataset; + if ( NULL !== $dataset ) + $datasetList[] = $dataset; $dataset = new Dataset($row['ak_name'], $row['ak_def_id'], $row['resource'], $row['resource_id'], $row['metric'], $row['metric_id'], $row['unit'], @@ -714,9 +715,10 @@ public function getDataset($akId, } $prev->set($row['ak_name'], $row['resource'], $row['metric'], $row['num_units']); - } // foreach ( $retval as $row ) + } // foreach ( $retval as $row ) - if ( NULL !== $dataset ) $datasetList[] = $dataset; + if ( NULL !== $dataset ) + $datasetList[] = $dataset; return $datasetList; } // getDataset() @@ -892,7 +894,7 @@ public function loadTreeLevel(array $criteria = NULL) $sql .= " GROUP BY $groupBy"; if ( NULL !== $orderBy ) $sql .= " ORDER BY $orderBy"; - + $result = $this->db->query($sql, $sqlParams); $retval = array(); @@ -1026,9 +1028,9 @@ public function loadTreeLevelDebug(array $criteria = NULL) } // loadTreeLevelDebug() // -------------------------------------------------------------------------------- - // Get the query string to retrieve the application kernel definitions from the - // database. By default only those marked as enabled and visible will be loaded. - // The criteria are cumulative and specified using an associative array where + // Get the query string to retrieve the application kernel definitions from the + // database. By default only those marked as enabled and visible will be loaded. + // The criteria are cumulative and specified using an associative array where // supported criteria are: // ak = app kernel definition id // resource => resource id @@ -1122,7 +1124,7 @@ public function getDataPointsQuery(array $criteria = NULL) // the datasets need to guarantee order for the plotAction to work correctly - AG 4/12/11 $sql .= ' ORDER BY ak_name, resource, metric, num_units, collected'; - return array($sql, $sqlParams); + return array($sql, $sqlParams); } // getDataPointsQuery() // -------------------------------------------------------------------------------- @@ -1301,13 +1303,13 @@ public function loadAppKernelInstanceInfo(array $options, $criteriaList[] = "i.collected = FROM_UNIXTIME(?)"; $paramList[] = $options['collected']; } - + if ( isset($options['num_units']) && NULL !== $options['num_units'] ) { $criteriaList[] = "a.num_units = ?"; $paramList[] = $options['num_units']; } - + if ( isset($options['status']) && NULL !== $options['status'] ) { $criteriaList[] = "i.status = ?"; @@ -1538,7 +1540,7 @@ public function storeAppKernelInstance(InstanceData $ak, $replace = false, $add_ if ( NULL === $this->akIdMap ) $this->loadAppKernels(); if ( NULL === $this->akMetricGuids ) $this->loadAkMetrics(); if ( NULL === $this->akParameterGuids ) $this->loadAkParameters(); - + // Control region? // Ensure that the base app kernel name exists in the database @@ -1556,7 +1558,7 @@ public function storeAppKernelInstance(InstanceData $ak, $replace = false, $add_ if($replace)$this->db->execute('set foreign_key_checks=0;'); try - { + { $this->createInstance($ak, $replace, $dryRunMode); } catch ( Exception $e ) @@ -1694,7 +1696,7 @@ private function addDebugData(InstanceData $ak, $replace, $dryRunMode=false) private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replace, $add_to_a_data=true, $calc_controls=true, $dryRunMode=false) { $guid = $metric->guid(); - + if ( ! isset($this->akMetrics[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units][$guid]) ) { @@ -1711,8 +1713,8 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac print_r($ak); print "metric\n"; print_r($metric);*/ - - + + //metric_data $sql = ($replace?'replace':'insert')." INTO metric_data (metric_id, ak_id, collected, " . "resource_id, value_string) VALUES (?, ?, FROM_UNIXTIME(?), ?, ?)"; @@ -1721,7 +1723,7 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac $numRows = $this->db->execute($sql, $params); if($calc_controls) { - + } if($add_to_a_data) { @@ -1733,10 +1735,10 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac FROM a_tree WHERE ak_def_id=? AND resource_id=? AND metric_id=? AND num_units=?"; $params = array($ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->deployment_num_proc_units); $rows=$this->db->query($sql,$params); - + if(count($rows)>1) $this->log("a_tree has more then one entries for ak_def_id, resource_id, metric_id, num_units", PEAR_LOG_ERR); - + $start_time=$ak->deployment_time; $end_time=$ak->deployment_time; $status=$ak->status; @@ -1774,7 +1776,7 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac ); if(!$dryRunMode) $numRows = $this->db->execute($sql, $params); - + //a_data $sql = ($replace?'replace':'insert'). " INTO a_data ". @@ -1798,10 +1800,10 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac FROM a_tree2 WHERE ak_def_id=? AND resource_id=? AND metric_id=? AND num_units=?"; $params = array($ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->deployment_num_proc_units); $rows=$this->db->query($sql,$params); - + if(count($rows)>1) $this->log("a_tree2 has more then one entries for ak_def_id, resource_id, metric_id, num_units", PEAR_LOG_ERR); - + $start_time=$ak->deployment_time; $end_time=$ak->deployment_time; $status=$ak->status; @@ -1816,9 +1818,9 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac { $end_time=$rows[0]['end_time']; $status=$rows[0]['status']; - } + } } - + if(count($rows)!=0) { $sql = "DELETE FROM a_tree2 WHERE ak_def_id=? AND resource_id=? AND metric_id=? AND num_units=?"; @@ -1840,7 +1842,7 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac ); if(!$dryRunMode) $numRows = $this->db->execute($sql, $params); - + //a_data2 $sql = ($replace?'replace':'insert'). " INTO a_data2 ". @@ -1947,22 +1949,22 @@ private function getMetricId(InstanceData $ak, InstanceMetric $metric) // If the metric already exists return its id. if ( isset($this->akMetricGuids[$guid]) ) return $this->akMetricGuids[$guid]; - + // The metric didn't exist for that ak $sql = "SELECT * FROM metric WHERE guid='$guid'"; $result = $this->db->query($sql); if(count($result)>0) { $metricId = $result[0]['metric_id']; - + $sql = "INSERT INTO ak_has_metric (ak_id, metric_id, num_units) VALUES (?,?,?)"; $params = array($ak->db_ak_id, $metricId, $ak->deployment_num_proc_units); $this->log("$sql " . print_r($params, 1), PEAR_LOG_DEBUG); $numRows = $this->db->execute($sql, $params); - + $this->akMetricGuids[$metric->guid()] = $metricId; $this->log("Add metric to ak: name='{$metric->name}', unit='{$metric->unit}' ak='{$ak->deployment_ak_name}' (id = $metricId)", PEAR_LOG_DEBUG); - + return $metricId; } // The metric didn't exist, add it to the database and internal data @@ -2051,7 +2053,7 @@ public function getAppKernelBaseNames() { return $this->akBaseNameList; } - + public function getControlRegions($resource_id,$ak_def_id) { $controlRegionDefQuery = @@ -2070,7 +2072,7 @@ public function getControlRegions($resource_id,$ak_def_id) $controlRegionDef = $this->db->query($controlRegionDefQuery); return $controlRegionDef; } - + public function newControlRegions($resource_id,$ak_def_id,$control_region_type,$startDateTime,$endDateTime,$n_points,$comment, $update=false,$control_region_def_id=NULL) { @@ -2081,7 +2083,7 @@ public function newControlRegions($resource_id,$ak_def_id,$control_region_type,$ $n_points = ($n_points!==NULL ? intval($n_points):'NULL'); $endDateTime = ($endDateTime!==NULL ? "'".$endDateTime."'":'NULL'); $comment = ($comment!==NULL ? "'".$comment."'":'NULL'); - + //make query for control recalculation $sqlAKcond=array(); $response=$this->db->query("SELECT ak_id FROM mod_appkernel.app_kernel WHERE ak_def_id='{$ak_def_id}'"); @@ -2089,7 +2091,7 @@ public function newControlRegions($resource_id,$ak_def_id,$control_region_type,$ $sqlAKcond[]="ak_id='".$v['ak_id']."'"; } $sqlAKcond=implode(" OR ",$sqlAKcond); - + $controlRegionDefQuery = "SELECT control_region_def_id,resource_id,ak_def_id, control_region_type, @@ -2104,12 +2106,12 @@ public function newControlRegions($resource_id,$ak_def_id,$control_region_type,$ ORDER BY control_region_starts; "; $controlRegionDef = $this->db->query($controlRegionDefQuery); - + $metric_data_updateQuery = "UPDATE metric_data - SET control = null, + SET control = null, running_average = null, controlStatus = 'undefined' - WHERE ({$sqlAKcond}) AND resource_id=$resource_id + WHERE ({$sqlAKcond}) AND resource_id=$resource_id AND collected >= $startDateTime"; if(count($controlRegionDef)>0){ $new_region_end_collected=$controlRegionDef[0]['control_region_starts']; @@ -2118,7 +2120,7 @@ public function newControlRegions($resource_id,$ak_def_id,$control_region_type,$ else{ $metric_data_updateQuery.=";"; } - + //insert of update control_region_def if($control_region_def_id!=NULL && $update){ $sql="SELECT control_region_def_id FROM control_region_def @@ -2142,7 +2144,7 @@ public function newControlRegions($resource_id,$ak_def_id,$control_region_type,$ WHERE control_region_def_id={$control_region_def_id[0]['control_region_def_id']}"; $this->db->execute($sql); $this->db->execute($metric_data_updateQuery); - + return array('success' => true, 'message' => "Control region time interval was updated"); } @@ -2217,10 +2219,10 @@ public function deleteControlRegion($control_region_def_id) $controlRegionDefAfter = $this->db->query($controlRegionDefQuery); $metric_data_updateQuery = "UPDATE metric_data - SET control = null, + SET control = null, running_average = null, controlStatus = 'undefined' - WHERE ({$sqlAKcond}) AND resource_id=$resource_id + WHERE ({$sqlAKcond}) AND resource_id=$resource_id AND collected >= '$control_region_starts'"; if(count($controlRegionDefAfter)>0){ $new_region_end_collected=$controlRegionDefAfter[0]['control_region_starts']; @@ -2230,7 +2232,7 @@ public function deleteControlRegion($control_region_def_id) $metric_data_updateQuery.=";"; } - $this->db->execute("DELETE FROM control_region_def WHERE control_region_def_id=$control_region_def_id"); + $this->db->execute("DELETE FROM control_region_def WHERE control_region_def_id=$control_region_def_id"); $this->db->execute($metric_data_updateQuery); return array('success' => true, 'message' => "Control region time interval was deleted"); @@ -2247,7 +2249,7 @@ public function setInitialControlRegions($initial=true,$envbased=false, $control 'name' => $row['nickname'] ); } - + $this->log("recalculate control_region_def based on enviroment change\n",PEAR_LOG_INFO); $this->db->execute("TRUNCATE TABLE control_region_def"); if($initial) @@ -2297,7 +2299,7 @@ public function setInitialControlRegions($initial=true,$envbased=false, $control $ak_name=$newenv_regions_start[$i]['ak_name']; $t=$collected;//date_format(date_create($collected),"Y-m-d")." 00:00:00"; $this->log("Adding control region due enviroment change, app kernel: {$newenv_regions_start[$i]['ak_name']} on resource: {$resourceIdMap[$newenv_regions_start[$i]['resource_id']]['name']}",PEAR_LOG_INFO); - + $sql="INSERT INTO control_region_def (resource_id,ak_def_id,control_region_type,control_region_starts,control_region_points,comment) VALUES({$resource_id},{$ak_def_id},'data_points','{$t}',{$controlIntervalSize}, @@ -2311,7 +2313,7 @@ public function setInitialControlRegions($initial=true,$envbased=false, $control // -------------------------------------------------------------------------------- - // Calcualte the running average and control values for each metric value + // Calcualte the running average and control values for each metric value // @author: Amin Ghadersohi // -------------------------------------------------------------------------------- @@ -2323,7 +2325,7 @@ public function calculateControls( $restrictToResource = NULL, $restrictToAppKernel = NULL ) - { + { $this->log("Calculating control metrics"); if($runningAverageSize < 1) { @@ -2364,7 +2366,7 @@ public function calculateControls( 'name' => $row['nickname'] ); } - + //Conditions for $restrictToResource $sqlResourceCond=NULL; if($restrictToResource!==NULL) @@ -2381,7 +2383,7 @@ public function calculateControls( if(!isset($this->appKernelDefinitions))$this->loadAppKernelDefinitions(); $dbAKList=$this->appKernelDefinitions; $sqlAKDefCond="ak_def_id = '".$dbAKList[$restrictToAppKernel]->id."'"; - + $m_aks=array(); $response=$this->db->query("SELECT ak_id FROM mod_appkernel.app_kernel WHERE ak_def_id='".$dbAKList[$restrictToAppKernel]->id."'"); foreach ($response as $v) { @@ -2389,15 +2391,15 @@ public function calculateControls( } $sqlAKcond=implode(" OR ",$m_aks); } - + // first, load the metric attributes that help figure out whether a larger value is better or a smaller value $metricsLookupById = array(); $metricsLookupByName = array(); - $metricsQuery = + $metricsQuery = "SELECT metric_id, lower(name) as name, lower(unit) as unit FROM `metric` ORDER BY 1, 2, 3 - "; + "; $metricsResults = $this->db->query($metricsQuery); $metrics_walltime_id=NULL; foreach($metricsResults as $mr) @@ -2408,23 +2410,23 @@ public function calculateControls( $metrics_walltime_id=$mr['metric_id']; } } - + $largerAttributeMap = array(); $metricIdToLargerMap = array(); - $akName = NULL; + $akName = NULL; $metricsPath = xd_utilities\getConfiguration('appkernel', 'ak_metrics_path'); $metricAttributes = explode("\n", file_get_contents($metricsPath)); foreach($metricAttributes as $metricAttribute) { $metricName = NULL; - $larger = true; + $larger = true; $attr = explode(',',$metricAttribute); if(isset($attr[0]) && $attr[0] != '') $akName = $attr[0]; if(isset($attr[2]) && count($attr[2]) > 0) $larger = substr($attr[2],0,1) != 'S'; if(isset($attr[1]) && $attr[1] !='') { - $metricName = strtolower($attr[1]); + $metricName = strtolower($attr[1]); if(isset($metricsLookupByName[$metricName])) { $largerAttributeMap[$metricName] = $larger; @@ -2435,8 +2437,8 @@ public function calculateControls( foreach($metricsLookupById as $metric_id => $metric) { if(!isset($largerAttributeMap[$metric['name']])) - { - $largerAttributeMap[$metric['name']] = strcasecmp($metric['unit'], 'second') === 0? false : true; + { + $largerAttributeMap[$metric['name']] = strcasecmp($metric['unit'], 'second') === 0? false : true; } } $this->db->execute('truncate table metric_attribute'); @@ -2444,45 +2446,45 @@ public function calculateControls( { $metric_id = $metricsLookupByName[$metricName]['metric_id']; - $insertStatement = + $insertStatement = "insert into metric_attribute (metric_id, larger) values (:metric_id, :larger)"; - $this->db->execute($insertStatement, array('metric_id' => $metric_id, 'larger' => $larger)); + $this->db->execute($insertStatement, array('metric_id' => $metric_id, 'larger' => $larger)); $metricIdToLargerMap[$metric_id] = $larger; } - - + + if($recalculateControls) { $time_start = microtime(true); $dataQuery = "update metric_data - set control = null, + set control = null, running_average = null, controlStatus = 'undefined'"; if($sqlResourceCond||$sqlAKcond)$dataQuery.="\n WHERE "; if($sqlResourceCond)$dataQuery.="\n ( ".$sqlResourceCond." ) "; if($sqlResourceCond||$sqlAKcond)$dataQuery.=" AND "; if($sqlAKcond)$dataQuery.="\n ( ".$sqlAKcond." ) "; - + $this->db->execute($dataQuery); $time_end = microtime(true); $this->log("Timing(update metric_data set control = null, running_average = null)=".($time_end - $time_start),PEAR_LOG_DEBUG); } - - // Get a list of possible unique datasets (datasetsQuery). + + // Get a list of possible unique datasets (datasetsQuery). // For each one: // 1. pick/update the control interval // 2. for each value beyond the control interval // i. calculate the running average (last 5 points, maybe try weighted average) - // ii. decide whether the value is in control (0),better than in control (1), or out of control(-1). + // ii. decide whether the value is in control (0),better than in control (1), or out of control(-1). // iv. store the running average and control value in the metric_data table //this query enumeterates all possible unique datasets by their key (resource_id, ak_id, metric_id) $time_start = microtime(true); - $datasetsQuery = + $datasetsQuery = "SELECT distinct ak_id, metric_id, resource_id FROM `metric_data` - "; + "; if($sqlResourceCond||$sqlAKcond) $datasetsQuery.="\n WHERE "; if($sqlResourceCond) @@ -2500,7 +2502,7 @@ public function calculateControls( $time_end = microtime(true); $this->log("Timing(Get a list of possible unique datasets (datasetsQuery))=".($time_end - $time_start),PEAR_LOG_DEBUG); //$this->log("DDone\n");return; - + $time_start_bigcycle = microtime(true); $progressVerbosity=1; $timing=array( @@ -2514,8 +2516,8 @@ public function calculateControls( 'N_sqlupdate1'=>0, 'sqlupdate2'=>0.0, 'N_sqlupdate2'=>0 - - ); + + ); foreach($datasets as $di => $dataset) { if($progressVerbosity===1){ @@ -2532,20 +2534,20 @@ public function calculateControls( //continue; //if(!($dataset['ak_id']==42 && $dataset['metric_id']==84 && $dataset['resource_id']==3 ))continue; //print(str_repeat(chr(8),$message_length)); - + //if we dont know whether smaller or larger is better it (hopefully :) ) means we don't want to calculate control on it so skip if(!isset($metricIdToLargerMap[$dataset['metric_id']])) { $this->log("Skipping metric {$dataset['metric_id']} {$metricsLookupById[$dataset['metric_id']]['name']} as there was no value in metric_attributes for its larger/smaller property",PEAR_LOG_WARNING); continue; } - + $time_start0 = microtime(true); //whether larger values are good for this metric or not $larger = $metricIdToLargerMap[$dataset['metric_id']]; - - $dataQuery = + + $dataQuery = "SELECT md.collected, md.value_string, aki.env_version,md.controlStatus FROM `metric_data` md, `ak_instance` aki @@ -2562,7 +2564,7 @@ public function calculateControls( $time_query = microtime(true); $timing['dataQuery']+=$time_query - $time_start0; $timing['N_dataQuery']++; - + $length = count($data); //only process datasets of length 1+ if($length > 0) @@ -2648,7 +2650,7 @@ public function calculateControls( $CRdefs=array(); foreach($controlRegionDef as $cdef) $CRdefs[$cdef['control_region_def_id']]=$cdef; - + $CR=array(); foreach($controlRegions as $cr) { @@ -2662,7 +2664,7 @@ public function calculateControls( $this->db->execute($sql); } } - + foreach($controlRegionDef as $crdef) { if(!key_exists($crdef['control_region_def_id'], $CR)) @@ -2687,7 +2689,7 @@ public function calculateControls( //caculate controls for that region //Query for calculation properties of the control interval if($controlRegion['control_region_type']=='data_points'){ - $controlIntervalDataQuery = + $controlIntervalDataQuery = "SELECT md.resource_id,md.ak_id,md.metric_id,md.collected,md.value_string FROM `metric_data` md WHERE md.resource_id = :resource_id @@ -2697,9 +2699,9 @@ public function calculateControls( LIMIT {$controlRegion['control_region_points']} "; } - else + else { - $controlIntervalDataQuery = + $controlIntervalDataQuery = "SELECT md.resource_id,md.ak_id,md.metric_id,md.collected,md.value_string FROM `metric_data` md WHERE md.resource_id = :resource_id @@ -2719,7 +2721,7 @@ public function calculateControls( { $completed=1; } - + //pack $controlValues $controlValues = array(); foreach($controlIntervalData as $controlValue) @@ -2730,12 +2732,12 @@ public function calculateControls( $controlMax = null; $controlStart = null; $controlEnd = null; - + if($controlLength>0){ - + $controlMin = min($controlValues); $controlMax = max($controlValues); - + if(false){ $controlSum = array_sum($controlValues); $controlAverage = $controlSum/$controlLength; @@ -2746,7 +2748,7 @@ public function calculateControls( { //use advanced technique to figure out (override) control start and end. - //divided the set into two regions based on median, find the + //divided the set into two regions based on median, find the //average of each region and use as start and end. if($controlLength > 4) { @@ -2768,11 +2770,11 @@ public function calculateControls( $controlStart = $controlAverage-$control_criteria*$controlStDev; $controlEnd = $controlAverage+$control_criteria*$controlStDev; - + $controlDiff = abs($controlEnd-$controlStart); if($controlDiff == 0) $controlDiff = 1; - - $updateStatement = + + $updateStatement = "UPDATE control_regions set completed = {$completed}, controlStart = {$controlStart}, @@ -2780,7 +2782,7 @@ public function calculateControls( controlMin = {$controlMin}, controlMax = {$controlMax} WHERE control_region_id = {$controlRegion['control_region_id']}"; - + foreach ($controlIntervalData as $data_point){ $controlStatusUpdateStatement="UPDATE metric_data SET controlStatus='control_region_time_interval' @@ -2798,9 +2800,9 @@ public function calculateControls( } } } - else + else { - $updateStatement = + $updateStatement = "UPDATE control_regions set completed = 0, controlStart = NULL, @@ -2819,12 +2821,12 @@ public function calculateControls( } else//already been here once break; - + } $time_end = microtime(true); $timing['contRegCalc']+=$time_end - $time_start; $timing['N_contRegCalc']++; - + $time_start_1 = microtime(true); //set last fake controlRegions for ease of controlRegion search $controlRegions[]=array('control_region_starts' => date_format(date_add(date_create("now"),date_interval_create_from_date_string('1 year')),"Y-m-d H:i:s")); @@ -2833,10 +2835,10 @@ public function calculateControls( { $controlRegions[$idControlRegion]['control_region_starts_timestamp']=date_timestamp_get(date_create($controlRegions[$idControlRegion]['control_region_starts'])); } - + //Loop over data points $Nallupdate_metric_data=0; - + $update_running_average=""; $update_control=""; $update_controlStart=""; @@ -2845,7 +2847,7 @@ public function calculateControls( $update_controlMax=""; $update_controlStatus=""; $collected_array=array(); - + $idPreviousControlRegion=-1; for($i = 0; $i < $length; $i++) { @@ -2853,8 +2855,8 @@ public function calculateControls( $date_collected_timestamp=date_timestamp_get(date_create($data[$i]['collected'])); for($idControlRegion=0;$idControlRegion=$controlRegions[$idControlRegion]['control_region_starts_timestamp'] && + + if($date_collected_timestamp>=$controlRegions[$idControlRegion]['control_region_starts_timestamp'] && $date_collected_timestamp<$controlRegions[$idControlRegion+1]['control_region_starts_timestamp'] ) break; } @@ -2863,10 +2865,10 @@ public function calculateControls( $controlMax = $controlRegion['controlMax']; $controlStart = $controlRegion['controlStart']; $controlEnd = $controlRegion['controlEnd']; - + $controlDiff = abs($controlEnd-$controlStart); if($controlDiff == 0) $controlDiff = 1; - + //calculate if the data point is in control or what { if($i < $runningAverageSize) @@ -2879,7 +2881,7 @@ public function calculateControls( $offset = $i-$runningAverageSize+1; $l = $runningAverageSize; } - + $ra_values = array(); for($j = $offset, $m = $offset+$l; $j < $m; $j++) { @@ -2888,7 +2890,7 @@ public function calculateControls( $ra_count = count($ra_values); if($ra_count < $runningAverageSize) ///try to find the previous points and continue the running average { - $dataQuery2 = + $dataQuery2 = "SELECT md.collected, md.value_string, aki.env_version FROM `metric_data` md, `ak_instance` aki @@ -2908,19 +2910,19 @@ public function calculateControls( { $ra_values[] = $data2[$j]['value_string']; } - + } - + $runningAverage = array_sum($ra_values)/count($ra_values); $decision_value = floatval($data[$i]['value_string']); - + $controlStatus='undefined'; if($controlStart!==null){ //method 1: use running average to calcualte control if($decision_value < $controlStart) $control = ($larger?-1.0:1.0) * abs($controlStart - $decision_value)/$controlDiff; else if($decision_value > $controlEnd) $control = ($larger?1.0:-1.0) * abs($decision_value - $controlEnd)/$controlDiff; else $control = 0; - + //TODO: set $controlPivot globally $controlPivot=0.0;//-0.5; if($control > 0) $controlStatus='over_performing'; @@ -2945,7 +2947,7 @@ public function calculateControls( if($controlMax===NULL){$controlMax='NULL';} if($data[$i]['controlStatus']==='control_region_time_interval') {$controlStatus='control_region_time_interval';} - + $update_running_average.=" WHEN '{$data[$i]['collected']}' THEN $runningAverage \n"; $update_control.=" WHEN '{$data[$i]['collected']}' THEN $control \n"; $update_controlStart.=" WHEN '{$data[$i]['collected']}' THEN $controlStart \n"; @@ -2953,10 +2955,10 @@ public function calculateControls( $update_controlMin.=" WHEN '{$data[$i]['collected']}' THEN $controlMin \n"; $update_controlMax.=" WHEN '{$data[$i]['collected']}' THEN $controlMax \n"; $update_controlStatus.=" WHEN '{$data[$i]['collected']}' THEN '$controlStatus' \n"; - + $collected_array[]="'".$data[$i]['collected']."'"; - - + + $Nallupdate_metric_data+=1; if($Nallupdate_metric_data>=500||$i >= $length-1){// $time_start_sqlupdate = microtime(true); @@ -2993,11 +2995,11 @@ public function calculateControls( WHERE resource_id = {$dataset['resource_id']} and ak_id = {$dataset['ak_id']} and metric_id = {$dataset['metric_id']} and collected IN ({$collected_array}) ;"; - + $this->db->execute($allupdate_metric_data); $time_end_sqlupdate1 = microtime(true); $timing['sqlupdate1']+=$time_end_sqlupdate1 - $time_start_sqlupdate; - + $allupdate_a_data2="UPDATE a_data2 SET running_average = CASE FROM_UNIXTIME(collected) {$update_running_average} @@ -3031,10 +3033,10 @@ public function calculateControls( and ak_def_id = {$akId2akDefIdMap[$dataset['ak_id']]['ak_def_id']} and num_units = {$akId2akDefIdMap[$dataset['ak_id']]['num_units']} and metric_id = {$dataset['metric_id']} and FROM_UNIXTIME(collected) IN ({$collected_array}) ;"; - + $this->db->execute($allupdate_a_data2); $time_end_sqlupdate2 = microtime(true); - + #ak_instance if($metrics_walltime_id!==NULL && $dataset['metric_id']===$metrics_walltime_id){ $allupdate_ak_instance="UPDATE ak_instance SET @@ -3047,13 +3049,13 @@ public function calculateControls( and collected IN ({$collected_array}) ;"; $this->db->execute($allupdate_ak_instance); } - + $timing['sqlupdate1']+=$time_end_sqlupdate1 - $time_start_sqlupdate; $timing['sqlupdate2']+=$time_end_sqlupdate2 - $time_end_sqlupdate1; $timing['N_sqlupdate1']+=$Nallupdate_metric_data; $timing['N_sqlupdate2']+=$Nallupdate_metric_data; - + $update_running_average=""; $update_control=""; $update_controlStart=""; @@ -3062,28 +3064,28 @@ public function calculateControls( $update_controlMax=""; $update_controlStatus=""; $collected_array=array(); - + $Nallupdate_metric_data=0; } } } - + $time_end = microtime(true); $timing['contCalc']+=$time_end - $time_start_1; $timing['N_contCalc']++; - } + } } - + $time_end_bigcycle = microtime(true); $t_bigcycle=$time_end_bigcycle - $time_start_bigcycle; - + $this->log("Timing(Cycle for calculating running average and control values)=".($t_bigcycle),PEAR_LOG_DEBUG); $this->log(" Timing(data for control calc)=".sprintf("%.4f",$timing['dataQuery'])." (".sprintf("%.2f",100.0*$timing['dataQuery']/$t_bigcycle)."%)",PEAR_LOG_DEBUG); $this->log(" Timing(Control region calculation)=".sprintf("%.4f",$timing['contRegCalc'])." (".sprintf("%.2f",100.0*$timing['contRegCalc']/$t_bigcycle)."%)",PEAR_LOG_DEBUG); $this->log(" Timing(data for control calc)=".sprintf("%.4f",$timing['contCalc'])." (".sprintf("%.2f",100.0*$timing['contCalc']/$t_bigcycle)."%)",PEAR_LOG_DEBUG); $this->log(" Timing(sql update)=".sprintf("%.4f",$timing['sqlupdate1'])." (".sprintf("%.2f",100.0*$timing['sqlupdate1']/$t_bigcycle)."%)",PEAR_LOG_DEBUG); $this->log(" Timing(sql update)=".sprintf("%.4f",$timing['sqlupdate2'])." (".sprintf("%.2f",100.0*$timing['sqlupdate2']/$t_bigcycle)."%)",PEAR_LOG_DEBUG); - + } // -------------------------------------------------------------------------------- @@ -3143,7 +3145,7 @@ public function createAggregateTables($includeControlData = FALSE) $sql = "DROP TABLE IF EXISTS a_data"; $this->db->execute($sql); - + $sql = "CREATE TABLE a_data ( ak_name varchar(64) NOT NULL, resource varchar(128) NOT NULL, @@ -3166,7 +3168,7 @@ public function createAggregateTables($includeControlData = FALSE) KEY env_version (env_version), KEY collected (collected), KEY `status` (`status`) - ) ENGINE=MyISAM + ) ENGINE=MyISAM AS SELECT def.name as ak_name, r.resource, m.name as metric, ak.num_units, def.processor_unit, @@ -3182,7 +3184,7 @@ public function createAggregateTables($includeControlData = FALSE) WHERE def.visible = 1 AND r.visible = 1 AND ai.status = 'success' ORDER BY def.name, r.resource, m.name, ak.num_units, ai.collected"; $this->db->execute($sql); - + if ( $includeControlData ) { $sql = "DROP TABLE IF EXISTS a_tree2"; @@ -3256,7 +3258,7 @@ public function createAggregateTables($includeControlData = FALSE) KEY env_version (env_version), KEY collected (collected), KEY `status` (`status`) - ) ENGINE=MyISAM + ) ENGINE=MyISAM AS SELECT def.name as ak_name, r.resource, m.name as metric, ak.num_units, def.processor_unit, @@ -3269,9 +3271,9 @@ public function createAggregateTables($includeControlData = FALSE) JOIN ak_has_metric map USING(ak_id, num_units) JOIN metric m USING(metric_id) left outer JOIN metric_data md on - (ai.ak_id = md.ak_id - AND ai.collected = md.collected - AND ai.resource_id = md.resource_id + (ai.ak_id = md.ak_id + AND ai.collected = md.collected + AND ai.resource_id = md.resource_id AND map.metric_id = md.metric_id ) WHERE def.visible = 1 AND r.visible = 1 AND ai.status <> 'queued' ORDER BY def.name, r.resource, m.name, ak.num_units, ai.collected"; @@ -3304,12 +3306,12 @@ public function updateEnvironmentVersions($dryRunMode = FALSE) { print "Scan resource {$resource->nickname}\n"; //if($resource->nickname!=='edge')continue; - + foreach ( $appKernelDefs as $appKernelDef ) { print " Scan app kernel {$appKernelDef->basename}\n"; //if($appKernelDef->basename!=='xdmod.app.md.namd')continue; - + $akInstances = $this->loadAppKernelInstances($appKernelDef->id, $resource->id); foreach ( $akInstances as $akInstance ) @@ -3406,11 +3408,14 @@ public function set() class Dataset { - public $akName, $resourceName, $metric, $metricUnit, $numProcUnits, $description, $resourceDescription, $rawNumProcUnits; + public $akName, $resourceName, $metric, $metricUnit, $numProcUnits, $description, $resourceDescription; + public $rawNumProcUnits, $note; public $akId, $resourceId, $metricId; public $valueVector = array(); + public $valueLowVector = array(); + public $valueHighVector = array(); public $controlVector = array(); - public $contrllStartVector = array(); + public $controlStartVector = array(); public $controlEndVector = array(); public $controlMinVector = array(); public $controlMaxVector = array(); @@ -3434,6 +3439,7 @@ public function __construct($name, $akId, $resource, $resourceId, $metric, $metr $this->description = $description; $this->resourceDescription = $resourceDescription; $this->rawNumProcUnits = $rawNumProcUnits; + $this->note = ""; } public function getChartTimeVector() { @@ -3441,7 +3447,7 @@ public function getChartTimeVector() foreach ($this->timeVector as $time) { $chartTimeVector[] = chartTime2($time); - } + } return $chartTimeVector; } public function durationInDays() @@ -3453,7 +3459,7 @@ public function durationInDays() public function export() { - date_default_timezone_set('UTC'); + date_default_timezone_set('UTC'); $headers = array(); $rows = array(); $duration_info = array('start' => '', 'end' => ''); @@ -3461,22 +3467,22 @@ public function export() $title2 = array(); $length = count($this->valueVector); - if($length > 0) + if($length > 0) { $duration_info['start'] = date('Y-m-d', $this->timeVector[0]); $duration_info['end'] = date('Y-m-d',$this->timeVector[$length-1]); $title['title'] = "App Kernel Data"; - $title2['parameters'] = array("App Kernel = ". $this->akName, - "Resource = ". $this->resourceName, - "Metric = ". $this->metric, + $title2['parameters'] = array("App Kernel = ". $this->akName, + "Resource = ". $this->resourceName, + "Metric = ". $this->metric, "Processing Units = ". $this->numProcUnits); $headers = array('Date', 'Value', 'Control', 'Changed'); for($i = 0; $i < $length; $i++) { $rows[$this->timeVector[$i]] = array(date('Y-m-d H:i:s',$this->timeVector[$i]), $this->valueVector[$i], $this->controlVector[$i], $this->versionVector[$i]==1?'yes':'no'); } - } + } return array('title' => $title, 'title2' => $title2, @@ -3484,6 +3490,106 @@ public function export() 'headers' => $headers, 'rows' => $rows); } + + // -------------------------------------------------------------------------------- + // Aggregate dataset + // + // @param aggTime aggregation time in hours + // @return Dataset with aggregated values + // -------------------------------------------------------------------------------- + + public function aggregate($aggTime) + { + $aggTime = intval($aggTime); + $aggDataset = new Dataset($this->akName, $this->akId, $this->resourceName, $this->resourceId, + $this->metric, $this->metricId, $this->metricUnit, $this->numProcUnits, $this->description, + $this->rawNumProcUnits, $resourceDescription = $this->resourceDescription); + + if(count($this->timeVector) === 0) + return $aggDataset; + + if($aggTime === 24*3600) + $aggDataset->note .= "(One day avg.)"; + elseif($aggTime === 7*24*3600) + $aggDataset->note .= "(Avr. by week)"; + elseif($aggTime === 30*24*3600) + $aggDataset->note .= "(Avr. by 30 days)"; + else + $aggDataset->note .= sprintf("(Avr. by %.1f days)", $aggTime/(24*3600)); + + $prevTime = intval(intval($this->timeVector[0])/$aggTime); + $meanVal = 0.0; + $minVal = $this->valueVector[0]; + $maxVal = $this->valueVector[0]; + $n = 0; + $totalPoints = count($this->timeVector); + for ($i = 0; $i < $totalPoints; $i++) { + $curTime = intval(intval($this->timeVector[$i])/$aggTime); + if($curTime !== $prevTime || $i === $totalPoints-1) + { + $aggDataset->timeVector[] = strval($curTime * $aggTime); + $aggDataset->valueVector[] = strval($meanVal/$n); + $aggDataset->valueHighVector[] = strval($maxVal); + $aggDataset->valueLowVector[] = strval($minVal); + + // for following arragy let's keep only last record for aggregated period + if(count($this->controlVector)>$i) + $aggDataset->controlVector[] = $this->controlVector[$i]; + if(count($this->controlStartVector)>$i) + $aggDataset->controlStartVector[] = $this->controlStartVector[$i]; + if(count($this->controlEndVector)>$i) + $aggDataset->controlEndVector[] = $this->controlEndVector[$i]; + if(count($this->controlMinVector)>$i) + $aggDataset->controlMinVector[] = $this->controlMinVector[$i]; + if(count($this->controlMaxVector)>$i) + $aggDataset->controlMaxVector[] = $this->controlMaxVector[$i]; + if(count($this->runningAverageVector)>$i) + $aggDataset->runningAverageVector[] = $this->runningAverageVector[$i]; + if(count($this->versionVector)>$i) + $aggDataset->versionVector[] = $this->versionVector[$i]; + if(count($this->controlStatus)>$i) + $aggDataset->controlStatus[] = $this->controlStatus[$i]; + + $prevTime = $curTime; + $meanVal = 0.0; + $minVal = $this->valueVector[0]; + $maxVal = $this->valueVector[0]; + $n = 0; + } + $n++; + $val = floatval($this->valueVector[$i]); + $meanVal += floatval($val); + $minVal = min($minVal, $val); + $maxVal = max($maxVal, $val); + } + return $aggDataset; + } + // -------------------------------------------------------------------------------- + // Aggregate dataset if needed + // + // @return Dataset with aggregated values + // -------------------------------------------------------------------------------- + public function autoAggregate() + { + // aggregate output if number of points is large + $num_points = count($this->timeVector); + if($num_points < 201) + { + return $this; + } + else + { + $dt = intval($this->timeVector[0]) - intval($this->timeVector[$num_points-1]); + $dt /= 24*3600; + if($dt < 365/2) + return $this->aggregate(24 * 3600); + elseif($dt < 365) + return $this->aggregate(7 * 24 * 3600); + else + return $this->aggregate(30 * 24 * 3600); + } + } + } // class Dataset ?> diff --git a/classes/DataWarehouse/Access/DataExplorer.php b/classes/DataWarehouse/Access/DataExplorer.php index 8678100..df25f23 100644 --- a/classes/DataWarehouse/Access/DataExplorer.php +++ b/classes/DataWarehouse/Access/DataExplorer.php @@ -4,7 +4,7 @@ class DataExplorer extends Common { - public function get_ak_plot($user) + public function get_ak_plot($user) { $ak_db = new \AppKernel\AppKernelDb(); @@ -17,7 +17,7 @@ public function get_ak_plot($user) if(isset($this->request['inline'])) { $inline = $this->request['inline'] == 'true' || $this->request['inline'] === 'y'; - } + } list($start_date, $end_date, $start_ts, $end_ts) = $this->checkDateParameters(); @@ -54,15 +54,15 @@ public function get_ak_plot($user) $resourceId, $metricId, $puCount, - $start_ts, - $end_ts, + $start_ts, + $end_ts, false, false, - true, + true, false); foreach($datasetList as $result) - { + { $datasets[] = $result; } } @@ -71,11 +71,11 @@ public function get_ak_plot($user) elseif(preg_match('/ak_(?P\d+)_metric_(?P\d+)/', $metric, $matches)) { $akId = $matches['ak']; - $metricId = $matches['metric']; + $metricId = $matches['metric']; if(count($selectedProcessingUnits) == 0) { - $pus = $ak_db->getProcessingUnits($start_date,$end_date, + $pus = $ak_db->getProcessingUnits($start_date,$end_date, $selectedResourceIds, $selectedMetrics); foreach($pus as $pu) { @@ -89,21 +89,20 @@ public function get_ak_plot($user) $resourceId, $metricId, $puCount, - $start_ts, - $end_ts, + $start_ts, + $end_ts, false, false, - true, + true, false); foreach($datasetList as $result) { - $datasets[] = $result; + // aggregate output if number of points is large + $datasets[] = $result->autoAggregate(); } } - } - } } @@ -125,7 +124,7 @@ public function get_ak_plot($user) $title=$title?$title:implode(', ',$filename_resources).'; '.implode(', ',$filename_kernels).'; '.implode(', ',$filename_metrics); $hc->setTitle($show_title?($title):NULL, $font_size); $hc->setLegend($legend_location, $font_size);//called before and after - $hc->configure($datasets, + $hc->configure($datasets, $font_size, $limit, $offset, @@ -143,7 +142,7 @@ public function get_ak_plot($user) { $message = "<- Select a metric from the left"; } else - if(count($selectedResourceIds) < 1) + if(count($selectedResourceIds) < 1) { $message = "<- Select a resource from the left"; } @@ -188,25 +187,25 @@ public function get_ak_plot($user) private function getSelectedResourceIds() { - return isset($this->request['selectedResourceIds']) && + return isset($this->request['selectedResourceIds']) && $this->request['selectedResourceIds'] != '' ? explode(',',$this->request['selectedResourceIds']):array(); } private function getSelectedPUCounts() { - return isset($this->request['selectedPUCounts']) && + return isset($this->request['selectedPUCounts']) && $this->request['selectedPUCounts'] != '' ? explode(',',$this->request['selectedPUCounts']):array(); } private function getSelectedMetrics() { - return isset($this->request['selectedMetrics']) && + return isset($this->request['selectedMetrics']) && $this->request['selectedMetrics'] != '' ? explode(',',$this->request['selectedMetrics']):array(); } private function getShowChangeIndicator() { - return ( isset($this->request['show_change_indicator']) + return ( isset($this->request['show_change_indicator']) ? $this->request['show_change_indicator'] === 'y' : false ); } } diff --git a/classes/DataWarehouse/Visualization/HighChartAppKernel.php b/classes/DataWarehouse/Visualization/HighChartAppKernel.php index 9990c8f..d5001ee 100644 --- a/classes/DataWarehouse/Visualization/HighChartAppKernel.php +++ b/classes/DataWarehouse/Visualization/HighChartAppKernel.php @@ -17,6 +17,8 @@ class HighChartAppKernel extends HighChart2 const underPerformingColor = '#F5A9BC'; + const minmaxColor = '#cc99ff'; + public $_axis_index; /** @@ -72,7 +74,8 @@ public function configure( $showControlZones = false, $showRunningAverages = false, $showControlInterval = false, - $contextMenuOnClick=NULL + $showMinMax = false, + $contextMenuOnClick=NULL ) { $this->_chart['title']['style'] = array( 'color'=> '#000000', @@ -85,7 +88,7 @@ public function configure( $this->_chart['subtitle']['y'] = 30 + $font_size; $this->_chart['legend']['itemStyle'] = array( 'color' => '#274b6d', - 'fontWeight' => 'normal', + 'fontWeight' => 'normal', 'fontSize' => (12 + $font_size).'px' ); $tooltipConfig = array( @@ -132,13 +135,18 @@ public function configure( { if(!isset($this->_axis[$dataset->metricUnit])) { - $yMin=min($dataset->valueVector); - $yMax=max($dataset->valueVector); - $dy=$yMax-$yMin; + $yMin=min($dataset->valueVector); + if(count($dataset->valueLowVector)>0)$yMin=min($yMin, min($dataset->valueLowVector)); + if(count($dataset->controlMinVector)>0)$yMin=min($yMin, min($dataset->controlMinVector)); + + $yMax=max($dataset->valueVector); + if(count($dataset->valueHighVector)>0)$yMax=max($yMax, max($dataset->valueHighVector)); + if(count($dataset->controlMaxVector)>0)$yMax=max($yMax, max($dataset->controlMaxVector)); + $dy=$yMax-$yMin; - $yMin-=0.05*$dy; - $yMax+=0.05*$dy; - if($yMin<0)$yMin=0; + $yMin-=0.05*$dy; + $yMax+=0.05*$dy; + if($yMin<0)$yMin=0; $yAxisColorValue = $colors[$this->_axisCount % 33]; $yAxisColor = '#'.str_pad(dechex($yAxisColorValue),6,'0',STR_PAD_LEFT); @@ -172,25 +180,24 @@ public function configure( $this->_axis_index[$dataset->metricUnit]=count($this->_chart['yAxis']); $this->_chart['yAxis'][] = $yAxis; $this->_axisCount++; + } else{ + $yMin=min($dataset->valueVector); + $yMax=max($dataset->valueVector); + $dy=$yMax-$yMin; + + $yMin-=0.05*$dy; + $yMax+=0.05*$dy; + if($yMin<0)$yMin=0; + + if($this->_axis[$dataset->metricUnit]['min']>$yMin){ + $this->_axis[$dataset->metricUnit]['min']=$yMin; + $this->_chart['yAxis'][$this->_axis_index[$dataset->metricUnit]]['min']=$yMin; + } + if($this->_axis[$dataset->metricUnit]['max']<$yMax){ + $this->_axis[$dataset->metricUnit]['max']=$yMax; + $this->_chart['yAxis'][$this->_axis_index[$dataset->metricUnit]]['max']=$yMax; + } } - else{ - $yMin=min($dataset->valueVector); - $yMax=max($dataset->valueVector); - $dy=$yMax-$yMin; - - $yMin-=0.05*$dy; - $yMax+=0.05*$dy; - if($yMin<0)$yMin=0; - - if($this->_axis[$dataset->metricUnit]['min']>$yMin){ - $this->_axis[$dataset->metricUnit]['min']=$yMin; - $this->_chart['yAxis'][$this->_axis_index[$dataset->metricUnit]]['min']=$yMin; - } - if($this->_axis[$dataset->metricUnit]['max']<$yMax){ - $this->_axis[$dataset->metricUnit]['max']=$yMax; - $this->_chart['yAxis'][$this->_axis_index[$dataset->metricUnit]]['max']=$yMax; - } - } } $controlPivot = -0.5; foreach($datasets as $index => $dataset) @@ -206,11 +213,15 @@ public function configure( if($longLegend) { - $datasetName = '['.$dataset->numProcUnits.': '.$dataset->resourceName.']
'.$dataset->akName.' '.$dataset->metric.' ['.$dataset->metricUnit.']'; + $datasetName = '['.$dataset->numProcUnits.': '.$dataset->resourceName.']
'.$dataset->akName.' '. + $dataset->metric.$dataset->note.' ['.$dataset->metricUnit.']'; } else { - $datasetName = $dataset->numProcUnits; + if($dataset->note==="") + $datasetName = $dataset->numProcUnits; + else + $datasetName = $dataset->numProcUnits . " " . $dataset->note; } $enableMarkers = $dataCount < 11 || ($dataCount < 31 && $this->_width > \DataWarehouse\Visualization::$thumbnail_width); @@ -227,7 +238,7 @@ public function configure( if($showChangeIndicator && $dataset->versionVector[$i] > 0) { $sv['marker']['symbol'] = $this->_indicator_url; - $sv['marker']['enabled'] = true; + $sv['marker']['enabled'] = true; }else { $sv['marker']['enabled'] = $enableMarkers; @@ -237,7 +248,7 @@ public function configure( } $data_series_desc = array( 'name' => $datasetName, - 'zIndex' => 1, + 'zIndex' => 10, 'color'=> $color, 'type' => 'line', 'shadow' => false, @@ -277,7 +288,7 @@ public function configure( $version_series_desc = array( 'name' => 'Change Indicator', 'yAxis' => $yAxis['index'], - 'zIndex' => 10, + 'zIndex' => 9, 'type' => 'scatter', 'tooltip' => array( 'enabled' => false @@ -308,7 +319,7 @@ public function configure( $aColor = '#'.str_pad(dechex(\DataWarehouse\Visualization::alterBrightness($color,-200)),6,'0',STR_PAD_LEFT); $data_series_desc = array( 'name' => 'Running Average', - 'zIndex' => 1, + 'zIndex' => 8, 'color'=> $aColor, 'type' => 'line', 'shadow' => false, @@ -376,7 +387,7 @@ public function configure( $data_series_desc = array( 'name' => 'Control', - 'zIndex' => 1, + 'zIndex' => 7, 'type' => 'line', 'shadow' => false, 'dashStyle' => 'ShortDot', @@ -394,6 +405,33 @@ public function configure( ); $this->_chart['series'][] = $data_series_desc; } + if($showMinMax && count($dataset->valueLowVector)>0 && count($dataset->valueHighVector)>0) { + $rangeValues = array(); + foreach($dataset->valueLowVector as $i => $v) + { + $v2 = $dataset->valueHighVector[$i]; + $sv = array($dataset->timeVector[$i]*1000.0, $v2?(double)$v2:NULL, $v?(double)$v:NULL); + + $rangeValues[] = $sv; + } + + $data_series_desc = array( + 'name' => 'MinMax Values', + 'zIndex' => 6, + 'color'=> self::minmaxColor, + 'type' => 'areasplinerange', + 'shadow' => false, + 'yAxis' => $yAxis['index'], + 'lineWidth' => 0, + 'showInLegend' => true, + 'connectNulls' => false, + 'marker' => array( + 'enabled' => false + ), + 'data' => $rangeValues + ); + $this->_chart['series'][] = $data_series_desc; + } if($showControlInterval) { $rangeValues = array(); @@ -405,7 +443,6 @@ public function configure( $rangeValues[] = $sv; } - $aColor = '#'.str_pad(dechex(\DataWarehouse\Visualization::alterBrightness(0xB0E0E6,00)),6,'0',STR_PAD_LEFT); $data_series_desc = array( 'name' => 'Control Band', 'zIndex' => 0, diff --git a/classes/Rest/Controllers/AppKernelControllerProvider.php b/classes/Rest/Controllers/AppKernelControllerProvider.php index 40d0284..6746587 100644 --- a/classes/Rest/Controllers/AppKernelControllerProvider.php +++ b/classes/Rest/Controllers/AppKernelControllerProvider.php @@ -438,6 +438,7 @@ public function getPlots(Request $request, Application $app) $params = $paramBag->all(); foreach ($results as $result) { + $result = $result->autoAggregate(); $num_proc_units_changed = false; if ($show_num_proc_units_separately && $result->rawNumProcUnits != $lastResult->rawNumProcUnits) { $num_proc_units_changed = true; @@ -504,6 +505,7 @@ public function getPlots(Request $request, Application $app) $single_metric && $show_control_zones, $single_metric && $show_running_averages, $single_metric && $show_control_interval, + true, $contextMenuOnClick ); } From 02184c78df6cb8a4e4e23d9c5da24848cb93b98b Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 31 Mar 2020 16:02:34 -0400 Subject: [PATCH 10/63] removed ignoring new version in CI test, sinse it is dev version now --- tests/ci/scripts/xdmod-appkernels-setup.tcl | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/ci/scripts/xdmod-appkernels-setup.tcl b/tests/ci/scripts/xdmod-appkernels-setup.tcl index f836859..214cc8f 100644 --- a/tests/ci/scripts/xdmod-appkernels-setup.tcl +++ b/tests/ci/scripts/xdmod-appkernels-setup.tcl @@ -17,8 +17,6 @@ source [file join [file dirname [info script]] helper-functions.tcl] set timeout 240 spawn "xdmod-setup" -provideInput {Do you want to continue (yes, no)? \[no\]} yes - selectMenuOption 9 # MySQL DB From 6724080a891dbf703ee291f5109ed8be102c40d7 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 31 Mar 2020 16:02:53 -0400 Subject: [PATCH 11/63] fixed min max calculation --- classes/AppKernel/AppKernelDb.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/AppKernel/AppKernelDb.php b/classes/AppKernel/AppKernelDb.php index 65e3945..6fe40ef 100644 --- a/classes/AppKernel/AppKernelDb.php +++ b/classes/AppKernel/AppKernelDb.php @@ -3552,8 +3552,8 @@ public function aggregate($aggTime) $prevTime = $curTime; $meanVal = 0.0; - $minVal = $this->valueVector[0]; - $maxVal = $this->valueVector[0]; + $minVal = $this->valueVector[$i]; + $maxVal = $this->valueVector[$i]; $n = 0; } $n++; From d53db8d5d102bc25cf6340265b30cd33917f107e Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 31 Mar 2020 17:15:15 -0400 Subject: [PATCH 12/63] added .eslintrc.json --- html/.eslintrc.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 html/.eslintrc.json diff --git a/html/.eslintrc.json b/html/.eslintrc.json new file mode 100644 index 0000000..141e334 --- /dev/null +++ b/html/.eslintrc.json @@ -0,0 +1,19 @@ +{ + "env": { + "browser": true, + "jquery": true + }, + "globals": { + "AppKernel": false, + "Compliance": false, + "CCR": false, + "Ext": false, + "ga": false, + "_gaq": false, + "jsPlumb": false, + "Highcharts": false, + "truncateText": false, + "token": false, + "XDMoD": false + } +} From eb03bfb4bd0783faa07a27d9b4e84e5463ea0e83 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 31 Mar 2020 17:38:53 -0400 Subject: [PATCH 13/63] styling fixes --- html/.eslintrc.json | 34 +++++++++---------- .../app_kernels/AppKerPerformanceMapPanel.js | 1 - .../app_kernels/AppKernelNotificationPanel.js | 1 - .../dashboard/CenterReportCardComponent.js | 1 - .../js/Arr/ActiveTasksGrid.js | 10 +++--- .../js/Arr/ActiveTasksStore.js | 1 + .../js/Arr/AppKernelDashboardPanel.js | 1 - .../js/Arr/CompletedTasksStore.js | 1 + 8 files changed, 24 insertions(+), 26 deletions(-) diff --git a/html/.eslintrc.json b/html/.eslintrc.json index 141e334..83e0ba6 100644 --- a/html/.eslintrc.json +++ b/html/.eslintrc.json @@ -1,19 +1,19 @@ { - "env": { - "browser": true, - "jquery": true - }, - "globals": { - "AppKernel": false, - "Compliance": false, - "CCR": false, - "Ext": false, - "ga": false, - "_gaq": false, - "jsPlumb": false, - "Highcharts": false, - "truncateText": false, - "token": false, - "XDMoD": false - } + "env": { + "browser": true, + "jquery": true + }, + "globals": { + "AppKernel": false, + "Compliance": false, + "CCR": false, + "Ext": false, + "ga": false, + "_gaq": false, + "jsPlumb": false, + "Highcharts": false, + "truncateText": false, + "token": false, + "XDMoD": false + } } diff --git a/html/gui/js/modules/app_kernels/AppKerPerformanceMapPanel.js b/html/gui/js/modules/app_kernels/AppKerPerformanceMapPanel.js index f2e8263..383cc7e 100644 --- a/html/gui/js/modules/app_kernels/AppKerPerformanceMapPanel.js +++ b/html/gui/js/modules/app_kernels/AppKerPerformanceMapPanel.js @@ -1,4 +1,3 @@ -/* global Ext, XDMoD, CCR, document, window */ /** * ARR active tasks grid. * diff --git a/html/gui/js/modules/app_kernels/AppKernelNotificationPanel.js b/html/gui/js/modules/app_kernels/AppKernelNotificationPanel.js index 057e358..87a5c1b 100644 --- a/html/gui/js/modules/app_kernels/AppKernelNotificationPanel.js +++ b/html/gui/js/modules/app_kernels/AppKernelNotificationPanel.js @@ -1,4 +1,3 @@ -/* global Ext, XDMoD, CCR */ Ext.namespace('XDMoD', 'XDMoD.Module', 'CCR', 'CCR.xdmod', 'CCR.xdmod.ui'); XDMoD.Module.AppKernels.AppKernelNotificationPanel = Ext.extend(Ext.Panel, { diff --git a/html/gui/js/modules/dashboard/CenterReportCardComponent.js b/html/gui/js/modules/dashboard/CenterReportCardComponent.js index 5e302dd..c9a14d4 100644 --- a/html/gui/js/modules/dashboard/CenterReportCardComponent.js +++ b/html/gui/js/modules/dashboard/CenterReportCardComponent.js @@ -1,4 +1,3 @@ -/* global Ext, XDMoD, CCR, window */ Ext.namespace('XDMoD.Module.Dashboard'); /** diff --git a/html/internal_dashboard/js/Arr/ActiveTasksGrid.js b/html/internal_dashboard/js/Arr/ActiveTasksGrid.js index 4e47e82..041de41 100644 --- a/html/internal_dashboard/js/Arr/ActiveTasksGrid.js +++ b/html/internal_dashboard/js/Arr/ActiveTasksGrid.js @@ -17,6 +17,7 @@ XDMoD.Arr.ActiveTasksGrid = Ext.extend(Ext.grid.GridPanel, { }, constructor: function (config) { + // eslint-disable-next-line no-param-reassign config = config || {}; Ext.applyIf(config, { @@ -79,9 +80,9 @@ XDMoD.Arr.ActiveTasksGrid = Ext.extend(Ext.grid.GridPanel, { header: 'Time in Queue', dataIndex: 'time_in_queue', renderer: function (value) { - var minute = 1000 * 60, - hour = minute * 60, - day = hour * 24; + var minute = 1000 * 60; + var hour = minute * 60; + var day = hour * 24; if (value === 0) { return '0'; @@ -91,9 +92,8 @@ XDMoD.Arr.ActiveTasksGrid = Ext.extend(Ext.grid.GridPanel, { return Math.floor(value / minute) + ' minutes'; } else if (value < day) { return Math.floor(value / hour) + ' hours'; - } else { - return Math.floor(value / day) + ' days'; } + return Math.floor(value / day) + ' days'; } }, { diff --git a/html/internal_dashboard/js/Arr/ActiveTasksStore.js b/html/internal_dashboard/js/Arr/ActiveTasksStore.js index 3b886f0..4e053e2 100644 --- a/html/internal_dashboard/js/Arr/ActiveTasksStore.js +++ b/html/internal_dashboard/js/Arr/ActiveTasksStore.js @@ -16,6 +16,7 @@ XDMoD.Arr.ActiveTasksStore = Ext.extend(Ext.data.JsonStore, { }, constructor: function (config) { + // eslint-disable-next-line no-param-reassign config = config || {}; var nowEpoch = Date.now(); diff --git a/html/internal_dashboard/js/Arr/AppKernelDashboardPanel.js b/html/internal_dashboard/js/Arr/AppKernelDashboardPanel.js index 2082d06..59edde4 100644 --- a/html/internal_dashboard/js/Arr/AppKernelDashboardPanel.js +++ b/html/internal_dashboard/js/Arr/AppKernelDashboardPanel.js @@ -1,4 +1,3 @@ -/* global Ext, XDMoD, document */ /** * ARR Status panel. * diff --git a/html/internal_dashboard/js/Arr/CompletedTasksStore.js b/html/internal_dashboard/js/Arr/CompletedTasksStore.js index df27b74..a2d7c2b 100644 --- a/html/internal_dashboard/js/Arr/CompletedTasksStore.js +++ b/html/internal_dashboard/js/Arr/CompletedTasksStore.js @@ -16,6 +16,7 @@ XDMoD.Arr.CompletedTasksStore = Ext.extend(Ext.data.JsonStore, { }, constructor: function (config) { + // eslint-disable-next-line no-param-reassign config = config || {}; Ext.apply(config, { From 42a06704fffcbaafea926903365c58c6df376759 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 31 Mar 2020 18:57:42 -0400 Subject: [PATCH 14/63] js styling fixes --- .gitignore | 1 + .../js/Arr/ActiveTasksPanel.js | 94 +++++++++---------- 2 files changed, 44 insertions(+), 51 deletions(-) diff --git a/.gitignore b/.gitignore index acb6997..24761da 100644 --- a/.gitignore +++ b/.gitignore @@ -139,6 +139,7 @@ logs *.log npm-debug.log* node_modules/ +/package-lock.json # Runtime data pids diff --git a/html/internal_dashboard/js/Arr/ActiveTasksPanel.js b/html/internal_dashboard/js/Arr/ActiveTasksPanel.js index e708591..6836733 100644 --- a/html/internal_dashboard/js/Arr/ActiveTasksPanel.js +++ b/html/internal_dashboard/js/Arr/ActiveTasksPanel.js @@ -9,11 +9,13 @@ XDMoD.Arr.ActiveTasksPanel = Ext.extend(Ext.Panel, { }, initComponent: function () { - + // eslint-disable-next-line no-underscore-dangle Ext.apply(this, this._DEFAULT_CONFIG); - + // eslint-disable-next-line no-underscore-dangle this.toolbar = this._createToolbar(); + // eslint-disable-next-line no-underscore-dangle this.store = this._createDataStore(); + // eslint-disable-next-line no-underscore-dangle this.grid = this._createGridPanel(); Ext.apply(this, { @@ -60,7 +62,7 @@ XDMoD.Arr.ActiveTasksPanel = Ext.extend(Ext.Panel, { } var processDeletion = function (selection) { - var lower = typeof selection === 'string' ? selection.toLowerCase() : ""; + var lower = typeof selection === 'string' ? selection.toLowerCase() : ''; switch (lower) { case Ext.MessageBox.buttonText.ok.toLowerCase(): case Ext.MessageBox.buttonText.yes.toLowerCase(): @@ -73,13 +75,11 @@ XDMoD.Arr.ActiveTasksPanel = Ext.extend(Ext.Panel, { method: 'DELETE', success: function (response) { if (response && response.responseText) { - var data = JSON.parse(response.responseText); var success = data && data.success ? data.success : false; if (success) { - Ext.Msg.show({ title: 'Task Deleted', msg: 'Task successfully deleted.', @@ -90,8 +90,7 @@ XDMoD.Arr.ActiveTasksPanel = Ext.extend(Ext.Panel, { } }); } else { - - var message = 'An error occurred while attempting to delete task. [ ' + (data.message ? data.message : 'N/A' ) + ' ]'; + var message = 'An error occurred while attempting to delete task. [ ' + (data.message ? data.message : 'N/A') + ' ]'; Ext.Msg.show({ title: 'Error', msg: message, @@ -187,28 +186,28 @@ XDMoD.Arr.ActiveTasksPanel = Ext.extend(Ext.Panel, { url: XDMoD.REST.url + '/akrr/tasks/active?token=' + XDMoD.REST.token }), fields: [ - {name: 'status_update_time', type: 'string'}, - {name: 'master_task_id', type: 'int'}, - {name: 'app', type: 'string'}, - {name: 'resource_param', type: 'string'}, - {name: 'task_lock', type: 'int'}, - {name: 'datetime_stamp', type: 'string'}, - {name: 'time_submitted_to_queue', type: 'string'}, - {name: 'fatal_errors_count', type: 'int'}, - {name: 'fails_to_submit_to_the_queue', type: 'int'}, - {name: 'status', type: 'string'}, - {name: 'next_check_time', type: 'string'}, - {name: 'time_to_start', type: 'string'}, - {name: 'status_info', type: 'string'}, - {name: 'resource', type: 'string'}, - {name: 'task_id', type: 'int'}, - {name: 'time_activated', type: 'string'}, - {name: 'repeat_in', type: 'string'}, - {name: 'task_param', type: 'string'}, - {name: 'task_exec_log', type: 'string'}, - {name: 'parent_task_id', type: 'int'}, - {name: 'app_param', type: 'string'}, - {name: 'group_id', type: 'string'} + { name: 'status_update_time', type: 'string' }, + { name: 'master_task_id', type: 'int' }, + { name: 'app', type: 'string' }, + { name: 'resource_param', type: 'string' }, + { name: 'task_lock', type: 'int' }, + { name: 'datetime_stamp', type: 'string' }, + { name: 'time_submitted_to_queue', type: 'string' }, + { name: 'fatal_errors_count', type: 'int' }, + { name: 'fails_to_submit_to_the_queue', type: 'int' }, + { name: 'status', type: 'string' }, + { name: 'next_check_time', type: 'string' }, + { name: 'time_to_start', type: 'string' }, + { name: 'status_info', type: 'string' }, + { name: 'resource', type: 'string' }, + { name: 'task_id', type: 'int' }, + { name: 'time_activated', type: 'string' }, + { name: 'repeat_in', type: 'string' }, + { name: 'task_param', type: 'string' }, + { name: 'task_exec_log', type: 'string' }, + { name: 'parent_task_id', type: 'int' }, + { name: 'app_param', type: 'string' }, + { name: 'group_id', type: 'string' } ] }); }, @@ -231,28 +230,21 @@ XDMoD.Arr.ActiveTasksPanel = Ext.extend(Ext.Panel, { sortable: false }, columns: [ - {header: 'Resource', dataIndex: 'resource', sortable: true}, - {header: 'Application', dataIndex: 'app', sortable: true}, - {header: 'resource_param', dataIndex: 'resource_param', sortable: true}, - {header: 'Time Submitted', dataIndex: 'time_submitted_to_queue', sortable: true}, - {header: 'time_to_start', dataIndex: 'time_to_start', sortable: true}, - {header: 'next_check_time', dataIndex: 'next_check_time', sortable: true}, - {header: 'status_update_time', dataIndex: 'status_update_time', sortable: true}, - {header: 'time_activated', dataIndex: 'time_activated', sortable: true}, - /*{header: 'master_task_id', dataIndex: 'master_task_id', sortable: true},*/ - {header: 'datetime_stamp', dataIndex: 'datetime_stamp', sortable: true}, - {header: 'status', dataIndex: 'status', sortable: true}, - {header: 'status_info', dataIndex: 'status_info', sortable: true}, - /*{header: 'task_id', dataIndex: 'task_id', sortable: true},*/ - /*{header: 'repeat_in', dataIndex: 'repeat_in', sortable: true},*/ - /*{header: 'task_param', dataIndex: 'task_param', sortable: true},*/ - {header: 'task_exec_log', dataIndex: 'task_exec_log', sortable: true}, - {header: 'fatal_errors_count', dataIndex: 'fatal_errors_count', sortable: true}, - {header: 'fails_to_submit_to_the_queue', dataIndex: 'fails_to_submit_to_the_queue', sortable: true}, - {header: 'task_lock', dataIndex: 'task_lock', sortable: true} - /*{header: 'parent_task_id', dataIndex: 'parent_task_id', sortable: true}, - {header: 'app_param', dataIndex: 'app_param', sortable: true}, - {header: 'group_id', dataIndex: 'group_id', sortable: true}*/ + { header: 'Resource', dataIndex: 'resource', sortable: true }, + { header: 'Application', dataIndex: 'app', sortable: true }, + { header: 'resource_param', dataIndex: 'resource_param', sortable: true }, + { header: 'Time Submitted', dataIndex: 'time_submitted_to_queue', sortable: true }, + { header: 'time_to_start', dataIndex: 'time_to_start', sortable: true }, + { header: 'next_check_time', dataIndex: 'next_check_time', sortable: true }, + { header: 'status_update_time', dataIndex: 'status_update_time', sortable: true }, + { header: 'time_activated', dataIndex: 'time_activated', sortable: true }, + { header: 'datetime_stamp', dataIndex: 'datetime_stamp', sortable: true }, + { header: 'status', dataIndex: 'status', sortable: true }, + { header: 'status_info', dataIndex: 'status_info', sortable: true }, + { header: 'task_exec_log', dataIndex: 'task_exec_log', sortable: true }, + { header: 'fatal_errors_count', dataIndex: 'fatal_errors_count', sortable: true }, + { header: 'fails_to_submit_to_the_queue', dataIndex: 'fails_to_submit_to_the_queue', sortable: true }, + { header: 'task_lock', dataIndex: 'task_lock', sortable: true } ] }), sm: new Ext.grid.RowSelectionModel({ From e2fd7a9452fa83c34d03699fb60e8b5977fc6724 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Wed, 1 Apr 2020 00:40:38 -0400 Subject: [PATCH 15/63] php styling fixes --- .gitignore | 2 + classes/AppKernel/AppKernelDb.php | 2002 +++++++++++++++-------------- 2 files changed, 1041 insertions(+), 963 deletions(-) diff --git a/.gitignore b/.gitignore index 24761da..9c4e3cd 100644 --- a/.gitignore +++ b/.gitignore @@ -311,3 +311,5 @@ configuration/aggregation_meta/ # External QA assets /.qa/ +/phpcs.xml + diff --git a/classes/AppKernel/AppKernelDb.php b/classes/AppKernel/AppKernelDb.php index 6fe40ef..0eae731 100644 --- a/classes/AppKernel/AppKernelDb.php +++ b/classes/AppKernel/AppKernelDb.php @@ -1,5 +1,6 @@ akMetrics[$name][$numUnits][$guid] = $metricId; + private $akMetrics = null; // List of metric guids mapped to metric ids - private $akMetricGuids = NULL; + private $akMetricGuids = null; // List of existing parameters - private $akParameters = NULL; + private $akParameters = null; // List of parameter guids mapped to parameter ids - private $akParameterGuids = NULL; + private $akParameterGuids = null; //default control criteria in standard deviations private $control_criteria=3.0; @@ -95,20 +94,20 @@ class AppKernelDb // database connection parameters. // -------------------------------------------------------------------------------- - public function __construct(\Log $logger = NULL, $configSection = NULL) + public function __construct(\Log $logger = null, $configSection = null) { // If the configuration section is not explicitly specified, use the // APPLICATION_ENV constant to select the correct section - $configSection = (NULL === $configSection + $configSection = (null === $configSection //? "appkernel-" . APPLICATION_ENV ?"appkernel" : $configSection); $this->db = DB::factory($configSection); $this->modwDB = DB::factory('database'); - $this->logger = $logger !== NULL ? $logger : \Log::singleton('null'); - } // __construct() + $this->logger = $logger !== null ? $logger : \Log::singleton('null'); + } // -------------------------------------------------------------------------------- // @returns a ref to the db handle @@ -142,11 +141,13 @@ public function storeIngestionLogEntry(IngestionLogEntry $log) $log->success, $log->message, $log->reportObj); - $numRows = $this->db->execute($sql, $params); - if ( 1 == $numRows ) $this->log("Added entry to ingestion log"); + $numRows = $this->db->execute($sql, $params); + if (1 == $numRows ) { + $this->log("Added entry to ingestion log"); + } - return ( 1 == $numRows ); - } // storeIngestionLogEntry() + return ( 1 == $numRows ); + } // -------------------------------------------------------------------------------- // Load metadata about the last successful import/parsing session. @@ -165,7 +166,9 @@ public function loadMostRecentIngestionLogEntry(IngestionLogEntry &$log) success, message, UNCOMPRESS(reportobj) as reportobj FROM ingester_log WHERE success=1 ORDER BY last_update DESC LIMIT 1"; $result = $this->db->query($sql); - if ( 1 != count($result) ) return FALSE; + if (1 != count($result) ) { + return false; + } $row = array_shift($result); $log->source = $row['source']; @@ -178,8 +181,8 @@ public function loadMostRecentIngestionLogEntry(IngestionLogEntry &$log) $log->message = $row['message']; $log->reportObj = $row['reportobj']; - return TRUE; - } // loadMostRecentIngestionLogEntry() + return true; + } // -------------------------------------------------------------------------------- // Load application kernel definitions from the database. By default only @@ -194,7 +197,7 @@ public function loadMostRecentIngestionLogEntry(IngestionLogEntry &$log) // the value is an AppKernelDefinition object // -------------------------------------------------------------------------------- - public function loadAppKernelDefinitions(array $criteria = NULL) + public function loadAppKernelDefinitions(array $criteria = null) { $this->akBaseNameList = array(); $sqlParams = array(); @@ -204,43 +207,43 @@ public function loadAppKernelDefinitions(array $criteria = NULL) $sqlCriteria = array('inc_disabled' => "enabled = 1", 'inc_hidden' => "visible = 1"); - if ( NULL !== $criteria ) - { - foreach ( $criteria as $key => $value ) - { - switch ($key) - { - case 'inc_disabled': - $sqlCriteria[$key] = NULL; - break; - case 'inc_hidden': - $sqlCriteria[$key] = NULL; - break; - case 'filter': - $sqlCriteria[$key] = "name like ?"; - $sqlParams[] = $this->convertWildcards($value); - break; - default: break; - } // switch ($key) - } // foreach ( $criteria as $key => $value ) - } // if ( NULL !== $criteria ) + if (null !== $criteria ) { + foreach ( $criteria as $key => $value ) { + switch ($key) { + case 'inc_disabled': + $sqlCriteria[$key] = null; + break; + case 'inc_hidden': + $sqlCriteria[$key] = null; + break; + case 'filter': + $sqlCriteria[$key] = "name like ?"; + $sqlParams[] = $this->convertWildcards($value); + break; + default: + break; + } + } + } $sql = "SELECT ak_def_id, name, ak_base_name, description, enabled, visible,processor_unit FROM app_kernel_def"; - if ( 0 != count($sqlCriteria) ) + if (0 != count($sqlCriteria) ) { $sql .= " WHERE " . implode(" AND ", $sqlCriteria); + } - $this->logger->debug(array( + $this->logger->debug( + array( 'message' => 'Executing query', 'sql' => $sql, 'params' => json_encode($sqlParams), - )); + ) + ); $result = $this->db->query($sql, $sqlParams); - while ( FALSE !== ($row = current($result)) ) + while ( false !== ($row = current($result)) ) { $basename = $row['ak_base_name']; - if ( empty($basename) ) - { + if (empty($basename) ) { $this->log("App kernel definition {$row['name']} has no base name, skipping."); continue; } @@ -250,18 +253,18 @@ public function loadAppKernelDefinitions(array $criteria = NULL) $akDef->name = $row['name']; $akDef->basename = $basename; $akDef->description = $row['description']; - $akDef->enabled = ( 1 == $row['enabled'] ? TRUE : FALSE ); - $akDef->visible = ( 1 == $row['visible'] ? TRUE : FALSE ); + $akDef->enabled = ( 1 == $row['enabled'] ? true : false ); + $akDef->visible = ( 1 == $row['visible'] ? true : false ); $akDef->processor_unit = $row['processor_unit']; $this->appKernelDefinitions[$basename] = $akDef; $this->akBaseNameList[] = $basename; next($result); - } // while ( FALSE !== ($row = current($result)) ) + } return $this->appKernelDefinitions; - } // loadAppKernelDefinitions() + } // -------------------------------------------------------------------------------- // Given a value to be used in a WHERE clause, scan it for API wildcards and @@ -275,14 +278,11 @@ public function loadAppKernelDefinitions(array $criteria = NULL) private function convertWildcards(&$value) { - $wildcardsFound = FALSE; - if ( "*" == $value[0] || "*" == $value[strlen($value) - 1] ) - { + if ("*" == $value[0] || "*" == $value[strlen($value) - 1] ) { $value = preg_replace('/^\*|\*$/', '%', $value); - $wildcardsFound = TRUE; } return $value; - } // convertWildcards() + } // -------------------------------------------------------------------------------- // Extract optional operators from the start of an argument value and return @@ -308,21 +308,22 @@ private function extractOperator(&$value, &$op) '>' => '>', '<' => '<'); $op = "="; - $operatorFound = FALSE; + $operatorFound = false; // Bools have no operator - if ( is_bool($value) ) return $operatorFound; + if (is_bool($value) ) { + return $operatorFound; + } - if ( array_key_exists($value[0], $validOperators) ) - { + if (array_key_exists($value[0], $validOperators) ) { $op = $validOperators[$value[0]]; $value = substr($value, 1); - $operatorFound = TRUE; + $operatorFound = true; } return $operatorFound; - } // extractOperator() + } // -------------------------------------------------------------------------------- @@ -335,7 +336,7 @@ private function getProcessorCountWheres(array $pu_counts = array()) } return $processorCountWheres; - } // getProcessorCountWheres() + } // -------------------------------------------------------------------------------- @@ -345,23 +346,20 @@ private function getMetricWheres(array $metrics = array()) foreach($metrics as $metric) { - if(preg_match('/ak_(?P\d+)_metric_(?P\d+)_(?P\d+)/', $metric, $matches)) - { + if(preg_match('/ak_(?P\d+)_metric_(?P\d+)_(?P\d+)/', $metric, $matches)) { $metricWheres[] = "(vt.ak_def_id = {$matches['ak']} and vt.metric_id = {$matches['metric']} and vt.num_units = {$matches['pu']})"; - - }else - if(preg_match('/ak_(?P\d+)_metric_(?P\d+)/', $metric, $matches)) - { - $metricWheres[] = "(vt.ak_def_id = {$matches['ak']} and vt.metric_id = {$matches['metric']})"; + } else { + if (preg_match('/ak_(?P\d+)_metric_(?P\d+)/', $metric, $matches)) { + $metricWheres[] = "(vt.ak_def_id = {$matches['ak']} and vt.metric_id = {$matches['metric']})"; + } } - } return $metricWheres; - } // getMetricWheres() + } // -------------------------------------------------------------------------------- - public function getResources($start_date = NULL, $end_date = NULL, array $pu_counts = array(), array $metrics = array(),$user=NULL) + public function getResources($start_date = null, $end_date = null, array $pu_counts = array(), array $metrics = array(), $user = null) { $processorCountWheres = $this->getProcessorCountWheres($pu_counts); $metricWheres = $this->getMetricWheres($metrics); @@ -369,10 +367,10 @@ public function getResources($start_date = NULL, $end_date = NULL, array $pu_cou $sql = "SELECT distinct r.resource_id, r.resource, r.nickname, r.description , r.enabled, r.visible, r.xdmod_resource_id, r.xdmod_cluster_id FROM `a_tree` vt, resource r where vt.resource_id = r.resource_id ". - ($start_date !== NULL ? " and '$start_date' <= end_time " : " "). - ($end_date !== NULL ? " and '$end_date' >= start_time " : " "). - (count($processorCountWheres)>0 ? " and ( ".implode(' or ',$processorCountWheres)." ) " : " "). - (count($metricWheres)>0 ? " and ( ".implode(' or ',$metricWheres)." ) " : " "). + ($start_date !== null ? " and '$start_date' <= end_time " : " "). + ($end_date !== null ? " and '$end_date' >= start_time " : " "). + (count($processorCountWheres)>0 ? " and ( ".implode(' or ', $processorCountWheres)." ) " : " "). + (count($metricWheres)>0 ? " and ( ".implode(' or ', $metricWheres)." ) " : " "). " order by r.resource "; $results = $this->db->query($sql); @@ -392,34 +390,34 @@ public function getResources($start_date = NULL, $end_date = NULL, array $pu_cou $resources[$row['nickname']] = $resource; } - if($user!==NULL){ + if($user!==null) { $roles=$user->getRoles(); - if(in_array("mgr",$roles)||in_array("po",$roles)||in_array("dev",$roles)){ + if(in_array("mgr", $roles)||in_array("po", $roles)||in_array("dev", $roles)) { //$allResources } - elseif(in_array("cd",$roles)||in_array("cs",$roles)){ - $access_to_some_resource=true; - + elseif(in_array("cd", $roles)||in_array("cs", $roles)) { //get all associated organization $organizations = array( $user->getOrganizationID() ); - #get resource_id for all associated resources - $rr=$this->getResourceListing(date_format(date_sub(date_create(), date_interval_create_from_date_string("90 days")),'Y-m-d'),date_format(date_create(),'Y-m-d')); + // get resource_id for all associated resources + $rr=$this->getResourceListing(date_format(date_sub(date_create(), date_interval_create_from_date_string("90 days")), 'Y-m-d'), date_format(date_create(), 'Y-m-d')); $organizations_resources_id=array(); foreach($rr as $r){ - if(in_array($r["organization_id"], $organizations)) + if(in_array($r["organization_id"], $organizations)) { $organizations_resources_id[]=$r["id"]; + } } $allResources2=array(); foreach($resources as $resource) { - if(in_array($resource->xdmod_resource_id, $organizations_resources_id)) + if(in_array($resource->xdmod_resource_id, $organizations_resources_id)) { $allResources2[]=$resource; + } } $resources=$allResources2; } @@ -429,18 +427,19 @@ public function getResources($start_date = NULL, $end_date = NULL, array $pu_cou } return $resources; - } // getResources() + } /** * This function has been lifted from the XSEDE Modules Compliance class so that AppKernels can * be used by Open Source Users. Retrieves a list of resources filtered by the optionally provided * `$start_date` and `$end_date` * - * @param string|null $start_date - * @param string|null $end_date + * @param string|null $start_date + * @param string|null $end_date * @return mixed */ - public function getResourceListing($start_date = null, $end_date = null) { + public function getResourceListing($start_date = null, $end_date = null) + { // Order by descending end_date and processors @@ -526,18 +525,17 @@ public function getResourceListing($start_date = null, $end_date = null) { // -------------------------------------------------------------------------------- - public function getProcessingUnits($start_date = NULL, $end_date = NULL, array $resource_ids = array(), array $metrics = array()) - + public function getProcessingUnits($start_date = null, $end_date = null, array $resource_ids = array(), array $metrics = array()) { $processingUnitList = array(); $metricWheres = $this->getMetricWheres($metrics); $sql = "SELECT distinct vt.num_units, vt.processor_unit FROM `a_tree` vt, app_kernel_def akd where vt.ak_def_id = akd.ak_def_id ". - ($start_date !== NULL ? " and '$start_date' <= end_time " : " "). - ($end_date !== NULL ? " and '$end_date' >= start_time " : " "). - (count($resource_ids)>0?" and vt.resource_id in (".implode(',',$resource_ids).") ": " "). - (count($metricWheres)>0 ? " and ( ".implode(' or ',$metricWheres)." ) " : " "). + ($start_date !== null ? " and '$start_date' <= end_time " : " "). + ($end_date !== null ? " and '$end_date' >= start_time " : " "). + (count($resource_ids)>0?" and vt.resource_id in (".implode(',', $resource_ids).") ": " "). + (count($metricWheres)>0 ? " and ( ".implode(' or ', $metricWheres)." ) " : " "). "order by vt.processor_unit, vt.num_units "; $result = $this->db->query($sql); @@ -549,19 +547,19 @@ public function getProcessingUnits($start_date = NULL, $end_date = NULL, array $processingUnitList[] = $processing_unit; } return $processingUnitList; - } // getProcessingUnits() + } // -------------------------------------------------------------------------------- public function getUniqueAppKernels(array $resource_ids = array(), array $node_counts = array(), array $core_counts = array()) { - $processorCountWheres = $this->getProcessorCountWheres($node_counts,$core_counts); + $processorCountWheres = $this->getProcessorCountWheres($node_counts, $core_counts); $sql = "SELECT distinct vt.ak_def_id, vt.ak_name, akd.description, unix_timestamp(min(start_time)) as start_ts, unix_timestamp(max(end_time)) as end_ts FROM `a_tree` vt, app_kernel_def akd where vt.ak_def_id = akd.ak_def_id and akd.enabled = 1 and akd.visible = 1 ". - (count($resource_ids)>0?" and vt.resource_id in (".implode(',',$resource_ids).") ": " "). - (count($processorCountWheres)>0 ? " and ( ".implode(' or ',$processorCountWheres)." ) " : " "). + (count($resource_ids)>0?" and vt.resource_id in (".implode(',', $resource_ids).") ": " "). + (count($processorCountWheres)>0 ? " and ( ".implode(' or ', $processorCountWheres)." ) " : " "). "group by vt.ak_def_id order by vt.ak_name "; $result = $this->db->query($sql); @@ -582,40 +580,41 @@ public function getUniqueAppKernels(array $resource_ids = array(), array $node_c $uniqueAppKernelList[$row['ak_def_id']] = $ak_def; } return $uniqueAppKernelList; - } // getUniqueAppKernels() + } // -------------------------------------------------------------------------------- - public function getMetrics($ak_def_id, $start_date = NULL, $end_date = NULL, array $resource_ids = array(), array $pu_counts = array()) + public function getMetrics($ak_def_id, $start_date = null, $end_date = null, array $resource_ids = array(), array $pu_counts = array()) { $processorCountWheres = $this->getProcessorCountWheres($pu_counts); $sql = "SELECT distinct vt.metric_id, vt.metric, vt.processor_unit, vt.num_units FROM `a_tree` vt, app_kernel_def akd where vt.ak_def_id = akd.ak_def_id and akd.enabled = 1 and akd.visible = 1 ". - ($ak_def_id !== NULL ? " and vt.ak_def_id = $ak_def_id " : " " ). - ($start_date !== NULL ? " and '$start_date' <= end_time " : " "). - ($end_date !== NULL ? " and '$end_date' >= start_time " : " "). - (count($resource_ids)>0?" and vt.resource_id in (".implode(',',$resource_ids).") ": " "). - (count($processorCountWheres)>0 ? " and ( ".implode(' or ',$processorCountWheres)." ) " : " "). + ($ak_def_id !== null ? " and vt.ak_def_id = $ak_def_id " : " " ). + ($start_date !== null ? " and '$start_date' <= end_time " : " "). + ($end_date !== null ? " and '$end_date' >= start_time " : " "). + (count($resource_ids)>0?" and vt.resource_id in (".implode(',', $resource_ids).") ": " "). + (count($processorCountWheres)>0 ? " and ( ".implode(' or ', $processorCountWheres)." ) " : " "). "order by vt.metric"; $result = $this->db->query($sql); $metrics = array(); foreach($result as $row ) { - $metric = new InstanceMetric($row['metric'],NULL); + $metric = new InstanceMetric($row['metric'], null); $metric->id = $row['metric_id']; $metrics[$row['metric_id']] = $metric; } return $metrics; - } // getMetrics() + } // -------------------------------------------------------------------------------- - public function getDataset($akId, + public function getDataset( + $akId, $resourceId, $metricId, $numProcUnits, @@ -624,13 +623,11 @@ public function getDataset($akId, $metadataOnly = false, $debugMode = false, $datesAsEpoch = true, - $maximizeQueryCacheUsage = true) - { + $maximizeQueryCacheUsage = true + ) { - $restrictions = array('ak' => $akId, - //'resource' => $resourceId, - //'metric' => $metricId, - //'num_units' => $numProcUnits, + $restrictions = array( + 'ak' => $akId, 'start' => $startTime, 'end' => $endTime, 'metadata_only' => $metadataOnly, @@ -664,43 +661,56 @@ public function getDataset($akId, list($query, $params) = $this->getDataPointsQuery($restrictions); - $retStatement = $this->getDB()->query($query, $params, true); + $retStatement = $this->getDB()->query($query, $params, true); $retStatement->execute(); - $prevEnvVersion = NULL; + $prevEnvVersion = null; $prev = new Tuple(4); $current = new Tuple(4); $datasetList = array(); - $dataset = NULL; + $dataset = null; while ( $row = $retStatement->fetch(\PDO::FETCH_ASSOC, \PDO::FETCH_ORI_NEXT) ) { // Amin needs the query to return all data for building thumbnails so skip // unwanted records here. - if($resourceId != NULL && $row['resource_id'] != $resourceId) continue; - if($metricId != NULL && $row['metric_id'] != $metricId) continue; - if($numProcUnits != NULL && $row['num_units'] != $numProcUnits) continue; + if($resourceId != null && $row['resource_id'] != $resourceId) { + continue; + } + if($metricId != null && $row['metric_id'] != $metricId) { + continue; + } + if($numProcUnits != null && $row['num_units'] != $numProcUnits) { + continue; + } $current->set($row['ak_name'], $row['resource'], $row['metric'], $row['num_units']); - if ( $current != $prev ) - { - if ( NULL !== $dataset ) + if ($current != $prev ) { + if (null !== $dataset ) { $datasetList[] = $dataset; - $dataset = new Dataset($row['ak_name'], $row['ak_def_id'], - $row['resource'], $row['resource_id'], - $row['metric'], $row['metric_id'], $row['unit'], + } + $dataset = new Dataset( + $row['ak_name'], + $row['ak_def_id'], + $row['resource'], + $row['resource_id'], + $row['metric'], + $row['metric_id'], + $row['unit'], $row['num_units'] . " " . $row['processor_unit'] . ( $row['num_units'] > 1 ? "s" : "" ), $akList[$row['ak_def_id']]->description, $row['num_units'], - $resourceList[$row['resource_id']]->description); - if ( ! $metadataOnly ) $prevEnvVersion = $row['env_version']; + $resourceList[$row['resource_id']]->description + ); + if (! $metadataOnly ) { + $prevEnvVersion = $row['env_version']; + } } - if ( ! $metadataOnly ) - { + if (! $metadataOnly ) { $dataset->valueVector[] = $row['metric_value']; $dataset->timeVector[] = $row['collected']; $dataset->controlVector[] = $row['control']; @@ -715,12 +725,13 @@ public function getDataset($akId, } $prev->set($row['ak_name'], $row['resource'], $row['metric'], $row['num_units']); - } // foreach ( $retval as $row ) + } - if ( NULL !== $dataset ) + if (null !== $dataset ) { $datasetList[] = $dataset; + } return $datasetList; - } // getDataset() + } // -------------------------------------------------------------------------------- // Load resources from the database. By default only those marked as enabled @@ -735,7 +746,7 @@ public function getDataset($akId, // nickname (short name) and the value is the database resource identifier. // -------------------------------------------------------------------------------- - public function loadResources(array $criteria = NULL) + public function loadResources(array $criteria = null) { $sqlParams = array(); @@ -744,34 +755,35 @@ public function loadResources(array $criteria = NULL) $sqlCriteria = array('inc_disabled' => "enabled = 1", 'inc_hidden' => "visible = 1"); - if ( NULL !== $criteria ) - { - foreach ( $criteria as $key => $value ) - { - switch ($key) - { - case 'inc_disabled': - $sqlCriteria[$key] = NULL; - break; - case 'inc_hidden': - if ( $value ) unset($sqlCriteria[$key]); - break; - case 'filter': - $sqlCriteria[$key] = "nickname like ?"; - $sqlParams[] = $this->convertWildcards($value); - break; - default: break; - } // switch ($key) - } // foreach ( $criteria as $key => $value ) - } // if ( NULL !== $criteria ) + if (null !== $criteria ) { + foreach ( $criteria as $key => $value ) { + switch ($key) { + case 'inc_disabled': + $sqlCriteria[$key] = null; + break; + case 'inc_hidden': + if ($value ) { + unset($sqlCriteria[$key]); + } + break; + case 'filter': + $sqlCriteria[$key] = "nickname like ?"; + $sqlParams[] = $this->convertWildcards($value); + break; + default: + break; + } + } + } $sql = "SELECT resource_id, resource, nickname, description , enabled, visible FROM resource"; - if ( 0 != count($sqlCriteria) ) - $sql .= " WHERE " . implode(" AND ", $sqlCriteria); + if (0 != count($sqlCriteria) ) { + $sql .= " WHERE " . implode(" AND ", $sqlCriteria); + } $result = $this->db->query($sql, $sqlParams); - while ( FALSE !== ($row = current($result)) ) + while ( false !== ($row = current($result)) ) { $resource = new AKResource; $resource->id = $row['resource_id']; @@ -786,7 +798,7 @@ public function loadResources(array $criteria = NULL) return $this->resourceList; - } // loadResources() + } // -------------------------------------------------------------------------------- // Load application kernel definitions from the database. By default only @@ -808,105 +820,110 @@ public function loadResources(array $criteria = NULL) // the value is an AppKernelDefinition object // -------------------------------------------------------------------------------- - public function loadTreeLevel(array $criteria = NULL) + public function loadTreeLevel(array $criteria = null) { $sqlParams = array(); $sqlCriteria = array(); - $groupBy = NULL; - $orderBy = NULL; + $groupBy = null; + $orderBy = null; $debugMode = ( array_key_exists('debug', $criteria) && $criteria['debug'] ); $sql = "SELECT * ".($debugMode ?'':", unix_timestamp(min(start_time)) as start_ts, unix_timestamp(max(end_time)) as end_ts ")." FROM " . ( $debugMode ? "v_tree_debug" : "a_tree" ); - if ( NULL !== $criteria && 0 != count($criteria) ) - { - foreach ( $criteria as $key => $value ) - { - if ( NULL === $value ) continue; - switch ($key) - { + if (null !== $criteria && 0 != count($criteria) ) { + foreach ( $criteria as $key => $value ) { + if (null === $value ) { + continue; + } + switch ($key) { + case 'ak': + $sqlCriteria[] = "ak_def_id = ?"; + $sqlParams[] = $value; + break; + case 'resource': + $sqlCriteria[] = "resource_id = ?"; + $sqlParams[] = $value; + break; + case 'metric': + $sqlCriteria[] = "metric_id = ?"; + $sqlParams[] = $value; + break; + case 'num_units': + $sqlCriteria[] = "num_units = ?"; + $sqlParams[] = $value; + break; + case 'status': + $sqlCriteria[] = "status = ?"; + $sqlParams[] = $value; + break; + case 'start': + if ($debugMode ) { + $sqlCriteria[] = "? <= collected"; + } else { + $sqlCriteria[] = "FROM_UNIXTIME(?) <= end_time"; + } + $sqlParams[] = $value; + break; + case 'end': + if ($debugMode ) { + $sqlCriteria[] = "? >= collected"; + } else { + $sqlCriteria[] = "FROM_UNIXTIME(?) >= start_time"; + } + $sqlParams[] = $value; + break; + default: + break; + } + } + } + + // Use the group by to return distinct values for the tree. + + if (array_key_exists('group_by', $criteria) && null !== $criteria['group_by'] ) { + switch ($criteria['group_by']) { case 'ak': - $sqlCriteria[] = "ak_def_id = ?"; - $sqlParams[] = $value; + $groupBy = 'ak_def_id'; + $orderBy = 'ak_name'; break; case 'resource': - $sqlCriteria[] = "resource_id = ?"; - $sqlParams[] = $value; + $groupBy = 'resource_id'; + $orderBy = 'resource'; break; case 'metric': - $sqlCriteria[] = "metric_id = ?"; - $sqlParams[] = $value; - break; - case 'num_units': - $sqlCriteria[] = "num_units = ?"; - $sqlParams[] = $value; + $groupBy = 'metric_id'; + $orderBy = 'metric'; break; - case 'status': - $sqlCriteria[] = "status = ?"; - $sqlParams[] = $value; - break; - case 'start': - if ( $debugMode ) $sqlCriteria[] = "? <= collected"; - else $sqlCriteria[] = "FROM_UNIXTIME(?) <= end_time"; - $sqlParams[] = $value; - break; - case 'end': - if ( $debugMode ) $sqlCriteria[] = "? >= collected"; - else $sqlCriteria[] = "FROM_UNIXTIME(?) >= start_time"; - $sqlParams[] = $value; + case 'num_proc_units': + $groupBy = 'num_units'; + $orderBy = 'num_units'; break; default: break; - } // switch ($key) - } // foreach ( $criteria as $key => $value ) - } // else ( NULL !== $criteria ) - - // Use the group by to return distinct values for the tree. + } + } - if ( array_key_exists('group_by', $criteria) && NULL !== $criteria['group_by'] ) - { - switch ($criteria['group_by']) - { - case 'ak': - $groupBy = 'ak_def_id'; - $orderBy = 'ak_name'; - break; - case 'resource': - $groupBy = 'resource_id'; - $orderBy = 'resource'; - break; - case 'metric': - $groupBy = 'metric_id'; - $orderBy = 'metric'; - break; - case 'num_proc_units': - $groupBy = 'num_units'; - $orderBy = 'num_units'; - break; - default: - break; - } // switch ($criteria['group_by']) - } // if ( array_key_exists('group_by', $criteria) ... ) - - if ( 0 != count($sqlCriteria) ) + if (0 != count($sqlCriteria) ) { $sql .= " WHERE " . implode(" AND ", $sqlCriteria); - if ( NULL !== $groupBy ) + } + if (null !== $groupBy ) { $sql .= " GROUP BY $groupBy"; - if ( NULL !== $orderBy ) + } + if (null !== $orderBy ) { $sql .= " ORDER BY $orderBy"; + } $result = $this->db->query($sql, $sqlParams); $retval = array(); - while ( FALSE !== ($row = current($result)) ) + while ( false !== ($row = current($result)) ) { $retval[] = $row; next($result); } return $retval; - - } // loadTreeLevel() + } // -------------------------------------------------------------------------------- // Load application kernel definitions from the database. By default only @@ -928,104 +945,109 @@ public function loadTreeLevel(array $criteria = NULL) // the value is an AppKernelDefinition object // -------------------------------------------------------------------------------- - public function loadTreeLevelDebug(array $criteria = NULL) + public function loadTreeLevelDebug(array $criteria = null) { $sqlParams = array(); $sqlCriteria = array(); - $groupBy = NULL; - $orderBy = NULL; + $groupBy = null; + $orderBy = null; $debugMode = ( array_key_exists('debug', $criteria) && $criteria['debug'] ); $sql = "SELECT * FROM " . ( $debugMode ? "v_tree_debug" : "a_tree" ); - if ( NULL !== $criteria && 0 != count($criteria) ) - { - foreach ( $criteria as $key => $value ) - { - if ( NULL === $value ) continue; - switch ($key) - { + if (null !== $criteria && 0 != count($criteria) ) { + foreach ( $criteria as $key => $value ) { + if (null === $value ) { + continue; + } + switch ($key) { + case 'ak': + $sqlCriteria[] = "ak_def_id = ?"; + $sqlParams[] = $value; + break; + case 'resource': + $sqlCriteria[] = "resource_id = ?"; + $sqlParams[] = $value; + break; + case 'metric': + $sqlCriteria[] = "metric_id = ?"; + $sqlParams[] = $value; + break; + case 'num_units': + $sqlCriteria[] = "num_units = ?"; + $sqlParams[] = $value; + break; + case 'status': + $sqlCriteria[] = "status = ?"; + $sqlParams[] = $value; + break; + case 'start': + if ($debugMode ) { + $sqlCriteria[] = "? <= collected"; + } else { + $sqlCriteria[] = "FROM_UNIXTIME(?) <= end_time"; + } + $sqlParams[] = $value; + break; + case 'end': + if ($debugMode ) { + $sqlCriteria[] = "? >= collected"; + } else { + $sqlCriteria[] = "FROM_UNIXTIME(?) >= start_time"; + } + $sqlParams[] = $value; + break; + default: + break; + } + } + } + + // Use the group by to return distinct values for the tree. + + if (array_key_exists('group_by', $criteria) && null !== $criteria['group_by'] ) { + switch ($criteria['group_by']) { case 'ak': - $sqlCriteria[] = "ak_def_id = ?"; - $sqlParams[] = $value; + $groupBy = 'ak_def_id'; + $orderBy = 'ak_name'; break; case 'resource': - $sqlCriteria[] = "resource_id = ?"; - $sqlParams[] = $value; + $groupBy = 'resource_id'; + $orderBy = 'resource'; break; case 'metric': - $sqlCriteria[] = "metric_id = ?"; - $sqlParams[] = $value; - break; - case 'num_units': - $sqlCriteria[] = "num_units = ?"; - $sqlParams[] = $value; + $groupBy = 'metric_id'; + $orderBy = 'metric'; break; - case 'status': - $sqlCriteria[] = "status = ?"; - $sqlParams[] = $value; - break; - case 'start': - if ( $debugMode ) $sqlCriteria[] = "? <= collected"; - else $sqlCriteria[] = "FROM_UNIXTIME(?) <= end_time"; - $sqlParams[] = $value; - break; - case 'end': - if ( $debugMode ) $sqlCriteria[] = "? >= collected"; - else $sqlCriteria[] = "FROM_UNIXTIME(?) >= start_time"; - $sqlParams[] = $value; + case 'num_proc_units': + $groupBy = 'num_units'; + $orderBy = 'num_units'; break; default: break; - } // switch ($key) - } // foreach ( $criteria as $key => $value ) - } // else ( NULL !== $criteria ) - - // Use the group by to return distinct values for the tree. + } + } - if ( array_key_exists('group_by', $criteria) && NULL !== $criteria['group_by'] ) - { - switch ($criteria['group_by']) - { - case 'ak': - $groupBy = 'ak_def_id'; - $orderBy = 'ak_name'; - break; - case 'resource': - $groupBy = 'resource_id'; - $orderBy = 'resource'; - break; - case 'metric': - $groupBy = 'metric_id'; - $orderBy = 'metric'; - break; - case 'num_proc_units': - $groupBy = 'num_units'; - $orderBy = 'num_units'; - break; - default: - break; - } // switch ($criteria['group_by']) - } // if ( array_key_exists('group_by', $criteria) ... ) - - if ( 0 != count($sqlCriteria) ) + if (0 != count($sqlCriteria) ) { $sql .= " WHERE " . implode(" AND ", $sqlCriteria); - if ( NULL !== $groupBy ) + } + if (null !== $groupBy ) { $sql .= " GROUP BY $groupBy"; - if ( NULL !== $orderBy ) + } + if (null !== $orderBy ) { $sql .= " ORDER BY $orderBy"; + } $result = $this->db->query($sql, $sqlParams); $retval = array(); - while ( FALSE !== ($row = current($result)) ) + while ( false !== ($row = current($result)) ) { $retval[] = $row; next($result); } return $retval; - - } // loadTreeLevelDebug() + } // -------------------------------------------------------------------------------- // Get the query string to retrieve the application kernel definitions from the @@ -1046,7 +1068,7 @@ public function loadTreeLevelDebug(array $criteria = NULL) // @returns A sql query string // -------------------------------------------------------------------------------- - public function getDataPointsQuery(array $criteria = NULL) + public function getDataPointsQuery(array $criteria = null) { $sqlParams = array(); $sqlCriteria = array(); @@ -1059,73 +1081,71 @@ public function getDataPointsQuery(array $criteria = NULL) $sql = "SELECT * FROM " . ( $metadataOnly ? "a_tree2" : "a_data2" ); - if ( NULL !== $criteria && 0 != count($criteria) ) - { - foreach ( $criteria as $key => $value ) - { - if ( NULL === $value ) continue; - switch ($key) - { - case 'ak': - $sqlCriteria[] = "ak_def_id = ?"; - $sqlParams[] = $value; - break; - case 'resource': - $sqlCriteria[] = "resource_id = ?"; - $sqlParams[] = $value; - break; - case 'metric': - $sqlCriteria[] = "metric_id = ?"; - $sqlParams[] = $value; - break; - case 'num_units': - $sqlCriteria[] = "num_units = ?"; - $sqlParams[] = $value; - break; - case 'start': - if ( $metadataOnly ) { - $sqlCriteria[] = "? <= UNIX_TIMESTAMP(end_time)"; - } else { - if($datesAsEpoch) - { - $sqlCriteria[] = "? <= collected"; - } - else - { - $sqlCriteria[] = "UNIX_TIMESTAMP(?) <= collected"; - } - } - $sqlParams[] = $value; - break; - case 'end': - if ( $metadataOnly ) { - $sqlCriteria[] = "(UNIX_TIMESTAMP(?)+86399) >= UNIX_TIMESTAMP(start_time)"; - } else { - if($datesAsEpoch) - { - $sqlCriteria[] = "? >= collected"; + if (null !== $criteria && 0 != count($criteria) ) { + foreach ( $criteria as $key => $value ) { + if (null === $value ) { + continue; + } + switch ($key) { + case 'ak': + $sqlCriteria[] = "ak_def_id = ?"; + $sqlParams[] = $value; + break; + case 'resource': + $sqlCriteria[] = "resource_id = ?"; + $sqlParams[] = $value; + break; + case 'metric': + $sqlCriteria[] = "metric_id = ?"; + $sqlParams[] = $value; + break; + case 'num_units': + $sqlCriteria[] = "num_units = ?"; + $sqlParams[] = $value; + break; + case 'start': + if ($metadataOnly ) { + $sqlCriteria[] = "? <= UNIX_TIMESTAMP(end_time)"; + } else { + if($datesAsEpoch) { + $sqlCriteria[] = "? <= collected"; + } + else + { + $sqlCriteria[] = "UNIX_TIMESTAMP(?) <= collected"; + } } - else - { - $sqlCriteria[] = "(UNIX_TIMESTAMP(?)+86399) >= collected"; + $sqlParams[] = $value; + break; + case 'end': + if ($metadataOnly ) { + $sqlCriteria[] = "(UNIX_TIMESTAMP(?)+86399) >= UNIX_TIMESTAMP(start_time)"; + } else { + if($datesAsEpoch) { + $sqlCriteria[] = "? >= collected"; + } + else + { + $sqlCriteria[] = "(UNIX_TIMESTAMP(?)+86399) >= collected"; + } } - } - $sqlParams[] = $value; - break; - default: - break; - } // switch ($key) - } // foreach ( $criteria as $key => $value ) - } // else ( NULL !== $criteria ) + $sqlParams[] = $value; + break; + default: + break; + } + } + } $sqlCriteria[] = " status = 'success' "; - if ( 0 != count($sqlCriteria) ) + if (0 != count($sqlCriteria) ) { $sql .= " WHERE " . implode(" AND ", $sqlCriteria); + } // the datasets need to guarantee order for the plotAction to work correctly - AG 4/12/11 $sql .= ' ORDER BY ak_name, resource, metric, num_units, collected'; return array($sql, $sqlParams); - } // getDataPointsQuery() + } // -------------------------------------------------------------------------------- // Load application kernel definitions from the database. By default only @@ -1147,13 +1167,13 @@ public function getDataPointsQuery(array $criteria = NULL) // the value is an AppKernelDefinition object // -------------------------------------------------------------------------------- - public function loadDataPoints(array $criteria = NULL) + public function loadDataPoints(array $criteria = null) { list($sql, $sqlParams) = $this->getDataPointsQuery($criteria); $result = $this->db->query($sql, $sqlParams); $retval = array(); - while ( FALSE !== ($row = current($result)) ) + while ( false !== ($row = current($result)) ) { $row['sql'] = $sql . " (" . implode(",", $sqlParams) . ")"; $retval[] = $row; @@ -1162,7 +1182,7 @@ public function loadDataPoints(array $criteria = NULL) return $retval; - } // loadDataPoints() + } // -------------------------------------------------------------------------------- // Load application kernels from the database. A single application kernel @@ -1176,7 +1196,7 @@ public function loadDataPoints(array $criteria = NULL) // @returns A list of application kernel names // -------------------------------------------------------------------------------- - public function loadAppKernels($loadDisabled = FALSE,$returnMap=false) + public function loadAppKernels($loadDisabled = false, $returnMap = false) { $sql = "SELECT ak_base_name as name, ak_id, num_units @@ -1188,17 +1208,18 @@ public function loadAppKernels($loadDisabled = FALSE,$returnMap=false) reset($result); $this->akIdMap = array(); - while ( FALSE !== ($row = current($result)) ) + while ( false !== ($row = current($result)) ) { $this->akIdMap[$row['name']][$row['num_units']] = $row['ak_id']; next($result); } - if($returnMap) + if($returnMap) { return $this->akIdMap; - else + } else { return array_keys($this->akIdMap); - } // loadAppKernels() + } + } // -------------------------------------------------------------------------------- // Load application kernel execution instances from the database. Only basic @@ -1212,7 +1233,7 @@ public function loadAppKernels($loadDisabled = FALSE,$returnMap=false) // num_units, version, collected, and status. // -------------------------------------------------------------------------------- - public function loadAppKernelInstances($appKernelDefId = NULL, $resourceId = NULL) + public function loadAppKernelInstances($appKernelDefId = null, $resourceId = null) { $criteriaList = array(); $instanceList = array(); @@ -1223,11 +1244,14 @@ public function loadAppKernelInstances($appKernelDefId = NULL, $resourceId = NUL JOIN app_kernel ak USING(ak_id) JOIN resource r USING(resource_id)"; - if ( NULL !== $appKernelDefId ) $criteriaList[] = "i.ak_def_id = $appKernelDefId"; - if ( NULL !== $resourceId ) $criteriaList[] = "resource_id = $resourceId"; + if (null !== $appKernelDefId ) { + $criteriaList[] = "i.ak_def_id = $appKernelDefId"; + } + if (null !== $resourceId ) { + $criteriaList[] = "resource_id = $resourceId"; + } - if ( 0 != count($criteriaList) ) - { + if (0 != count($criteriaList) ) { $sql .= " WHERE " . implode(" AND ", $criteriaList); } @@ -1245,8 +1269,7 @@ public function loadAppKernelInstances($appKernelDefId = NULL, $resourceId = NUL } return $instanceList; - - } // loadAppKernelInstances() + } // -------------------------------------------------------------------------------- // Load detailed information about a specific application kernel execution @@ -1263,14 +1286,12 @@ public function loadAppKernelInstances($appKernelDefId = NULL, $resourceId = NUL // @returns TRUE on success, FALSE if there was an error // -------------------------------------------------------------------------------- - public function loadAppKernelInstanceInfo(array $options, - InstanceData &$ak, - $loadDebugInfo = FALSE) + public function loadAppKernelInstanceInfo(array $options, InstanceData &$ak, $loadDebugInfo = false) { - if ( 0 == count($options) || - ( ! isset($options['ak_def_id']) || ! isset($options['collected']) || ! isset($options['resource_id']) ) && - ! isset($options['instance_id']) ) - { + if (0 == count($options) + || ( ! isset($options['ak_def_id']) || ! isset($options['collected']) || ! isset($options['resource_id']) ) + && ! isset($options['instance_id']) + ) { $msg .= "'ak_def_id', 'collected', and 'resource_id' options are required"; throw new Exception($msg); } @@ -1278,44 +1299,38 @@ public function loadAppKernelInstanceInfo(array $options, $criteriaList = array(); $paramList = array(); - // We are now collecting the instance id so we can query using this only - // for direct access to a single instance. - - if ( isset($options['instance_id']) && NULL !== $options['instance_id'] ) - { - $criteriaList[] = "i.instance_id = ?"; - $paramList[] = $options['instance_id']; - } - else - { - if ( NULL !== $options['ak_def_id'] ) - { - $criteriaList[] = "i.ak_def_id = ?"; - $paramList[] = $options['ak_def_id']; - } - if ( NULL !== $options['resource_id'] ) - { - $criteriaList[] = "i.resource_id = ?"; - $paramList[] = $options['resource_id']; + // We are now collecting the instance id so we can query using this only + // for direct access to a single instance. + + if (isset($options['instance_id']) && null !== $options['instance_id'] ) { + $criteriaList[] = "i.instance_id = ?"; + $paramList[] = $options['instance_id']; } - if ( NULL !== $options['collected'] ) + else { - $criteriaList[] = "i.collected = FROM_UNIXTIME(?)"; - $paramList[] = $options['collected']; - } + if (null !== $options['ak_def_id'] ) { + $criteriaList[] = "i.ak_def_id = ?"; + $paramList[] = $options['ak_def_id']; + } + if (null !== $options['resource_id'] ) { + $criteriaList[] = "i.resource_id = ?"; + $paramList[] = $options['resource_id']; + } + if (null !== $options['collected'] ) { + $criteriaList[] = "i.collected = FROM_UNIXTIME(?)"; + $paramList[] = $options['collected']; + } - if ( isset($options['num_units']) && NULL !== $options['num_units'] ) - { - $criteriaList[] = "a.num_units = ?"; - $paramList[] = $options['num_units']; - } + if (isset($options['num_units']) && null !== $options['num_units'] ) { + $criteriaList[] = "a.num_units = ?"; + $paramList[] = $options['num_units']; + } - if ( isset($options['status']) && NULL !== $options['status'] ) - { - $criteriaList[] = "i.status = ?"; - $paramList[] = $options['status']; + if (isset($options['status']) && null !== $options['status'] ) { + $criteriaList[] = "i.status = ?"; + $paramList[] = $options['status']; + } } - } // else ( isset($options['instance_id']) && NULL !== $options['instance_id'] ) $sql = "SELECT i.ak_id, i.collected, i.status, i.env_version, i.instance_id, i.job_id, @@ -1326,18 +1341,19 @@ public function loadAppKernelInstanceInfo(array $options, JOIN app_kernel_def d USING(ak_def_id) JOIN app_kernel a USING (ak_id)"; - if ( 0 != count($criteriaList) ) $sql .= "\nWHERE " . implode(" AND ", $criteriaList); + if (0 != count($criteriaList) ) { + $sql .= "\nWHERE " . implode(" AND ", $criteriaList); + } - // print "$sql\n"; - // print_r($paramList); $result = $this->db->query($sql, $paramList); - if ( 0 == count($result) ) - { - $this->log("No matching app kernels found (ak_def_id = {$options['ak_def_id']}, " . + if (0 == count($result) ) { + $this->log( + "No matching app kernels found (ak_def_id = {$options['ak_def_id']}, " . "collected = {$options['collected']}, resource_id = {$options['resource_id']})", - PEAR_LOG_WARNING); - return FALSE; + PEAR_LOG_WARNING + ); + return false; } $row = array_shift($result); @@ -1364,52 +1380,58 @@ public function loadAppKernelInstanceInfo(array $options, JOIN app_kernel a USING (ak_id) JOIN parameter_data pd USING(ak_id, collected, resource_id) JOIN parameter p USING(parameter_id)"; - if ( 0 != count($criteriaList) ) $sql .= " WHERE " . implode(" AND ", $criteriaList); + if (0 != count($criteriaList) ) { + $sql .= " WHERE " . implode(" AND ", $criteriaList); + } $result = $this->db->query($sql, $paramList); reset($result); - while ( FALSE !== ($row = current($result)) ) + while ( false !== ($row = current($result)) ) { - $ak->ak_parameters[] = new InstanceParameter($row['name'], + $ak->ak_parameters[] = new InstanceParameter( + $row['name'], $row['value'], $row['unit'], - $row['tag']); + $row['tag'] + ); next($result); } - $sql = - "SELECT m.name, m.unit, md.value_string as value + $sql = "SELECT m.name, m.unit, md.value_string as value FROM ak_instance i JOIN app_kernel a USING (ak_id) JOIN metric_data md USING(ak_id, collected, resource_id) JOIN metric m USING(metric_id)"; - if ( 0 != count($criteriaList) ) $sql .= " WHERE " . implode(" AND ", $criteriaList); + if (0 != count($criteriaList) ) { + $sql .= " WHERE " . implode(" AND ", $criteriaList); + } $result = $this->db->query($sql, $paramList); reset($result); - while ( FALSE !== ($row = current($result)) ) + while ( false !== ($row = current($result)) ) { - $ak->ak_metrics[] = new InstanceMetric($row['name'], + $ak->ak_metrics[] = new InstanceMetric( + $row['name'], $row['value'], - $row['unit']); + $row['unit'] + ); next($result); } - if ( $loadDebugInfo ) - { - $sql = - "SELECT UNCOMPRESS(message) as message, UNCOMPRESS(stderr) as stderr, walltime, cputime, memory, + if ($loadDebugInfo ) { + $sql = "SELECT UNCOMPRESS(message) as message, UNCOMPRESS(stderr) as stderr, walltime, cputime, memory, UNCOMPRESS(ak_error_cause) as ak_error_cause, UNCOMPRESS(ak_error_message) as ak_error_message, ak_queue_time FROM ak_instance_debug d JOIN ak_instance i USING(ak_id, collected, resource_id) JOIN app_kernel a USING (ak_id)"; - if ( 0 != count($criteriaList) ) $sql .= " WHERE " . implode(" AND ", $criteriaList); + if (0 != count($criteriaList) ) { + $sql .= " WHERE " . implode(" AND ", $criteriaList); + } $result = $this->db->query($sql, $paramList); - if ( count($result) > 0 ) - { + if (count($result) > 0 ) { $row = array_shift($result); $ak->deployment_message = $row['message']; $ak->deployment_stderr = $row['stderr']; @@ -1420,11 +1442,10 @@ public function loadAppKernelInstanceInfo(array $options, $ak->ak_error_message = $row['ak_error_message']; $ak->ak_queue_time = $row['ak_queue_time']; } - } // if ( $loadDebugInfo ) - - return TRUE; + } - } // loadAppKernelInstanceInfo() + return true; + } // -------------------------------------------------------------------------------- // Load the internal list of application kernel metrics and the application @@ -1434,7 +1455,7 @@ public function loadAppKernelInstanceInfo(array $options, // marked as disabled in the database. // -------------------------------------------------------------------------------- - private function loadAkMetrics($loadDisabled = FALSE) + private function loadAkMetrics($loadDisabled = false) { $sql = "SELECT * FROM v_ak_metrics" . ( $loadDisabled ? "" : " WHERE enabled=1"); @@ -1444,7 +1465,7 @@ private function loadAkMetrics($loadDisabled = FALSE) $this->akMetrics = array(); $this->akMetricGuids = array(); - while ( FALSE !== ($row = current($result)) ) + while ( false !== ($row = current($result)) ) { $name = $row['name']; $numUnits = $row['num_units']; @@ -1454,8 +1475,7 @@ private function loadAkMetrics($loadDisabled = FALSE) $this->akMetricGuids[$guid] = $metricId; next($result); } - - } // loadAkMetrics() + } // -------------------------------------------------------------------------------- // Load the internal list of application kernel parameters and the application @@ -1465,7 +1485,7 @@ private function loadAkMetrics($loadDisabled = FALSE) // marked as disabled in the database. // -------------------------------------------------------------------------------- - private function loadAkParameters($loadDisabled = FALSE) + private function loadAkParameters($loadDisabled = false) { $sql = "SELECT * FROM v_ak_parameters" . ( $loadDisabled ? "" : " WHERE enabled=1"); @@ -1475,7 +1495,7 @@ private function loadAkParameters($loadDisabled = FALSE) $this->akParameters = array(); $this->akParameterGuids = array(); - while ( FALSE !== ($row = current($result)) ) + while ( false !== ($row = current($result)) ) { $name = $row['name']; $numUnits = $row['num_units']; @@ -1485,8 +1505,7 @@ private function loadAkParameters($loadDisabled = FALSE) $this->akParameterGuids[$guid] = $parameterId; next($result); } - - } // loadAkParameters() + } // -------------------------------------------------------------------------------- // Compare the list of application kernels configured in an external source @@ -1505,7 +1524,9 @@ private function loadAkParameters($loadDisabled = FALSE) public function activeAppKernels(array $appKernels) { - if ( NULL === $this->akBaseNameList ) $this->loadAppKernels(); + if (null === $this->akBaseNameList ) { + $this->loadAppKernels(); + } $activeAppKernels = array(); @@ -1515,15 +1536,15 @@ public function activeAppKernels(array $appKernels) { foreach ( $resourceAkList as $akName ) { - if ( 0 !== strpos($akName, $basename) ) continue; + if (0 !== strpos($akName, $basename) ) { + continue; + } $activeAppKernels[$resourceNickname][] = $akName; } } - } // foreach ( $this->akBaseNameList as $basename ) - + } return $activeAppKernels; - - } // activeAppKernels() + } // -------------------------------------------------------------------------------- // Store data from an application kernel instance in the database. @@ -1532,21 +1553,30 @@ public function activeAppKernels(array $appKernels) // instance. // -------------------------------------------------------------------------------- - public function storeAppKernelInstance(InstanceData $ak, $replace = false, $add_to_a_data=true, $calc_controls=true, $dryRunMode=false) + public function storeAppKernelInstance(InstanceData $ak, $replace = false, $add_to_a_data = true, $calc_controls = true, $dryRunMode = false) { // Get the list of existing app kernels if we haven't done so already - if ( NULL === $this->appKernelDefinitions ) $this->loadAppKernelDefinitions(); - if ( NULL === $this->akIdMap ) $this->loadAppKernels(); - if ( NULL === $this->akMetricGuids ) $this->loadAkMetrics(); - if ( NULL === $this->akParameterGuids ) $this->loadAkParameters(); + if (null === $this->appKernelDefinitions ) { + $this->loadAppKernelDefinitions(); + } + if (null === $this->akIdMap ) { + $this->loadAppKernels(); + } + if (null === $this->akMetricGuids ) { + $this->loadAkMetrics(); + } + if (null === $this->akParameterGuids ) { + $this->loadAkParameters(); + } // Control region? // Ensure that the base app kernel name exists in the database - if ( ! isset($this->appKernelDefinitions[$ak->deployment_ak_base_name]) ) + if (! isset($this->appKernelDefinitions[$ak->deployment_ak_base_name]) ) { throw new Exception("Undefined app kernel '{$ak->deployment_ak_base_name}'"); + } // Create an app kernel instance @@ -1555,7 +1585,9 @@ public function storeAppKernelInstance(InstanceData $ak, $replace = false, $add_ $this->log("Store app kernel $ak", PEAR_LOG_DEBUG); $this->db->handle()->beginTransaction(); - if($replace)$this->db->execute('set foreign_key_checks=0;'); + if($replace) { + $this->db->execute('set foreign_key_checks=0;'); + } try { @@ -1566,8 +1598,7 @@ public function storeAppKernelInstance(InstanceData $ak, $replace = false, $add_ // If this is a PDOException get the mysql-specific error code and // handle it appropriately. The exception error is almost always 23000 // which is pretty useless. - if ( $e instanceof \PDOException && 23000 == $e->getCode() ) - { + if ($e instanceof \PDOException && 23000 == $e->getCode() ) { // If this is a duplicate key skip the app kernel, otherwise re-throw // the exception. This allows us to re-ingest data and skip what is // already in the database. @@ -1575,17 +1606,15 @@ public function storeAppKernelInstance(InstanceData $ak, $replace = false, $add_ // See http://dev.mysql.com/doc/refman/5.5/en/error-messages-server.html list ($sqlstate, $driverCode, $driverMsg) = $e->errorInfo; - if ( 1022 == $driverCode || 1062 == $driverCode || 1557 == $driverCode || 1586 == $driverCode ) - { - // $this->db->handle()->rollback(); + if (1022 == $driverCode || 1062 == $driverCode || 1557 == $driverCode || 1586 == $driverCode ) { $msg = "App kernel instance already exists: $ak, skipping. ($driverCode, '{$e->getMessage()}')"; throw new AppKernelException($msg, AppKernelException::DuplicateInstance); } - } // if ( $e instanceof \PDOException && 23000 == $e->getCode() ) + } // Not a duplicate, re-throw the exception throw $e; - } // catch ( Exception $e ) + } foreach ( $ak->ak_metrics as $metric ) { @@ -1602,18 +1631,22 @@ public function storeAppKernelInstance(InstanceData $ak, $replace = false, $add_ } $this->addDebugData($ak, $replace, $dryRunMode); - if($replace)$this->db->execute('set foreign_key_checks=1;'); + if($replace) { + $this->db->execute('set foreign_key_checks=1;'); + } $this->db->handle()->commit(); } catch (Exception $e) { $this->log("Rolling back transaction", PEAR_LOG_DEBUG); - if($replace)$this->db->execute('set foreign_key_checks=1;'); + if($replace) { + $this->db->execute('set foreign_key_checks=1;'); + } $this->db->handle()->rollback(); throw $e; - } // catch (Exception $e) - return TRUE; - } // storeAppKernelInstance() + } + return true; + } // -------------------------------------------------------------------------------- // Create a record for an application kernel instance in the database. Upon @@ -1623,19 +1656,18 @@ public function storeAppKernelInstance(InstanceData $ak, $replace = false, $add_ // @param $ak An AppKernelInstance containing data about an application kernel // instance. // -------------------------------------------------------------------------------- - private function createInstance(InstanceData &$ak, $replace, $dryRunMode=false) + private function createInstance(InstanceData &$ak, $replace, $dryRunMode = false) { $akId = $this->getAkId($ak); - if ( FALSE === ($resourceId = $this->getResourceId($ak)) ) - { + if (false === ($resourceId = $this->getResourceId($ak)) ) { throw new Exception("Unknown resource '{$ak->deployment_hostname}'"); } $appKernelDefinitionId = $this->appKernelDefinitions[$ak->deployment_ak_base_name]->id; $status = $ak->status; $controlStatus='undefined'; - if($status!=='success'){ + if($status!=='success') { $controlStatus='failed'; } @@ -1643,8 +1675,9 @@ private function createInstance(InstanceData &$ak, $replace, $dryRunMode=false) "status, ak_def_id, env_version,controlStatus) VALUES (?, FROM_UNIXTIME(?), ?, ?, ?, ?, ?, ?, ?)"; $params = array($akId, $ak->deployment_time, $resourceId, $ak->deployment_instance_id, $ak->deployment_job_id, $status, $appKernelDefinitionId, $ak->environmentVersion(), $controlStatus); - if(!$dryRunMode) + if(!$dryRunMode) { $numRows = $this->db->execute($sql, $params); + } $this->log("-> Created new app kernel instance: $ak", PEAR_LOG_DEBUG); // Set some data that will be needed for adding metrics and parameters @@ -1652,8 +1685,8 @@ private function createInstance(InstanceData &$ak, $replace, $dryRunMode=false) //$ak->db_resource_id = $resourceId; $ak->db_ak_id = $akId; - return TRUE; - } // createInstance() + return true; + } // -------------------------------------------------------------------------------- // Store debug data for an application kernel instance in the database. @@ -1661,11 +1694,10 @@ private function createInstance(InstanceData &$ak, $replace, $dryRunMode=false) // @param $ak An AppKernelInstance containing data about an application kernel // instance. // -------------------------------------------------------------------------------- - private function addDebugData(InstanceData $ak, $replace, $dryRunMode=false) + private function addDebugData(InstanceData $ak, $replace, $dryRunMode = false) { $akId = $this->getAkId($ak); - if ( FALSE === ($resourceId = $this->getResourceId($ak)) ) - { + if (false === ($resourceId = $this->getResourceId($ak)) ) { throw new Exception("Unknown resource '{$ak->deployment_hostname}'"); } $appKernelId = $this->appKernelDefinitions[$ak->deployment_ak_base_name]->id; @@ -1677,12 +1709,13 @@ private function addDebugData(InstanceData $ak, $replace, $dryRunMode=false) $ak->deployment_stderr, $ak->deployment_walltime, $ak->deployment_cputime, $ak->deployment_memory, $ak->ak_error_cause, $ak->ak_error_message, $ak->ak_queue_time); - if(!$dryRunMode) + if(!$dryRunMode) { $numRows = $this->db->execute($sql, $params); + } $this->log("-> Logged debug info for app kernel instance $ak", PEAR_LOG_DEBUG); - return TRUE; - } // addDebugData() + return true; + } // -------------------------------------------------------------------------------- // Add metric data to an application kernel instance. Associate the metric @@ -1693,74 +1726,61 @@ private function addDebugData(InstanceData $ak, $replace, $dryRunMode=false) // @param $metric An AppKernelMetric containing the metric information // -------------------------------------------------------------------------------- - private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replace, $add_to_a_data=true, $calc_controls=true, $dryRunMode=false) + private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replace, $add_to_a_data = true, $calc_controls = true, $dryRunMode = false) { $guid = $metric->guid(); - if ( ! isset($this->akMetrics[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units][$guid]) ) - { + if (! isset($this->akMetrics[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units][$guid]) ) { $sql = ($replace?'replace':'insert')." INTO ak_has_metric (ak_id, metric_id, num_units) VALUES (?,?,?)"; $params = array($ak->db_ak_id, $metric->id, $ak->deployment_num_proc_units); - if(!$dryRunMode) + if(!$dryRunMode) { $numRows = $this->db->execute($sql, $params); - else + } else { $this->log("$sql " . print_r($params, 1), PEAR_LOG_DEBUG); + } $this->akMetrics[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units][$guid] = $this->akMetricGuids[$guid]; $this->log("-> Associated metric '{$metric->name}' (id = {$metric->id}) with app kernel '{$ak->deployment_ak_name}' (ak_id = {$ak->db_ak_id})", PEAR_LOG_DEBUG); } - /*print "ak\n"; - print_r($ak); - print "metric\n"; - print_r($metric);*/ - //metric_data $sql = ($replace?'replace':'insert')." INTO metric_data (metric_id, ak_id, collected, " . "resource_id, value_string) VALUES (?, ?, FROM_UNIXTIME(?), ?, ?)"; $params = array($metric->id, $ak->db_ak_id, $ak->deployment_time, $ak->db_resource_id, $metric->value); - if(!$dryRunMode) + if(!$dryRunMode) { $numRows = $this->db->execute($sql, $params); - if($calc_controls) - { - } - if($add_to_a_data) - { + if($add_to_a_data) { //a_data and a_tree - if($ak->db_resource_visible && $ak->db_ak_def_visible && $ak->status=='success') - { + if($ak->db_resource_visible && $ak->db_ak_def_visible && $ak->status=='success') { //a_tree $sql = "SELECT UNIX_TIMESTAMP(start_time) as start_time,UNIX_TIMESTAMP(end_time) as end_time ,status FROM a_tree WHERE ak_def_id=? AND resource_id=? AND metric_id=? AND num_units=?"; $params = array($ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->deployment_num_proc_units); - $rows=$this->db->query($sql,$params); + $rows=$this->db->query($sql, $params); - if(count($rows)>1) + if(count($rows)>1) { $this->log("a_tree has more then one entries for ak_def_id, resource_id, metric_id, num_units", PEAR_LOG_ERR); + } $start_time=$ak->deployment_time; $end_time=$ak->deployment_time; $status=$ak->status; - if(count($rows)>=1) - { - if($rows[0]['start_time']<$start_time) - { + if(count($rows)>=1) { + if($rows[0]['start_time']<$start_time) { $start_time=$rows[0]['start_time']; } - if($rows[0]['end_time']>$end_time) - { + if($rows[0]['end_time']>$end_time) { $end_time=$rows[0]['end_time']; $status=$rows[0]['status']; } } - //print "\n\n".$status."\n\n"; - if(count($rows)!=0) - { + if(count($rows)!=0) { $sql = "DELETE FROM a_tree WHERE ak_def_id=? AND resource_id=? AND metric_id=? AND num_units=?"; $params = array($ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->deployment_num_proc_units); - if(!$dryRunMode) - $rows=$this->db->execute($sql,$params); + if(!$dryRunMode) { + $rows=$this->db->execute($sql, $params); + } } $sql = "insert INTO a_tree ". "(ak_name, resource, metric, unit, processor_unit, ". @@ -1774,8 +1794,9 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac $ak->deployment_num_proc_units,$ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $start_time,$end_time,$status ); - if(!$dryRunMode) + if(!$dryRunMode) { $numRows = $this->db->execute($sql, $params); + } //a_data $sql = ($replace?'replace':'insert'). @@ -1790,43 +1811,41 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac $ak->deployment_time, $ak->environmentVersion, $metric->unit, $metric->value, $ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->status ); - if(!$dryRunMode) + if(!$dryRunMode) { $numRows = $this->db->execute($sql, $params); - }//a_data2 and a_tree2 - if($ak->db_resource_visible && $ak->db_ak_def_visible && $ak->status!='queued') - { + } + } + if($ak->db_resource_visible && $ak->db_ak_def_visible && $ak->status!='queued') { //a_tree2 $sql = "SELECT UNIX_TIMESTAMP(start_time) as start_time,UNIX_TIMESTAMP(end_time) as end_time ,status FROM a_tree2 WHERE ak_def_id=? AND resource_id=? AND metric_id=? AND num_units=?"; $params = array($ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->deployment_num_proc_units); - $rows=$this->db->query($sql,$params); + $rows=$this->db->query($sql, $params); - if(count($rows)>1) + if(count($rows)>1) { $this->log("a_tree2 has more then one entries for ak_def_id, resource_id, metric_id, num_units", PEAR_LOG_ERR); + } $start_time=$ak->deployment_time; $end_time=$ak->deployment_time; $status=$ak->status; - if(count($rows)>=1) - { + if(count($rows)>=1) { $status=$rows[0]['status']; - if($rows[0]['start_time']<$start_time) - { + if($rows[0]['start_time']<$start_time) { $start_time=$rows[0]['start_time']; } - if($rows[0]['end_time']>$end_time) - { + if($rows[0]['end_time']>$end_time) { $end_time=$rows[0]['end_time']; $status=$rows[0]['status']; } } - if(count($rows)!=0) - { + if(count($rows)!=0) { $sql = "DELETE FROM a_tree2 WHERE ak_def_id=? AND resource_id=? AND metric_id=? AND num_units=?"; $params = array($ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->deployment_num_proc_units); - if(!$dryRunMode) - $rows=$this->db->execute($sql,$params); + if(!$dryRunMode) { + $rows=$this->db->execute($sql, $params); + } } $sql = "insert INTO a_tree2 ". "(ak_name, resource, metric, unit, processor_unit, ". @@ -1840,8 +1859,9 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac $ak->deployment_num_proc_units,$ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $start_time,$end_time,$status ); - if(!$dryRunMode) + if(!$dryRunMode) { $numRows = $this->db->execute($sql, $params); + } //a_data2 $sql = ($replace?'replace':'insert'). @@ -1856,13 +1876,14 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac $ak->deployment_time, $ak->environmentVersion, $metric->unit, $metric->value, $ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->status ); - if(!$dryRunMode) + if(!$dryRunMode) { $numRows = $this->db->execute($sql, $params); + } } } $this->log("-> Stored metric '{$metric->name}' for app kernel $ak", PEAR_LOG_DEBUG); - return TRUE; - } // addMetricData() + return true; + } // -------------------------------------------------------------------------------- // Add parameter data to an application kernel instance. Associate the parameter @@ -1873,19 +1894,19 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac // @param $metric An AppKernelParameter containing the parameter information // -------------------------------------------------------------------------------- - private function addParameterData(InstanceData $ak, InstanceParameter $parameter, $replace, $dryRunMode=false) + private function addParameterData(InstanceData $ak, InstanceParameter $parameter, $replace, $dryRunMode = false) { $guid = $parameter->guid(); - if ( ! isset($this->akParameters[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units][$guid]) ) - { + if (! isset($this->akParameters[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units][$guid]) ) { $sql = ($replace?'replace':'insert')." INTO ak_has_parameter (ak_id, parameter_id) " . "VALUES (?, ?)"; $params = array($ak->db_ak_id, $parameter->id); - if(!$dryRunMode) + if(!$dryRunMode) { $numRows = $this->db->execute($sql, $params); - else + } else { $this->log("$sql " . print_r($params, 1), PEAR_LOG_DEBUG); + } $this->akParameters[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units][$guid] = $this->akParameterGuids[$guid]; $this->log("-> Associated parameter '{$parameter->name}' (id = {$parameter->id}) with app kernel '{$ak->deployment_ak_name}' (ak_id = {$ak->db_ak_id})", PEAR_LOG_DEBUG); } @@ -1893,12 +1914,13 @@ private function addParameterData(InstanceData $ak, InstanceParameter $parameter $sql = ($replace?'replace':'insert')." INTO parameter_data (parameter_id, ak_id, collected, " . "resource_id, value_string, value_md5) VALUES (?, ?, FROM_UNIXTIME(?), ?, COMPRESS(?), ?)"; $params = array($parameter->id, $ak->db_ak_id, $ak->deployment_time, $ak->db_resource_id, $parameter->value, md5($parameter->value)); - if(!$dryRunMode) + if(!$dryRunMode) { $numRows = $this->db->execute($sql, $params); + } $this->log("-> Stored parameter '{$parameter->name}' for app kernel $ak", PEAR_LOG_DEBUG); - return TRUE; - } // addParameterData() + return true; + } // -------------------------------------------------------------------------------- // Look up the database identifier for the specified app kernel. If it @@ -1912,8 +1934,9 @@ private function addParameterData(InstanceData $ak, InstanceParameter $parameter private function getAkId(InstanceData $ak) { - if ( isset($this->akIdMap[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units]) ) + if (isset($this->akIdMap[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units]) ) { return $this->akIdMap[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units]; + } // The app kernel didn't exist, add it to the database and internal data // structures. @@ -1921,15 +1944,13 @@ private function getAkId(InstanceData $ak) $appKernelDefId = $this->appKernelDefinitions[$ak->deployment_ak_base_name]->id; $sql = "INSERT INTO app_kernel (name, num_units, ak_def_id) VALUES (?,?,?)"; $params = array($ak->deployment_ak_base_name, $ak->deployment_num_proc_units, $appKernelDefId); - // $this->log("$sql " . print_r($params, 1), PEAR_LOG_DEBUG); $numRows = $this->db->execute($sql, $params); $id = $this->db->handle()->lastInsertId(); $this->akIdMap[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units] = $id; $this->log("Added new app kernel {$ak->deployment_ak_name}", PEAR_LOG_DEBUG); return $id; - - } // getAkId() + } // -------------------------------------------------------------------------------- // Look up the database identifier for the specified metric. If it doesn't @@ -1948,24 +1969,25 @@ private function getMetricId(InstanceData $ak, InstanceMetric $metric) // If the metric already exists return its id. - if ( isset($this->akMetricGuids[$guid]) ) return $this->akMetricGuids[$guid]; + if (isset($this->akMetricGuids[$guid]) ) { + return $this->akMetricGuids[$guid]; + } // The metric didn't exist for that ak $sql = "SELECT * FROM metric WHERE guid='$guid'"; $result = $this->db->query($sql); - if(count($result)>0) - { - $metricId = $result[0]['metric_id']; + if(count($result)>0) { + $metricId = $result[0]['metric_id']; - $sql = "INSERT INTO ak_has_metric (ak_id, metric_id, num_units) VALUES (?,?,?)"; - $params = array($ak->db_ak_id, $metricId, $ak->deployment_num_proc_units); - $this->log("$sql " . print_r($params, 1), PEAR_LOG_DEBUG); - $numRows = $this->db->execute($sql, $params); + $sql = "INSERT INTO ak_has_metric (ak_id, metric_id, num_units) VALUES (?,?,?)"; + $params = array($ak->db_ak_id, $metricId, $ak->deployment_num_proc_units); + $this->log("$sql " . print_r($params, 1), PEAR_LOG_DEBUG); + $numRows = $this->db->execute($sql, $params); - $this->akMetricGuids[$metric->guid()] = $metricId; - $this->log("Add metric to ak: name='{$metric->name}', unit='{$metric->unit}' ak='{$ak->deployment_ak_name}' (id = $metricId)", PEAR_LOG_DEBUG); + $this->akMetricGuids[$metric->guid()] = $metricId; + $this->log("Add metric to ak: name='{$metric->name}', unit='{$metric->unit}' ak='{$ak->deployment_ak_name}' (id = $metricId)", PEAR_LOG_DEBUG); - return $metricId; + return $metricId; } // The metric didn't exist, add it to the database and internal data // structures. @@ -1980,7 +2002,7 @@ private function getMetricId(InstanceData $ak, InstanceMetric $metric) return $metricId; - } // getMetricId() + } // -------------------------------------------------------------------------------- // Look up the database identifier for the specified parameter. If it doesn't @@ -1999,7 +2021,9 @@ private function getParameterId(InstanceData $ak, InstanceParameter $parameter) // If the parameter already exists return its id. - if ( isset($this->akParameterGuids[$guid]) ) return $this->akParameterGuids[$guid]; + if (isset($this->akParameterGuids[$guid]) ) { + return $this->akParameterGuids[$guid]; + } // The parameter didn't exist, add it to the database and internal data // structures. @@ -2014,7 +2038,7 @@ private function getParameterId(InstanceData $ak, InstanceParameter $parameter) return $parameterId; - } // getParameterId() + } // -------------------------------------------------------------------------------- @@ -2025,20 +2049,21 @@ private function getResourceId(InstanceData $ak) // resources. // $tmpHostname = str_replace(".sdsc.edu", "", $ak->deployment_hostname); - if ( ! isset($this->resourceList[$ak->deployment_hostname]) ) - { - return FALSE; + if (! isset($this->resourceList[$ak->deployment_hostname]) ) { + return false; } return $this->resourceList[$ak->deployment_hostname]->id; - } // getResourceId() + } // -------------------------------------------------------------------------------- private function log($message, $level = PEAR_LOG_INFO) { - if ( NULL === $this->logger ) return; + if (null === $this->logger ) { + return; + } $this->logger->log($message, $level); - } // log() + } // -------------------------------------------------------------------------------- @@ -2054,7 +2079,7 @@ public function getAppKernelBaseNames() return $this->akBaseNameList; } - public function getControlRegions($resource_id,$ak_def_id) + public function getControlRegions($resource_id, $ak_def_id) { $controlRegionDefQuery = "SELECT control_region_def_id,resource_id,ak_def_id, @@ -2073,16 +2098,24 @@ public function getControlRegions($resource_id,$ak_def_id) return $controlRegionDef; } - public function newControlRegions($resource_id,$ak_def_id,$control_region_type,$startDateTime,$endDateTime,$n_points,$comment, - $update=false,$control_region_def_id=NULL) - { + public function newControlRegions( + $resource_id, + $ak_def_id, + $control_region_type, + $startDateTime, + $endDateTime, + $n_points, + $comment, + $update = false, + $control_region_def_id = null + ) { $resource_id = intval($resource_id); $ak_def_id = intval($ak_def_id); $control_region_type="'".$control_region_type."'"; $startDateTime = "'".$startDateTime."'"; - $n_points = ($n_points!==NULL ? intval($n_points):'NULL'); - $endDateTime = ($endDateTime!==NULL ? "'".$endDateTime."'":'NULL'); - $comment = ($comment!==NULL ? "'".$comment."'":'NULL'); + $n_points = ($n_points!==null ? intval($n_points):'NULL'); + $endDateTime = ($endDateTime!==null ? "'".$endDateTime."'":'NULL'); + $comment = ($comment!==null ? "'".$comment."'":'NULL'); //make query for control recalculation $sqlAKcond=array(); @@ -2090,7 +2123,7 @@ public function newControlRegions($resource_id,$ak_def_id,$control_region_type,$ foreach ($response as $v) { $sqlAKcond[]="ak_id='".$v['ak_id']."'"; } - $sqlAKcond=implode(" OR ",$sqlAKcond); + $sqlAKcond=implode(" OR ", $sqlAKcond); $controlRegionDefQuery = "SELECT control_region_def_id,resource_id,ak_def_id, @@ -2113,7 +2146,7 @@ public function newControlRegions($resource_id,$ak_def_id,$control_region_type,$ controlStatus = 'undefined' WHERE ({$sqlAKcond}) AND resource_id=$resource_id AND collected >= $startDateTime"; - if(count($controlRegionDef)>0){ + if(count($controlRegionDef)>0) { $new_region_end_collected=$controlRegionDef[0]['control_region_starts']; $metric_data_updateQuery.=" AND collected<'$new_region_end_collected';"; } @@ -2122,7 +2155,7 @@ public function newControlRegions($resource_id,$ak_def_id,$control_region_type,$ } //insert of update control_region_def - if($control_region_def_id!=NULL && $update){ + if($control_region_def_id!=null && $update) { $sql="SELECT control_region_def_id FROM control_region_def WHERE control_region_def_id={$control_region_def_id} "; @@ -2133,8 +2166,8 @@ public function newControlRegions($resource_id,$ak_def_id,$control_region_type,$ "; } $control_region_def_id=$this->db->query($sql); - if(count($control_region_def_id)>0){ - if($update){ + if(count($control_region_def_id)>0) { + if($update) { $sql="UPDATE control_region_def SET control_region_starts={$startDateTime}, control_region_type={$control_region_type}, @@ -2154,7 +2187,7 @@ public function newControlRegions($resource_id,$ak_def_id,$control_region_type,$ } } else{ - if($update){ + if($update) { return array('success' => false, 'message' => "Such control region time interval do not exist, can not update it."); } @@ -2184,7 +2217,7 @@ public function deleteControlRegion($control_region_def_id) WHERE control_region_def_id=$control_region_def_id; "; $controlRegionDefToDelete = $this->db->query($controlRegionDefQuery); - if(count($controlRegionDefToDelete)==0){ + if(count($controlRegionDefToDelete)==0) { return array('success' => false, 'message' => "Such control region time interval do not exist, can not delete it."); } @@ -2199,7 +2232,7 @@ public function deleteControlRegion($control_region_def_id) foreach ($response as $v) { $sqlAKcond[]="ak_id='".$v['ak_id']."'"; } - $sqlAKcond=implode(" OR ",$sqlAKcond); + $sqlAKcond=implode(" OR ", $sqlAKcond); //find region after this region $controlRegionDefQuery = @@ -2224,7 +2257,7 @@ public function deleteControlRegion($control_region_def_id) controlStatus = 'undefined' WHERE ({$sqlAKcond}) AND resource_id=$resource_id AND collected >= '$control_region_starts'"; - if(count($controlRegionDefAfter)>0){ + if(count($controlRegionDefAfter)>0) { $new_region_end_collected=$controlRegionDefAfter[0]['control_region_starts']; $metric_data_updateQuery.=" AND collected<'$new_region_end_collected';"; } @@ -2237,7 +2270,8 @@ public function deleteControlRegion($control_region_def_id) return array('success' => true, 'message' => "Control region time interval was deleted"); } - public function setInitialControlRegions($initial=true,$envbased=false, $controlIntervalSize = 20) + + public function setInitialControlRegions($initial = true, $envbased = false, $controlIntervalSize = 20) { //Get resourceIdMap $resourceIdMap = array(); @@ -2250,23 +2284,24 @@ public function setInitialControlRegions($initial=true,$envbased=false, $control ); } - $this->log("recalculate control_region_def based on enviroment change\n",PEAR_LOG_INFO); + $this->log("recalculate control_region_def based on enviroment change\n", PEAR_LOG_INFO); $this->db->execute("TRUNCATE TABLE control_region_def"); - if($initial) - { + if($initial) { //Set initial region - $initial_regions_start=$this->db->query("SELECT ak_def_id,resource_id,MIN(collected) as collected,name as ak_name + $initial_regions_start=$this->db->query( + "SELECT ak_def_id,resource_id,MIN(collected) as collected,name as ak_name FROM (SELECT ak_id, MIN(collected) as collected,resource_id FROM `metric_data` GROUP BY resource_id,ak_id) AS smallesttime, app_kernel WHERE smallesttime.ak_id=app_kernel.ak_id GROUP BY resource_id,ak_def_id - ORDER BY ak_def_id,resource_id"); + ORDER BY ak_def_id,resource_id" + ); foreach($initial_regions_start as $first_run) { - $this->log("Adding initial control region for app kernel: {$first_run['ak_name']} on resource: {$resourceIdMap[$first_run['resource_id']]['name']}",PEAR_LOG_INFO); - $t=date_format(date_create($first_run['collected']),"Y-m-d")." 00:00:00"; - $t=date_format(date_sub(date_create($t),date_interval_create_from_date_string('5 days')),"Y-m-d H:i:s"); + $this->log("Adding initial control region for app kernel: {$first_run['ak_name']} on resource: {$resourceIdMap[$first_run['resource_id']]['name']}", PEAR_LOG_INFO); + $t=date_format(date_create($first_run['collected']), "Y-m-d")." 00:00:00"; + $t=date_format(date_sub(date_create($t), date_interval_create_from_date_string('5 days')), "Y-m-d H:i:s"); $sql="INSERT INTO control_region_def (resource_id,ak_def_id,control_region_type,control_region_starts,control_region_points,comment) VALUES({$first_run['resource_id']},{$first_run['ak_def_id']},'data_points','{$t}',{$controlIntervalSize}, @@ -2275,10 +2310,10 @@ public function setInitialControlRegions($initial=true,$envbased=false, $control $this->db->execute($sql); } } - if($envbased) - { + if($envbased) { //Set control regions based on enviroment change - $newenv_regions_start=$this->db->query("SELECT ak_def_id,resource_id,MIN(collected) as collected,name as ak_name, env_version + $newenv_regions_start=$this->db->query( + "SELECT ak_def_id,resource_id,MIN(collected) as collected,name as ak_name, env_version FROM (SELECT ak_id, MIN(collected) as collected,resource_id,env_version FROM `ak_instance` @@ -2286,19 +2321,20 @@ public function setInitialControlRegions($initial=true,$envbased=false, $control app_kernel WHERE smallesttime.ak_id=app_kernel.ak_id GROUP BY ak_def_id,resource_id,env_version - ORDER BY ak_def_id,resource_id,collected"); - for($i=1;$ilog("Adding control region due enviroment change, app kernel: {$newenv_regions_start[$i]['ak_name']} on resource: {$resourceIdMap[$newenv_regions_start[$i]['resource_id']]['name']}",PEAR_LOG_INFO); + $t=$collected; + $this->log("Adding control region due enviroment change, app kernel: {$newenv_regions_start[$i]['ak_name']} on resource: {$resourceIdMap[$newenv_regions_start[$i]['resource_id']]['name']}", PEAR_LOG_INFO); $sql="INSERT INTO control_region_def (resource_id,ak_def_id,control_region_type,control_region_starts,control_region_points,comment) @@ -2311,29 +2347,24 @@ public function setInitialControlRegions($initial=true,$envbased=false, $control } } - // -------------------------------------------------------------------------------- // Calcualte the running average and control values for each metric value // @author: Amin Ghadersohi // -------------------------------------------------------------------------------- - public function calculateControls( - $recalculateControlIntervals = false, - $recalculateControls = false, - $controlIntervalSize = 20, - $runningAverageSize = 5, - $restrictToResource = NULL, - $restrictToAppKernel = NULL - ) - { + $recalculateControlIntervals = false, + $recalculateControls = false, + $controlIntervalSize = 20, + $runningAverageSize = 5, + $restrictToResource = null, + $restrictToAppKernel = null + ) { $this->log("Calculating control metrics"); - if($runningAverageSize < 1) - { + if($runningAverageSize < 1) { echo "calculateControls: runningAverageSize must be greater than zero. Aborting...\n"; return; } - if($controlIntervalSize < 1) - { + if($controlIntervalSize < 1) { echo "calculateControls: controlIntervalSize must be greater than zero. Aborting...\n"; } //Get akId2akDefIdMap @@ -2352,8 +2383,9 @@ public function calculateControls( 'num_units' => $row['num_units'], 'control_criteria' => $row['control_criteria'], ); - if(!array_key_exists($row['ak_def_id'],$akDefId2akIdMap)) + if(!array_key_exists($row['ak_def_id'], $akDefId2akIdMap)) { $akDefId2akIdMap[$row['ak_def_id']]=array(); + } $akDefId2akIdMap[$row['ak_def_id']][]=$row['ak_id']; } //Get resourceIdMap @@ -2368,19 +2400,17 @@ public function calculateControls( } //Conditions for $restrictToResource - $sqlResourceCond=NULL; - if($restrictToResource!==NULL) - { - //$dbResourceList = $this->loadResources(); - //$sqlResourceCond=" resource_id = '".$dbResourceList[$restrictToResource]->id."'"; + $sqlResourceCond=null; + if($restrictToResource!==null) { $sqlResourceCond="resource_id = '".$this->resourceList[$restrictToResource]->id."'"; } //Conditions for $restrictToAppKernel - $sqlAKDefCond=NULL; - $sqlAKcond=NULL; - if($restrictToAppKernel!==NULL) - { - if(!isset($this->appKernelDefinitions))$this->loadAppKernelDefinitions(); + $sqlAKDefCond=null; + $sqlAKcond=null; + if($restrictToAppKernel!==null) { + if(!isset($this->appKernelDefinitions)) { + $this->loadAppKernelDefinitions(); + } $dbAKList=$this->appKernelDefinitions; $sqlAKDefCond="ak_def_id = '".$dbAKList[$restrictToAppKernel]->id."'"; @@ -2389,7 +2419,7 @@ public function calculateControls( foreach ($response as $v) { $m_aks[]="ak_id='".$v['ak_id']."'"; } - $sqlAKcond=implode(" OR ",$m_aks); + $sqlAKcond=implode(" OR ", $m_aks); } // first, load the metric attributes that help figure out whether a larger value is better or a smaller value @@ -2401,34 +2431,36 @@ public function calculateControls( ORDER BY 1, 2, 3 "; $metricsResults = $this->db->query($metricsQuery); - $metrics_walltime_id=NULL; + $metrics_walltime_id=null; foreach($metricsResults as $mr) { $metricsLookupById[$mr['metric_id']] = $mr; $metricsLookupByName[$mr['name']] = $mr; - if(strtolower($mr['name'])===strtolower('wall clock time')){ + if(strtolower($mr['name'])===strtolower('wall clock time')) { $metrics_walltime_id=$mr['metric_id']; } } $largerAttributeMap = array(); $metricIdToLargerMap = array(); - $akName = NULL; + $akName = null; $metricsPath = xd_utilities\getConfiguration('appkernel', 'ak_metrics_path'); $metricAttributes = explode("\n", file_get_contents($metricsPath)); foreach($metricAttributes as $metricAttribute) { - $metricName = NULL; + $metricName = null; $larger = true; - $attr = explode(',',$metricAttribute); + $attr = explode(',', $metricAttribute); - if(isset($attr[0]) && $attr[0] != '') $akName = $attr[0]; - if(isset($attr[2]) && count($attr[2]) > 0) $larger = substr($attr[2],0,1) != 'S'; - if(isset($attr[1]) && $attr[1] !='') - { + if(isset($attr[0]) && $attr[0] != '') { + $akName = $attr[0]; + } + if(isset($attr[2]) && count($attr[2]) > 0) { + $larger = substr($attr[2], 0, 1) != 'S'; + } + if(isset($attr[1]) && $attr[1] !='') { $metricName = strtolower($attr[1]); - if(isset($metricsLookupByName[$metricName])) - { + if(isset($metricsLookupByName[$metricName])) { $largerAttributeMap[$metricName] = $larger; } } @@ -2436,8 +2468,7 @@ public function calculateControls( //figure out the remaining metrics' larger/smaller property foreach($metricsLookupById as $metric_id => $metric) { - if(!isset($largerAttributeMap[$metric['name']])) - { + if(!isset($largerAttributeMap[$metric['name']])) { $largerAttributeMap[$metric['name']] = strcasecmp($metric['unit'], 'second') === 0? false : true; } } @@ -2454,21 +2485,28 @@ public function calculateControls( } - if($recalculateControls) - { + if($recalculateControls) { $time_start = microtime(true); $dataQuery = "update metric_data set control = null, running_average = null, controlStatus = 'undefined'"; - if($sqlResourceCond||$sqlAKcond)$dataQuery.="\n WHERE "; - if($sqlResourceCond)$dataQuery.="\n ( ".$sqlResourceCond." ) "; - if($sqlResourceCond||$sqlAKcond)$dataQuery.=" AND "; - if($sqlAKcond)$dataQuery.="\n ( ".$sqlAKcond." ) "; + if($sqlResourceCond||$sqlAKcond) { + $dataQuery.="\n WHERE "; + } + if($sqlResourceCond) { + $dataQuery.="\n ( ".$sqlResourceCond." ) "; + } + if($sqlResourceCond||$sqlAKcond) { + $dataQuery.=" AND "; + } + if($sqlAKcond) { + $dataQuery.="\n ( ".$sqlAKcond." ) "; + } $this->db->execute($dataQuery); $time_end = microtime(true); - $this->log("Timing(update metric_data set control = null, running_average = null)=".($time_end - $time_start),PEAR_LOG_DEBUG); + $this->log("Timing(update metric_data set control = null, running_average = null)=".($time_end - $time_start), PEAR_LOG_DEBUG); } // Get a list of possible unique datasets (datasetsQuery). @@ -2485,23 +2523,25 @@ public function calculateControls( "SELECT distinct ak_id, metric_id, resource_id FROM `metric_data` "; - if($sqlResourceCond||$sqlAKcond) + if($sqlResourceCond||$sqlAKcond) { $datasetsQuery.="\n WHERE "; - if($sqlResourceCond) + } + if($sqlResourceCond) { $datasetsQuery.="\n ( ".$sqlResourceCond." ) "; - if($sqlResourceCond||$sqlAKcond) + } + if($sqlResourceCond||$sqlAKcond) { $datasetsQuery.=" AND "; - if($sqlAKcond) + } + if($sqlAKcond) { $datasetsQuery.="\n ( ".$sqlAKcond." ) "; + } //test walltime (metric_id=4) - //$datasetsQuery.="AND metric_id=4 AND ak_id=101"; $datasetsQuery.="\nORDER BY 1, 2, 3\n"; $datasets = $this->db->query($datasetsQuery); $datasetsLength = count($datasets); $message_length = 0; $time_end = microtime(true); - $this->log("Timing(Get a list of possible unique datasets (datasetsQuery))=".($time_end - $time_start),PEAR_LOG_DEBUG); - //$this->log("DDone\n");return; + $this->log("Timing(Get a list of possible unique datasets (datasetsQuery))=".($time_end - $time_start), PEAR_LOG_DEBUG); $time_start_bigcycle = microtime(true); $progressVerbosity=1; @@ -2520,25 +2560,18 @@ public function calculateControls( ); foreach($datasets as $di => $dataset) { - if($progressVerbosity===1){ - $message = "Calculating running average and control values. ".number_format(100.0*$di/$datasetsLength,2)."% ".json_encode($dataset); - $this->log($message,PEAR_LOG_DEBUG); - //$message_length = strlen($message); - //print($message); - //print("\n"); + if($progressVerbosity===1) { + $message = "Calculating running average and control values. ".number_format(100.0*$di/$datasetsLength, 2)."% ".json_encode($dataset); + $this->log($message, PEAR_LOG_DEBUG); } $control_criteria=$this->control_criteria; - if($akId2akDefIdMap[$dataset['ak_id']]['control_criteria']!==NULL){ + if($akId2akDefIdMap[$dataset['ak_id']]['control_criteria']!==null) { $control_criteria=$akId2akDefIdMap[$dataset['ak_id']]['control_criteria']; } - //continue; - //if(!($dataset['ak_id']==42 && $dataset['metric_id']==84 && $dataset['resource_id']==3 ))continue; - //print(str_repeat(chr(8),$message_length)); //if we dont know whether smaller or larger is better it (hopefully :) ) means we don't want to calculate control on it so skip - if(!isset($metricIdToLargerMap[$dataset['metric_id']])) - { - $this->log("Skipping metric {$dataset['metric_id']} {$metricsLookupById[$dataset['metric_id']]['name']} as there was no value in metric_attributes for its larger/smaller property",PEAR_LOG_WARNING); + if(!isset($metricIdToLargerMap[$dataset['metric_id']])) { + $this->log("Skipping metric {$dataset['metric_id']} {$metricsLookupById[$dataset['metric_id']]['name']} as there was no value in metric_attributes for its larger/smaller property", PEAR_LOG_WARNING); continue; } @@ -2567,12 +2600,11 @@ public function calculateControls( $length = count($data); //only process datasets of length 1+ - if($length > 0) - { + if($length > 0) { $time_start = microtime(true); //query for the control region definitions if none present initiate a new one $controlRegionDef=array(); - while(TRUE) + while(true) { $controlRegionDefQuery = "SELECT control_region_def_id,resource_id,ak_def_id, @@ -2588,11 +2620,10 @@ public function calculateControls( "; $controlRegionDef = $this->db->query($controlRegionDefQuery); //if there is no control regions initiate the first one - if(count($controlRegionDef)==0) - { - $this->log("Adding initial control region for app kernel: {$akId2akDefIdMap[$dataset['ak_id']]['name']} on resource: {$resourceIdMap[$dataset['resource_id']]['name']}",PEAR_LOG_INFO); - $t=date_format(date_create($data[0]['collected']),"Y-m-d")." 00:00:00"; - $t=date_format(date_sub(date_create($t),date_interval_create_from_date_string('5 days')),"Y-m-d H:i:s"); + if(count($controlRegionDef)==0) { + $this->log("Adding initial control region for app kernel: {$akId2akDefIdMap[$dataset['ak_id']]['name']} on resource: {$resourceIdMap[$dataset['resource_id']]['name']}", PEAR_LOG_INFO); + $t=date_format(date_create($data[0]['collected']), "Y-m-d")." 00:00:00"; + $t=date_format(date_sub(date_create($t), date_interval_create_from_date_string('5 days')), "Y-m-d H:i:s"); $sql="INSERT INTO control_region_def (resource_id,ak_def_id,control_region_type,control_region_starts,control_region_points,comment) VALUES({$dataset['resource_id']},{$akId2akDefIdMap[$dataset['ak_id']]['ak_def_id']},'data_points','{$t}',{$controlIntervalSize}, @@ -2600,11 +2631,10 @@ public function calculateControls( "; $this->db->execute($sql); } - else if(date_create($controlRegionDef[0]['control_region_starts'])>date_create($data[0]['collected'])) - { - $this->log("Updating initial control region for app kernel: {$akId2akDefIdMap[$dataset['ak_id']]['name']} on resource: {$resourceIdMap[$dataset['resource_id']]['name']}",PEAR_LOG_INFO); - $t=date_format(date_create($data[0]['collected']),"Y-m-d")." 00:00:00"; - $t=date_format(date_sub(date_create($t),date_interval_create_from_date_string('5 days')),"Y-m-d H:i:s"); + elseif(date_create($controlRegionDef[0]['control_region_starts'])>date_create($data[0]['collected'])) { + $this->log("Updating initial control region for app kernel: {$akId2akDefIdMap[$dataset['ak_id']]['name']} on resource: {$resourceIdMap[$dataset['resource_id']]['name']}", PEAR_LOG_INFO); + $t=date_format(date_create($data[0]['collected']), "Y-m-d")." 00:00:00"; + $t=date_format(date_sub(date_create($t), date_interval_create_from_date_string('5 days')), "Y-m-d H:i:s"); $sql="UPDATE control_region_def SET control_region_starts='{$t}' WHERE control_region_def_id={$controlRegionDef[0]['control_region_def_id']} @@ -2620,7 +2650,7 @@ public function calculateControls( //query for the control region definitions if none present initiate a new one $num_recalculated_CR=0; $controlRegions=array(); - while(TRUE) + while(true) { $controlRegionQuery = "SELECT r.control_region_id, @@ -2645,30 +2675,28 @@ public function calculateControls( "; $controlRegions = $this->db->query($controlRegionQuery); //if there is no control regions initiate the first one - if(count($controlRegions)!=count($controlRegionDef)) - { + if(count($controlRegions)!=count($controlRegionDef)) { $CRdefs=array(); - foreach($controlRegionDef as $cdef) + foreach($controlRegionDef as $cdef) { $CRdefs[$cdef['control_region_def_id']]=$cdef; + } $CR=array(); foreach($controlRegions as $cr) { - if(key_exists($cr['control_region_def_id'], $CRdefs)) - { + if(key_exists($cr['control_region_def_id'], $CRdefs)) { $CR[$cr['control_region_def_id']]=$cr; } else { - $sql="DELETE FROM control_regions WHERE control_region_id={$cr['control_region_id']}"; - $this->db->execute($sql); + $sql="DELETE FROM control_regions WHERE control_region_id={$cr['control_region_id']}"; + $this->db->execute($sql); } } foreach($controlRegionDef as $crdef) { - if(!key_exists($crdef['control_region_def_id'], $CR)) - { + if(!key_exists($crdef['control_region_def_id'], $CR)) { $sql="INSERT INTO control_regions (control_region_def_id,ak_id,metric_id) VALUES({$crdef['control_region_def_id']},{$dataset['ak_id']},{$dataset['metric_id']})"; @@ -2678,19 +2706,17 @@ public function calculateControls( continue; } //if there control regions are not completed recalculate them - if($num_recalculated_CR==0) - { + if($num_recalculated_CR==0) { foreach($controlRegions as $controlRegion) { - if($controlRegion['completed']==0||$recalculateControls) - { - $num_recalculated_CR++; - $completed=0; - //caculate controls for that region - //Query for calculation properties of the control interval - if($controlRegion['control_region_type']=='data_points'){ - $controlIntervalDataQuery = - "SELECT md.resource_id,md.ak_id,md.metric_id,md.collected,md.value_string + if($controlRegion['completed']==0||$recalculateControls) { + $num_recalculated_CR++; + $completed=0; + //caculate controls for that region + //Query for calculation properties of the control interval + if($controlRegion['control_region_type']=='data_points') { + $controlIntervalDataQuery = + "SELECT md.resource_id,md.ak_id,md.metric_id,md.collected,md.value_string FROM `metric_data` md WHERE md.resource_id = :resource_id and md.ak_id = :ak_id @@ -2698,11 +2724,11 @@ public function calculateControls( and md.collected >= '{$controlRegion['control_region_starts']}' LIMIT {$controlRegion['control_region_points']} "; - } - else - { - $controlIntervalDataQuery = - "SELECT md.resource_id,md.ak_id,md.metric_id,md.collected,md.value_string + } + else + { + $controlIntervalDataQuery = + "SELECT md.resource_id,md.ak_id,md.metric_id,md.collected,md.value_string FROM `metric_data` md WHERE md.resource_id = :resource_id and md.ak_id = :ak_id @@ -2710,35 +2736,36 @@ public function calculateControls( and md.collected >= '{$controlRegion['control_region_starts']}' and md.collected <= '{$controlRegion['control_region_ends']}' "; - } - $controlIntervalData = $this->db->query($controlIntervalDataQuery, $dataset); - if($controlRegion['control_region_type']=='data_points') - { - if(count($controlIntervalData)==$controlRegion['control_region_points']) - $completed=1; - } - else - { - $completed=1; - } - - //pack $controlValues - $controlValues = array(); - foreach($controlIntervalData as $controlValue) - $controlValues[] = floatval($controlValue['value_string']); - //calculate control values - $controlLength = count($controlValues); - $controlMin = null; - $controlMax = null; - $controlStart = null; - $controlEnd = null; - - if($controlLength>0){ + } + $controlIntervalData = $this->db->query($controlIntervalDataQuery, $dataset); + if($controlRegion['control_region_type']=='data_points') { + if(count($controlIntervalData)==$controlRegion['control_region_points']) { + $completed=1; + } + } + else + { + $completed=1; + } + + //pack $controlValues + $controlValues = array(); + foreach($controlIntervalData as $controlValue) { + $controlValues[] = floatval($controlValue['value_string']); + } + //calculate control values + $controlLength = count($controlValues); + $controlMin = null; + $controlMax = null; + $controlStart = null; + $controlEnd = null; + + if($controlLength>0) { $controlMin = min($controlValues); $controlMax = max($controlValues); - if(false){ + if(false) { $controlSum = array_sum($controlValues); $controlAverage = $controlSum/$controlLength; @@ -2747,23 +2774,22 @@ public function calculateControls( { - //use advanced technique to figure out (override) control start and end. - //divided the set into two regions based on median, find the - //average of each region and use as start and end. - if($controlLength > 4) - { - $middlePoint = $controlLength/2; - sort($controlValues); + //use advanced technique to figure out (override) control start and end. + //divided the set into two regions based on median, find the + //average of each region and use as start and end. + if($controlLength > 4) { + $middlePoint = $controlLength/2; + sort($controlValues); - $startRegion = array_slice($controlValues,0,$middlePoint); - $endRegion = array_slice($controlValues,$middlePoint,$controlLength); + $startRegion = array_slice($controlValues, 0, $middlePoint); + $endRegion = array_slice($controlValues, $middlePoint, $controlLength); - $controlStart = array_sum($startRegion)/count($startRegion); - $controlEnd = array_sum($endRegion)/count($endRegion); + $controlStart = array_sum($startRegion)/count($startRegion); + $controlEnd = array_sum($endRegion)/count($endRegion); - } } - } + } + } $controlSum = array_sum($controlValues); $controlAverage = $controlSum/$controlLength; $controlStDev = stats_standard_deviation($controlValues); @@ -2771,11 +2797,13 @@ public function calculateControls( $controlStart = $controlAverage-$control_criteria*$controlStDev; $controlEnd = $controlAverage+$control_criteria*$controlStDev; - $controlDiff = abs($controlEnd-$controlStart); - if($controlDiff == 0) $controlDiff = 1; + $controlDiff = abs($controlEnd-$controlStart); + if($controlDiff == 0) { + $controlDiff = 1; + } - $updateStatement = - "UPDATE control_regions + $updateStatement = + "UPDATE control_regions set completed = {$completed}, controlStart = {$controlStart}, controlEnd = {$controlEnd}, @@ -2783,7 +2811,7 @@ public function calculateControls( controlMax = {$controlMax} WHERE control_region_id = {$controlRegion['control_region_id']}"; - foreach ($controlIntervalData as $data_point){ + foreach ($controlIntervalData as $data_point){ $controlStatusUpdateStatement="UPDATE metric_data SET controlStatus='control_region_time_interval' WHERE resource_id = {$data_point['resource_id']} @@ -2793,34 +2821,36 @@ public function calculateControls( "; $this->db->execute($controlStatusUpdateStatement); for($i = 0; $i < $length; $i++){ - if($data[$i]['collected']===$data_point['collected']){ + if($data[$i]['collected']===$data_point['collected']) { $data[$i]['controlStatus']='control_region_time_interval'; break; } } - } - } - else - { - $updateStatement = - "UPDATE control_regions + } + } + else + { + $updateStatement = + "UPDATE control_regions set completed = 0, controlStart = NULL, controlEnd = NULL, controlMin = NULL, controlMax = NULL WHERE control_region_id = {$controlRegion['control_region_id']}"; - } - $this->db->execute($updateStatement ); - } + } + $this->db->execute($updateStatement); + } } - if($num_recalculated_CR==0)//no recalculation is done + if($num_recalculated_CR==0) { //no recalculation is done break; - else + } else { continue; + } } - else//already been here once + else { //already been here once break; + } } $time_end = microtime(true); @@ -2829,10 +2859,9 @@ public function calculateControls( $time_start_1 = microtime(true); //set last fake controlRegions for ease of controlRegion search - $controlRegions[]=array('control_region_starts' => date_format(date_add(date_create("now"),date_interval_create_from_date_string('1 year')),"Y-m-d H:i:s")); + $controlRegions[]=array('control_region_starts' => date_format(date_add(date_create("now"), date_interval_create_from_date_string('1 year')), "Y-m-d H:i:s")); //Set $controlApplicationRegions - for($idControlRegion=0;$idControlRegion=$controlRegions[$idControlRegion]['control_region_starts_timestamp'] && - $date_collected_timestamp<$controlRegions[$idControlRegion+1]['control_region_starts_timestamp'] ) - break; + for($idControlRegion=0; $idControlRegion=$controlRegions[$idControlRegion]['control_region_starts_timestamp'] + && $date_collected_timestamp<$controlRegions[$idControlRegion+1]['control_region_starts_timestamp'] + ) { + break; + } } $controlRegion=$controlRegions[$idControlRegion]; $controlMin = $controlRegion['controlMin']; @@ -2867,31 +2895,32 @@ public function calculateControls( $controlEnd = $controlRegion['controlEnd']; $controlDiff = abs($controlEnd-$controlStart); - if($controlDiff == 0) $controlDiff = 1; + if($controlDiff == 0) { + $controlDiff = 1; + } //calculate if the data point is in control or what { - if($i < $runningAverageSize) - { - $offset = ($i-$runningAverageSize < 0) ? 0 : ($i-$runningAverageSize); - $l = $i-$offset+1; - } - else + if($i < $runningAverageSize) { + $offset = ($i-$runningAverageSize < 0) ? 0 : ($i-$runningAverageSize); + $l = $i-$offset+1; + } + else { - $offset = $i-$runningAverageSize+1; - $l = $runningAverageSize; - } + $offset = $i-$runningAverageSize+1; + $l = $runningAverageSize; + } $ra_values = array(); - for($j = $offset, $m = $offset+$l; $j < $m; $j++) + for($j = $offset, $m = $offset+$l; $j < $m; $j++) { - $ra_values[] = floatval($data[$j]['value_string']); - } + $ra_values[] = floatval($data[$j]['value_string']); + } $ra_count = count($ra_values); - if($ra_count < $runningAverageSize) ///try to find the previous points and continue the running average + if($ra_count < $runningAverageSize) ///try to find the previous points and continue the running average { - $dataQuery2 = - "SELECT md.collected, md.value_string, aki.env_version + $dataQuery2 = + "SELECT md.collected, md.value_string, aki.env_version FROM `metric_data` md, `ak_instance` aki WHERE md.resource_id = :resource_id @@ -2904,66 +2933,82 @@ public function calculateControls( and aki.resource_id = md.resource_id ORDER BY collected desc limit $runningAverageSize"; - $data2 = $this->db->query($dataQuery2, $dataset); - $data2Count = count($data2); - for($j = 0; $j < $data2Count && $j < $runningAverageSize - $ra_count; $j++) - { - $ra_values[] = $data2[$j]['value_string']; - } - + $data2 = $this->db->query($dataQuery2, $dataset); + $data2Count = count($data2); + for($j = 0; $j < $data2Count && $j < $runningAverageSize - $ra_count; $j++) + { + $ra_values[] = $data2[$j]['value_string']; } + } + $runningAverage = array_sum($ra_values)/count($ra_values); $decision_value = floatval($data[$i]['value_string']); $controlStatus='undefined'; - if($controlStart!==null){ - //method 1: use running average to calcualte control - if($decision_value < $controlStart) $control = ($larger?-1.0:1.0) * abs($controlStart - $decision_value)/$controlDiff; - else if($decision_value > $controlEnd) $control = ($larger?1.0:-1.0) * abs($decision_value - $controlEnd)/$controlDiff; - else $control = 0; - - //TODO: set $controlPivot globally - $controlPivot=0.0;//-0.5; - if($control > 0) $controlStatus='over_performing'; - else if($control < $controlPivot) $controlStatus='under_performing'; - else $controlStatus='in_contol'; - } - else{ + if($controlStart!==null) { + //method 1: use running average to calcualte control + if($decision_value < $controlStart) { + $control = ($larger?-1.0:1.0) * abs($controlStart - $decision_value)/$controlDiff; + } elseif($decision_value > $controlEnd) { + $control = ($larger?1.0:-1.0) * abs($decision_value - $controlEnd)/$controlDiff; + } else { $control = 0; } - /* - //method 2: use current value to calculate control - if($data[$i]['value_string'] < $controlStart) $control = ($larger?-1.0:1.0) * abs($controlStart - $data[$i]['value_string'])/$controlDiff; - else if($data[$i]['value_string'] > $controlEnd) $control = ($larger?1.0:-1.0) * abs($data[$i]['value_string'] - $controlEnd)/$controlDiff; - else $control = 0; - */ - //Update DB - if($runningAverage===NULL){$runningAverage='NULL';} - if($control===NULL){$control='NULL';$controlStatus='undefined';} - if($controlStart===NULL){$controlStart='NULL';} - if($controlEnd===NULL){$controlEnd='NULL';} - if($controlMin===NULL){$controlMin='NULL';} - if($controlMax===NULL){$controlMax='NULL';} - if($data[$i]['controlStatus']==='control_region_time_interval') - {$controlStatus='control_region_time_interval';} - - $update_running_average.=" WHEN '{$data[$i]['collected']}' THEN $runningAverage \n"; - $update_control.=" WHEN '{$data[$i]['collected']}' THEN $control \n"; - $update_controlStart.=" WHEN '{$data[$i]['collected']}' THEN $controlStart \n"; - $update_controlEnd.=" WHEN '{$data[$i]['collected']}' THEN $controlEnd \n"; - $update_controlMin.=" WHEN '{$data[$i]['collected']}' THEN $controlMin \n"; - $update_controlMax.=" WHEN '{$data[$i]['collected']}' THEN $controlMax \n"; - $update_controlStatus.=" WHEN '{$data[$i]['collected']}' THEN '$controlStatus' \n"; - - $collected_array[]="'".$data[$i]['collected']."'"; - - - $Nallupdate_metric_data+=1; - if($Nallupdate_metric_data>=500||$i >= $length-1){// - $time_start_sqlupdate = microtime(true); - $collected_array=implode(',',$collected_array); - $allupdate_metric_data="UPDATE metric_data SET + + //TODO: set $controlPivot globally + $controlPivot=0.0;//-0.5; + if($control > 0) { + $controlStatus='over_performing'; + } elseif($control < $controlPivot) { + $controlStatus='under_performing'; + } else { + $controlStatus='in_contol'; + } + } + else{ + $control = 0; + } + + //Update DB + if($runningAverage===null) { + $runningAverage='NULL'; + } + if($control===null) { + $control='NULL'; + $controlStatus='undefined'; + } + if($controlStart===null) { + $controlStart='NULL'; + } + if($controlEnd===null) { + $controlEnd='NULL'; + } + if($controlMin===null) { + $controlMin='NULL'; + } + if($controlMax===null) { + $controlMax='NULL'; + } + if($data[$i]['controlStatus']==='control_region_time_interval') { + $controlStatus='control_region_time_interval'; + } + + $update_running_average.=" WHEN '{$data[$i]['collected']}' THEN $runningAverage \n"; + $update_control.=" WHEN '{$data[$i]['collected']}' THEN $control \n"; + $update_controlStart.=" WHEN '{$data[$i]['collected']}' THEN $controlStart \n"; + $update_controlEnd.=" WHEN '{$data[$i]['collected']}' THEN $controlEnd \n"; + $update_controlMin.=" WHEN '{$data[$i]['collected']}' THEN $controlMin \n"; + $update_controlMax.=" WHEN '{$data[$i]['collected']}' THEN $controlMax \n"; + $update_controlStatus.=" WHEN '{$data[$i]['collected']}' THEN '$controlStatus' \n"; + + $collected_array[]="'".$data[$i]['collected']."'"; + + $Nallupdate_metric_data+=1; + if($Nallupdate_metric_data>=500||$i >= $length-1) {// + $time_start_sqlupdate = microtime(true); + $collected_array=implode(',', $collected_array); + $allupdate_metric_data="UPDATE metric_data SET running_average = CASE collected {$update_running_average} ELSE running_average @@ -2996,11 +3041,11 @@ public function calculateControls( and ak_id = {$dataset['ak_id']} and metric_id = {$dataset['metric_id']} and collected IN ({$collected_array}) ;"; - $this->db->execute($allupdate_metric_data); - $time_end_sqlupdate1 = microtime(true); - $timing['sqlupdate1']+=$time_end_sqlupdate1 - $time_start_sqlupdate; + $this->db->execute($allupdate_metric_data); + $time_end_sqlupdate1 = microtime(true); + $timing['sqlupdate1']+=$time_end_sqlupdate1 - $time_start_sqlupdate; - $allupdate_a_data2="UPDATE a_data2 SET + $allupdate_a_data2="UPDATE a_data2 SET running_average = CASE FROM_UNIXTIME(collected) {$update_running_average} ELSE running_average @@ -3034,12 +3079,12 @@ public function calculateControls( and num_units = {$akId2akDefIdMap[$dataset['ak_id']]['num_units']} and metric_id = {$dataset['metric_id']} and FROM_UNIXTIME(collected) IN ({$collected_array}) ;"; - $this->db->execute($allupdate_a_data2); - $time_end_sqlupdate2 = microtime(true); + $this->db->execute($allupdate_a_data2); + $time_end_sqlupdate2 = microtime(true); - #ak_instance - if($metrics_walltime_id!==NULL && $dataset['metric_id']===$metrics_walltime_id){ - $allupdate_ak_instance="UPDATE ak_instance SET + // ak_instance + if($metrics_walltime_id!==null && $dataset['metric_id']===$metrics_walltime_id) { + $allupdate_ak_instance="UPDATE ak_instance SET controlStatus = CASE collected {$update_controlStatus} ELSE controlStatus @@ -3047,26 +3092,26 @@ public function calculateControls( WHERE resource_id = {$dataset['resource_id']} and ak_id = {$dataset['ak_id']} and collected IN ({$collected_array}) ;"; - $this->db->execute($allupdate_ak_instance); - } + $this->db->execute($allupdate_ak_instance); + } - $timing['sqlupdate1']+=$time_end_sqlupdate1 - $time_start_sqlupdate; - $timing['sqlupdate2']+=$time_end_sqlupdate2 - $time_end_sqlupdate1; + $timing['sqlupdate1']+=$time_end_sqlupdate1 - $time_start_sqlupdate; + $timing['sqlupdate2']+=$time_end_sqlupdate2 - $time_end_sqlupdate1; - $timing['N_sqlupdate1']+=$Nallupdate_metric_data; - $timing['N_sqlupdate2']+=$Nallupdate_metric_data; + $timing['N_sqlupdate1']+=$Nallupdate_metric_data; + $timing['N_sqlupdate2']+=$Nallupdate_metric_data; - $update_running_average=""; - $update_control=""; - $update_controlStart=""; - $update_controlEnd=""; - $update_controlMin=""; - $update_controlMax=""; - $update_controlStatus=""; - $collected_array=array(); + $update_running_average=""; + $update_control=""; + $update_controlStart=""; + $update_controlEnd=""; + $update_controlMin=""; + $update_controlMax=""; + $update_controlStatus=""; + $collected_array=array(); - $Nallupdate_metric_data=0; - } + $Nallupdate_metric_data=0; + } } } @@ -3079,12 +3124,12 @@ public function calculateControls( $time_end_bigcycle = microtime(true); $t_bigcycle=$time_end_bigcycle - $time_start_bigcycle; - $this->log("Timing(Cycle for calculating running average and control values)=".($t_bigcycle),PEAR_LOG_DEBUG); - $this->log(" Timing(data for control calc)=".sprintf("%.4f",$timing['dataQuery'])." (".sprintf("%.2f",100.0*$timing['dataQuery']/$t_bigcycle)."%)",PEAR_LOG_DEBUG); - $this->log(" Timing(Control region calculation)=".sprintf("%.4f",$timing['contRegCalc'])." (".sprintf("%.2f",100.0*$timing['contRegCalc']/$t_bigcycle)."%)",PEAR_LOG_DEBUG); - $this->log(" Timing(data for control calc)=".sprintf("%.4f",$timing['contCalc'])." (".sprintf("%.2f",100.0*$timing['contCalc']/$t_bigcycle)."%)",PEAR_LOG_DEBUG); - $this->log(" Timing(sql update)=".sprintf("%.4f",$timing['sqlupdate1'])." (".sprintf("%.2f",100.0*$timing['sqlupdate1']/$t_bigcycle)."%)",PEAR_LOG_DEBUG); - $this->log(" Timing(sql update)=".sprintf("%.4f",$timing['sqlupdate2'])." (".sprintf("%.2f",100.0*$timing['sqlupdate2']/$t_bigcycle)."%)",PEAR_LOG_DEBUG); + $this->log("Timing(Cycle for calculating running average and control values)=".($t_bigcycle), PEAR_LOG_DEBUG); + $this->log(" Timing(data for control calc)=".sprintf("%.4f", $timing['dataQuery'])." (".sprintf("%.2f", 100.0*$timing['dataQuery']/$t_bigcycle)."%)", PEAR_LOG_DEBUG); + $this->log(" Timing(Control region calculation)=".sprintf("%.4f", $timing['contRegCalc'])." (".sprintf("%.2f", 100.0*$timing['contRegCalc']/$t_bigcycle)."%)", PEAR_LOG_DEBUG); + $this->log(" Timing(data for control calc)=".sprintf("%.4f", $timing['contCalc'])." (".sprintf("%.2f", 100.0*$timing['contCalc']/$t_bigcycle)."%)", PEAR_LOG_DEBUG); + $this->log(" Timing(sql update)=".sprintf("%.4f", $timing['sqlupdate1'])." (".sprintf("%.2f", 100.0*$timing['sqlupdate1']/$t_bigcycle)."%)", PEAR_LOG_DEBUG); + $this->log(" Timing(sql update)=".sprintf("%.4f", $timing['sqlupdate2'])." (".sprintf("%.2f", 100.0*$timing['sqlupdate2']/$t_bigcycle)."%)", PEAR_LOG_DEBUG); } @@ -3093,7 +3138,7 @@ public function calculateControls( // materialized views and periodically it takes 10+ seconds to query the view. // -------------------------------------------------------------------------------- - public function createAggregateTables($includeControlData = FALSE) + public function createAggregateTables($includeControlData = false) { $this->db->handle()->beginTransaction(); @@ -3139,7 +3184,7 @@ public function createAggregateTables($includeControlData = FALSE) WHERE def.visible = 1 AND r.visible = 1 AND ai.status = 'success' GROUP BY def.ak_def_id, r.resource_id, m.metric_id, ak.num_units ORDER BY def.name, r.resource, m.name, ak.num_units"; - $this->db->execute($sql); + $this->db->execute($sql); // Create a table containing all of the application kernel metric data @@ -3183,14 +3228,13 @@ public function createAggregateTables($includeControlData = FALSE) JOIN metric_data md USING(metric_id, ak_id, collected, resource_id) WHERE def.visible = 1 AND r.visible = 1 AND ai.status = 'success' ORDER BY def.name, r.resource, m.name, ak.num_units, ai.collected"; - $this->db->execute($sql); + $this->db->execute($sql); - if ( $includeControlData ) - { - $sql = "DROP TABLE IF EXISTS a_tree2"; - $this->db->execute($sql); + if ($includeControlData ) { + $sql = "DROP TABLE IF EXISTS a_tree2"; + $this->db->execute($sql); - $sql = "CREATE TABLE a_tree2 ( + $sql = "CREATE TABLE a_tree2 ( ak_name varchar(64) NOT NULL, resource varchar(128) NOT NULL, metric varchar(128) NOT NULL, @@ -3223,12 +3267,12 @@ public function createAggregateTables($includeControlData = FALSE) WHERE def.visible = 1 AND r.visible = 1 AND ai.status <> 'queued' GROUP BY def.ak_def_id, r.resource_id, m.metric_id, ak.num_units ORDER BY def.name, r.resource, m.name, ak.num_units"; - $this->db->execute($sql); + $this->db->execute($sql); - $sql = "DROP TABLE IF EXISTS a_data2"; - $this->db->execute($sql); + $sql = "DROP TABLE IF EXISTS a_data2"; + $this->db->execute($sql); - $sql = "CREATE TABLE a_data2 ( + $sql = "CREATE TABLE a_data2 ( ak_name varchar(64) NOT NULL, resource varchar(128) NOT NULL, metric varchar(128) NOT NULL, @@ -3277,9 +3321,8 @@ public function createAggregateTables($includeControlData = FALSE) AND map.metric_id = md.metric_id ) WHERE def.visible = 1 AND r.visible = 1 AND ai.status <> 'queued' ORDER BY def.name, r.resource, m.name, ak.num_units, ai.collected"; - $this->db->execute($sql); - } // if ( $includeControlData ) - + $this->db->execute($sql); + } } catch (Exception $e) { $this->log("Error building aggregate tables '$sql': " . $e->getMessage()); $this->db->handle()->rollback(); @@ -3288,13 +3331,13 @@ public function createAggregateTables($includeControlData = FALSE) $this->db->handle()->commit(); - return TRUE; + return true; - } // createAggregateTables() + } // -------------------------------------------------------------------------------- - public function updateEnvironmentVersions($dryRunMode = FALSE) + public function updateEnvironmentVersions($dryRunMode = false) { $appKernelDefs = $this->loadAppKernelDefinitions(); $resources = $this->loadResources(); @@ -3305,12 +3348,10 @@ public function updateEnvironmentVersions($dryRunMode = FALSE) foreach ( $resources as $resource ) { print "Scan resource {$resource->nickname}\n"; - //if($resource->nickname!=='edge')continue; foreach ( $appKernelDefs as $appKernelDef ) { print " Scan app kernel {$appKernelDef->basename}\n"; - //if($appKernelDef->basename!=='xdmod.app.md.namd')continue; $akInstances = $this->loadAppKernelInstances($appKernelDef->id, $resource->id); @@ -3324,14 +3365,15 @@ public function updateEnvironmentVersions($dryRunMode = FALSE) $this->loadAppKernelInstanceInfo($options, $instanceData); $recalculatedEnvVersion = $instanceData->environmentVersion(); - if ( $recalculatedEnvVersion != $instanceData->environmentVersion ) - { + if ($recalculatedEnvVersion != $instanceData->environmentVersion ) { print " * " . $resource->nickname . "@" . $appKernelDef->basename . "." . $instanceData->num_proc_units . " (" . date("Y-m-d", $timestamp) . ") UPDATE " . $recalculatedEnvVersion . " != " . $instanceData->environmentVersion . "\n"; - if ( $dryRunMode ) continue; + if ($dryRunMode ) { + continue; + } try { $sql = "UPDATE ak_instance SET env_version=? WHERE " . @@ -3348,24 +3390,22 @@ public function updateEnvironmentVersions($dryRunMode = FALSE) } } - } // foreach ( $akInstances as $akInstance ) - } // foreach ( $appKernelDefs as $appKernelDef ) - } // foreach ( $resources as $resource ) - + } + } + } $this->db->handle()->commit(); - - } // updateEnvironmentVersions() - -} // class AppKernelDb + } +} // ================================================================================ // An N-Tuple is a set of N ordered values. Set up an N-Tuple that can be used // to track when database results change. // ================================================================================ - +// phpcs:disable PSR1.Classes.ClassDeclaration class Tuple { + // phpcs:enable PSR1.Classes.ClassDeclaration private $size = 0; private $data = array(); @@ -3378,7 +3418,7 @@ class Tuple public function __construct($size) { $this->size = $size; - $this->data = array_fill(0, $size, NULL); + $this->data = array_fill(0, $size, null); } // -------------------------------------------------------------------------------- @@ -3390,12 +3430,12 @@ public function __construct($size) public function set() { - if ( func_num_args() != $this->size ) + if (func_num_args() != $this->size ) { throw new Exception("Not enough data elements"); + } $this->data = func_get_args(); - } // set() - -} // class Tuple + } +} // ================================================================================ // A dataset containing three vectors containing values to be plotted, @@ -3405,12 +3445,22 @@ public function set() // metric unit, and number of processing units, app kernel and resource // descriptions. // ================================================================================ - +// phpcs:disable PSR1.Classes.ClassDeclaration class Dataset { - public $akName, $resourceName, $metric, $metricUnit, $numProcUnits, $description, $resourceDescription; - public $rawNumProcUnits, $note; - public $akId, $resourceId, $metricId; + // phpcs:enable PSR1.Classes.ClassDeclaration + public $akName ; + public $resourceName ; + public $metric ; + public $metricUnit ; + public $numProcUnits ; + public $description ; + public $resourceDescription; + public $rawNumProcUnits ; + public $note; + public $akId ; + public $resourceId ; + public $metricId; public $valueVector = array(); public $valueLowVector = array(); public $valueHighVector = array(); @@ -3424,10 +3474,19 @@ class Dataset public $versionVector = array(); public $controlStatus = array(); - public function __construct($name, $akId, $resource, $resourceId, $metric, $metricId, - $metricUnit, $numProcUnits, $description, $rawNumProcUnits, - $resourceDescription = 'resource description') - { + public function __construct( + $name, + $akId, + $resource, + $resourceId, + $metric, + $metricId, + $metricUnit, + $numProcUnits, + $description, + $rawNumProcUnits, + $resourceDescription = 'resource description' + ) { $this->akName = $name; $this->akId = $akId; $this->resourceName = $resource; @@ -3453,7 +3512,9 @@ public function getChartTimeVector() public function durationInDays() { $length = count($this->valueVector); - if($length <= 0) return 0; + if($length <= 0) { + return 0; + } return ($this->timeVector[$length-1] - $this->timeVector[0])/(3600.00*24.0); } @@ -3467,10 +3528,9 @@ public function export() $title2 = array(); $length = count($this->valueVector); - if($length > 0) - { + if($length > 0) { $duration_info['start'] = date('Y-m-d', $this->timeVector[0]); - $duration_info['end'] = date('Y-m-d',$this->timeVector[$length-1]); + $duration_info['end'] = date('Y-m-d', $this->timeVector[$length-1]); $title['title'] = "App Kernel Data"; $title2['parameters'] = array("App Kernel = ". $this->akName, @@ -3480,7 +3540,7 @@ public function export() $headers = array('Date', 'Value', 'Control', 'Changed'); for($i = 0; $i < $length; $i++) { - $rows[$this->timeVector[$i]] = array(date('Y-m-d H:i:s',$this->timeVector[$i]), $this->valueVector[$i], $this->controlVector[$i], $this->versionVector[$i]==1?'yes':'no'); + $rows[$this->timeVector[$i]] = array(date('Y-m-d H:i:s', $this->timeVector[$i]), $this->valueVector[$i], $this->controlVector[$i], $this->versionVector[$i]==1?'yes':'no'); } } @@ -3501,21 +3561,33 @@ public function export() public function aggregate($aggTime) { $aggTime = intval($aggTime); - $aggDataset = new Dataset($this->akName, $this->akId, $this->resourceName, $this->resourceId, - $this->metric, $this->metricId, $this->metricUnit, $this->numProcUnits, $this->description, - $this->rawNumProcUnits, $resourceDescription = $this->resourceDescription); + $aggDataset = new Dataset( + $this->akName, + $this->akId, + $this->resourceName, + $this->resourceId, + $this->metric, + $this->metricId, + $this->metricUnit, + $this->numProcUnits, + $this->description, + $this->rawNumProcUnits, + $this->resourceDescription + ); - if(count($this->timeVector) === 0) + if(count($this->timeVector) === 0) { return $aggDataset; + } - if($aggTime === 24*3600) + if($aggTime === 24*3600) { $aggDataset->note .= "(One day avg.)"; - elseif($aggTime === 7*24*3600) + } elseif($aggTime === 7*24*3600) { $aggDataset->note .= "(Avr. by week)"; - elseif($aggTime === 30*24*3600) + } elseif($aggTime === 30*24*3600) { $aggDataset->note .= "(Avr. by 30 days)"; - else + } else { $aggDataset->note .= sprintf("(Avr. by %.1f days)", $aggTime/(24*3600)); + } $prevTime = intval(intval($this->timeVector[0])/$aggTime); $meanVal = 0.0; @@ -3525,30 +3597,37 @@ public function aggregate($aggTime) $totalPoints = count($this->timeVector); for ($i = 0; $i < $totalPoints; $i++) { $curTime = intval(intval($this->timeVector[$i])/$aggTime); - if($curTime !== $prevTime || $i === $totalPoints-1) - { + if($curTime !== $prevTime || $i === $totalPoints-1) { $aggDataset->timeVector[] = strval($curTime * $aggTime); $aggDataset->valueVector[] = strval($meanVal/$n); $aggDataset->valueHighVector[] = strval($maxVal); $aggDataset->valueLowVector[] = strval($minVal); // for following arragy let's keep only last record for aggregated period - if(count($this->controlVector)>$i) + if(count($this->controlVector)>$i) { $aggDataset->controlVector[] = $this->controlVector[$i]; - if(count($this->controlStartVector)>$i) + } + if(count($this->controlStartVector)>$i) { $aggDataset->controlStartVector[] = $this->controlStartVector[$i]; - if(count($this->controlEndVector)>$i) + } + if(count($this->controlEndVector)>$i) { $aggDataset->controlEndVector[] = $this->controlEndVector[$i]; - if(count($this->controlMinVector)>$i) + } + if(count($this->controlMinVector)>$i) { $aggDataset->controlMinVector[] = $this->controlMinVector[$i]; - if(count($this->controlMaxVector)>$i) + } + if(count($this->controlMaxVector)>$i) { $aggDataset->controlMaxVector[] = $this->controlMaxVector[$i]; - if(count($this->runningAverageVector)>$i) + } + if(count($this->runningAverageVector)>$i) { $aggDataset->runningAverageVector[] = $this->runningAverageVector[$i]; - if(count($this->versionVector)>$i) + } + if(count($this->versionVector)>$i) { $aggDataset->versionVector[] = $this->versionVector[$i]; - if(count($this->controlStatus)>$i) + } + if(count($this->controlStatus)>$i) { $aggDataset->controlStatus[] = $this->controlStatus[$i]; + } $prevTime = $curTime; $meanVal = 0.0; @@ -3573,23 +3652,20 @@ public function autoAggregate() { // aggregate output if number of points is large $num_points = count($this->timeVector); - if($num_points < 201) - { + if($num_points < 201) { return $this; } else { $dt = intval($this->timeVector[0]) - intval($this->timeVector[$num_points-1]); $dt /= 24*3600; - if($dt < 365/2) + if($dt < 365/2) { return $this->aggregate(24 * 3600); - elseif($dt < 365) + } elseif($dt < 365) { return $this->aggregate(7 * 24 * 3600); - else + } else { return $this->aggregate(30 * 24 * 3600); + } } } - -} // class Dataset - -?> +} From 2f84d587eca753c136a30d6d89e7856a18e1d4b6 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Wed, 1 Apr 2020 10:41:04 -0400 Subject: [PATCH 16/63] php styling fixes --- classes/AppKernel/AppKernelDb.php | 10 +- .../Visualization/HighChartAppKernel.php | 476 +++++++++--------- 2 files changed, 253 insertions(+), 233 deletions(-) diff --git a/classes/AppKernel/AppKernelDb.php b/classes/AppKernel/AppKernelDb.php index 0eae731..569a7bc 100644 --- a/classes/AppKernel/AppKernelDb.php +++ b/classes/AppKernel/AppKernelDb.php @@ -132,7 +132,7 @@ public function storeIngestionLogEntry(IngestionLogEntry $log) "INSERT INTO ingester_log (source, url, num, last_update, start_time, end_time, success, message, reportobj) VALUES (?, ?, ?, FROM_UNIXTIME(?), FROM_UNIXTIME(?), FROM_UNIXTIME(?), ?, ?, COMPRESS(?))"; - $params = array($log->source, + $params = array($log->source, $log->url, $log->num, $log->last_update, @@ -142,11 +142,11 @@ public function storeIngestionLogEntry(IngestionLogEntry $log) $log->message, $log->reportObj); $numRows = $this->db->execute($sql, $params); - if (1 == $numRows ) { - $this->log("Added entry to ingestion log"); - } + if (1 == $numRows ) { + $this->log("Added entry to ingestion log"); + } - return ( 1 == $numRows ); + return ( 1 == $numRows ); } // -------------------------------------------------------------------------------- diff --git a/classes/DataWarehouse/Visualization/HighChartAppKernel.php b/classes/DataWarehouse/Visualization/HighChartAppKernel.php index d5001ee..3c12826 100644 --- a/classes/DataWarehouse/Visualization/HighChartAppKernel.php +++ b/classes/DataWarehouse/Visualization/HighChartAppKernel.php @@ -9,15 +9,15 @@ */ class HighChartAppKernel extends HighChart2 { - const inControlColor = '#aaffaa'; + const IN_CONTROL_COLOR = '#aaffaa'; - const controlRegionTimeIntervalColor = '#E0F8F7'; + const CONTROL_REGION_TIME_INTERVAL_COLOR = '#E0F8F7'; - const overPerformingColor = '#F2F5A9'; + const OVERPERFORMING_COLOR = '#F2F5A9'; - const underPerformingColor = '#F5A9BC'; + const UNDERPERFORMING_COLOR = '#F5A9BC'; - const minmaxColor = '#cc99ff'; + const MINMAX_COLOR = '#cc99ff'; public $_axis_index; @@ -63,19 +63,20 @@ public function __construct( public function configure( &$datasets, $font_size = 0, - $limit = NULL, $offset = NULL, + $limit = null, + $offset = null, $isSVG = false, $drillDown = false, $colorsPerCore = false, $longLegend = false, - $showChangeIndicator = true , + $showChangeIndicator = true, $showControls = false, $discreteControls = false, $showControlZones = false, $showRunningAverages = false, $showControlInterval = false, $showMinMax = false, - $contextMenuOnClick=NULL + $contextMenuOnClick = null ) { $this->_chart['title']['style'] = array( 'color'=> '#000000', @@ -105,9 +106,8 @@ public function configure( 'type' => 'datetime', 'min' => strtotime($this->_startDate)*1000, // Don't specify a max xAxis value--highcharts is smart enough to plot the whole dataset. - //'max' => strtotime($this->_endDate)*1000, 'labels' => $this->_swapXY ? array( - 'enabled' => true, /*'rotation' => -90, 'align' => 'right',*/ + 'enabled' => true, 'step' => round(($font_size<0?0:$font_size+5 ) / 11), 'style' => array( 'fontSize' => (11 + $font_size).'px', @@ -115,7 +115,7 @@ public function configure( ) ) : array( - 'enabled' => true, /*'rotation' => -90, 'align' => 'right',*/ + 'enabled' => true, 'step' => ceil(($font_size<0?0:$font_size+11 ) / 11), 'style' => array( 'fontSize' => (11 + $font_size).'px', @@ -133,23 +133,32 @@ public function configure( foreach($datasets as $index => $dataset) { - if(!isset($this->_axis[$dataset->metricUnit])) - { + if(!isset($this->_axis[$dataset->metricUnit])) { $yMin=min($dataset->valueVector); - if(count($dataset->valueLowVector)>0)$yMin=min($yMin, min($dataset->valueLowVector)); - if(count($dataset->controlMinVector)>0)$yMin=min($yMin, min($dataset->controlMinVector)); + if(count($dataset->valueLowVector)>0) { + $yMin = min($yMin, min($dataset->valueLowVector)); + } + if(count($dataset->controlMinVector)>0) { + $yMin = min($yMin, min($dataset->controlMinVector)); + } $yMax=max($dataset->valueVector); - if(count($dataset->valueHighVector)>0)$yMax=max($yMax, max($dataset->valueHighVector)); - if(count($dataset->controlMaxVector)>0)$yMax=max($yMax, max($dataset->controlMaxVector)); + if(count($dataset->valueHighVector)>0) { + $yMax=max($yMax, max($dataset->valueHighVector)); + } + if(count($dataset->controlMaxVector)>0) { + $yMax=max($yMax, max($dataset->controlMaxVector)); + } $dy=$yMax-$yMin; $yMin-=0.05*$dy; $yMax+=0.05*$dy; - if($yMin<0)$yMin=0; + if($yMin<0) { + $yMin=0; + } $yAxisColorValue = $colors[$this->_axisCount % 33]; - $yAxisColor = '#'.str_pad(dechex($yAxisColorValue),6,'0',STR_PAD_LEFT); + $yAxisColor = '#'.str_pad(dechex($yAxisColorValue), 6, '0', STR_PAD_LEFT); $yAxis = array( 'title' => array( 'text' => $dataset->metricUnit, @@ -187,13 +196,15 @@ public function configure( $yMin-=0.05*$dy; $yMax+=0.05*$dy; - if($yMin<0)$yMin=0; + if($yMin<0) { + $yMin=0; + } - if($this->_axis[$dataset->metricUnit]['min']>$yMin){ + if($this->_axis[$dataset->metricUnit]['min']>$yMin) { $this->_axis[$dataset->metricUnit]['min']=$yMin; $this->_chart['yAxis'][$this->_axis_index[$dataset->metricUnit]]['min']=$yMin; } - if($this->_axis[$dataset->metricUnit]['max']<$yMax){ + if($this->_axis[$dataset->metricUnit]['max']<$yMax) { $this->_axis[$dataset->metricUnit]['max']=$yMax; $this->_chart['yAxis'][$this->_axis_index[$dataset->metricUnit]]['max']=$yMax; } @@ -205,23 +216,21 @@ public function configure( $dataCount = count($dataset->valueVector); $yAxis = $this->_axis[$dataset->metricUnit]; $yAxisColorValue = $colors[$yAxis['index'] % 33]; - $yAxisColor = '#'.str_pad(dechex($yAxisColorValue),6,'0',STR_PAD_LEFT); + $yAxisColor = '#'.str_pad(dechex($yAxisColorValue), 6, '0', STR_PAD_LEFT); $color_value = $colorsPerCore?self::getAppKernelColor($dataset->rawNumProcUnits): $colors[$this->_datasetCount % 33]; - $color = '#'.str_pad(dechex($color_value),6,'0',STR_PAD_LEFT); - $lineColor = '#'.str_pad(dechex(\DataWarehouse\Visualization::alterBrightness($color_value,-70)),6,'0',STR_PAD_LEFT); + $color = '#'.str_pad(dechex($color_value), 6, '0', STR_PAD_LEFT); + $lineColor = '#'.str_pad(dechex(\DataWarehouse\Visualization::alterBrightness($color_value, -70)), 6, '0', STR_PAD_LEFT); - if($longLegend) - { + if($longLegend) { $datasetName = '['.$dataset->numProcUnits.': '.$dataset->resourceName.']
'.$dataset->akName.' '. $dataset->metric.$dataset->note.' ['.$dataset->metricUnit.']'; - } - else - { - if($dataset->note==="") + } else { + if($dataset->note==="") { $datasetName = $dataset->numProcUnits; - else + } else { $datasetName = $dataset->numProcUnits . " " . $dataset->note; + } } $enableMarkers = $dataCount < 11 || ($dataCount < 31 && $this->_width > \DataWarehouse\Visualization::$thumbnail_width); @@ -232,11 +241,11 @@ public function configure( 'x' => $dataset->timeVector[$i]*1000.0, 'y' => (double)$v ); - if($v===null) - $sv['y']=null; + if($v===null) { + $sv['y'] = null; + } $sv['marker'] = array(); - if($showChangeIndicator && $dataset->versionVector[$i] > 0) - { + if($showChangeIndicator && $dataset->versionVector[$i] > 0) { $sv['marker']['symbol'] = $this->_indicator_url; $sv['marker']['enabled'] = true; }else @@ -268,8 +277,7 @@ public function configure( 'data' => $seriesValues ); - if($drillDown&&$contextMenuOnClick===NULL) - { + if($drillDown&&$contextMenuOnClick===null) { $data_series_desc['cursor'] = 'pointer'; $data_series_desc['rawNumProcUnits'] = $dataset->rawNumProcUnits; } @@ -277,12 +285,11 @@ public function configure( $this->_chart['series'][] = $data_series_desc; $versionSum = array_sum($dataset->versionVector); - if($showChangeIndicator && $versionSum > 0 && !isset($this->changeIndicatorInLegend) ) - { + if($showChangeIndicator && $versionSum > 0 && !isset($this->changeIndicatorInLegend) ) { $versionValues = array(); foreach($dataset->versionVector as $i => $v) { - $versionValues[] = array('x' => $dataset->timeVector[$i]*1000.0, 'y' => null/* $v > 0 ?(double)$dataset->valueVector[$i]: null*/) ; + $versionValues[] = array('x' => $dataset->timeVector[$i]*1000.0, 'y' => null) ; } $version_series_desc = array( @@ -297,7 +304,6 @@ public function configure( 'enabled' => true, 'symbol' => $this->_indicator_url, ), - //'lineWidth' => 2 + $font_size/4, 'showInLegend' => !isset($this->changeIndicatorInLegend), 'legendIndex' => 100000, 'data' => $versionValues @@ -306,17 +312,15 @@ public function configure( $this->_chart['series'][] = $version_series_desc; } - if($showRunningAverages) - { + if($showRunningAverages) { $averageValues = array(); foreach($dataset->runningAverageVector as $i => $v) { - $sv = array('x' => $dataset->timeVector[$i]*1000.0, 'y' => $v?(double)$v:NULL); - + $sv = array('x' => $dataset->timeVector[$i]*1000.0, 'y' => $v?(double)$v:null); $averageValues[] = $sv; } - $aColor = '#'.str_pad(dechex(\DataWarehouse\Visualization::alterBrightness($color,-200)),6,'0',STR_PAD_LEFT); + $aColor = '#'.str_pad(dechex(\DataWarehouse\Visualization::alterBrightness($color, -200)), 6, '0', STR_PAD_LEFT); $data_series_desc = array( 'name' => 'Running Average', 'zIndex' => 8, @@ -339,10 +343,8 @@ public function configure( $this->_chart['series'][] = $data_series_desc; } - if($showControls) - { - if(!isset($this->_axis['control'])) - { + if($showControls) { + if(!isset($this->_axis['control'])) { $yAxisControl = array( 'title' => array( 'text' => 'Control', @@ -375,11 +377,14 @@ public function configure( $controlVector = array(); foreach($dataset->controlVector as $i => $control) { - if($discreteControls) - { - if($control > 0) $control = 1; - else if($control < $controlPivot) $control = -1; - else $control = 0; + if($discreteControls) { + if($control > 0) { + $control = 1; + } elseif($control < $controlPivot) { + $control = -1; + } else { + $control = 0; + } } $sv = array('x' => $dataset->timeVector[$i]*1000.0, 'y' => (double)$control); $controlVector[] = $sv; @@ -410,7 +415,7 @@ public function configure( foreach($dataset->valueLowVector as $i => $v) { $v2 = $dataset->valueHighVector[$i]; - $sv = array($dataset->timeVector[$i]*1000.0, $v2?(double)$v2:NULL, $v?(double)$v:NULL); + $sv = array($dataset->timeVector[$i]*1000.0, $v2?(double)$v2:null, $v?(double)$v:null); $rangeValues[] = $sv; } @@ -418,7 +423,7 @@ public function configure( $data_series_desc = array( 'name' => 'MinMax Values', 'zIndex' => 6, - 'color'=> self::minmaxColor, + 'color'=> self::MINMAX_COLOR, 'type' => 'areasplinerange', 'shadow' => false, 'yAxis' => $yAxis['index'], @@ -432,13 +437,12 @@ public function configure( ); $this->_chart['series'][] = $data_series_desc; } - if($showControlInterval) - { + if($showControlInterval) { $rangeValues = array(); foreach($dataset->controlStartVector as $i => $v) { $v2 = $dataset->controlEndVector[$i]; - $sv = array($dataset->timeVector[$i]*1000.0, $v2?(double)$v2:NULL, $v?(double)$v:NULL); + $sv = array($dataset->timeVector[$i]*1000.0, $v2?(double)$v2:null, $v?(double)$v:null); $rangeValues[] = $sv; } @@ -446,7 +450,7 @@ public function configure( $data_series_desc = array( 'name' => 'Control Band', 'zIndex' => 0, - 'color'=> self::inControlColor, + 'color'=> self::IN_CONTROL_COLOR, 'type' => 'areasplinerange', 'shadow' => false, 'yAxis' => $yAxis['index'], @@ -461,169 +465,188 @@ public function configure( $this->_chart['series'][] = $data_series_desc; } - if($showControlZones) - { - $controlCount = count($dataset->controlVector); - $outOfControlWindowStartIndex = NULL; - $betterThanControlWindowStartIndex = NULL; - $inControlWindowStartIndex = NULL; - $lastControl = NULL; - $times = $dataset->timeVector; - $controlStatus = $dataset->controlStatus; - - for($i=0;$i=count($controlStatus)){$i1=count($controlStatus)-1;} - - $t0=$times[$i0]; - $t1=$times[$i1]; - if($i0!==0){$t0-=0.5*($times[$i0]-$times[$i0-1]);} - else {$t0-=12*60*60;} - if($i1!==count($controlStatus)-1 && count($controlStatus)>1){$t1+=0.5*($times[$i1+1]-$times[$i1]);} - else {$t1+=12*60*60;} - - if($i0!=$i1){ - $this->_chart['xAxis']['plotBands'][] = array( - 'from' => $t0*1000, - 'to' => $t1*1000, - 'color' =>self::underPerformingColor - ); - } - } - if($i>=count($controlStatus)) - break; - - if($controlStatus[$i]==='over_performing'){ - $i0=$i; - while($i=count($controlStatus)){$i1=count($controlStatus)-1;} - - $t0=$times[$i0]; - $t1=$times[$i1]; - if($i0!==0){$t0-=0.5*($times[$i0]-$times[$i0-1]);} - else {$t0-=12*60*60;} - if($i1!==count($controlStatus)-1 && count($controlStatus)>1){$t1+=0.5*($times[$i1+1]-$times[$i1]);} - else {$t1+=12*60*60;} - - if($i0!=$i1){ - $this->_chart['xAxis']['plotBands'][] = array( - 'from' => $t0*1000, - 'to' => $t1*1000, - 'color' =>self::overPerformingColor - ); - } - } - if($i>=count($controlStatus)) - break; - if($controlStatus[$i]==='control_region_time_interval'){ - $i0=$i; - while($i=count($controlStatus)){$i1=count($controlStatus)-1;} - - $t0=$times[$i0]; - $t1=$times[$i1]; - if($i0!==0){$t0-=0.5*($times[$i0]-$times[$i0-1]);} - else {$t0-=12*60*60;} - if($i1!==count($controlStatus)-1 && count($controlStatus)>1){$t1+=0.5*($times[$i1+1]-$times[$i1]);} - else {$t1+=12*60*60;} - - if($i0!=$i1){ - $this->_chart['xAxis']['plotBands'][] = array( - 'from' => $t0*1000, - 'to' => $t1*1000, - 'color' =>self::controlRegionTimeIntervalColor - ); - } - } - if($i>=count($controlStatus)) - break; - } - - if(!isset($this->outOfControlInLegend) ) - { - $versionValues = array(); - foreach($dataset->versionVector as $i => $v) - { - $versionValues[] = array('x' => $dataset->timeVector[$i]*1000.0, 'y' => NULL) ; - } - - $ooc_series_desc = array( - 'name' => 'Out of Control', - 'yAxis' => $yAxis['index'], - 'type' => 'area', - 'color' => self::underPerformingColor, - 'showInLegend' => !isset($this->outOfControlInLegend), - 'legendIndex' => 100000, - 'data' => $versionValues - ); - $this->outOfControlInLegend = true; - $this->_chart['series'][] = $ooc_series_desc; - } - if(!isset($this->betterThanControlInLegend) ) - { - $versionValues = array(); - foreach($dataset->versionVector as $i => $v) - { - $versionValues[] = array( - 'x' => $dataset->timeVector[$i]*1000.0, - 'y' => NULL - ) ; - } - - $inc_series_desc = array( - 'name' => 'Better than Control', - 'yAxis' => $yAxis['index'], - 'type' => 'area', - 'color' => self::overPerformingColor, - 'showInLegend' => !isset($this->betterThanControlInLegend), - 'legendIndex' => 100001, - 'data' => $versionValues - ); - $this->betterThanControlInLegend = true; - $this->_chart['series'][] = $inc_series_desc; - } - if(!isset($this->controlRegionTimeIntervalInLegend) ) - { - $versionValues = array(); - foreach($dataset->versionVector as $i => $v) - { - $versionValues[] = array( - 'x' => $dataset->timeVector[$i]*1000.0, - 'y' => NULL - ) ; - } - - $inc_series_desc = array( - 'name' => 'Control Region Time Interval', - 'yAxis' => $yAxis['index'], - 'type' => 'area', - 'color' => self::controlRegionTimeIntervalColor, - 'showInLegend' => !isset($this->controlRegionTimeIntervalInLegend), - 'legendIndex' => 100001, - 'data' => $versionValues - ); - $this->controlRegionTimeIntervalInLegend = true; - $this->_chart['series'][] = $inc_series_desc; - } + if($showControlZones) { + $times = $dataset->timeVector; + $controlStatus = $dataset->controlStatus; + for($i=0; $i=count($controlStatus)) { + $i1=count($controlStatus)-1; + } + + $t0=$times[$i0]; + $t1=$times[$i1]; + if($i0!==0) { + $t0-=0.5*($times[$i0]-$times[$i0-1]); + } + else { + $t0-=12*60*60; + } + if($i1!==count($controlStatus)-1 && count($controlStatus)>1) { + $t1+=0.5*($times[$i1+1]-$times[$i1]); + } + else { + $t1+=12*60*60; + } + + if($i0!=$i1) { + $this->_chart['xAxis']['plotBands'][] = array( + 'from' => $t0*1000, + 'to' => $t1*1000, + 'color' =>self::UNDERPERFORMING_COLOR + ); + } + } + if($i>=count($controlStatus)) { + break; } - if($contextMenuOnClick!==NULL){ - for($i=0;$i_chart['series']);$i++){ - $this->_chart['series'][$i]['cursor'] = 'pointer'; + + if($controlStatus[$i]==='over_performing') { + $i0=$i; + while($i=count($controlStatus)) { + $i1=count($controlStatus)-1; + } + + $t0=$times[$i0]; + $t1=$times[$i1]; + if($i0!==0) { + $t0-=0.5*($times[$i0]-$times[$i0-1]); + } else { + $t0-=12*60*60; + } + if($i1!==count($controlStatus)-1 && count($controlStatus)>1) { + $t1+=0.5*($times[$i1+1]-$times[$i1]); + } else { + $t1+=12*60*60; + } + + if($i0!=$i1) { + $this->_chart['xAxis']['plotBands'][] = array( + 'from' => $t0*1000, + 'to' => $t1*1000, + 'color' =>self::OVERPERFORMING_COLOR + ); } } + if($i>=count($controlStatus)) { + break; + } + if($controlStatus[$i]==='control_region_time_interval') { + $i0=$i; + while($i=count($controlStatus)) { + $i1=count($controlStatus)-1; + } + + $t0=$times[$i0]; + $t1=$times[$i1]; + if($i0!==0) { + $t0-=0.5*($times[$i0]-$times[$i0-1]); + } else { + $t0-=12*60*60; + } + if($i1!==count($controlStatus)-1 && count($controlStatus)>1) { + $t1+=0.5*($times[$i1+1]-$times[$i1]); + } else { + $t1+=12*60*60; + } + + if($i0!=$i1) { + $this->_chart['xAxis']['plotBands'][] = array( + 'from' => $t0*1000, + 'to' => $t1*1000, + 'color' =>self::CONTROL_REGION_TIME_INTERVAL_COLOR + ); + } + } + if($i>=count($controlStatus)) { + break; + } + } + + if(!isset($this->outOfControlInLegend) ) { + $versionValues = array(); + foreach($dataset->versionVector as $i => $v) + { + $versionValues[] = array('x' => $dataset->timeVector[$i]*1000.0, 'y' => null) ; + } + + $ooc_series_desc = array( + 'name' => 'Out of Control', + 'yAxis' => $yAxis['index'], + 'type' => 'area', + 'color' => self::UNDERPERFORMING_COLOR, + 'showInLegend' => !isset($this->outOfControlInLegend), + 'legendIndex' => 100000, + 'data' => $versionValues + ); + $this->outOfControlInLegend = true; + $this->_chart['series'][] = $ooc_series_desc; + } + if(!isset($this->betterThanControlInLegend) ) { + $versionValues = array(); + foreach($dataset->versionVector as $i => $v) + { + $versionValues[] = array( + 'x' => $dataset->timeVector[$i]*1000.0, + 'y' => null + ) ; + } + + $inc_series_desc = array( + 'name' => 'Better than Control', + 'yAxis' => $yAxis['index'], + 'type' => 'area', + 'color' => self::OVERPERFORMING_COLOR, + 'showInLegend' => !isset($this->betterThanControlInLegend), + 'legendIndex' => 100001, + 'data' => $versionValues + ); + $this->betterThanControlInLegend = true; + $this->_chart['series'][] = $inc_series_desc; + } + if(!isset($this->controlRegionTimeIntervalInLegend) ) { + $versionValues = array(); + foreach($dataset->versionVector as $i => $v) + { + $versionValues[] = array( + 'x' => $dataset->timeVector[$i]*1000.0, + 'y' => null + ) ; + } + + $inc_series_desc = array( + 'name' => 'Control Region Time Interval', + 'yAxis' => $yAxis['index'], + 'type' => 'area', + 'color' => self::CONTROL_REGION_TIME_INTERVAL_COLOR, + 'showInLegend' => !isset($this->controlRegionTimeIntervalInLegend), + 'legendIndex' => 100001, + 'data' => $versionValues + ); + $this->controlRegionTimeIntervalInLegend = true; + $this->_chart['series'][] = $inc_series_desc; + } + + } + if($contextMenuOnClick!==null) { + for($i=0; $i_chart['series']); $i++) { + $this->_chart['series'][$i]['cursor'] = 'pointer'; + } + } $this->_datasetCount++; } $this->setDataSource(array('XDMoD App Kernels')); @@ -642,8 +665,7 @@ public static function getAppKernelColor($cores) 128 =>0x0f0f0f ); - if(isset($colors[$cores]) ) - { + if(isset($colors[$cores]) ) { return $colors[$cores]; } else @@ -665,8 +687,7 @@ public static function getAppKernelSymbol($cores) 128 =>'diamond' ); - if(isset($colors[$cores]) ) - { + if(isset($colors[$cores]) ) { return $colors[$cores]; } else @@ -675,12 +696,11 @@ public static function getAppKernelSymbol($cores) } } - public function getRawImage($format = 'png', $params = array(), $user = NULL) + public function getRawImage($format = 'png', $params = array(), $user = null) { $returnData = $this->exportJsonStore(); - if( $format == 'img_tag') - { + if($format == 'img_tag') { return ''.$this->getTitle().''; } From ac56f5a2f8cb7f29269880861c919c1988754816 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Wed, 1 Apr 2020 10:46:10 -0400 Subject: [PATCH 17/63] php styling fixes --- classes/AppKernel/AppKernelDb.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/classes/AppKernel/AppKernelDb.php b/classes/AppKernel/AppKernelDb.php index 569a7bc..54a428f 100644 --- a/classes/AppKernel/AppKernelDb.php +++ b/classes/AppKernel/AppKernelDb.php @@ -2535,11 +2535,9 @@ public function calculateControls( if($sqlAKcond) { $datasetsQuery.="\n ( ".$sqlAKcond." ) "; } - //test walltime (metric_id=4) $datasetsQuery.="\nORDER BY 1, 2, 3\n"; $datasets = $this->db->query($datasetsQuery); $datasetsLength = count($datasets); - $message_length = 0; $time_end = microtime(true); $this->log("Timing(Get a list of possible unique datasets (datasetsQuery))=".($time_end - $time_start), PEAR_LOG_DEBUG); @@ -2556,7 +2554,6 @@ public function calculateControls( 'N_sqlupdate1'=>0, 'sqlupdate2'=>0.0, 'N_sqlupdate2'=>0 - ); foreach($datasets as $di => $dataset) { From af2cb94a9c0d86c6e438b02b0cd22ae858ea1d2e Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Wed, 1 Apr 2020 10:53:35 -0400 Subject: [PATCH 18/63] styling fixes --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9c4e3cd..9efa9e1 100644 --- a/.gitignore +++ b/.gitignore @@ -312,4 +312,3 @@ configuration/aggregation_meta/ # External QA assets /.qa/ /phpcs.xml - From 91a86ceef8b8e4af2bff124f88a33e8b71b4157b Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Thu, 2 Apr 2020 16:43:51 -0400 Subject: [PATCH 19/63] php styling fixes --- bin/appkernel_reports_manager | 8 +- classes/AppKernel/PerformanceMap.php | 184 ++++++++++-------- classes/AppKernel/Report.php | 22 +-- .../AppKernelControllerProvider.php | 2 +- 4 files changed, 120 insertions(+), 96 deletions(-) diff --git a/bin/appkernel_reports_manager b/bin/appkernel_reports_manager index 4511100..abe3556 100755 --- a/bin/appkernel_reports_manager +++ b/bin/appkernel_reports_manager @@ -170,8 +170,8 @@ $lastDayOfTheMonth = intval($end_date->format('t')); $dayOfTheMonth = intval($end_date->format('j')); if ($lastDayOfTheMonth == $dayOfTheMonth) { $monthlyDeliveries = $db->query( - 'SELECT - user_id, send_report_daily, send_report_weekly, + 'SELECT + user_id, send_report_daily, send_report_weekly, send_report_monthly, settings FROM report WHERE send_report_monthly >= :dayOfTheMonth', @@ -179,7 +179,7 @@ if ($lastDayOfTheMonth == $dayOfTheMonth) { ); } else { $monthlyDeliveries = $db->query( - 'SELECT + 'SELECT user_id, send_report_daily, send_report_weekly, send_report_monthly, settings FROM report @@ -257,7 +257,7 @@ foreach ($allGroupDeliveries as $groupDeliveries) { 'user' => $user )); - $report->send_report_to_email($user_email); + $report->sendReportToEmail($user_email); } catch (Exception $e) { $logger->err(array( 'message' => diff --git a/classes/AppKernel/PerformanceMap.php b/classes/AppKernel/PerformanceMap.php index 74f0e37..544af1f 100644 --- a/classes/AppKernel/PerformanceMap.php +++ b/classes/AppKernel/PerformanceMap.php @@ -9,8 +9,9 @@ class PerformanceMap { - public $start_date,$end_date;/** @param \DateTime */ - private $end_date_exclusive;/** @param \DateTime */ + public $start_date; /** @param \DateTime */ + public $end_date; /** @param \DateTime */ + private $end_date_exclusive; /** @param \DateTime */ public $controlThreshold;/** @param float */ @@ -60,15 +61,15 @@ public function __construct($options) $this->ak_plot_viewer_web_address = $siteAddress.'#main_tab_panel:app_kernels:app_kernel_viewer?'; $this->ak_control_region_web_address = $siteAddress.'internal_dashboard/index.php#appkernels:ak_control_regions?'; - if(!array_key_exists('end_date',$options)) - $options['end_date']=new DateTime(date('Y-m-d')); - if(!array_key_exists('start_date',$options)) - { + if(!array_key_exists('end_date', $options)) { + $options['end_date'] = new DateTime(date('Y-m-d')); + } + if(!array_key_exists('start_date', $options)) { $options['start_date']=clone $options['end_date']; $options['start_date']->sub(new DateInterval('P7D')); } - $options=array_merge(self::$default_options,$options); + $options=array_merge(self::$default_options, $options); //initiate interlal variables $this->start_date=$options['start_date']; @@ -97,7 +98,7 @@ public function __construct($options) $ak_fullnames[$row['name']]=$row['ak_base_name']; $ak_def_ids[$row['ak_base_name']]=$row['ak_def_id']; } - if(!in_array('xdmod.bundle',$ak_shortnames)){ + if(!in_array('xdmod.bundle', $ak_shortnames)) { $ak_shortnames['xdmod.bundle']='Bundle'; $ak_fullnames['Bundle']='xdmod.bundle'; } @@ -145,10 +146,9 @@ function ($carry, $item) use ($pdo) { if(count($sqlres_tasdb)>0){ $this->walltime_metric_id=$sqlres_tasdb[0]['metric_id']; }else{ - $this->walltime_metric_id=NULL; + $this->walltime_metric_id=null; } - $this->perfMap=$this->getMap(); } /** @@ -161,7 +161,7 @@ function ($carry, $item) use ($pdo) { * * @return html with performance map table */ - public function make_report($internal_dashboard_user=false) + public function makeReport($internal_dashboard_user = false) { //PerformanceMap $web_address = $this->ak_instance_view_web_address; @@ -223,17 +223,17 @@ public function make_report($internal_dashboard_user=false) $message.=' '; $span=0; $prev_monthyear='//'; - for($i=0;$i0 && $monthyear!=$prev_monthyear)) - { - if($i==count($rec_dates)-1) + if(($i==count($rec_dates)-1)||($i>0 && $monthyear!=$prev_monthyear)) { + if($i==count($rec_dates)-1) { $span++; - if($i==0) - $prev_monthyear=$rd[0].'/'.$rd[1]; + } + if($i==0) { + $prev_monthyear = $rd[0] . '/' . $rd[1]; + } $message.=''.$prev_monthyear.''; $span=1; } @@ -247,7 +247,7 @@ public function make_report($internal_dashboard_user=false) foreach ($rec_dates as $rec_date) { - $rd=explode('/',$rec_date); + $rd=explode('/', $rec_date); $message.=' '.$rd[2].' '; } $message.='Plot'; @@ -256,8 +256,7 @@ public function make_report($internal_dashboard_user=false) { $message.=''; $message.='Resource: '.$resource.' Application Kernel: '.$this->ak_shortnames[$appKer].''; - if(array_key_exists($appKer, $this->ak_def_ids) && array_key_exists($resource,$this->resource_ids) && $this->walltime_metric_id!==NULL) - { + if(array_key_exists($appKer, $this->ak_def_ids) && array_key_exists($resource, $this->resource_ids) && $this->walltime_metric_id!==null) { $kernel_id="{$this->resource_ids[$resource]}_{$this->ak_def_ids[$appKer]}"; if($internal_dashboard_user){ $message.=", control region panel"; @@ -291,14 +290,12 @@ public function make_report($internal_dashboard_user=false) } } - if(array_key_exists($appKer, $this->ak_def_ids) && array_key_exists($resource,$this->resource_ids) && $this->walltime_metric_id!==NULL) - { + if(array_key_exists($appKer, $this->ak_def_ids) && array_key_exists($resource, $this->resource_ids) && $this->walltime_metric_id!==null) { $kernel_id="{$this->ak_def_ids[$appKer]}_{$this->resource_ids[$resource]}_{$this->walltime_metric_id}_$problemSize"; $message.="Plot"; - } else { - $message.="123 "; + $message.=" "; } $message.=''; } @@ -307,7 +304,7 @@ public function make_report($internal_dashboard_user=false) } return $message; } - public function get_summary_for_days($days) + public function getSummaryForDays($days) { $runsStatus=$this->perfMap['runsStatus']; @@ -362,24 +359,39 @@ public function get_summary_for_days($days) if($totalRuns>0) { $messageTable.=''.$resource.''; - if($inControlRuns>0) $messageTable.=''; - else $messageTable.=''; - $messageTable.=$inControlRuns.sprintf(' (%\'@5.1f%%)',100.0*$inControlRuns/$totalRuns).''; + if($inControlRuns>0) { + $messageTable.=''; + } else { + $messageTable.=''; + } + $messageTable.=$inControlRuns.sprintf(' (%\'@5.1f%%)', 100.0*$inControlRuns/$totalRuns).''; - if($outOfControlRuns>0) $messageTable.=''; - else $messageTable.=''; - $messageTable.=$outOfControlRuns.sprintf(' (%\'@5.1f%%)',100.0*$outOfControlRuns/$totalRuns).''; + if($outOfControlRuns>0) { + $messageTable.=''; + } else { + $messageTable.=''; + } + $messageTable.=$outOfControlRuns.sprintf(' (%\'@5.1f%%)', 100.0*$outOfControlRuns/$totalRuns).''; - if($noControlInfoRuns>0) $messageTable.=''; - else $messageTable.=''; - $messageTable.=$noControlInfoRuns.sprintf(' (%\'@5.1f%%)',100.0*$noControlInfoRuns/$totalRuns).''; + if($noControlInfoRuns>0) { + $messageTable.=''; + } else { + $messageTable.=''; + } + $messageTable.=$noControlInfoRuns.sprintf(' (%\'@5.1f%%)', 100.0*$noControlInfoRuns/$totalRuns).''; - if($failedRuns>0) $messageTable.=''; - else $messageTable.=''; - $messageTable.=$failedRuns.sprintf(' (%\'@5.1f%%)',100.0*$failedRuns/$totalRuns).''; + if($failedRuns>0) { + $messageTable.=''; + } else { + $messageTable.=''; + } + $messageTable.=$failedRuns.sprintf(' (%\'@5.1f%%)', 100.0*$failedRuns/$totalRuns).''; - if($totalRuns>0) $messageTable.=''; - else $messageTable.=''; + if($totalRuns>0) { + $messageTable.=''; + } else { + $messageTable.=''; + } $messageTable.=$totalRuns.''; } else @@ -401,48 +413,59 @@ public function get_summary_for_days($days) $failedRuns=0; $totalRuns=0; - foreach ($runsStatus as $resource => $val0) - { - - foreach ($val0 as $appKer => $val1) - foreach ($val1 as $problemSize => $taskStateGroups) - { - foreach ($days as $rec_date) - { - $totalRuns2=count($taskStateGroups[$rec_date]->tasks); - $totalRuns+=$totalRuns2; - if($totalRuns2>0) - { - $inControlRuns+=count($taskStateGroups[$rec_date]->inControlRuns); - $outOfControlRuns+=count($taskStateGroups[$rec_date]->underPerformingRuns); - $noControlInfoRuns+=count($taskStateGroups[$rec_date]->noControlInfoRuns); - $failedRuns+=count($taskStateGroups[$rec_date]->failedRuns); + foreach ($runsStatus as $resource => $val0) { + foreach ($val0 as $appKer => $val1) { + foreach ($val1 as $problemSize => $taskStateGroups) { + foreach ($days as $rec_date) { + $totalRuns2 = count($taskStateGroups[$rec_date]->tasks); + $totalRuns += $totalRuns2; + if ($totalRuns2 > 0) { + $inControlRuns += count($taskStateGroups[$rec_date]->inControlRuns); + $outOfControlRuns += count($taskStateGroups[$rec_date]->underPerformingRuns); + $noControlInfoRuns += count($taskStateGroups[$rec_date]->noControlInfoRuns); + $failedRuns += count($taskStateGroups[$rec_date]->failedRuns); } } } + } } $messageTable.=''; if($totalRuns>0) { $messageTable.='Total'; - if($inControlRuns>0) $messageTable.=''; - else $messageTable.=''; - $messageTable.=$inControlRuns.sprintf(' (%\'@5.1f%%)',100.0*$inControlRuns/$totalRuns).''; + if($inControlRuns>0) { + $messageTable.=''; + } else { + $messageTable.=''; + } + $messageTable.=$inControlRuns.sprintf(' (%\'@5.1f%%)', 100.0*$inControlRuns/$totalRuns).''; - if($outOfControlRuns>0) $messageTable.=''; - else $messageTable.=''; - $messageTable.=$outOfControlRuns.sprintf(' (%\'@5.1f%%)',100.0*$outOfControlRuns/$totalRuns).''; + if($outOfControlRuns>0) { + $messageTable.=''; + } else { + $messageTable.=''; + } + $messageTable.=$outOfControlRuns.sprintf(' (%\'@5.1f%%)', 100.0*$outOfControlRuns/$totalRuns).''; - if($noControlInfoRuns>0) $messageTable.=''; - else $messageTable.=''; - $messageTable.=$noControlInfoRuns.sprintf(' (%\'@5.1f%%)',100.0*$noControlInfoRuns/$totalRuns).''; + if($noControlInfoRuns>0) { + $messageTable.=''; + } else { + $messageTable.=''; + } + $messageTable.=$noControlInfoRuns.sprintf(' (%\'@5.1f%%)', 100.0*$noControlInfoRuns/$totalRuns).''; - if($failedRuns>0) $messageTable.=''; - else $messageTable.=''; - $messageTable.=$failedRuns.sprintf(' (%\'@5.1f%%)',100.0*$failedRuns/$totalRuns).''; + if($failedRuns>0) { + $messageTable.=''; + } else { + $messageTable.=''; + } + $messageTable.=$failedRuns.sprintf(' (%\'@5.1f%%)', 100.0*$failedRuns/$totalRuns).''; - if($totalRuns>0) $messageTable.=''; - else $messageTable.=''; + if($totalRuns>0) { + $messageTable.=''; + } else { + $messageTable.=''; + } $messageTable.=$totalRuns.''; } else @@ -456,14 +479,15 @@ public function get_summary_for_days($days) } $messageTable.=''; $messageTable.=''; - $messageTable=str_replace('@',' ',$messageTable); + $messageTable=str_replace('@', ' ', $messageTable); $messageHeader=''; - if(count($days)==1) - $messageHeader.='Summary for app kernels executed on '.$days[0].'
'; - else - $messageHeader.='Summary for app kernels executed from '.$days[0].' to '.end($days).'
'; + if(count($days)==1) { + $messageHeader .= 'Summary for app kernels executed on ' . $days[0] . '
'; + } else { + $messageHeader .= 'Summary for app kernels executed from ' . $days[0] . ' to ' . end($days) . '
'; + } $message=''; $message.='Total number of runs: '. $totalRuns.'
'; @@ -826,14 +850,14 @@ public function getMapForWeb() } $results[] = $result; - } // foreach($nodeCountData as $problemSize => $problemSizeData) { - } // foreach($runData as $appKernel => $nodeCountData) { - } // foreach($runsStatus as $resource => $runData) { + } + } + } $response['success'] = true; $response['response'] = $results; $response['count'] = count($response['response']); return $response; - } // public function getMapForWeb() + } } diff --git a/classes/AppKernel/Report.php b/classes/AppKernel/Report.php index f0f6e2a..b4b5a34 100644 --- a/classes/AppKernel/Report.php +++ b/classes/AppKernel/Report.php @@ -162,9 +162,13 @@ public function __construct($options = array()) // if (array_key_exists('user', $options) && $options['user']!==null) { $ak_db = new \AppKernel\AppKernelDb(); - $allResources = $ak_db->getResources(date_format(date_sub(date_create(), date_interval_create_from_date_string("90 days")), 'Y-m-d'), + $allResources = $ak_db->getResources( + date_format(date_sub(date_create(), date_interval_create_from_date_string("90 days")), 'Y-m-d'), date_format(date_create(), 'Y-m-d'), - array(), array(), $options['user']); + array(), + array(), + $options['user'] + ); $all_resource_names=array(); foreach ($allResources as $r) { $all_resource_names[]=$r->nickname; @@ -202,7 +206,6 @@ public function __construct($options = array()) $this->report_params['performance_map_end_date']=clone $options['end_date']; $this->report_params['performance_map_start_date']=clone $options['start_date']; } else { - //$this->report_params['end_date']->sub(new DateInterval('P1D'));//periodic reports report for period ending at previous day $this->report_params['start_date']=clone $this->report_params['end_date']; $this->report_params['start_date']->sub(new DateInterval($this->report_params['report_date_interval'])); $this->report_params['start_date']->add(new DateInterval('P1D')); @@ -221,9 +224,6 @@ public function __construct($options = array()) $this->report_params['days'][]=$run_date->format('Y/m/d'); $run_date->add($day_interval); } - //print_r($options);print_r($this->report_params); - //exit(); - //throw new Exception('
'.print_r($options,true).print_r($this->report_params,true).'
'); } /** @@ -235,11 +235,11 @@ public function __construct($options = array()) * @throws Exception on failure * */ - public function send_report_to_email($send_to, $internal_dashboard_user = false) + public function sendReportToEmail($send_to, $internal_dashboard_user = false) { //get report try { - $message=$this->make_report($internal_dashboard_user); + $message=$this->makeReport($internal_dashboard_user); if ($message===null) { //i.e. do not send report (e.g. user asked to send report only on errors) return; } @@ -280,7 +280,7 @@ public function send_report_to_email($send_to, $internal_dashboard_user = false) * * @return string html report */ - public function make_report($internal_dashboard_user = false) + public function makeReport($internal_dashboard_user = false) { //header $message = ''; @@ -300,7 +300,7 @@ public function make_report($internal_dashboard_user = false) 'controlThreshold'=>$this->report_params['controlThreshold'], 'controlThresholdCoeff'=>$this->report_params['controlThresholdCoeff'] )); - $messagePerfMap=$perfMap->make_report($internal_dashboard_user); + $messagePerfMap=$perfMap->makeReport($internal_dashboard_user); //Error Patterns $pprecog=new PerfPatternRecognition(array( @@ -318,7 +318,7 @@ public function make_report($internal_dashboard_user = false) //get summary - $sum=$perfMap->get_summary_for_days($this->report_params['days']); + $sum=$perfMap->getSummaryForDays($this->report_params['days']); $message.=$sum['messageHeader']; $message.='
'; diff --git a/classes/Rest/Controllers/AppKernelControllerProvider.php b/classes/Rest/Controllers/AppKernelControllerProvider.php index 6746587..ab422ea 100644 --- a/classes/Rest/Controllers/AppKernelControllerProvider.php +++ b/classes/Rest/Controllers/AppKernelControllerProvider.php @@ -1009,7 +1009,7 @@ public function sendNotification(Request $request, Application $app) )); try { - $report->send_report_to_email($recipient, $internal_dashboard_user); + $report->sendReportToEmail($recipient, $internal_dashboard_user); } catch (Exception $e) { $response['success'] = false; $response['message'] = $e->getMessage(); From 6762ef397dc922a8541bc90b5f4c0dd245a54986 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Thu, 2 Apr 2020 16:46:20 -0400 Subject: [PATCH 20/63] fixed selecting resources by official name instead of nickname (official name for display, nickname for internal use) --- classes/AppKernel/PerformanceMap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/AppKernel/PerformanceMap.php b/classes/AppKernel/PerformanceMap.php index 544af1f..6661391 100644 --- a/classes/AppKernel/PerformanceMap.php +++ b/classes/AppKernel/PerformanceMap.php @@ -126,7 +126,7 @@ function ($carry, $item) use ($pdo) { } elseif (!empty($this->resource)) { // limit resources by AKRR resource name $sql = "SELECT akr.resource_id, akr.resource, akr.nickname FROM mod_appkernel.resource akr " . - "WHERE akr.resource IN ('" . implode("', '", $this->resource) . "')"; + "WHERE akr.nickname IN ('" . implode("', '", $this->resource) . "')"; } } From 62629849622dded82ee097a78495ba9ee1a22816 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Thu, 2 Apr 2020 21:33:40 -0400 Subject: [PATCH 21/63] added XDMOD_MAIN_BRANCH=xdmod9.0 to travis.yml --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index ff4d4e6..3585cdd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,7 @@ env: - XDMOD_TEST_ARTIFACTS_MIRROR="$HOME/xdmod-test-artifacts.git" - XDMOD_MODULE_DIR="appkernels" - XDMOD_MODULE_NAME="Application Kernels" + - XDMOD_MAIN_BRANCH="xdmod9.0" # Add dependency directories to the Travis cache cache: From 1ee685785c7ba32df36761ad9b7a86d163810740 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Mon, 6 Apr 2020 12:27:00 -0400 Subject: [PATCH 22/63] php styling fixes --- .travis.yml | 2 +- classes/AppKernel/AppKernelDb.php | 87 ++++++++++++++++--------------- 2 files changed, 45 insertions(+), 44 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3585cdd..80bf1c3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ env: - XDMOD_TEST_ARTIFACTS_MIRROR="$HOME/xdmod-test-artifacts.git" - XDMOD_MODULE_DIR="appkernels" - XDMOD_MODULE_NAME="Application Kernels" - - XDMOD_MAIN_BRANCH="xdmod9.0" + - XDMOD_MAIN_BRANCH=xdmod9.0 # Add dependency directories to the Travis cache cache: diff --git a/classes/AppKernel/AppKernelDb.php b/classes/AppKernel/AppKernelDb.php index 54a428f..817eec1 100644 --- a/classes/AppKernel/AppKernelDb.php +++ b/classes/AppKernel/AppKernelDb.php @@ -132,7 +132,8 @@ public function storeIngestionLogEntry(IngestionLogEntry $log) "INSERT INTO ingester_log (source, url, num, last_update, start_time, end_time, success, message, reportobj) VALUES (?, ?, ?, FROM_UNIXTIME(?), FROM_UNIXTIME(?), FROM_UNIXTIME(?), ?, ?, COMPRESS(?))"; - $params = array($log->source, + $params = array( + $log->source, $log->url, $log->num, $log->last_update, @@ -140,13 +141,14 @@ public function storeIngestionLogEntry(IngestionLogEntry $log) $log->end_time, $log->success, $log->message, - $log->reportObj); + $log->reportObj + ); $numRows = $this->db->execute($sql, $params); - if (1 == $numRows ) { + if (1 === $numRows ) { $this->log("Added entry to ingestion log"); } - return ( 1 == $numRows ); + return ( 1 === $numRows ); } // -------------------------------------------------------------------------------- @@ -166,7 +168,7 @@ public function loadMostRecentIngestionLogEntry(IngestionLogEntry &$log) success, message, UNCOMPRESS(reportobj) as reportobj FROM ingester_log WHERE success=1 ORDER BY last_update DESC LIMIT 1"; $result = $this->db->query($sql); - if (1 != count($result) ) { + if (1 !== count($result) ) { return false; } @@ -830,7 +832,7 @@ public function loadTreeLevel(array $criteria = null) $sql = "SELECT * ".($debugMode ?'':", unix_timestamp(min(start_time)) as start_ts, unix_timestamp(max(end_time)) as end_ts ")." FROM " . ( $debugMode ? "v_tree_debug" : "a_tree" ); - if (null !== $criteria && 0 != count($criteria) ) { + if (null !== $criteria && 0 !== count($criteria) ) { foreach ( $criteria as $key => $value ) { if (null === $value ) { continue; @@ -903,7 +905,7 @@ public function loadTreeLevel(array $criteria = null) } } - if (0 != count($sqlCriteria) ) { + if (0 !== count($sqlCriteria) ) { $sql .= " WHERE " . implode(" AND ", $sqlCriteria); } if (null !== $groupBy ) { @@ -955,7 +957,7 @@ public function loadTreeLevelDebug(array $criteria = null) $sql = "SELECT * FROM " . ( $debugMode ? "v_tree_debug" : "a_tree" ); - if (null !== $criteria && 0 != count($criteria) ) { + if (null !== $criteria && 0 !== count($criteria) ) { foreach ( $criteria as $key => $value ) { if (null === $value ) { continue; @@ -1028,7 +1030,7 @@ public function loadTreeLevelDebug(array $criteria = null) } } - if (0 != count($sqlCriteria) ) { + if (0 !== count($sqlCriteria) ) { $sql .= " WHERE " . implode(" AND ", $sqlCriteria); } if (null !== $groupBy ) { @@ -1081,7 +1083,7 @@ public function getDataPointsQuery(array $criteria = null) $sql = "SELECT * FROM " . ( $metadataOnly ? "a_tree2" : "a_data2" ); - if (null !== $criteria && 0 != count($criteria) ) { + if (null !== $criteria && 0 !== count($criteria) ) { foreach ( $criteria as $key => $value ) { if (null === $value ) { continue; @@ -1251,7 +1253,7 @@ public function loadAppKernelInstances($appKernelDefId = null, $resourceId = nul $criteriaList[] = "resource_id = $resourceId"; } - if (0 != count($criteriaList) ) { + if (0 !== count($criteriaList) ) { $sql .= " WHERE " . implode(" AND ", $criteriaList); } @@ -1752,30 +1754,30 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac } if($add_to_a_data) { //a_data and a_tree - if($ak->db_resource_visible && $ak->db_ak_def_visible && $ak->status=='success') { + if($ak->db_resource_visible && $ak->db_ak_def_visible && $ak->status==='success') { //a_tree $sql = "SELECT UNIX_TIMESTAMP(start_time) as start_time,UNIX_TIMESTAMP(end_time) as end_time ,status FROM a_tree WHERE ak_def_id=? AND resource_id=? AND metric_id=? AND num_units=?"; $params = array($ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->deployment_num_proc_units); $rows=$this->db->query($sql, $params); - if(count($rows)>1) { + if(count($rows) > 1) { $this->log("a_tree has more then one entries for ak_def_id, resource_id, metric_id, num_units", PEAR_LOG_ERR); } $start_time=$ak->deployment_time; $end_time=$ak->deployment_time; $status=$ak->status; - if(count($rows)>=1) { - if($rows[0]['start_time']<$start_time) { + if(count($rows) >= 1) { + if($rows[0]['start_time'] < $start_time) { $start_time=$rows[0]['start_time']; } - if($rows[0]['end_time']>$end_time) { + if($rows[0]['end_time'] > $end_time) { $end_time=$rows[0]['end_time']; $status=$rows[0]['status']; } } - if(count($rows)!=0) { + if(count($rows) != 0) { $sql = "DELETE FROM a_tree WHERE ak_def_id=? AND resource_id=? AND metric_id=? AND num_units=?"; $params = array($ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->deployment_num_proc_units); if(!$dryRunMode) { @@ -1815,32 +1817,32 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac $numRows = $this->db->execute($sql, $params); } } - if($ak->db_resource_visible && $ak->db_ak_def_visible && $ak->status!='queued') { + if($ak->db_resource_visible && $ak->db_ak_def_visible && $ak->status!=='queued') { //a_tree2 $sql = "SELECT UNIX_TIMESTAMP(start_time) as start_time,UNIX_TIMESTAMP(end_time) as end_time ,status FROM a_tree2 WHERE ak_def_id=? AND resource_id=? AND metric_id=? AND num_units=?"; $params = array($ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->deployment_num_proc_units); $rows=$this->db->query($sql, $params); - if(count($rows)>1) { + if(count($rows) > 1) { $this->log("a_tree2 has more then one entries for ak_def_id, resource_id, metric_id, num_units", PEAR_LOG_ERR); } $start_time=$ak->deployment_time; $end_time=$ak->deployment_time; $status=$ak->status; - if(count($rows)>=1) { + if(count($rows) >= 1) { $status=$rows[0]['status']; - if($rows[0]['start_time']<$start_time) { + if($rows[0]['start_time'] < $start_time) { $start_time=$rows[0]['start_time']; } - if($rows[0]['end_time']>$end_time) { + if($rows[0]['end_time'] > $end_time) { $end_time=$rows[0]['end_time']; $status=$rows[0]['status']; } } - if(count($rows)!=0) { + if(count($rows) !== 0) { $sql = "DELETE FROM a_tree2 WHERE ak_def_id=? AND resource_id=? AND metric_id=? AND num_units=?"; $params = array($ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->deployment_num_proc_units); if(!$dryRunMode) { @@ -1976,7 +1978,7 @@ private function getMetricId(InstanceData $ak, InstanceMetric $metric) // The metric didn't exist for that ak $sql = "SELECT * FROM metric WHERE guid='$guid'"; $result = $this->db->query($sql); - if(count($result)>0) { + if(count($result) > 0) { $metricId = $result[0]['metric_id']; $sql = "INSERT INTO ak_has_metric (ak_id, metric_id, num_units) VALUES (?,?,?)"; @@ -2113,9 +2115,9 @@ public function newControlRegions( $ak_def_id = intval($ak_def_id); $control_region_type="'".$control_region_type."'"; $startDateTime = "'".$startDateTime."'"; - $n_points = ($n_points!==null ? intval($n_points):'NULL'); - $endDateTime = ($endDateTime!==null ? "'".$endDateTime."'":'NULL'); - $comment = ($comment!==null ? "'".$comment."'":'NULL'); + $n_points = ($n_points !== null ? intval($n_points): 'NULL'); + $endDateTime = ($endDateTime !== null ? "'".$endDateTime."'":'NULL'); + $comment = ($comment !== null ? "'".$comment."'": 'NULL'); //make query for control recalculation $sqlAKcond=array(); @@ -2185,8 +2187,7 @@ public function newControlRegions( return array('success' => false, 'message' => "Control region already exists for such time interval"); } - } - else{ + } else { if($update) { return array('success' => false, 'message' => "Such control region time interval do not exist, can not update it."); @@ -2217,7 +2218,7 @@ public function deleteControlRegion($control_region_def_id) WHERE control_region_def_id=$control_region_def_id; "; $controlRegionDefToDelete = $this->db->query($controlRegionDefQuery); - if(count($controlRegionDefToDelete)==0) { + if(count($controlRegionDefToDelete) === 0) { return array('success' => false, 'message' => "Such control region time interval do not exist, can not delete it."); } @@ -2325,9 +2326,9 @@ public function setInitialControlRegions($initial = true, $envbased = false, $co ); for($i=1; $i 0) { $larger = substr($attr[2], 0, 1) != 'S'; } - if(isset($attr[1]) && $attr[1] !='') { + if(isset($attr[1]) && $attr[1] !== '') { $metricName = strtolower($attr[1]); if(isset($metricsLookupByName[$metricName])) { $largerAttributeMap[$metricName] = $larger; @@ -2672,7 +2673,7 @@ public function calculateControls( "; $controlRegions = $this->db->query($controlRegionQuery); //if there is no control regions initiate the first one - if(count($controlRegions)!=count($controlRegionDef)) { + if(count($controlRegions) !== count($controlRegionDef)) { $CRdefs=array(); foreach($controlRegionDef as $cdef) { $CRdefs[$cdef['control_region_def_id']]=$cdef; @@ -2795,7 +2796,7 @@ public function calculateControls( $controlEnd = $controlAverage+$control_criteria*$controlStDev; $controlDiff = abs($controlEnd-$controlStart); - if($controlDiff == 0) { + if($controlDiff === 0) { $controlDiff = 1; } @@ -2879,8 +2880,8 @@ public function calculateControls( //get control region $date_collected_timestamp=date_timestamp_get(date_create($data[$i]['collected'])); for($idControlRegion=0; $idControlRegion=$controlRegions[$idControlRegion]['control_region_starts_timestamp'] - && $date_collected_timestamp<$controlRegions[$idControlRegion+1]['control_region_starts_timestamp'] + if($date_collected_timestamp >= $controlRegions[$idControlRegion]['control_region_starts_timestamp'] + && $date_collected_timestamp < $controlRegions[$idControlRegion+1]['control_region_starts_timestamp'] ) { break; } @@ -2892,19 +2893,19 @@ public function calculateControls( $controlEnd = $controlRegion['controlEnd']; $controlDiff = abs($controlEnd-$controlStart); - if($controlDiff == 0) { + if($controlDiff === 0) { $controlDiff = 1; } //calculate if the data point is in control or what { if($i < $runningAverageSize) { - $offset = ($i-$runningAverageSize < 0) ? 0 : ($i-$runningAverageSize); - $l = $i-$offset+1; + $offset = ($i - $runningAverageSize < 0) ? 0 : ($i-$runningAverageSize); + $l = $i - $offset + 1; } else { - $offset = $i-$runningAverageSize+1; + $offset = $i - $runningAverageSize + 1; $l = $runningAverageSize; } From 6203cb8885cc2e5502a1e5775a78a1af081367be Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Thu, 14 May 2020 13:11:05 -0400 Subject: [PATCH 23/63] started phpunit tests for AppKernelDb, converted AppKernelDb:getProcessingUnits sql query to parametric --- classes/AppKernel/AppKernelDb.php | 53 ++++++++++++++++++++------- classes/AppKernel/InstanceData.php | 24 +++++++----- tests/unit/AppKernelDbTest.php | 59 ++++++++++++++++++++++++++++++ tests/unit/README.md | 7 ++++ tests/unit/bootstrap.php | 24 ++++++++++++ tests/unit/hello.php | 10 +++++ tests/unit/phpunit.xml.dist | 21 +++++++++++ tests/unit/runtests.sh | 5 +++ 8 files changed, 180 insertions(+), 23 deletions(-) create mode 100644 tests/unit/AppKernelDbTest.php create mode 100644 tests/unit/README.md create mode 100644 tests/unit/bootstrap.php create mode 100644 tests/unit/hello.php create mode 100644 tests/unit/phpunit.xml.dist create mode 100755 tests/unit/runtests.sh diff --git a/classes/AppKernel/AppKernelDb.php b/classes/AppKernel/AppKernelDb.php index 817eec1..7dba809 100644 --- a/classes/AppKernel/AppKernelDb.php +++ b/classes/AppKernel/AppKernelDb.php @@ -340,8 +340,12 @@ private function getProcessorCountWheres(array $pu_counts = array()) return $processorCountWheres; } - // -------------------------------------------------------------------------------- - + /** + * Get metrics wheres for SQL select + * + * @param array $metrics array of strings like ak__metric_ + * @return array of string with SQL conditions for select + */ private function getMetricWheres(array $metrics = array()) { $metricWheres = array(); @@ -523,25 +527,46 @@ public function getResourceListing($start_date = null, $end_date = null) $query_params[':end_date_gte'] = $end_date; return $this->modwDB->query($query, $query_params); - }//getResourceListing - - // -------------------------------------------------------------------------------- + } + /** + * Get Processing units for resources/appkernel/metrics between $start_date and $end_date. + * + * @param null $start_date Start Date + * @param null $end_date End Date + * @param array $resource_ids Resources IDs + * @param array $metrics Metrics string IDs (ak__metric_) + * @return array of ProcessingUnit + */ public function getProcessingUnits($start_date = null, $end_date = null, array $resource_ids = array(), array $metrics = array()) { $processingUnitList = array(); $metricWheres = $this->getMetricWheres($metrics); - $sql = "SELECT distinct vt.num_units, vt.processor_unit FROM `a_tree` vt, app_kernel_def akd - where vt.ak_def_id = akd.ak_def_id ". - ($start_date !== null ? " and '$start_date' <= end_time " : " "). - ($end_date !== null ? " and '$end_date' >= start_time " : " "). - (count($resource_ids)>0?" and vt.resource_id in (".implode(',', $resource_ids).") ": " "). - (count($metricWheres)>0 ? " and ( ".implode(' or ', $metricWheres)." ) " : " "). - "order by vt.processor_unit, vt.num_units "; - $result = $this->db->query($sql); + $sql = "SELECT distinct vt.num_units, vt.processor_unit FROM `a_tree` vt, app_kernel_def akd " . + "WHERE vt.ak_def_id = akd.ak_def_id "; + $params = array(); + if ( $start_date !== null) { + $sql .= 'AND :start_date <= end_time '; + $params[':start_date'] = $start_date; + } + if ($end_date !== null) { + $sql .= 'AND :end_date >= start_time '; + $params[':end_date'] = $end_date; + } + if (count($resource_ids) > 0){ + $sql .= ' AND vt.resource_id in (:resource_ids)'; + $params[':resource_ids'] = implode(',', array_map('intval',$resource_ids)); + } + if (count($metricWheres) > 0) { + $sql .= " and ( ".implode(' or ', $metricWheres)." ) "; + } - foreach($result as $row ) + $sql .= "ORDER BY vt.processor_unit, vt.num_units "; + + $results = $this->db->query($sql, $params); + + foreach($results as $row ) { $processing_unit = new ProcessingUnit; $processing_unit->unit = $row['processor_unit']; diff --git a/classes/AppKernel/InstanceData.php b/classes/AppKernel/InstanceData.php index 2c708a9..ef33805 100644 --- a/classes/AppKernel/InstanceData.php +++ b/classes/AppKernel/InstanceData.php @@ -37,19 +37,19 @@ class InstanceData // Name of the app kernel in the database definition public $db_ak_def_name = NULL; - + // app kernel visability in the database definition public $db_ak_def_visible = NULL; // Database id for the resource public $db_resource_id = NULL; - + // Name of resource in the database definition public $db_resource_name = NULL; - + // Nickname of resource in the database definition public $db_resource_nickname = NULL; - + // resource visability in the database definition public $db_resource_visible = NULL; @@ -69,7 +69,7 @@ class InstanceData // The name of the app kernel including the number of processing units public $deployment_ak_name = NULL; - + // The name of the app kernel without number of processing units (taken from the database) public $deployment_ak_base_name = NULL; @@ -139,7 +139,7 @@ public function __toString() { return "(#{$this->deployment_instance_id} {$this->deployment_hostname}:{$this->deployment_ak_base_name}.{$this->deployment_num_proc_units} @" . date("Y-m-d H:i:s", $this->deployment_time) . ")"; } // __toString() - + // -------------------------------------------------------------------------------- // Return a string representation of the app kernel instance // @@ -255,7 +255,7 @@ public function environmentVersion() $valueList = preg_split('/[\n\r]+/', $parameter->value); sort($valueList); $valueList=array_unique($valueList); - + $paramStr=""; foreach ($valueList as $v) { if(substr($v,0,4)=='MD5:'){ @@ -305,7 +305,7 @@ public function environmentVersion() // -------------------------------------------------------------------------------- public function reset() - { + { $this->db_ak_id = NULL; $this->db_ak_def_id = NULL; $this->db_ak_def_name = NULL; @@ -353,7 +353,7 @@ public function reset() public static function decode(&$str) { - + $decodedStr = NULL; $unzippedStr = ""; @@ -514,6 +514,12 @@ class ProcessingUnit { public $unit = NULL; public $count = NULL; + + public function __construct($unit=NULL, $count=NULL) + { + $this->unit = $unit; + $this->count = $count; + } } ?> diff --git a/tests/unit/AppKernelDbTest.php b/tests/unit/AppKernelDbTest.php new file mode 100644 index 0000000..d0d6486 --- /dev/null +++ b/tests/unit/AppKernelDbTest.php @@ -0,0 +1,59 @@ +getProcessingUnits($start_date, $end_date, $resource_ids, $metrics); + #var_dump($proc_unit); + $this->assertEquals($expected, $proc_unit); + if(sizeof($proc_unit)>0) { + $this->assertInstanceOf('AppKernel\ProcessingUnit', $proc_unit[0]); + } + } +} diff --git a/tests/unit/README.md b/tests/unit/README.md new file mode 100644 index 0000000..8ea333d --- /dev/null +++ b/tests/unit/README.md @@ -0,0 +1,7 @@ +The integration test framework is designed to be used to run tests against +an installed and working XDMoD instance. + +The test harness in the xdmod repository must be configured correctly as +per the instructions in the readme file: xdmod/open_xdmod/modules/xdmod/integration_tests/README.md + +Run the tests with ./runtests.sh diff --git a/tests/unit/bootstrap.php b/tests/unit/bootstrap.php new file mode 100644 index 0000000..0ff6fc4 --- /dev/null +++ b/tests/unit/bootstrap.php @@ -0,0 +1,24 @@ + + diff --git a/tests/unit/runtests.sh b/tests/unit/runtests.sh new file mode 100755 index 0000000..b6eb6ca --- /dev/null +++ b/tests/unit/runtests.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +set -e + +phpunit `dirname $0` From b0afab06286dbd78c33385216283a001970203fe Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Thu, 14 May 2020 18:52:59 -0400 Subject: [PATCH 24/63] converted AppKernelDb:getUniqueAppKernels,getMetrics sql query to parametric added unit tests --- classes/AppKernel/AppKernelDb.php | 134 +++-- classes/AppKernel/InstanceData.php | 804 +++++++++++++++-------------- tests/unit/AppKernelDbTest.php | 126 +++++ 3 files changed, 623 insertions(+), 441 deletions(-) diff --git a/classes/AppKernel/AppKernelDb.php b/classes/AppKernel/AppKernelDb.php index 7dba809..b7ed127 100644 --- a/classes/AppKernel/AppKernelDb.php +++ b/classes/AppKernel/AppKernelDb.php @@ -250,14 +250,15 @@ public function loadAppKernelDefinitions(array $criteria = null) continue; } - $akDef = new AppKernelDefinition; - $akDef->id = $row['ak_def_id']; - $akDef->name = $row['name']; - $akDef->basename = $basename; - $akDef->description = $row['description']; - $akDef->enabled = ( 1 == $row['enabled'] ? true : false ); - $akDef->visible = ( 1 == $row['visible'] ? true : false ); - $akDef->processor_unit = $row['processor_unit']; + $akDef = new AppKernelDefinition( + $id = $row['ak_def_id'], + $name = $row['name'], + $basename = $row['ak_base_name'], + $description = $row['description'], + $processor_unit = $row['processor_unit'], + $enabled = $row['enabled'], + $visible = $row['visible'] + ); $this->appKernelDefinitions[$basename] = $akDef; $this->akBaseNameList[] = $basename; @@ -327,13 +328,18 @@ private function extractOperator(&$value, &$op) } - // -------------------------------------------------------------------------------- - + /** + * Get conditions for sql where clause on processing units number + * + * @param array $pu_counts array with processing units + * @return array array with conditions for sql where clause + */ private function getProcessorCountWheres(array $pu_counts = array()) { $processorCountWheres = array(); foreach($pu_counts as $pu_count) { + $pu_count = intval($pu_count); $processorCountWheres[] = "vt.num_units = $pu_count"; } @@ -576,63 +582,103 @@ public function getProcessingUnits($start_date = null, $end_date = null, array $ return $processingUnitList; } - // -------------------------------------------------------------------------------- - + /** + * Get list of unique appkernels on $resource_ids + * + * @param array $resource_ids + * @param array $node_counts + * @param array $core_counts + * @return array + */ public function getUniqueAppKernels(array $resource_ids = array(), array $node_counts = array(), array $core_counts = array()) { $processorCountWheres = $this->getProcessorCountWheres($node_counts, $core_counts); - $sql = "SELECT distinct vt.ak_def_id, vt.ak_name, akd.description, unix_timestamp(min(start_time)) as start_ts, unix_timestamp(max(end_time)) as end_ts - FROM `a_tree` vt, app_kernel_def akd - where vt.ak_def_id = akd.ak_def_id and akd.enabled = 1 and akd.visible = 1 ". - (count($resource_ids)>0?" and vt.resource_id in (".implode(',', $resource_ids).") ": " "). - (count($processorCountWheres)>0 ? " and ( ".implode(' or ', $processorCountWheres)." ) " : " "). - "group by vt.ak_def_id order by vt.ak_name "; + $sql = "SELECT distinct vt.ak_def_id, vt.ak_name, akd.description, akd.ak_base_name, akd.processor_unit, " . + "unix_timestamp(min(start_time)) as start_ts, unix_timestamp(max(end_time)) as end_ts " . + "FROM `a_tree` vt, app_kernel_def akd " . + "WHERE vt.ak_def_id = akd.ak_def_id AND akd.enabled = 1 AND akd.visible = 1"; + $params = array(); - $result = $this->db->query($sql); + if (count($resource_ids) > 0){ + $sql .= ' AND vt.resource_id in (:resource_ids)'; + $params[':resource_ids'] = implode(',', array_map('intval',$resource_ids)); + } + if (count($processorCountWheres) > 0){ + $sql .= " AND ( ".implode(' OR ', $processorCountWheres)." ) "; + } + $sql .= " GROUP BY vt.ak_def_id ORDER BY vt.ak_name "; + + $result = $this->db->query($sql, $params); $uniqueAppKernelList = array(); foreach($result as $row ) { - $ak_def = new AppKernelDefinition; - $ak_def->id = $row['ak_def_id']; - $ak_def->name = $row['ak_name']; - $ak_def->description = $row['description']; - $ak_def->enabled = 1; - $ak_def->visible = 1; - $ak_def->start_ts = $row['start_ts']; - $ak_def->end_ts = $row['end_ts']; - + $ak_def = new AppKernelDefinition( + $id = $row['ak_def_id'], + $name = $row['ak_name'], + $basename = $row['ak_base_name'], + $description = $row['description'], + $processor_unit = $row['processor_unit'], + $enabled = true, + $visible = true, + $start_ts = $row['start_ts'], + $end_ts = $row['end_ts'] + ); $uniqueAppKernelList[$row['ak_def_id']] = $ak_def; } return $uniqueAppKernelList; } - // -------------------------------------------------------------------------------- + /** + * getMetrics + * + * @param $ak_def_id + * @param null $start_date + * @param null $end_date + * @param array $resource_ids + * @param array $pu_counts + * @return array + */ public function getMetrics($ak_def_id, $start_date = null, $end_date = null, array $resource_ids = array(), array $pu_counts = array()) { $processorCountWheres = $this->getProcessorCountWheres($pu_counts); - $sql = "SELECT distinct vt.metric_id, vt.metric, vt.processor_unit, vt.num_units - FROM `a_tree` vt, app_kernel_def akd - where vt.ak_def_id = akd.ak_def_id and akd.enabled = 1 and akd.visible = 1 ". - ($ak_def_id !== null ? " and vt.ak_def_id = $ak_def_id " : " " ). - ($start_date !== null ? " and '$start_date' <= end_time " : " "). - ($end_date !== null ? " and '$end_date' >= start_time " : " "). - (count($resource_ids)>0?" and vt.resource_id in (".implode(',', $resource_ids).") ": " "). - (count($processorCountWheres)>0 ? " and ( ".implode(' or ', $processorCountWheres)." ) " : " "). - "order by vt.metric"; - $result = $this->db->query($sql); + $sql = "SELECT distinct vt.metric_id, vt.metric, vt.unit, vt.processor_unit, vt.num_units " . + "FROM `a_tree` vt, app_kernel_def akd " . + "WHERE vt.ak_def_id = akd.ak_def_id and akd.enabled = 1 and akd.visible = 1 "; + $params = array(); + + if ($ak_def_id !== null) { + $sql .= 'AND vt.ak_def_id = :ak_def_id '; + $params[':ak_def_id'] = $ak_def_id; + } + if ( $start_date !== null) { + $sql .= 'AND :start_date <= end_time '; + $params[':start_date'] = $start_date; + } + if ($end_date !== null) { + $sql .= 'AND :end_date >= start_time '; + $params[':end_date'] = $end_date; + } + if (count($resource_ids) > 0){ + $sql .= 'AND vt.resource_id in (:resource_ids) '; + $params[':resource_ids'] = implode(',', array_map('intval',$resource_ids)); + } + if (count($processorCountWheres) > 0){ + $sql .= "AND ( ".implode(' OR ', $processorCountWheres)." ) "; + } + + $sql .= "ORDER BY vt.metric "; + + $results = $this->db->query($sql, $params); $metrics = array(); - foreach($result as $row ) + foreach($results as $row ) { - $metric = new InstanceMetric($row['metric'], null); - $metric->id = $row['metric_id']; - - $metrics[$row['metric_id']] = $metric; + $metrics[$row['metric_id']] = new InstanceMetric($row['metric'], null, $row['unit'], $row['metric_id']); } return $metrics; diff --git a/classes/AppKernel/InstanceData.php b/classes/AppKernel/InstanceData.php index ef33805..ffd8f63 100644 --- a/classes/AppKernel/InstanceData.php +++ b/classes/AppKernel/InstanceData.php @@ -17,373 +17,364 @@ class InstanceData { - const STATUS_SUCCESS = 'success'; - const STATUS_FAILURE = 'failure'; - const STATUS_ERROR = 'error'; - const STATUS_QUEUED = 'queued'; - const STATUS_UNKNOWN = NULL; + const STATUS_SUCCESS = 'success'; + const STATUS_FAILURE = 'failure'; + const STATUS_ERROR = 'error'; + const STATUS_QUEUED = 'queued'; + const STATUS_UNKNOWN = NULL; - // Status of the job (complete, error, queued) - public $status = NULL; + // Status of the job (complete, error, queued) + public $status = NULL; - // -------------------------------------------------------------------------------- - // Information from the app kernel database. Prefixed with "db_" + // -------------------------------------------------------------------------------- + // Information from the app kernel database. Prefixed with "db_" - // Application kernel id (takes into account the number of proc units) - public $db_ak_id = NULL; + // Application kernel id (takes into account the number of proc units) + public $db_ak_id = NULL; - // Database id for the application kernel definition - public $db_ak_def_id = NULL; + // Database id for the application kernel definition + public $db_ak_def_id = NULL; - // Name of the app kernel in the database definition - public $db_ak_def_name = NULL; + // Name of the app kernel in the database definition + public $db_ak_def_name = NULL; - // app kernel visability in the database definition - public $db_ak_def_visible = NULL; + // app kernel visability in the database definition + public $db_ak_def_visible = NULL; - // Database id for the resource - public $db_resource_id = NULL; + // Database id for the resource + public $db_resource_id = NULL; - // Name of resource in the database definition - public $db_resource_name = NULL; + // Name of resource in the database definition + public $db_resource_name = NULL; - // Nickname of resource in the database definition - public $db_resource_nickname = NULL; + // Nickname of resource in the database definition + public $db_resource_nickname = NULL; - // resource visability in the database definition - public $db_resource_visible = NULL; + // resource visability in the database definition + public $db_resource_visible = NULL; - // Type of processing unit specified in the app kernel definition (e.g., node - // or core) - public $db_proc_unit_type = NULL; + // Type of processing unit specified in the app kernel definition (e.g., node + // or core) + public $db_proc_unit_type = NULL; - // -------------------------------------------------------------------------------- - // Information taken from the deployment infrastructure (e.g., Inca or ARR) Prefixed - // with "deployment_" + // -------------------------------------------------------------------------------- + // Information taken from the deployment infrastructure (e.g., Inca or ARR) Prefixed + // with "deployment_" - // Instance identifier from the ak deployment infrastructure (inca) - public $deployment_instance_id = NULL; + // Instance identifier from the ak deployment infrastructure (inca) + public $deployment_instance_id = NULL; - // Job identifier from the resource manager - public $deployment_job_id = NULL; + // Job identifier from the resource manager + public $deployment_job_id = NULL; - // The name of the app kernel including the number of processing units - public $deployment_ak_name = NULL; + // The name of the app kernel including the number of processing units + public $deployment_ak_name = NULL; - // The name of the app kernel without number of processing units (taken from the database) - public $deployment_ak_base_name = NULL; + // The name of the app kernel without number of processing units (taken from the database) + public $deployment_ak_base_name = NULL; - // The number of processing units used by this app kernel - public $deployment_num_proc_units = NULL; + // The number of processing units used by this app kernel + public $deployment_num_proc_units = NULL; - // The resource that the app kernel was run on - public $deployment_hostname = NULL; + // The resource that the app kernel was run on + public $deployment_hostname = NULL; - // The optional cluster node that the app kernel was run on - public $deployment_execution_hostname = NULL; + // The optional cluster node that the app kernel was run on + public $deployment_execution_hostname = NULL; - // Execution time (unix timestamp) - public $deployment_time = NULL; + // Execution time (unix timestamp) + public $deployment_time = NULL; - // Error message returned by the deployment infrastructure - public $deployment_message = NULL; + // Error message returned by the deployment infrastructure + public $deployment_message = NULL; - // Stderr returned by the deployment infrastructure - public $deployment_stderr = NULL; + // Stderr returned by the deployment infrastructure + public $deployment_stderr = NULL; - // Wall clock time spent running the app kernel - public $deployment_walltime = NULL; + // Wall clock time spent running the app kernel + public $deployment_walltime = NULL; - // CPU time spend running the app kernel - public $deployment_cputime = NULL; + // CPU time spend running the app kernel + public $deployment_cputime = NULL; - // Memory consumed by the app kernel - public $deployment_memory = NULL; + // Memory consumed by the app kernel + public $deployment_memory = NULL; - // A aggregate value computed by examining environmental data returned by the - // app kernel such as library versions, application signature, etc. - public $environmentVersion = NULL; + // A aggregate value computed by examining environmental data returned by the + // app kernel such as library versions, application signature, etc. + public $environmentVersion = NULL; - // -------------------------------------------------------------------------------- - // Information returned by the app kernel. Prefixed with "ak_" + // -------------------------------------------------------------------------------- + // Information returned by the app kernel. Prefixed with "ak_" - // Error cause as reported by the app kernel itself - public $ak_error_cause = NULL; + // Error cause as reported by the app kernel itself + public $ak_error_cause = NULL; - // Error message as reported by the app kernel itself - public $ak_error_message = NULL; + // Error message as reported by the app kernel itself + public $ak_error_message = NULL; - // Time waiting in the queue (in seconds) - public $ak_queue_time = NULL; + // Time waiting in the queue (in seconds) + public $ak_queue_time = NULL; - // List of parameters provided to the app kernel (InstanceParameter objects) - public $ak_parameters = array(); + // List of parameters provided to the app kernel (InstanceParameter objects) + public $ak_parameters = array(); - // List of metrics returned by the app kernel (InstanceMetric objects) - public $ak_metrics = array(); + // List of metrics returned by the app kernel (InstanceMetric objects) + public $ak_metrics = array(); - // -------------------------------------------------------------------------------- + // -------------------------------------------------------------------------------- - public function __construct() - { - $this->reset(); - } // __construct() - - // -------------------------------------------------------------------------------- - // Return a string representation of the app kernel instance - // - // @returns A string representation of the app kernel instance - // -------------------------------------------------------------------------------- + public function __construct() + { + $this->reset(); + } // __construct() - public function __toString() - { - return "(#{$this->deployment_instance_id} {$this->deployment_hostname}:{$this->deployment_ak_base_name}.{$this->deployment_num_proc_units} @" . date("Y-m-d H:i:s", $this->deployment_time) . ")"; - } // __toString() + // -------------------------------------------------------------------------------- + // Return a string representation of the app kernel instance + // + // @returns A string representation of the app kernel instance + // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Return a string representation of the app kernel instance - // - // @returns A string representation of the app kernel instance - // -------------------------------------------------------------------------------- + public function __toString() + { + return "(#{$this->deployment_instance_id} {$this->deployment_hostname}:{$this->deployment_ak_base_name}.{$this->deployment_num_proc_units} @" . date("Y-m-d H:i:s", $this->deployment_time) . ")"; + } // __toString() - public function toHtml() - { - $s = array(); - $s[] = ""; - $s[] = ""; - $s[] = ""; - $s[] = ""; - $s[] = ""; - $s[] = ""; - $s[] = ""; - $s[] = ""; - $s[] = ""; - $s[] = ""; - $s[] = "
AK Name:{$this->db_ak_def_name}
Instance Name:{$this->deployment_ak_name}
Processing Units:{$this->deployment_num_proc_units} {$this->db_proc_unit_type}
Date Collected:" .date("Y-m-d H:i:s", $this->deployment_time) . "
Resource:{$this->deployment_hostname}
Status:{$this->status}
Deployment Instance Id:{$this->deployment_instance_id}
Deployment Job Id:{$this->deployment_job_id}
Env Version:" . - ( NULL !== $this->environmentVersion ? $this->environmentVersion : $this->environmentVersion() ) . - "
"; + // -------------------------------------------------------------------------------- + // Return a string representation of the app kernel instance + // + // @returns A string representation of the app kernel instance + // -------------------------------------------------------------------------------- - if ( count($this->ak_metrics) > 0 ) + public function toHtml() { - $s[] = "

"; - $s[] = ""; - foreach ( $this->ak_metrics as $data ) - { - $name = $data->name; - $value = $data->value; - $unit = ( $data->unit ? $data->unit : " " ); - $s[] = ""; - } - $s[] = "
MetricValueUnit
$name$value$unit
"; - } - else + $s = array(); + $s[] = ""; + $s[] = ""; + $s[] = ""; + $s[] = ""; + $s[] = ""; + $s[] = ""; + $s[] = ""; + $s[] = ""; + $s[] = ""; + $s[] = ""; + $s[] = "
AK Name:{$this->db_ak_def_name}
Instance Name:{$this->deployment_ak_name}
Processing Units:{$this->deployment_num_proc_units} {$this->db_proc_unit_type}
Date Collected:" . date("Y-m-d H:i:s", $this->deployment_time) . "
Resource:{$this->deployment_hostname}
Status:{$this->status}
Deployment Instance Id:{$this->deployment_instance_id}
Deployment Job Id:{$this->deployment_job_id}
Env Version:" . + (NULL !== $this->environmentVersion ? $this->environmentVersion : $this->environmentVersion()) . + "
"; + + if (count($this->ak_metrics) > 0) { + $s[] = "

"; + $s[] = ""; + foreach ($this->ak_metrics as $data) { + $name = $data->name; + $value = $data->value; + $unit = ($data->unit ? $data->unit : " "); + $s[] = ""; + } + $s[] = "
MetricValueUnit
$name$value$unit
"; + } else { + $s[] = "

No Metrics"; + } + + if (count($this->ak_parameters) > 0) { + $s[] = "

"; + $s[] = ""; + foreach ($this->ak_parameters as $data) { + $name = $data->name; + $value = $data->value; + $unit = ($data->unit ? $data->unit : " "); + $s[] = ""; + } + $s[] = "
ParameterValueUnit
$name" . ("RunEnv" == $data->tag || "App" == $data->tag ? "
$value
" : $value) . "
$unit
"; + } else { + $s[] = "

No Parameters"; + } + + $s[] = "

"; + $s[] = ""; + $s[] = ""; + $s[] = ""; + $s[] = ""; + $s[] = ""; + $s[] = ""; + $s[] = ""; + $s[] = ""; + $s[] = ""; + $s[] = ""; + $s[] = "
Deployment (Inca) Data
Message" . (NULL !== $this->deployment_message ? "
{$this->deployment_message}
" : " ") . "
Stderr" . (NULL !== $this->deployment_stderr ? "
{$this->deployment_stderr}
" : " ") . "
Walltime{$this->deployment_walltime}
Cputime{$this->deployment_cputime}
Memory{$this->deployment_memory}
App Kernel Data
Error Cause" . (NULL !== $this->ak_error_cause ? $this->ak_error_cause : " ") . "
Error Message" . (NULL !== $this->ak_error_message ? "
{$this->ak_error_message}
" : " ") . "
Queue Time" . (NULL !== $this->ak_queue_time ? $this->ak_queue_time : " ") . "
"; + + return implode("\n", $s); + + } // __toString() + + // -------------------------------------------------------------------------------- + // Construct a version identifier based on the current inputs and environment + // of the app kernel. Currently, this is an md5 taken on the set of + // normalized parameters. Normalization includes removing parameters tagged + // with RunEnv, sorting the parameters on their name, sorting the parameter + // value, and removing all spaces. + // + // NOTE: As per Charng-Da only use App:ExeBinSignature when computing the + // environment version. This leaves out all other input parameters until we + // can consistently tag parameters and decide what to do. SMG 2012-09-27 + + // If no parameters have been provided then the environment version will be + // NULL. This may happen if there was an error executing the instance. + // + // @returns A version identifier based on the current inputs and environment + // of the app kernel. + // -------------------------------------------------------------------------------- + + public function environmentVersion() { - $s[] = "

No Metrics"; - } - if ( count($this->ak_parameters) > 0 ) + if (0 == count($this->ak_parameters)) return NULL; + $versionStr = ""; + + // For the time being only use App:ExeBinSignature to calculate the + // environment version. There are many parameters that do not include a + // tag. SMG 2012-09-27 + + foreach ($this->ak_parameters as $parameter) { + if (!(0 === strpos($parameter->tag, "App") && + 0 === strpos($parameter->name, "ExeBinSignature"))) continue; + + // Sort the value of the parameter in case the order of the data returned + // changes over time. + + $valueList = preg_split('/[\n\r]+/', $parameter->value); + sort($valueList); + $valueList = array_unique($valueList); + + $paramStr = ""; + foreach ($valueList as $v) { + if (substr($v, 0, 4) == 'MD5:') { + $paramStr .= $v; + } + } + + $paramStr = $parameter->name . $paramStr . $parameter->unit; + + // Remove all spaces from the version string to account for random extra spaces + $versionStr .= strtolower(str_replace(" ", "", $paramStr)); + break; + } // foreach ( $this->ak_parameters as $parameter ) + + /* + // We need to sort the parameter list because the order returned by Inca is + // not guaranteed. + + usort($this->ak_parameters, array("AppKernel\InstanceMetric", "sort_cmp")); + + foreach ( $this->ak_parameters as $parameter ) + { + // Any runtime environment parameters will change with each execution so + // we need to ignore it here. AG 4/12/11 + + if ( 0 === strpos($parameter->tag, "RunEnv") ) continue; + + // Sort the value of the parameter in case the order of the data returned + // changes over time. SMG 2012-09-24 + + $valueList = preg_split('/[\n\r]+/', $parameter->value); + sort($valueList); + + $paramStr = $parameter->name . implode("", $valueList) . $parameter->unit; + + // Remove all spaces from the version string to account for random extra spaces + $versionStr .= strtolower(str_replace(" ", "", $paramStr)); + } // foreach ( $this->ak_parameters as $parameter ) + */ + $this->environmentVersion = md5($versionStr); + return $this->environmentVersion; + + } // environmentVersion() + + // -------------------------------------------------------------------------------- + // Reset the data in the class. This allows us to reuse the object. + // -------------------------------------------------------------------------------- + + public function reset() { - $s[] = "

"; - $s[] = ""; - foreach ( $this->ak_parameters as $data ) - { - $name = $data->name; - $value = $data->value; - $unit = ( $data->unit ? $data->unit : " " ); - $s[] = ""; - } - $s[] = "
ParameterValueUnit
$name" . ( "RunEnv" == $data->tag || "App" == $data->tag ? "
$value
" : $value ) . "
$unit
"; - } - else + $this->db_ak_id = NULL; + $this->db_ak_def_id = NULL; + $this->db_ak_def_name = NULL; + $this->db_ak_def_visible = NULL; + $this->db_resource_id = NULL; + $this->db_resource_name = NULL; + $this->db_resource_nickname = NULL; + $this->db_resource_visible = NULL; + $this->db_proc_unit_type = NULL; + $this->deployment_instance_id = NULL; + $this->deployment_job_id = NULL; + $this->deployment_ak_name = NULL; + $this->deployment_ak_base_name = NULL; + $this->deployment_num_proc_units = NULL; + $this->deployment_hostname = NULL; + $this->deployment_execution_hostname = NULL; + $this->deployment_time = NULL; + $this->deployment_stderr = NULL; + $this->deployment_message = NULL; + $this->deployment_walltime = NULL; + $this->deployment_cputime = NULL; + $this->deployment_memory = NULL; + + $this->ak_error_cause = NULL; + $this->ak_error_message = NULL; + $this->ak_queue_time = NULL; + $this->ak_parameters = array(); + $this->ak_metrics = array(); + + $this->status = FALSE; + $this->environmentVersion = NULL; + } // reset() + + // -------------------------------------------------------------------------------- + // Some parameter and/or metric values are gzipped and base64-encoded to save + // space. Decode and unzip these fields and return the result, or FALSE if + // the string was not base64 encoded. Note that a string can be made up of + // characters from the base64 alphabet but not actually base64 encoded. + // + // @param $str Reference to the string to decode. This will be replaced with + // the decoded and unzipped string on success + // + // @returns TRUE on success or FALSE if the string was not encoded + // -------------------------------------------------------------------------------- + + public static function decode(&$str) { - $s[] = "

No Parameters"; - } - $s[] = "

"; - $s[] = ""; - $s[] = ""; - $s[] = ""; - $s[] = ""; - $s[] = ""; - $s[] = ""; - $s[] = ""; - $s[] = ""; - $s[] = ""; - $s[] = ""; - $s[] = "
Deployment (Inca) Data
Message" . ( NULL !== $this->deployment_message ? "
{$this->deployment_message}
" : " " ) . "
Stderr" . ( NULL !== $this->deployment_stderr ? "
{$this->deployment_stderr}
" : " " ) . "
Walltime{$this->deployment_walltime}
Cputime{$this->deployment_cputime}
Memory{$this->deployment_memory}
App Kernel Data
Error Cause" . ( NULL !== $this->ak_error_cause ? $this->ak_error_cause : " ") . "
Error Message" . ( NULL !== $this->ak_error_message ? "
{$this->ak_error_message}
" : " " ) . "
Queue Time" . ( NULL !== $this->ak_queue_time ? $this->ak_queue_time : " " ) . "
"; - - return implode("\n", $s); - - } // __toString() - - // -------------------------------------------------------------------------------- - // Construct a version identifier based on the current inputs and environment - // of the app kernel. Currently, this is an md5 taken on the set of - // normalized parameters. Normalization includes removing parameters tagged - // with RunEnv, sorting the parameters on their name, sorting the parameter - // value, and removing all spaces. - // - // NOTE: As per Charng-Da only use App:ExeBinSignature when computing the - // environment version. This leaves out all other input parameters until we - // can consistently tag parameters and decide what to do. SMG 2012-09-27 - - // If no parameters have been provided then the environment version will be - // NULL. This may happen if there was an error executing the instance. - // - // @returns A version identifier based on the current inputs and environment - // of the app kernel. - // -------------------------------------------------------------------------------- - - public function environmentVersion() - { - - if ( 0 == count($this->ak_parameters) ) return NULL; - $versionStr = ""; - - // For the time being only use App:ExeBinSignature to calculate the - // environment version. There are many parameters that do not include a - // tag. SMG 2012-09-27 - - foreach ( $this->ak_parameters as $parameter ) - { - if ( ! (0 === strpos($parameter->tag, "App") && - 0 === strpos($parameter->name, "ExeBinSignature") ) ) continue; + $decodedStr = NULL; + $unzippedStr = ""; - // Sort the value of the parameter in case the order of the data returned - // changes over time. + // If the string was not base64 encoded bail out now. Note that a string + // made up of characters from the base64 alphabet will return TRUE but + // maynot acutally encoded. - $valueList = preg_split('/[\n\r]+/', $parameter->value); - sort($valueList); - $valueList=array_unique($valueList); + if (FALSE === ($decodedStr = base64_decode($str, TRUE))) return FALSE; - $paramStr=""; - foreach ($valueList as $v) { - if(substr($v,0,4)=='MD5:'){ - $paramStr.=$v; - } - } + // Test to see if the string has a mime type of "application/x-gzip" - $paramStr = $parameter->name . $paramStr . $parameter->unit; + $f = finfo_open(FILEINFO_MIME_TYPE); + $mt = finfo_buffer($f, $decodedStr); + if ($mt != "application/x-gzip") return FALSE; - // Remove all spaces from the version string to account for random extra spaces - $versionStr .= strtolower(str_replace(" ", "", $paramStr)); - break; - } // foreach ( $this->ak_parameters as $parameter ) + // I had problems unzipping the decoded string directly but writing it to a + // temporary file seems to work. -smg 20110608 - /* - // We need to sort the parameter list because the order returned by Inca is - // not guaranteed. + $tmpFile = tempnam(sys_get_temp_dir(), "akexplorer_"); + @file_put_contents($tmpFile, $decodedStr); + $fp = gzopen($tmpFile, "r"); + while (!gzeof($fp)) + $unzippedStr .= gzread($fp, 1024); + gzclose($fp); + unlink($tmpFile); - usort($this->ak_parameters, array("AppKernel\InstanceMetric", "sort_cmp")); + $str = $unzippedStr; + return TRUE; - foreach ( $this->ak_parameters as $parameter ) - { - // Any runtime environment parameters will change with each execution so - // we need to ignore it here. AG 4/12/11 - - if ( 0 === strpos($parameter->tag, "RunEnv") ) continue; - - // Sort the value of the parameter in case the order of the data returned - // changes over time. SMG 2012-09-24 - - $valueList = preg_split('/[\n\r]+/', $parameter->value); - sort($valueList); - - $paramStr = $parameter->name . implode("", $valueList) . $parameter->unit; - - // Remove all spaces from the version string to account for random extra spaces - $versionStr .= strtolower(str_replace(" ", "", $paramStr)); - } // foreach ( $this->ak_parameters as $parameter ) - */ - $this->environmentVersion=md5($versionStr); - return $this->environmentVersion; - - } // environmentVersion() - - // -------------------------------------------------------------------------------- - // Reset the data in the class. This allows us to reuse the object. - // -------------------------------------------------------------------------------- - - public function reset() - { - $this->db_ak_id = NULL; - $this->db_ak_def_id = NULL; - $this->db_ak_def_name = NULL; - $this->db_ak_def_visible = NULL; - $this->db_resource_id = NULL; - $this->db_resource_name = NULL; - $this->db_resource_nickname = NULL; - $this->db_resource_visible = NULL; - $this->db_proc_unit_type = NULL; - $this->deployment_instance_id = NULL; - $this->deployment_job_id = NULL; - $this->deployment_ak_name = NULL; - $this->deployment_ak_base_name = NULL; - $this->deployment_num_proc_units = NULL; - $this->deployment_hostname = NULL; - $this->deployment_execution_hostname = NULL; - $this->deployment_time = NULL; - $this->deployment_stderr = NULL; - $this->deployment_message = NULL; - $this->deployment_walltime = NULL; - $this->deployment_cputime = NULL; - $this->deployment_memory = NULL; - - $this->ak_error_cause = NULL; - $this->ak_error_message = NULL; - $this->ak_queue_time = NULL; - $this->ak_parameters = array(); - $this->ak_metrics = array(); - - $this->status = FALSE; - $this->environmentVersion = NULL; - } // reset() - - // -------------------------------------------------------------------------------- - // Some parameter and/or metric values are gzipped and base64-encoded to save - // space. Decode and unzip these fields and return the result, or FALSE if - // the string was not base64 encoded. Note that a string can be made up of - // characters from the base64 alphabet but not actually base64 encoded. - // - // @param $str Reference to the string to decode. This will be replaced with - // the decoded and unzipped string on success - // - // @returns TRUE on success or FALSE if the string was not encoded - // -------------------------------------------------------------------------------- - - public static function decode(&$str) - { - - $decodedStr = NULL; - $unzippedStr = ""; - - // If the string was not base64 encoded bail out now. Note that a string - // made up of characters from the base64 alphabet will return TRUE but - // maynot acutally encoded. - - if ( FALSE === ($decodedStr = base64_decode($str, TRUE)) ) return FALSE; - - // Test to see if the string has a mime type of "application/x-gzip" - - $f = finfo_open(FILEINFO_MIME_TYPE); - $mt = finfo_buffer($f, $decodedStr); - if ( $mt != "application/x-gzip" ) return FALSE; - - // I had problems unzipping the decoded string directly but writing it to a - // temporary file seems to work. -smg 20110608 - - $tmpFile = tempnam(sys_get_temp_dir(), "akexplorer_"); - @file_put_contents($tmpFile, $decodedStr); - $fp = gzopen($tmpFile, "r"); - while ( ! gzeof($fp) ) - $unzippedStr .= gzread($fp, 1024); - gzclose($fp); - unlink($tmpFile); - - $str = $unzippedStr; - return TRUE; - - } // decode() + } // decode() } // class InstanceData @@ -393,44 +384,50 @@ public static function decode(&$str) class InstanceMetric { - // Database id of the metric. - public $id = NULL; + // Database id of the metric. + public $id = null; - // Metric data parsed from the app kernel - public $name = NULL; - public $value = NULL; - public $unit = NULL; + // Metric data parsed from the app kernel + public $name = null; + public $value = null; + public $unit = null; - // -------------------------------------------------------------------------------- + // -------------------------------------------------------------------------------- - static function sort_cmp(InstanceMetric $a, InstanceMetric $b) - { - return strcmp($a->name, $b->name); - } + static function sort_cmp(InstanceMetric $a, InstanceMetric $b) + { + return strcmp($a->name, $b->name); + } - // -------------------------------------------------------------------------------- + // -------------------------------------------------------------------------------- - public function __construct($name, $value, $unit = NULL) - { - $this->name = $name; - $this->value = $value; - $this->unit = $unit; - } // __construct() + public function __construct($name, $value, $unit = null, $id=null) + { + if($id!==null) { + $this->id = intval($id); + } + $this->name = $name; + $this->value = $value; + $this->unit = $unit; + } // __construct() - // -------------------------------------------------------------------------------- + // -------------------------------------------------------------------------------- - public function __toString() - { - return __CLASS__ . ": ({$this->name}, {$this->value}, {$this->unit})"; - } + public function __toString() + { + return __CLASS__ . ": ({$this->name}, {$this->value}, {$this->unit})"; + } - // -------------------------------------------------------------------------------- - // Generate the metric guid to uniquely identify this metric. - // - // @returns A unique identifier for the metric - // -------------------------------------------------------------------------------- + // -------------------------------------------------------------------------------- + // Generate the metric guid to uniquely identify this metric. + // + // @returns A unique identifier for the metric + // -------------------------------------------------------------------------------- - public function guid() { return md5($this->name . $this->unit); } + public function guid() + { + return md5($this->name . $this->unit); + } } // class InstanceMetric // ================================================================================ @@ -439,45 +436,43 @@ public function guid() { return md5($this->name . $this->unit); } class InstanceParameter extends InstanceMetric { - // Optional grouping tag supplied with the parameter (e.g., App in App:ExeBinSignature) - public $tag = NULL; - - // -------------------------------------------------------------------------------- - - public function __construct($name, $value, $unit = NULL, $tag = NULL) - { + // Optional grouping tag supplied with the parameter (e.g., App in App:ExeBinSignature) + public $tag = NULL; - // If the tag was explicitly provided us it, otherwise check to see if it is - // still in the name. + // -------------------------------------------------------------------------------- - if ( NULL !== $tag ) + public function __construct($name, $value, $unit = NULL, $tag = NULL) { - $this->name = $name; - $this->tag = $tag; - } - else if ( FALSE !== strpos($name, ":") ) - { - $parts = explode(":", $name); - $this->tag = array_shift($parts); - $this->name = implode(":", $parts); - } - else - { - $this->name = $name; - } - InstanceData::decode($value); - $this->value = $value; - $this->unit = $unit; - } // __construct() + // If the tag was explicitly provided us it, otherwise check to see if it is + // still in the name. + + if (NULL !== $tag) { + $this->name = $name; + $this->tag = $tag; + } else if (FALSE !== strpos($name, ":")) { + $parts = explode(":", $name); + $this->tag = array_shift($parts); + $this->name = implode(":", $parts); + } else { + $this->name = $name; + } + + InstanceData::decode($value); + $this->value = $value; + $this->unit = $unit; + } // __construct() - // -------------------------------------------------------------------------------- - // Generate the metric guid to uniquely identify this metric. - // - // @returns A unique identifier for the metric - // -------------------------------------------------------------------------------- + // -------------------------------------------------------------------------------- + // Generate the metric guid to uniquely identify this metric. + // + // @returns A unique identifier for the metric + // -------------------------------------------------------------------------------- - public function guid() { return md5((NULL === $this->tag ? "" : $this->tag) . $this->name . $this->unit); } + public function guid() + { + return md5((NULL === $this->tag ? "" : $this->tag) . $this->name . $this->unit); + } } // class InstanceParameter @@ -487,13 +482,30 @@ public function guid() { return md5((NULL === $this->tag ? "" : $this->tag) . $t class AppKernelDefinition { - public $id = NULL; // Database id - public $name = NULL; // Public name - public $basename = NULL; // Reporter basename - public $description = NULL; // App kernel description (html) - public $processor_unit = NULL; // Processor_units node or core - public $enabled = FALSE; // TRUE if enabled - public $visible = FALSE; // TRUE if visible outside of the application kernel tools + public $id = null; // Database id + public $name = null; // Public name + public $basename = null; // Reporter basename + public $description = null; // App kernel description (html) + public $processor_unit = null; // Processor_units node or core + public $enabled = false; // TRUE if enabled + public $visible = false; // TRUE if visible outside of the application kernel tools + public $start_ts = null; // start time (can be limited to conditions like resource) + public $end_ts = null; // end time (can be limited to conditions like resource) + + public function __construct($id = null, $name = null, $basename = null, $description = null, + $processor_unit = null, $enabled = FALSE, $visible = FALSE, + $start_ts = null, $end_ts = null) + { + $this->id = intval($id); + $this->name = $name; + $this->basename = $basename; + $this->description = $description; + $this->processor_unit = $processor_unit; + $this->enabled = ( 1 == $enabled ? true : false ); + $this->visible = ( 1 == $visible ? true : false ); + $this->start_ts = intval($start_ts); + $this->end_ts = intval($end_ts); + } } // AppKernelDefinition // ================================================================================ @@ -502,24 +514,22 @@ class AppKernelDefinition class AKResource { - public $id = NULL; // Database id - public $nickname = NULL; // Resource nickname (e.g., short name such as "edge") - public $name = NULL; // Resource full name (e.g., edge.ccr.buffalo.edu) - public $description = NULL; // Resource description - public $enabled = FALSE; // TRUE if the resoure is enabled - public $visible = FALSE; // TRUE if visible outside of the application kernel tools -} // AKResource + public $id = NULL; // Database id + public $nickname = NULL; // Resource nickname (e.g., short name such as "edge") + public $name = NULL; // Resource full name (e.g., edge.ccr.buffalo.edu) + public $description = NULL; // Resource description + public $enabled = FALSE; // TRUE if the resoure is enabled + public $visible = FALSE; // TRUE if visible outside of the application kernel tools +} class ProcessingUnit { - public $unit = NULL; - public $count = NULL; + public $unit = NULL; + public $count = NULL; - public function __construct($unit=NULL, $count=NULL) + public function __construct($unit = NULL, $count = NULL) { $this->unit = $unit; - $this->count = $count; + $this->count = intval($count); } } - -?> diff --git a/tests/unit/AppKernelDbTest.php b/tests/unit/AppKernelDbTest.php index d0d6486..a6a554e 100644 --- a/tests/unit/AppKernelDbTest.php +++ b/tests/unit/AppKernelDbTest.php @@ -3,6 +3,8 @@ require_once "AppKernel/InstanceData.php"; use AppKernel\ProcessingUnit; +use AppKernel\AppKernelDefinition; +use AppKernel\InstanceMetric; final class AppKernelDbTest extends TestCase { @@ -56,4 +58,128 @@ public function testProcessingUnit($start_date, $end_date , array $resource_ids, $this->assertInstanceOf('AppKernel\ProcessingUnit', $proc_unit[0]); } } + public function getUniqueAppKernelsProvider() + { + $akd_list = [ + 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1537524242, 1589170859), + 22 => new AppKernelDefinition(22, "GAMESS", "gamess", null, "node", true, true, 1537530111, 1589162281), + 28 => new AppKernelDefinition(28, "Graph500", "graph500", null, "node", true, true, 1537523226, 1589169778), + 25 => new AppKernelDefinition(25, "HPCC", "hpcc", null, "node", true, true, 1537271498, 1589170329), + 7 => new AppKernelDefinition(7, "IMB", "imb", null, "node", true, true, 1537294454, 1589171649), + 23 => new AppKernelDefinition(23, "NAMD", "namd", null, "node", true, true, 1536972644, 1589149529), + 24 => new AppKernelDefinition(24, "NWChem", "nwchem", null, "node", true, true, 1537537457, 1589169723), + ]; + return [ + [[], [], [],27,null], + [[28,1], [], [],null, $akd_list], + [[28], [], [], null, $akd_list], + [[28], [1], [], null, [ + 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1537780756, 1589170859), + 22 => new AppKernelDefinition(22, "GAMESS", "gamess", null, "node", true, true, 1537530111, 1589162281), + 28 => new AppKernelDefinition(28, "Graph500", "graph500", null, "node", true, true, 1537780749, 1589167423), + 25 => new AppKernelDefinition(25, "HPCC", "hpcc", null, "node", true, true, 1537286604, 1589159946), + 23 => new AppKernelDefinition(23, "NAMD", "namd", null, "node", true, true, 1537179935, 1589149529), + 24 => new AppKernelDefinition(24, "NWChem", "nwchem", null, "node", true, true, 1537537457, 1589169723), + ]], + [[28], [1,2], [], null, [ + 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1537524242, 1589170859), + 22 => new AppKernelDefinition(22, "GAMESS", "gamess", null, "node", true, true, 1537530111, 1589162281), + 28 => new AppKernelDefinition(28, "Graph500", "graph500", null, "node", true, true, 1537523226, 1589167423), + 25 => new AppKernelDefinition(25, "HPCC", "hpcc", null, "node", true, true, 1537271498, 1589159946), + 7 => new AppKernelDefinition(7, "IMB", "imb", null, "node", true, true, 1537294454, 1589169470), + 23 => new AppKernelDefinition(23, "NAMD", "namd", null, "node", true, true, 1536972644, 1589149529), + 24 => new AppKernelDefinition(24, "NWChem", "nwchem", null, "node", true, true, 1537537457, 1589169723), + ]], + ]; + } + /** + * @dataProvider getUniqueAppKernelsProvider + */ + public function testGetUniqueAppKernels($resource_ids, $node_counts , $core_counts, $n_expected=null, $expected=null) + { + $ak_db = new \AppKernel\AppKernelDb(); + $actual = $ak_db->getUniqueAppKernels($resource_ids, $node_counts , $core_counts); + + if($n_expected===null && $expected!==null) { + $n_expected=count($expected); + } + + if($n_expected!==null) { + $this->assertEquals($n_expected, count($actual)); + } + if(sizeof($actual)>0) { + $this->assertInstanceOf('AppKernel\AppKernelDefinition', $actual[array_keys($actual)[0]]); + } + + if($expected!==null) { + foreach(array_keys($expected) as $key) { + $this->assertSame($expected[$key]->id, $actual[$key]->id); + $this->assertSame($expected[$key]->name, $actual[$key]->name); + $this->assertSame($expected[$key]->basename, $actual[$key]->basename); + $this->assertSame($expected[$key]->processor_unit, $actual[$key]->processor_unit); + $this->assertSame($expected[$key]->enabled, $actual[$key]->enabled); + $this->assertSame($expected[$key]->visible, $actual[$key]->visible); + $this->assertSame($expected[$key]->start_ts, $actual[$key]->start_ts); + $this->assertSame($expected[$key]->end_ts, $actual[$key]->end_ts); + } + } + } + public function getMetricsProvider() + { + $inst1 = [ + 317 => new InstanceMetric("App kernel executable exists", null, "", 317), + 318 => new InstanceMetric("App kernel input exists", null, "", 318), + 76 => new InstanceMetric("Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance", null, "MFLOP per Second", 76), + 77 => new InstanceMetric("Average STREAM 'Add' Memory Bandwidth", null, "MByte per Second", 77), + ]; + return [ + [25, null, null, [],[], 20, $inst1], + [25, null, null, [28],[], 20, $inst1], + [25, null, null, [28,1],[], 20, $inst1], + [25, null, null, [28,1], [1], 20, $inst1], + [25, null, null, [28,1], [1,2], 20, $inst1], + [25, "2020-04-01", null, [],[], 20, $inst1], + [25, "2020-04-01", null, [28],[], 20, $inst1], + [25, "2020-04-01", null, [28,1],[], 20, $inst1], + [25, "2020-04-01", null, [28,1], [1], 20, $inst1], + [25, "2020-04-01", null, [28,1], [1,2], 20, $inst1], + [25, "2020-04-01", "2020-05-01", [],[], 20, $inst1], + [25, "2020-04-01", "2020-05-01", [28],[], 20, $inst1], + [25, "2020-04-01", "2020-05-01", [28,1],[], 20, $inst1], + [25, "2020-04-01", "2020-05-01", [28,1], [1], 20, $inst1], + [25, "2020-04-01", "2020-05-01", [28,1], [1,2], 20, $inst1], + [null, null, null, [],[], 320, null], + ]; + } + /** + * @dataProvider getMetricsProvider + */ + public function testGetMetrics($ak_def_id, $start_date, $end_date, $resource_ids, $pu_counts, $n_expected=null, $expected=null) + { + $ak_db = new \AppKernel\AppKernelDb(); + $actual = $ak_db->getMetrics($ak_def_id, $start_date, $end_date, $resource_ids, $pu_counts); + + if($n_expected===null && $expected!==null) { + $n_expected=count($expected); + } + + if($n_expected!==null) { + $this->assertEquals($n_expected, count($actual)); + } + + if($expected===null && $n_expected===null) { + print(count($actual) . "\n"); + print("[\n"); + foreach ($actual as $key => $val) { + print("$key => new InstanceMetric(\"$val->name\", null, \"$val->unit\", $val->id),\n"); + } + print("]\n"); + } + + if($expected!==null) { + foreach (array_keys($expected) as $key) { + $this->assertEquals($expected[$key], $actual[$key]); + } + } + } } From 0423e6feee32ddb2e28ada44767f7c828006ca6b Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Fri, 15 May 2020 11:51:15 -0400 Subject: [PATCH 25/63] converted AppKernelDb:loadAppKernelInstances sql query to parametric added unit tests --- classes/AppKernel/AppKernelDb.php | 31 +-- classes/AppKernel/InstanceData.php | 307 ++++++++++++++++------------- tests/unit/AppKernelDbTest.php | 176 ++++++++++++----- 3 files changed, 313 insertions(+), 201 deletions(-) diff --git a/classes/AppKernel/AppKernelDb.php b/classes/AppKernel/AppKernelDb.php index b7ed127..b161dda 100644 --- a/classes/AppKernel/AppKernelDb.php +++ b/classes/AppKernel/AppKernelDb.php @@ -632,7 +632,7 @@ public function getUniqueAppKernels(array $resource_ids = array(), array $node_c } /** - * getMetrics + * Get Metrics obtained between $start_date and $end_date for $ak_def_id on $resource_ids * * @param $ak_def_id * @param null $start_date @@ -641,7 +641,6 @@ public function getUniqueAppKernels(array $resource_ids = array(), array $node_c * @param array $pu_counts * @return array */ - public function getMetrics($ak_def_id, $start_date = null, $end_date = null, array $resource_ids = array(), array $pu_counts = array()) { $processorCountWheres = $this->getProcessorCountWheres($pu_counts); @@ -1311,31 +1310,33 @@ public function loadAppKernelInstances($appKernelDefId = null, $resourceId = nul $criteriaList = array(); $instanceList = array(); - $sql = - "SELECT i.ak_id, ak.num_units, collected, status - FROM ak_instance i - JOIN app_kernel ak USING(ak_id) - JOIN resource r USING(resource_id)"; + $sql = "SELECT i.ak_id, ak.num_units, collected, status " . + "FROM ak_instance i " . + "JOIN app_kernel ak USING(ak_id)" . + "JOIN resource r USING(resource_id)"; + $params = array(); - if (null !== $appKernelDefId ) { - $criteriaList[] = "i.ak_def_id = $appKernelDefId"; + if ($appKernelDefId !== null) { + $criteriaList[] = "i.ak_def_id = :ak_def_id"; + $params[":ak_def_id"] = $appKernelDefId; } - if (null !== $resourceId ) { - $criteriaList[] = "resource_id = $resourceId"; + if ($resourceId !== null) { + $criteriaList[] = "resource_id = :resource_id"; + $params[":resource_id"] = $resourceId; } - if (0 !== count($criteriaList) ) { + if (count($criteriaList) !==0) { $sql .= " WHERE " . implode(" AND ", $criteriaList); } $sql .= " ORDER BY collected DESC"; - $result = $this->db->query($sql); + $result = $this->db->query($sql, $params); foreach ( $result as $row ) { $ak = new InstanceData; - $ak->db_ak_id = $row['ak_id']; - $ak->deployment_num_proc_unit = $row['num_units']; + $ak->db_ak_id = intval($row['ak_id']); + $ak->deployment_num_proc_units = intval($row['num_units']); $ak->deployment_time = $row['collected']; $ak->status = $row['status']; $instanceList[] = $ak; diff --git a/classes/AppKernel/InstanceData.php b/classes/AppKernel/InstanceData.php index ffd8f63..1572291 100644 --- a/classes/AppKernel/InstanceData.php +++ b/classes/AppKernel/InstanceData.php @@ -21,100 +21,100 @@ class InstanceData const STATUS_FAILURE = 'failure'; const STATUS_ERROR = 'error'; const STATUS_QUEUED = 'queued'; - const STATUS_UNKNOWN = NULL; + const STATUS_UNKNOWN = null; // Status of the job (complete, error, queued) - public $status = NULL; + public $status = null; // -------------------------------------------------------------------------------- // Information from the app kernel database. Prefixed with "db_" // Application kernel id (takes into account the number of proc units) - public $db_ak_id = NULL; + public $db_ak_id = null; // Database id for the application kernel definition - public $db_ak_def_id = NULL; + public $db_ak_def_id = null; // Name of the app kernel in the database definition - public $db_ak_def_name = NULL; + public $db_ak_def_name = null; // app kernel visability in the database definition - public $db_ak_def_visible = NULL; + public $db_ak_def_visible = null; // Database id for the resource - public $db_resource_id = NULL; + public $db_resource_id = null; // Name of resource in the database definition - public $db_resource_name = NULL; + public $db_resource_name = null; // Nickname of resource in the database definition - public $db_resource_nickname = NULL; + public $db_resource_nickname = null; // resource visability in the database definition - public $db_resource_visible = NULL; + public $db_resource_visible = null; // Type of processing unit specified in the app kernel definition (e.g., node // or core) - public $db_proc_unit_type = NULL; + public $db_proc_unit_type = null; // -------------------------------------------------------------------------------- // Information taken from the deployment infrastructure (e.g., Inca or ARR) Prefixed // with "deployment_" // Instance identifier from the ak deployment infrastructure (inca) - public $deployment_instance_id = NULL; + public $deployment_instance_id = null; // Job identifier from the resource manager - public $deployment_job_id = NULL; + public $deployment_job_id = null; // The name of the app kernel including the number of processing units - public $deployment_ak_name = NULL; + public $deployment_ak_name = null; // The name of the app kernel without number of processing units (taken from the database) - public $deployment_ak_base_name = NULL; + public $deployment_ak_base_name = null; // The number of processing units used by this app kernel - public $deployment_num_proc_units = NULL; + public $deployment_num_proc_units = null; // The resource that the app kernel was run on - public $deployment_hostname = NULL; + public $deployment_hostname = null; // The optional cluster node that the app kernel was run on - public $deployment_execution_hostname = NULL; + public $deployment_execution_hostname = null; // Execution time (unix timestamp) - public $deployment_time = NULL; + public $deployment_time = null; // Error message returned by the deployment infrastructure - public $deployment_message = NULL; + public $deployment_message = null; // Stderr returned by the deployment infrastructure - public $deployment_stderr = NULL; + public $deployment_stderr = null; // Wall clock time spent running the app kernel - public $deployment_walltime = NULL; + public $deployment_walltime = null; // CPU time spend running the app kernel - public $deployment_cputime = NULL; + public $deployment_cputime = null; // Memory consumed by the app kernel - public $deployment_memory = NULL; + public $deployment_memory = null; // A aggregate value computed by examining environmental data returned by the // app kernel such as library versions, application signature, etc. - public $environmentVersion = NULL; + public $environmentVersion = null; // -------------------------------------------------------------------------------- // Information returned by the app kernel. Prefixed with "ak_" // Error cause as reported by the app kernel itself - public $ak_error_cause = NULL; + public $ak_error_cause = null; // Error message as reported by the app kernel itself - public $ak_error_message = NULL; + public $ak_error_message = null; // Time waiting in the queue (in seconds) - public $ak_queue_time = NULL; + public $ak_queue_time = null; // List of parameters provided to the app kernel (InstanceParameter objects) public $ak_parameters = array(); @@ -127,7 +127,7 @@ class InstanceData public function __construct() { $this->reset(); - } // __construct() + } // -------------------------------------------------------------------------------- // Return a string representation of the app kernel instance @@ -138,7 +138,7 @@ public function __construct() public function __toString() { return "(#{$this->deployment_instance_id} {$this->deployment_hostname}:{$this->deployment_ak_base_name}.{$this->deployment_num_proc_units} @" . date("Y-m-d H:i:s", $this->deployment_time) . ")"; - } // __toString() + } // -------------------------------------------------------------------------------- // Return a string representation of the app kernel instance @@ -159,7 +159,7 @@ public function toHtml() $s[] = "Deployment Instance Id:{$this->deployment_instance_id}"; $s[] = "Deployment Job Id:{$this->deployment_job_id}"; $s[] = "Env Version:" . - (NULL !== $this->environmentVersion ? $this->environmentVersion : $this->environmentVersion()) . + (null !== $this->environmentVersion ? $this->environmentVersion : $this->environmentVersion()) . ""; $s[] = ""; @@ -193,20 +193,19 @@ public function toHtml() $s[] = "

"; $s[] = ""; - $s[] = ""; - $s[] = ""; + $s[] = ""; + $s[] = ""; $s[] = ""; $s[] = ""; $s[] = ""; $s[] = ""; - $s[] = ""; - $s[] = ""; - $s[] = ""; + $s[] = ""; + $s[] = ""; + $s[] = ""; $s[] = "
Deployment (Inca) Data
Message" . (NULL !== $this->deployment_message ? "
{$this->deployment_message}
" : " ") . "
Stderr" . (NULL !== $this->deployment_stderr ? "
{$this->deployment_stderr}
" : " ") . "
Message" . (null !== $this->deployment_message ? "
{$this->deployment_message}
" : " ") . "
Stderr" . (null !== $this->deployment_stderr ? "
{$this->deployment_stderr}
" : " ") . "
Walltime{$this->deployment_walltime}
Cputime{$this->deployment_cputime}
Memory{$this->deployment_memory}
App Kernel Data
Error Cause" . (NULL !== $this->ak_error_cause ? $this->ak_error_cause : " ") . "
Error Message" . (NULL !== $this->ak_error_message ? "
{$this->ak_error_message}
" : " ") . "
Queue Time" . (NULL !== $this->ak_queue_time ? $this->ak_queue_time : " ") . "
Error Cause" . (null !== $this->ak_error_cause ? $this->ak_error_cause : " ") . "
Error Message" . (null !== $this->ak_error_message ? "
{$this->ak_error_message}
" : " ") . "
Queue Time" . (null !== $this->ak_queue_time ? $this->ak_queue_time : " ") . "
"; return implode("\n", $s); - - } // __toString() + } // -------------------------------------------------------------------------------- // Construct a version identifier based on the current inputs and environment @@ -220,7 +219,7 @@ public function toHtml() // can consistently tag parameters and decide what to do. SMG 2012-09-27 // If no parameters have been provided then the environment version will be - // NULL. This may happen if there was an error executing the instance. + // null. This may happen if there was an error executing the instance. // // @returns A version identifier based on the current inputs and environment // of the app kernel. @@ -229,7 +228,7 @@ public function toHtml() public function environmentVersion() { - if (0 == count($this->ak_parameters)) return NULL; + if (0 == count($this->ak_parameters)) return null; $versionStr = ""; // For the time being only use App:ExeBinSignature to calculate the @@ -259,37 +258,12 @@ public function environmentVersion() // Remove all spaces from the version string to account for random extra spaces $versionStr .= strtolower(str_replace(" ", "", $paramStr)); break; - } // foreach ( $this->ak_parameters as $parameter ) - - /* - // We need to sort the parameter list because the order returned by Inca is - // not guaranteed. - - usort($this->ak_parameters, array("AppKernel\InstanceMetric", "sort_cmp")); - - foreach ( $this->ak_parameters as $parameter ) - { - // Any runtime environment parameters will change with each execution so - // we need to ignore it here. AG 4/12/11 - - if ( 0 === strpos($parameter->tag, "RunEnv") ) continue; - - // Sort the value of the parameter in case the order of the data returned - // changes over time. SMG 2012-09-24 - - $valueList = preg_split('/[\n\r]+/', $parameter->value); - sort($valueList); - - $paramStr = $parameter->name . implode("", $valueList) . $parameter->unit; + } - // Remove all spaces from the version string to account for random extra spaces - $versionStr .= strtolower(str_replace(" ", "", $paramStr)); - } // foreach ( $this->ak_parameters as $parameter ) - */ $this->environmentVersion = md5($versionStr); return $this->environmentVersion; - } // environmentVersion() + } // -------------------------------------------------------------------------------- // Reset the data in the class. This allows us to reuse the object. @@ -297,68 +271,68 @@ public function environmentVersion() public function reset() { - $this->db_ak_id = NULL; - $this->db_ak_def_id = NULL; - $this->db_ak_def_name = NULL; - $this->db_ak_def_visible = NULL; - $this->db_resource_id = NULL; - $this->db_resource_name = NULL; - $this->db_resource_nickname = NULL; - $this->db_resource_visible = NULL; - $this->db_proc_unit_type = NULL; - $this->deployment_instance_id = NULL; - $this->deployment_job_id = NULL; - $this->deployment_ak_name = NULL; - $this->deployment_ak_base_name = NULL; - $this->deployment_num_proc_units = NULL; - $this->deployment_hostname = NULL; - $this->deployment_execution_hostname = NULL; - $this->deployment_time = NULL; - $this->deployment_stderr = NULL; - $this->deployment_message = NULL; - $this->deployment_walltime = NULL; - $this->deployment_cputime = NULL; - $this->deployment_memory = NULL; - - $this->ak_error_cause = NULL; - $this->ak_error_message = NULL; - $this->ak_queue_time = NULL; + $this->db_ak_id = null; + $this->db_ak_def_id = null; + $this->db_ak_def_name = null; + $this->db_ak_def_visible = null; + $this->db_resource_id = null; + $this->db_resource_name = null; + $this->db_resource_nickname = null; + $this->db_resource_visible = null; + $this->db_proc_unit_type = null; + $this->deployment_instance_id = null; + $this->deployment_job_id = null; + $this->deployment_ak_name = null; + $this->deployment_ak_base_name = null; + $this->deployment_num_proc_units = null; + $this->deployment_hostname = null; + $this->deployment_execution_hostname = null; + $this->deployment_time = null; + $this->deployment_stderr = null; + $this->deployment_message = null; + $this->deployment_walltime = null; + $this->deployment_cputime = null; + $this->deployment_memory = null; + + $this->ak_error_cause = null; + $this->ak_error_message = null; + $this->ak_queue_time = null; $this->ak_parameters = array(); $this->ak_metrics = array(); - $this->status = FALSE; - $this->environmentVersion = NULL; - } // reset() + $this->status = false; + $this->environmentVersion = null; + } // -------------------------------------------------------------------------------- // Some parameter and/or metric values are gzipped and base64-encoded to save - // space. Decode and unzip these fields and return the result, or FALSE if + // space. Decode and unzip these fields and return the result, or false if // the string was not base64 encoded. Note that a string can be made up of // characters from the base64 alphabet but not actually base64 encoded. // // @param $str Reference to the string to decode. This will be replaced with // the decoded and unzipped string on success // - // @returns TRUE on success or FALSE if the string was not encoded + // @returns true on success or false if the string was not encoded // -------------------------------------------------------------------------------- public static function decode(&$str) { - $decodedStr = NULL; + $decodedStr = null; $unzippedStr = ""; // If the string was not base64 encoded bail out now. Note that a string - // made up of characters from the base64 alphabet will return TRUE but + // made up of characters from the base64 alphabet will return true but // maynot acutally encoded. - if (FALSE === ($decodedStr = base64_decode($str, TRUE))) return FALSE; + if (false === ($decodedStr = base64_decode($str, true))) return false; // Test to see if the string has a mime type of "application/x-gzip" $f = finfo_open(FILEINFO_MIME_TYPE); $mt = finfo_buffer($f, $decodedStr); - if ($mt != "application/x-gzip") return FALSE; + if ($mt != "application/x-gzip") return false; // I had problems unzipping the decoded string directly but writing it to a // temporary file seems to work. -smg 20110608 @@ -372,24 +346,35 @@ public static function decode(&$str) unlink($tmpFile); $str = $unzippedStr; - return TRUE; - - } // decode() - -} // class InstanceData - -// ================================================================================ -// Application kernel metric/statistics -// ================================================================================ + return true; + } +} +/** + * Class InstanceMetric Application kernel metric/statistics + * @package AppKernel + */ class InstanceMetric { - // Database id of the metric. + /** + * @var int|null Database id of the metric. + */ public $id = null; // Metric data parsed from the app kernel + /** + * @var string|null Metrics name + */ public $name = null; + + /** + * @var string|null Metrics value + */ public $value = null; + + /** + * @var string|null Metrics units + */ public $unit = null; // -------------------------------------------------------------------------------- @@ -437,20 +422,20 @@ public function guid() class InstanceParameter extends InstanceMetric { // Optional grouping tag supplied with the parameter (e.g., App in App:ExeBinSignature) - public $tag = NULL; + public $tag = null; // -------------------------------------------------------------------------------- - public function __construct($name, $value, $unit = NULL, $tag = NULL) + public function __construct($name, $value, $unit = null, $tag = null) { // If the tag was explicitly provided us it, otherwise check to see if it is // still in the name. - if (NULL !== $tag) { + if (null !== $tag) { $this->name = $name; $this->tag = $tag; - } else if (FALSE !== strpos($name, ":")) { + } else if (false !== strpos($name, ":")) { $parts = explode(":", $name); $this->tag = array_shift($parts); $this->name = implode(":", $parts); @@ -471,29 +456,65 @@ public function __construct($name, $value, $unit = NULL, $tag = NULL) public function guid() { - return md5((NULL === $this->tag ? "" : $this->tag) . $this->name . $this->unit); + return md5((null === $this->tag ? "" : $this->tag) . $this->name . $this->unit); } } // class InstanceParameter -// ================================================================================ -// Application kernel definition -// ================================================================================ +/** + * Class AppKernelDefinition Application kernel definition + * @package AppKernel + */ class AppKernelDefinition { - public $id = null; // Database id - public $name = null; // Public name - public $basename = null; // Reporter basename - public $description = null; // App kernel description (html) - public $processor_unit = null; // Processor_units node or core - public $enabled = false; // TRUE if enabled - public $visible = false; // TRUE if visible outside of the application kernel tools - public $start_ts = null; // start time (can be limited to conditions like resource) - public $end_ts = null; // end time (can be limited to conditions like resource) + /** + * @var int|null Database id + */ + public $id = null; + + /** + * @var string|null Public name + */ + public $name = null; + + /** + * @var string|null Reporter basename + */ + public $basename = null; + + /** + * @var string|null App kernel description (html) + */ + public $description = null; + + /** + * @var string|null Processor_units node or core + */ + public $processor_unit = null; + + /** + * @var bool true if enabled + */ + public $enabled = false; + + /** + * @var bool true if visible outside of the application kernel tools + */ + public $visible = false; + + /** + * @var int|null start time (can be limited to conditions like resource) + */ + public $start_ts = null; + + /** + * @var int|null end time (can be limited to conditions like resource) + */ + public $end_ts = null; public function __construct($id = null, $name = null, $basename = null, $description = null, - $processor_unit = null, $enabled = FALSE, $visible = FALSE, + $processor_unit = null, $enabled = false, $visible = false, $start_ts = null, $end_ts = null) { $this->id = intval($id); @@ -506,7 +527,7 @@ public function __construct($id = null, $name = null, $basename = null, $descrip $this->start_ts = intval($start_ts); $this->end_ts = intval($end_ts); } -} // AppKernelDefinition +} // ================================================================================ // Resource that application kernels are run on @@ -514,20 +535,26 @@ public function __construct($id = null, $name = null, $basename = null, $descrip class AKResource { - public $id = NULL; // Database id - public $nickname = NULL; // Resource nickname (e.g., short name such as "edge") - public $name = NULL; // Resource full name (e.g., edge.ccr.buffalo.edu) - public $description = NULL; // Resource description - public $enabled = FALSE; // TRUE if the resoure is enabled - public $visible = FALSE; // TRUE if visible outside of the application kernel tools + public $id = null; // Database id + public $nickname = null; // Resource nickname (e.g., short name such as "edge") + public $name = null; // Resource full name (e.g., edge.ccr.buffalo.edu) + public $description = null; // Resource description + public $enabled = false; // true if the resoure is enabled + public $visible = false; // true if visible outside of the application kernel tools } class ProcessingUnit { - public $unit = NULL; - public $count = NULL; + /** + * @var string|null + */ + public $unit = null; + /** + * @var int|null + */ + public $count = null; - public function __construct($unit = NULL, $count = NULL) + public function __construct($unit = null, $count = null) { $this->unit = $unit; $this->count = intval($count); diff --git a/tests/unit/AppKernelDbTest.php b/tests/unit/AppKernelDbTest.php index a6a554e..7fc0e66 100644 --- a/tests/unit/AppKernelDbTest.php +++ b/tests/unit/AppKernelDbTest.php @@ -1,10 +1,24 @@ db_ak_id = $db_ak_id; + $ak->deployment_num_proc_units = $deployment_num_proc_units; + $ak->deployment_time = $deployment_time; + $ak->status = $status; + return $ak; +} final class AppKernelDbTest extends TestCase { @@ -17,7 +31,7 @@ public function processingUnitProvider() new ProcessingUnit("node", "8"), new ProcessingUnit("node", "16"), new ProcessingUnit("node", "32"), - ]; + ]; $proc_unit_core_8to128 = [ new ProcessingUnit("core", "8"), new ProcessingUnit("core", "16"), @@ -25,39 +39,41 @@ public function processingUnitProvider() new ProcessingUnit("core", "64"), new ProcessingUnit("core", "128"), ]; - $proc_unit_node_1to8 = array_slice($proc_unit_node_1to32, 0,4); - $proc_unit_node_1to4 = array_slice($proc_unit_node_1to32, 0,3); - $proc_unit_node_2to8 = array_slice($proc_unit_node_1to32, 1,3); - $proc_unit_node_2to4 = array_slice($proc_unit_node_1to32, 1,2); - $proc_unit_node_1to16 = array_slice($proc_unit_node_1to32, 0,5); - $proc_unit_node_2to16 = array_slice($proc_unit_node_1to32, 1,4); + $proc_unit_node_1to8 = array_slice($proc_unit_node_1to32, 0, 4); + $proc_unit_node_1to4 = array_slice($proc_unit_node_1to32, 0, 3); + $proc_unit_node_2to8 = array_slice($proc_unit_node_1to32, 1, 3); + $proc_unit_node_2to4 = array_slice($proc_unit_node_1to32, 1, 2); + $proc_unit_node_1to16 = array_slice($proc_unit_node_1to32, 0, 5); + $proc_unit_node_2to16 = array_slice($proc_unit_node_1to32, 1, 4); return [ - [null, null, [], [], array_merge($proc_unit_node_1to32,$proc_unit_core_8to128)], + [null, null, [], [], array_merge($proc_unit_node_1to32, $proc_unit_core_8to128)], ["2020-04-01", null, [], [], $proc_unit_node_1to16], ["2020-04-01", "2020-05-01", [], [], $proc_unit_node_1to16], ["2020-04-01", "2020-05-01", [28], [], $proc_unit_node_1to8], ["2020-04-01", "2020-05-01", [288], [], []], // wrong resource id ["2020-04-01", "2020-05-01", [28], ['ak_23_metric_4'], $proc_unit_node_1to4], ["2020-04-01", "2020-05-01", [28], ['ak_7_metric_4'], $proc_unit_node_2to8], - ["2020-04-01", "2020-05-01", [28,0], ['ak_23_metric_4'], $proc_unit_node_1to4], + ["2020-04-01", "2020-05-01", [28, 0], ['ak_23_metric_4'], $proc_unit_node_1to4], ["2020-04-01", "2020-05-01", [28], ['ak_7_metric_4', 'ak_7_metric_4'], $proc_unit_node_2to8], ]; } + /** * @dataProvider processingUnitProvider */ - public function testProcessingUnit($start_date, $end_date , array $resource_ids, array $metrics, $expected) + public function testProcessingUnit($start_date, $end_date, array $resource_ids, array $metrics, $expected) { $ak_db = new \AppKernel\AppKernelDb(); - $proc_unit = $ak_db->getProcessingUnits($start_date, $end_date, $resource_ids, $metrics); + $proc_unit = $ak_db->getProcessingUnits($start_date, $end_date, $resource_ids, $metrics); #var_dump($proc_unit); $this->assertEquals($expected, $proc_unit); - if(sizeof($proc_unit)>0) { + if (sizeof($proc_unit) > 0) { $this->assertInstanceOf('AppKernel\ProcessingUnit', $proc_unit[0]); } } + public function getUniqueAppKernelsProvider() { $akd_list = [ @@ -70,8 +86,8 @@ public function getUniqueAppKernelsProvider() 24 => new AppKernelDefinition(24, "NWChem", "nwchem", null, "node", true, true, 1537537457, 1589169723), ]; return [ - [[], [], [],27,null], - [[28,1], [], [],null, $akd_list], + [[], [], [], 27, null], + [[28, 1], [], [], null, $akd_list], [[28], [], [], null, $akd_list], [[28], [1], [], null, [ 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1537780756, 1589170859), @@ -81,7 +97,7 @@ public function getUniqueAppKernelsProvider() 23 => new AppKernelDefinition(23, "NAMD", "namd", null, "node", true, true, 1537179935, 1589149529), 24 => new AppKernelDefinition(24, "NWChem", "nwchem", null, "node", true, true, 1537537457, 1589169723), ]], - [[28], [1,2], [], null, [ + [[28], [1, 2], [], null, [ 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1537524242, 1589170859), 22 => new AppKernelDefinition(22, "GAMESS", "gamess", null, "node", true, true, 1537530111, 1589162281), 28 => new AppKernelDefinition(28, "Graph500", "graph500", null, "node", true, true, 1537523226, 1589167423), @@ -92,27 +108,28 @@ public function getUniqueAppKernelsProvider() ]], ]; } + /** * @dataProvider getUniqueAppKernelsProvider */ - public function testGetUniqueAppKernels($resource_ids, $node_counts , $core_counts, $n_expected=null, $expected=null) + public function testGetUniqueAppKernels($resource_ids, $node_counts, $core_counts, $n_expected = null, $expected = null) { $ak_db = new \AppKernel\AppKernelDb(); - $actual = $ak_db->getUniqueAppKernels($resource_ids, $node_counts , $core_counts); + $actual = $ak_db->getUniqueAppKernels($resource_ids, $node_counts, $core_counts); - if($n_expected===null && $expected!==null) { - $n_expected=count($expected); + if ($n_expected === null && $expected !== null) { + $n_expected = count($expected); } - if($n_expected!==null) { + if ($n_expected !== null) { $this->assertEquals($n_expected, count($actual)); } - if(sizeof($actual)>0) { + if (sizeof($actual) > 0) { $this->assertInstanceOf('AppKernel\AppKernelDefinition', $actual[array_keys($actual)[0]]); } - if($expected!==null) { - foreach(array_keys($expected) as $key) { + if ($expected !== null) { + foreach (array_keys($expected) as $key) { $this->assertSame($expected[$key]->id, $actual[$key]->id); $this->assertSame($expected[$key]->name, $actual[$key]->name); $this->assertSame($expected[$key]->basename, $actual[$key]->basename); @@ -124,6 +141,7 @@ public function testGetUniqueAppKernels($resource_ids, $node_counts , $core_coun } } } + public function getMetricsProvider() { $inst1 = [ @@ -133,41 +151,42 @@ public function getMetricsProvider() 77 => new InstanceMetric("Average STREAM 'Add' Memory Bandwidth", null, "MByte per Second", 77), ]; return [ - [25, null, null, [],[], 20, $inst1], - [25, null, null, [28],[], 20, $inst1], - [25, null, null, [28,1],[], 20, $inst1], - [25, null, null, [28,1], [1], 20, $inst1], - [25, null, null, [28,1], [1,2], 20, $inst1], - [25, "2020-04-01", null, [],[], 20, $inst1], - [25, "2020-04-01", null, [28],[], 20, $inst1], - [25, "2020-04-01", null, [28,1],[], 20, $inst1], - [25, "2020-04-01", null, [28,1], [1], 20, $inst1], - [25, "2020-04-01", null, [28,1], [1,2], 20, $inst1], - [25, "2020-04-01", "2020-05-01", [],[], 20, $inst1], - [25, "2020-04-01", "2020-05-01", [28],[], 20, $inst1], - [25, "2020-04-01", "2020-05-01", [28,1],[], 20, $inst1], - [25, "2020-04-01", "2020-05-01", [28,1], [1], 20, $inst1], - [25, "2020-04-01", "2020-05-01", [28,1], [1,2], 20, $inst1], - [null, null, null, [],[], 320, null], + [25, null, null, [], [], 20, $inst1], + [25, null, null, [28], [], 20, $inst1], + [25, null, null, [28, 1], [], 20, $inst1], + [25, null, null, [28, 1], [1], 20, $inst1], + [25, null, null, [28, 1], [1, 2], 20, $inst1], + [25, "2020-04-01", null, [], [], 20, $inst1], + [25, "2020-04-01", null, [28], [], 20, $inst1], + [25, "2020-04-01", null, [28, 1], [], 20, $inst1], + [25, "2020-04-01", null, [28, 1], [1], 20, $inst1], + [25, "2020-04-01", null, [28, 1], [1, 2], 20, $inst1], + [25, "2020-04-01", "2020-05-01", [], [], 20, $inst1], + [25, "2020-04-01", "2020-05-01", [28], [], 20, $inst1], + [25, "2020-04-01", "2020-05-01", [28, 1], [], 20, $inst1], + [25, "2020-04-01", "2020-05-01", [28, 1], [1], 20, $inst1], + [25, "2020-04-01", "2020-05-01", [28, 1], [1, 2], 20, $inst1], + [null, null, null, [], [], 320, null], ]; } + /** * @dataProvider getMetricsProvider */ - public function testGetMetrics($ak_def_id, $start_date, $end_date, $resource_ids, $pu_counts, $n_expected=null, $expected=null) + public function testGetMetrics($ak_def_id, $start_date, $end_date, $resource_ids, $pu_counts, $n_expected = null, $expected = null) { $ak_db = new \AppKernel\AppKernelDb(); - $actual = $ak_db->getMetrics($ak_def_id, $start_date, $end_date, $resource_ids, $pu_counts); + $actual = $ak_db->getMetrics($ak_def_id, $start_date, $end_date, $resource_ids, $pu_counts); - if($n_expected===null && $expected!==null) { - $n_expected=count($expected); + if ($n_expected === null && $expected !== null) { + $n_expected = count($expected); } - if($n_expected!==null) { + if ($n_expected !== null) { $this->assertEquals($n_expected, count($actual)); } - if($expected===null && $n_expected===null) { + if ($expected === null && $n_expected === null) { print(count($actual) . "\n"); print("[\n"); foreach ($actual as $key => $val) { @@ -176,10 +195,75 @@ public function testGetMetrics($ak_def_id, $start_date, $end_date, $resource_ids print("]\n"); } - if($expected!==null) { + if ($expected !== null) { foreach (array_keys($expected) as $key) { $this->assertEquals($expected[$key], $actual[$key]); } } } + + public function loadAppKernelInstancesProvider() + { + + return [ + [null, null, 821, [ + create_instance_data(90, 8, "2020-05-01 16:49:14", "success"), + create_instance_data(59, 8, "2020-05-01 16:40:38", "success"), + create_instance_data(80, 1, "2020-05-01 11:57:11", "success"), + create_instance_data(103, 1, "2020-05-01 11:52:35", "success"), + create_instance_data(104, 2, "2020-05-01 11:28:52", "success"), + create_instance_data(75, 2, "2020-05-01 11:21:48", "failure") + ]], + [23, null, 105, [ + create_instance_data(80, 1, "2020-05-01 11:57:11", "success"), + create_instance_data(80, 1, "2020-05-01 10:59:01", "success"), + create_instance_data(81, 2, "2020-05-01 10:57:03", "success"), + create_instance_data(82, 4, "2020-05-01 10:56:56", "success"), + ]], + [23,28,45, [ + create_instance_data(80, 1, "2020-05-01 11:57:11", "success"), + create_instance_data(81, 2, "2020-05-01 10:57:03", "success"), + create_instance_data(82, 4, "2020-05-01 10:56:56", "success"), + create_instance_data(82, 4, "2020-05-01 10:34:33", "success") + ]], + [23001,null, 0, null] + ]; + } + + /** + * @dataProvider loadAppKernelInstancesProvider + */ + public function testLoadAppKernelInstances($appKernelDefId, $resourceId, $n_expected = null, $expected = null) + { + $ak_db = new \AppKernel\AppKernelDb(); + $actual = $ak_db->loadAppKernelInstances($appKernelDefId, $resourceId); + + if ($expected === null && $n_expected === null) { + print(count($actual) . ", [\n"); + foreach (array_slice($actual,0,min(10,count($actual))) as $val) { + print("create_instance_data($val->db_ak_id, $val->deployment_num_proc_units, \"$val->deployment_time\", \"$val->status\"),\n"); + } + print("]\n"); + } + + if ($n_expected === null && $expected !== null) { + $n_expected = count($expected); + } + + if ($n_expected !== null) { + $this->assertEquals($n_expected, count($actual)); + } + if (sizeof($actual) > 0) { + $this->assertInstanceOf('AppKernel\InstanceData', $actual[array_keys($actual)[0]]); + } + + if ($expected !== null) { + foreach (array_keys($expected) as $key) { + $this->assertSame($expected[$key]->db_ak_id, $actual[$key]->db_ak_id); + $this->assertSame($expected[$key]->deployment_num_proc_units, $actual[$key]->deployment_num_proc_units); + $this->assertSame($expected[$key]->deployment_time, $actual[$key]->deployment_time); + $this->assertSame($expected[$key]->status, $actual[$key]->status); + } + } + } } From f8e90a157388b7e324e55dceef3ffead94b32fb2 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Fri, 15 May 2020 12:48:37 -0400 Subject: [PATCH 26/63] bugfix: set to 1 if is near zero --- classes/AppKernel/AppKernelDb.php | 1463 +++++++++++++--------------- classes/AppKernel/InstanceData.php | 16 +- tests/unit/AppKernelDbTest.php | 6 +- 3 files changed, 708 insertions(+), 777 deletions(-) diff --git a/classes/AppKernel/AppKernelDb.php b/classes/AppKernel/AppKernelDb.php index b161dda..d25b296 100644 --- a/classes/AppKernel/AppKernelDb.php +++ b/classes/AppKernel/AppKernelDb.php @@ -1,4 +1,5 @@ db = DB::factory($configSection); @@ -143,12 +144,12 @@ public function storeIngestionLogEntry(IngestionLogEntry $log) $log->message, $log->reportObj ); - $numRows = $this->db->execute($sql, $params); - if (1 === $numRows ) { + $numRows = $this->db->execute($sql, $params); + if (1 === $numRows) { $this->log("Added entry to ingestion log"); } - return ( 1 === $numRows ); + return (1 === $numRows); } // -------------------------------------------------------------------------------- @@ -167,8 +168,8 @@ public function loadMostRecentIngestionLogEntry(IngestionLogEntry &$log) UNIX_TIMESTAMP(start_time) as start_time, UNIX_TIMESTAMP(end_time) as end_time, success, message, UNCOMPRESS(reportobj) as reportobj FROM ingester_log WHERE success=1 ORDER BY last_update DESC LIMIT 1"; - $result = $this->db->query($sql); - if (1 !== count($result) ) { + $result = $this->db->query($sql); + if (1 !== count($result)) { return false; } @@ -207,10 +208,10 @@ public function loadAppKernelDefinitions(array $criteria = null) // Initialize default criteria to be overrided if necessary $sqlCriteria = array('inc_disabled' => "enabled = 1", - 'inc_hidden' => "visible = 1"); + 'inc_hidden' => "visible = 1"); - if (null !== $criteria ) { - foreach ( $criteria as $key => $value ) { + if (null !== $criteria) { + foreach ($criteria as $key => $value) { switch ($key) { case 'inc_disabled': $sqlCriteria[$key] = null; @@ -229,23 +230,22 @@ public function loadAppKernelDefinitions(array $criteria = null) } $sql = "SELECT ak_def_id, name, ak_base_name, description, enabled, visible,processor_unit FROM app_kernel_def"; - if (0 != count($sqlCriteria) ) { + if (0 != count($sqlCriteria)) { $sql .= " WHERE " . implode(" AND ", $sqlCriteria); } $this->logger->debug( array( - 'message' => 'Executing query', - 'sql' => $sql, - 'params' => json_encode($sqlParams), + 'message' => 'Executing query', + 'sql' => $sql, + 'params' => json_encode($sqlParams), ) ); $result = $this->db->query($sql, $sqlParams); - while ( false !== ($row = current($result)) ) - { + while (false !== ($row = current($result))) { $basename = $row['ak_base_name']; - if (empty($basename) ) { + if (empty($basename)) { $this->log("App kernel definition {$row['name']} has no base name, skipping."); continue; } @@ -281,7 +281,7 @@ public function loadAppKernelDefinitions(array $criteria = null) private function convertWildcards(&$value) { - if ("*" == $value[0] || "*" == $value[strlen($value) - 1] ) { + if ("*" == $value[0] || "*" == $value[strlen($value) - 1]) { $value = preg_replace('/^\*|\*$/', '%', $value); } return $value; @@ -314,11 +314,11 @@ private function extractOperator(&$value, &$op) $operatorFound = false; // Bools have no operator - if (is_bool($value) ) { + if (is_bool($value)) { return $operatorFound; } - if (array_key_exists($value[0], $validOperators) ) { + if (array_key_exists($value[0], $validOperators)) { $op = $validOperators[$value[0]]; $value = substr($value, 1); $operatorFound = true; @@ -337,8 +337,7 @@ private function extractOperator(&$value, &$op) private function getProcessorCountWheres(array $pu_counts = array()) { $processorCountWheres = array(); - foreach($pu_counts as $pu_count) - { + foreach ($pu_counts as $pu_count) { $pu_count = intval($pu_count); $processorCountWheres[] = "vt.num_units = $pu_count"; } @@ -355,10 +354,9 @@ private function getProcessorCountWheres(array $pu_counts = array()) private function getMetricWheres(array $metrics = array()) { $metricWheres = array(); - foreach($metrics as $metric) - { + foreach ($metrics as $metric) { - if(preg_match('/ak_(?P\d+)_metric_(?P\d+)_(?P\d+)/', $metric, $matches)) { + if (preg_match('/ak_(?P\d+)_metric_(?P\d+)_(?P\d+)/', $metric, $matches)) { $metricWheres[] = "(vt.ak_def_id = {$matches['ak']} and vt.metric_id = {$matches['metric']} and vt.num_units = {$matches['pu']})"; } else { if (preg_match('/ak_(?P\d+)_metric_(?P\d+)/', $metric, $matches)) { @@ -378,18 +376,17 @@ public function getResources($start_date = null, $end_date = null, array $pu_cou $sql = "SELECT distinct r.resource_id, r.resource, r.nickname, r.description , r.enabled, r.visible, r.xdmod_resource_id, r.xdmod_cluster_id FROM `a_tree` vt, resource r - where vt.resource_id = r.resource_id ". - ($start_date !== null ? " and '$start_date' <= end_time " : " "). - ($end_date !== null ? " and '$end_date' >= start_time " : " "). - (count($processorCountWheres)>0 ? " and ( ".implode(' or ', $processorCountWheres)." ) " : " "). - (count($metricWheres)>0 ? " and ( ".implode(' or ', $metricWheres)." ) " : " "). + where vt.resource_id = r.resource_id " . + ($start_date !== null ? " and '$start_date' <= end_time " : " ") . + ($end_date !== null ? " and '$end_date' >= start_time " : " ") . + (count($processorCountWheres) > 0 ? " and ( " . implode(' or ', $processorCountWheres) . " ) " : " ") . + (count($metricWheres) > 0 ? " and ( " . implode(' or ', $metricWheres) . " ) " : " ") . " order by r.resource "; $results = $this->db->query($sql); $resources = array(); - foreach ( $results as $row ) - { + foreach ($results as $row) { $resource = new AKResource; $resource->id = $row['resource_id']; $resource->nickname = $row['nickname']; @@ -402,39 +399,36 @@ public function getResources($start_date = null, $end_date = null, array $pu_cou $resources[$row['nickname']] = $resource; } - if($user!==null) { - $roles=$user->getRoles(); + if ($user !== null) { + $roles = $user->getRoles(); - if(in_array("mgr", $roles)||in_array("po", $roles)||in_array("dev", $roles)) { + if (in_array("mgr", $roles) || in_array("po", $roles) || in_array("dev", $roles)) { //$allResources - } - elseif(in_array("cd", $roles)||in_array("cs", $roles)) { + } elseif (in_array("cd", $roles) || in_array("cs", $roles)) { //get all associated organization $organizations = array( $user->getOrganizationID() ); // get resource_id for all associated resources - $rr=$this->getResourceListing(date_format(date_sub(date_create(), date_interval_create_from_date_string("90 days")), 'Y-m-d'), date_format(date_create(), 'Y-m-d')); + $rr = $this->getResourceListing(date_format(date_sub(date_create(), date_interval_create_from_date_string("90 days")), 'Y-m-d'), date_format(date_create(), 'Y-m-d')); - $organizations_resources_id=array(); - foreach($rr as $r){ - if(in_array($r["organization_id"], $organizations)) { - $organizations_resources_id[]=$r["id"]; + $organizations_resources_id = array(); + foreach ($rr as $r) { + if (in_array($r["organization_id"], $organizations)) { + $organizations_resources_id[] = $r["id"]; } } - $allResources2=array(); - foreach($resources as $resource) - { - if(in_array($resource->xdmod_resource_id, $organizations_resources_id)) { - $allResources2[]=$resource; + $allResources2 = array(); + foreach ($resources as $resource) { + if (in_array($resource->xdmod_resource_id, $organizations_resources_id)) { + $allResources2[] = $resource; } } - $resources=$allResources2; - } - else { - $resources=array(); + $resources = $allResources2; + } else { + $resources = array(); } } @@ -446,8 +440,8 @@ public function getResources($start_date = null, $end_date = null, array $pu_cou * be used by Open Source Users. Retrieves a list of resources filtered by the optionally provided * `$start_date` and `$end_date` * - * @param string|null $start_date - * @param string|null $end_date + * @param string|null $start_date + * @param string|null $end_date * @return mixed */ public function getResourceListing($start_date = null, $end_date = null) @@ -526,8 +520,7 @@ public function getResourceListing($start_date = null, $end_date = null) ORDER BY rs.processors DESC, resource_end_date DESC, - rf.code DESC" - ; + rf.code DESC"; $query_params[':start_date_lte'] = $end_date; $query_params[':end_date_gte'] = $end_date; @@ -552,7 +545,7 @@ public function getProcessingUnits($start_date = null, $end_date = null, array $ $sql = "SELECT distinct vt.num_units, vt.processor_unit FROM `a_tree` vt, app_kernel_def akd " . "WHERE vt.ak_def_id = akd.ak_def_id "; $params = array(); - if ( $start_date !== null) { + if ($start_date !== null) { $sql .= 'AND :start_date <= end_time '; $params[':start_date'] = $start_date; } @@ -560,20 +553,19 @@ public function getProcessingUnits($start_date = null, $end_date = null, array $ $sql .= 'AND :end_date >= start_time '; $params[':end_date'] = $end_date; } - if (count($resource_ids) > 0){ + if (count($resource_ids) > 0) { $sql .= ' AND vt.resource_id in (:resource_ids)'; - $params[':resource_ids'] = implode(',', array_map('intval',$resource_ids)); + $params[':resource_ids'] = implode(',', array_map('intval', $resource_ids)); } if (count($metricWheres) > 0) { - $sql .= " and ( ".implode(' or ', $metricWheres)." ) "; + $sql .= " and ( " . implode(' or ', $metricWheres) . " ) "; } $sql .= "ORDER BY vt.processor_unit, vt.num_units "; $results = $this->db->query($sql, $params); - foreach($results as $row ) - { + foreach ($results as $row) { $processing_unit = new ProcessingUnit; $processing_unit->unit = $row['processor_unit']; $processing_unit->count = $row['num_units']; @@ -600,12 +592,12 @@ public function getUniqueAppKernels(array $resource_ids = array(), array $node_c "WHERE vt.ak_def_id = akd.ak_def_id AND akd.enabled = 1 AND akd.visible = 1"; $params = array(); - if (count($resource_ids) > 0){ + if (count($resource_ids) > 0) { $sql .= ' AND vt.resource_id in (:resource_ids)'; - $params[':resource_ids'] = implode(',', array_map('intval',$resource_ids)); + $params[':resource_ids'] = implode(',', array_map('intval', $resource_ids)); } - if (count($processorCountWheres) > 0){ - $sql .= " AND ( ".implode(' OR ', $processorCountWheres)." ) "; + if (count($processorCountWheres) > 0) { + $sql .= " AND ( " . implode(' OR ', $processorCountWheres) . " ) "; } $sql .= " GROUP BY vt.ak_def_id ORDER BY vt.ak_name "; @@ -613,8 +605,7 @@ public function getUniqueAppKernels(array $resource_ids = array(), array $node_c $uniqueAppKernelList = array(); - foreach($result as $row ) - { + foreach ($result as $row) { $ak_def = new AppKernelDefinition( $id = $row['ak_def_id'], $name = $row['ak_name'], @@ -654,7 +645,7 @@ public function getMetrics($ak_def_id, $start_date = null, $end_date = null, arr $sql .= 'AND vt.ak_def_id = :ak_def_id '; $params[':ak_def_id'] = $ak_def_id; } - if ( $start_date !== null) { + if ($start_date !== null) { $sql .= 'AND :start_date <= end_time '; $params[':start_date'] = $start_date; } @@ -662,12 +653,12 @@ public function getMetrics($ak_def_id, $start_date = null, $end_date = null, arr $sql .= 'AND :end_date >= start_time '; $params[':end_date'] = $end_date; } - if (count($resource_ids) > 0){ + if (count($resource_ids) > 0) { $sql .= 'AND vt.resource_id in (:resource_ids) '; - $params[':resource_ids'] = implode(',', array_map('intval',$resource_ids)); + $params[':resource_ids'] = implode(',', array_map('intval', $resource_ids)); } - if (count($processorCountWheres) > 0){ - $sql .= "AND ( ".implode(' OR ', $processorCountWheres)." ) "; + if (count($processorCountWheres) > 0) { + $sql .= "AND ( " . implode(' OR ', $processorCountWheres) . " ) "; } $sql .= "ORDER BY vt.metric "; @@ -675,8 +666,7 @@ public function getMetrics($ak_def_id, $start_date = null, $end_date = null, arr $results = $this->db->query($sql, $params); $metrics = array(); - foreach($results as $row ) - { + foreach ($results as $row) { $metrics[$row['metric_id']] = new InstanceMetric($row['metric'], null, $row['unit'], $row['metric_id']); } @@ -696,20 +686,21 @@ public function getDataset( $debugMode = false, $datesAsEpoch = true, $maximizeQueryCacheUsage = true - ) { + ) + { $restrictions = array( - 'ak' => $akId, - 'start' => $startTime, - 'end' => $endTime, + 'ak' => $akId, + 'start' => $startTime, + 'end' => $endTime, 'metadata_only' => $metadataOnly, - 'debug' => $debugMode, + 'debug' => $debugMode, 'dates_as_epoch' => $datesAsEpoch); - if($maximizeQueryCacheUsage === false) //this will make the queries as specific as possible + if ($maximizeQueryCacheUsage === false) //this will make the queries as specific as possible { - $restrictions['resource'] = $resourceId; - $restrictions['metric'] = $metricId; + $restrictions['resource'] = $resourceId; + $restrictions['metric'] = $metricId; $restrictions['num_units'] = $numProcUnits; } @@ -717,8 +708,7 @@ public function getDataset( $appKernelDefs = $this->loadAppKernelDefinitions(); $akList = array(); - foreach ( $appKernelDefs as $ak ) - { + foreach ($appKernelDefs as $ak) { $akList[$ak->id] = $ak; } @@ -726,8 +716,7 @@ public function getDataset( $resourceDefs = $this->loadResources(); $resourceList = array(); - foreach ( $resourceDefs as $res ) - { + foreach ($resourceDefs as $res) { $resourceList[$res->id] = $res; } @@ -743,25 +732,24 @@ public function getDataset( $datasetList = array(); $dataset = null; - while ( $row = $retStatement->fetch(\PDO::FETCH_ASSOC, \PDO::FETCH_ORI_NEXT) ) - { + while ($row = $retStatement->fetch(\PDO::FETCH_ASSOC, \PDO::FETCH_ORI_NEXT)) { // Amin needs the query to return all data for building thumbnails so skip // unwanted records here. - if($resourceId != null && $row['resource_id'] != $resourceId) { + if ($resourceId != null && $row['resource_id'] != $resourceId) { continue; } - if($metricId != null && $row['metric_id'] != $metricId) { + if ($metricId != null && $row['metric_id'] != $metricId) { continue; } - if($numProcUnits != null && $row['num_units'] != $numProcUnits) { + if ($numProcUnits != null && $row['num_units'] != $numProcUnits) { continue; } $current->set($row['ak_name'], $row['resource'], $row['metric'], $row['num_units']); - if ($current != $prev ) { - if (null !== $dataset ) { + if ($current != $prev) { + if (null !== $dataset) { $datasetList[] = $dataset; } $dataset = new Dataset( @@ -772,17 +760,17 @@ public function getDataset( $row['metric'], $row['metric_id'], $row['unit'], - $row['num_units'] . " " . $row['processor_unit'] . ( $row['num_units'] > 1 ? "s" : "" ), + $row['num_units'] . " " . $row['processor_unit'] . ($row['num_units'] > 1 ? "s" : ""), $akList[$row['ak_def_id']]->description, $row['num_units'], $resourceList[$row['resource_id']]->description ); - if (! $metadataOnly ) { + if (!$metadataOnly) { $prevEnvVersion = $row['env_version']; } } - if (! $metadataOnly ) { + if (!$metadataOnly) { $dataset->valueVector[] = $row['metric_value']; $dataset->timeVector[] = $row['collected']; $dataset->controlVector[] = $row['control']; @@ -791,7 +779,7 @@ public function getDataset( $dataset->controlMinVector[] = $row['controlMin']; $dataset->controlMaxVector[] = $row['controlMax']; $dataset->runningAverageVector[] = $row['running_average']; - $dataset->versionVector[] = ( $prevEnvVersion == $row['env_version'] ? 0 : 1 ); + $dataset->versionVector[] = ($prevEnvVersion == $row['env_version'] ? 0 : 1); $dataset->controlStatus[] = $row['controlStatus']; $prevEnvVersion = $row['env_version']; } @@ -799,7 +787,7 @@ public function getDataset( } - if (null !== $dataset ) { + if (null !== $dataset) { $datasetList[] = $dataset; } return $datasetList; @@ -825,16 +813,16 @@ public function loadResources(array $criteria = null) // Initialize default criteria to be overrided if necessary $sqlCriteria = array('inc_disabled' => "enabled = 1", - 'inc_hidden' => "visible = 1"); + 'inc_hidden' => "visible = 1"); - if (null !== $criteria ) { - foreach ( $criteria as $key => $value ) { + if (null !== $criteria) { + foreach ($criteria as $key => $value) { switch ($key) { case 'inc_disabled': $sqlCriteria[$key] = null; break; case 'inc_hidden': - if ($value ) { + if ($value) { unset($sqlCriteria[$key]); } break; @@ -849,14 +837,13 @@ public function loadResources(array $criteria = null) } $sql = "SELECT resource_id, resource, nickname, description , enabled, visible FROM resource"; - if (0 != count($sqlCriteria) ) { + if (0 != count($sqlCriteria)) { $sql .= " WHERE " . implode(" AND ", $sqlCriteria); } $result = $this->db->query($sql, $sqlParams); - while ( false !== ($row = current($result)) ) - { + while (false !== ($row = current($result))) { $resource = new AKResource; $resource->id = $row['resource_id']; $resource->nickname = $row['nickname']; @@ -898,13 +885,13 @@ public function loadTreeLevel(array $criteria = null) $sqlCriteria = array(); $groupBy = null; $orderBy = null; - $debugMode = ( array_key_exists('debug', $criteria) && $criteria['debug'] ); + $debugMode = (array_key_exists('debug', $criteria) && $criteria['debug']); - $sql = "SELECT * ".($debugMode ?'':", unix_timestamp(min(start_time)) as start_ts, unix_timestamp(max(end_time)) as end_ts ")." FROM " . ( $debugMode ? "v_tree_debug" : "a_tree" ); + $sql = "SELECT * " . ($debugMode ? '' : ", unix_timestamp(min(start_time)) as start_ts, unix_timestamp(max(end_time)) as end_ts ") . " FROM " . ($debugMode ? "v_tree_debug" : "a_tree"); - if (null !== $criteria && 0 !== count($criteria) ) { - foreach ( $criteria as $key => $value ) { - if (null === $value ) { + if (null !== $criteria && 0 !== count($criteria)) { + foreach ($criteria as $key => $value) { + if (null === $value) { continue; } switch ($key) { @@ -929,7 +916,7 @@ public function loadTreeLevel(array $criteria = null) $sqlParams[] = $value; break; case 'start': - if ($debugMode ) { + if ($debugMode) { $sqlCriteria[] = "? <= collected"; } else { $sqlCriteria[] = "FROM_UNIXTIME(?) <= end_time"; @@ -937,7 +924,7 @@ public function loadTreeLevel(array $criteria = null) $sqlParams[] = $value; break; case 'end': - if ($debugMode ) { + if ($debugMode) { $sqlCriteria[] = "? >= collected"; } else { $sqlCriteria[] = "FROM_UNIXTIME(?) >= start_time"; @@ -952,7 +939,7 @@ public function loadTreeLevel(array $criteria = null) // Use the group by to return distinct values for the tree. - if (array_key_exists('group_by', $criteria) && null !== $criteria['group_by'] ) { + if (array_key_exists('group_by', $criteria) && null !== $criteria['group_by']) { switch ($criteria['group_by']) { case 'ak': $groupBy = 'ak_def_id'; @@ -975,21 +962,20 @@ public function loadTreeLevel(array $criteria = null) } } - if (0 !== count($sqlCriteria) ) { + if (0 !== count($sqlCriteria)) { $sql .= " WHERE " . implode(" AND ", $sqlCriteria); } - if (null !== $groupBy ) { + if (null !== $groupBy) { $sql .= " GROUP BY $groupBy"; } - if (null !== $orderBy ) { + if (null !== $orderBy) { $sql .= " ORDER BY $orderBy"; } $result = $this->db->query($sql, $sqlParams); $retval = array(); - while ( false !== ($row = current($result)) ) - { + while (false !== ($row = current($result))) { $retval[] = $row; next($result); } @@ -1023,13 +1009,13 @@ public function loadTreeLevelDebug(array $criteria = null) $sqlCriteria = array(); $groupBy = null; $orderBy = null; - $debugMode = ( array_key_exists('debug', $criteria) && $criteria['debug'] ); + $debugMode = (array_key_exists('debug', $criteria) && $criteria['debug']); - $sql = "SELECT * FROM " . ( $debugMode ? "v_tree_debug" : "a_tree" ); + $sql = "SELECT * FROM " . ($debugMode ? "v_tree_debug" : "a_tree"); - if (null !== $criteria && 0 !== count($criteria) ) { - foreach ( $criteria as $key => $value ) { - if (null === $value ) { + if (null !== $criteria && 0 !== count($criteria)) { + foreach ($criteria as $key => $value) { + if (null === $value) { continue; } switch ($key) { @@ -1054,7 +1040,7 @@ public function loadTreeLevelDebug(array $criteria = null) $sqlParams[] = $value; break; case 'start': - if ($debugMode ) { + if ($debugMode) { $sqlCriteria[] = "? <= collected"; } else { $sqlCriteria[] = "FROM_UNIXTIME(?) <= end_time"; @@ -1062,7 +1048,7 @@ public function loadTreeLevelDebug(array $criteria = null) $sqlParams[] = $value; break; case 'end': - if ($debugMode ) { + if ($debugMode) { $sqlCriteria[] = "? >= collected"; } else { $sqlCriteria[] = "FROM_UNIXTIME(?) >= start_time"; @@ -1077,7 +1063,7 @@ public function loadTreeLevelDebug(array $criteria = null) // Use the group by to return distinct values for the tree. - if (array_key_exists('group_by', $criteria) && null !== $criteria['group_by'] ) { + if (array_key_exists('group_by', $criteria) && null !== $criteria['group_by']) { switch ($criteria['group_by']) { case 'ak': $groupBy = 'ak_def_id'; @@ -1100,20 +1086,19 @@ public function loadTreeLevelDebug(array $criteria = null) } } - if (0 !== count($sqlCriteria) ) { + if (0 !== count($sqlCriteria)) { $sql .= " WHERE " . implode(" AND ", $sqlCriteria); } - if (null !== $groupBy ) { + if (null !== $groupBy) { $sql .= " GROUP BY $groupBy"; } - if (null !== $orderBy ) { + if (null !== $orderBy) { $sql .= " ORDER BY $orderBy"; } $result = $this->db->query($sql, $sqlParams); $retval = array(); - while ( false !== ($row = current($result)) ) - { + while (false !== ($row = current($result))) { $retval[] = $row; next($result); } @@ -1148,14 +1133,14 @@ public function getDataPointsQuery(array $criteria = null) // If requesting only metadata use the a_tree view to reduce the amount of // data returned. - $metadataOnly = ( isset($criteria['metadata_only']) && $criteria['metadata_only'] ); - $datesAsEpoch = ( isset($criteria['dates_as_epoch']) && $criteria['dates_as_epoch'] ); + $metadataOnly = (isset($criteria['metadata_only']) && $criteria['metadata_only']); + $datesAsEpoch = (isset($criteria['dates_as_epoch']) && $criteria['dates_as_epoch']); - $sql = "SELECT * FROM " . ( $metadataOnly ? "a_tree2" : "a_data2" ); + $sql = "SELECT * FROM " . ($metadataOnly ? "a_tree2" : "a_data2"); - if (null !== $criteria && 0 !== count($criteria) ) { - foreach ( $criteria as $key => $value ) { - if (null === $value ) { + if (null !== $criteria && 0 !== count($criteria)) { + foreach ($criteria as $key => $value) { + if (null === $value) { continue; } switch ($key) { @@ -1176,28 +1161,24 @@ public function getDataPointsQuery(array $criteria = null) $sqlParams[] = $value; break; case 'start': - if ($metadataOnly ) { + if ($metadataOnly) { $sqlCriteria[] = "? <= UNIX_TIMESTAMP(end_time)"; } else { - if($datesAsEpoch) { + if ($datesAsEpoch) { $sqlCriteria[] = "? <= collected"; - } - else - { + } else { $sqlCriteria[] = "UNIX_TIMESTAMP(?) <= collected"; } } $sqlParams[] = $value; break; case 'end': - if ($metadataOnly ) { + if ($metadataOnly) { $sqlCriteria[] = "(UNIX_TIMESTAMP(?)+86399) >= UNIX_TIMESTAMP(start_time)"; } else { - if($datesAsEpoch) { + if ($datesAsEpoch) { $sqlCriteria[] = "? >= collected"; - } - else - { + } else { $sqlCriteria[] = "(UNIX_TIMESTAMP(?)+86399) >= collected"; } } @@ -1209,7 +1190,7 @@ public function getDataPointsQuery(array $criteria = null) } } $sqlCriteria[] = " status = 'success' "; - if (0 != count($sqlCriteria) ) { + if (0 != count($sqlCriteria)) { $sql .= " WHERE " . implode(" AND ", $sqlCriteria); } @@ -1245,8 +1226,7 @@ public function loadDataPoints(array $criteria = null) $result = $this->db->query($sql, $sqlParams); $retval = array(); - while ( false !== ($row = current($result)) ) - { + while (false !== ($row = current($result))) { $row['sql'] = $sql . " (" . implode(",", $sqlParams) . ")"; $retval[] = $row; next($result); @@ -1274,19 +1254,18 @@ public function loadAppKernels($loadDisabled = false, $returnMap = false) "SELECT ak_base_name as name, ak_id, num_units FROM app_kernel_def JOIN app_kernel USING(ak_def_id)" . - ( $loadDisabled ? "" : " WHERE enabled=1"); + ($loadDisabled ? "" : " WHERE enabled=1"); $result = $this->db->query($sql); reset($result); $this->akIdMap = array(); - while ( false !== ($row = current($result)) ) - { + while (false !== ($row = current($result))) { $this->akIdMap[$row['name']][$row['num_units']] = $row['ak_id']; next($result); } - if($returnMap) { + if ($returnMap) { return $this->akIdMap; } else { return array_keys($this->akIdMap); @@ -1305,7 +1284,7 @@ public function loadAppKernels($loadDisabled = false, $returnMap = false) // num_units, version, collected, and status. // -------------------------------------------------------------------------------- - public function loadAppKernelInstances($appKernelDefId = null, $resourceId = null) + public function loadAppKernelInstances($ak_def_id = null, $resource_id = null) { $criteriaList = array(); $instanceList = array(); @@ -1316,28 +1295,27 @@ public function loadAppKernelInstances($appKernelDefId = null, $resourceId = nul "JOIN resource r USING(resource_id)"; $params = array(); - if ($appKernelDefId !== null) { + if ($ak_def_id !== null) { $criteriaList[] = "i.ak_def_id = :ak_def_id"; - $params[":ak_def_id"] = $appKernelDefId; + $params[":ak_def_id"] = $ak_def_id; } - if ($resourceId !== null) { + if ($resource_id !== null) { $criteriaList[] = "resource_id = :resource_id"; - $params[":resource_id"] = $resourceId; + $params[":resource_id"] = $resource_id; } - if (count($criteriaList) !==0) { + if (count($criteriaList) !== 0) { $sql .= " WHERE " . implode(" AND ", $criteriaList); } $sql .= " ORDER BY collected DESC"; $result = $this->db->query($sql, $params); - foreach ( $result as $row ) - { + foreach ($result as $row) { $ak = new InstanceData; $ak->db_ak_id = intval($row['ak_id']); $ak->deployment_num_proc_units = intval($row['num_units']); - $ak->deployment_time = $row['collected']; + $ak->deployment_time = strtotime($row['collected']); $ak->status = $row['status']; $instanceList[] = $ak; } @@ -1363,8 +1341,8 @@ public function loadAppKernelInstances($appKernelDefId = null, $resourceId = nul public function loadAppKernelInstanceInfo(array $options, InstanceData &$ak, $loadDebugInfo = false) { if (0 == count($options) - || ( ! isset($options['ak_def_id']) || ! isset($options['collected']) || ! isset($options['resource_id']) ) - && ! isset($options['instance_id']) + || (!isset($options['ak_def_id']) || !isset($options['collected']) || !isset($options['resource_id'])) + && !isset($options['instance_id']) ) { $msg .= "'ak_def_id', 'collected', and 'resource_id' options are required"; throw new Exception($msg); @@ -1376,33 +1354,31 @@ public function loadAppKernelInstanceInfo(array $options, InstanceData &$ak, $lo // We are now collecting the instance id so we can query using this only // for direct access to a single instance. - if (isset($options['instance_id']) && null !== $options['instance_id'] ) { + if (isset($options['instance_id']) && null !== $options['instance_id']) { $criteriaList[] = "i.instance_id = ?"; $paramList[] = $options['instance_id']; - } - else - { - if (null !== $options['ak_def_id'] ) { + } else { + if (null !== $options['ak_def_id']) { $criteriaList[] = "i.ak_def_id = ?"; $paramList[] = $options['ak_def_id']; } - if (null !== $options['resource_id'] ) { + if (null !== $options['resource_id']) { $criteriaList[] = "i.resource_id = ?"; $paramList[] = $options['resource_id']; } - if (null !== $options['collected'] ) { + if (null !== $options['collected']) { $criteriaList[] = "i.collected = FROM_UNIXTIME(?)"; - $paramList[] = $options['collected']; + $paramList[] = $options['collected']; } - if (isset($options['num_units']) && null !== $options['num_units'] ) { + if (isset($options['num_units']) && null !== $options['num_units']) { $criteriaList[] = "a.num_units = ?"; - $paramList[] = $options['num_units']; + $paramList[] = $options['num_units']; } - if (isset($options['status']) && null !== $options['status'] ) { + if (isset($options['status']) && null !== $options['status']) { $criteriaList[] = "i.status = ?"; - $paramList[] = $options['status']; + $paramList[] = $options['status']; } } @@ -1415,13 +1391,13 @@ public function loadAppKernelInstanceInfo(array $options, InstanceData &$ak, $lo JOIN app_kernel_def d USING(ak_def_id) JOIN app_kernel a USING (ak_id)"; - if (0 != count($criteriaList) ) { + if (0 != count($criteriaList)) { $sql .= "\nWHERE " . implode(" AND ", $criteriaList); } $result = $this->db->query($sql, $paramList); - if (0 == count($result) ) { + if (0 == count($result)) { $this->log( "No matching app kernels found (ak_def_id = {$options['ak_def_id']}, " . "collected = {$options['collected']}, resource_id = {$options['resource_id']})", @@ -1433,14 +1409,14 @@ public function loadAppKernelInstanceInfo(array $options, InstanceData &$ak, $lo $row = array_shift($result); $ak->reset(); - $ak->db_ak_def_id = $options['ak_def_id']; + $ak->db_ak_def_id = intval($options['ak_def_id']); $ak->db_ak_def_name = $row['ak_name']; - $ak->db_ak_id = $row['ak_id']; + $ak->db_ak_id = intval($row['ak_id']); $ak->db_resource_id = $options['resource_id']; $ak->db_proc_unit_type = $row['processor_unit']; $ak->deployment_ak_name = $row['ak_base_name'] . "." . $row['num_units']; $ak->deployment_ak_base_name = $row['ak_base_name']; - $ak->deployment_num_proc_units = $row['num_units']; + $ak->deployment_num_proc_units = intval($row['num_units']); $ak->deployment_hostname = $row['nickname']; $ak->deployment_time = strtotime($row['collected']); $ak->deployment_instance_id = $row['instance_id']; @@ -1454,15 +1430,14 @@ public function loadAppKernelInstanceInfo(array $options, InstanceData &$ak, $lo JOIN app_kernel a USING (ak_id) JOIN parameter_data pd USING(ak_id, collected, resource_id) JOIN parameter p USING(parameter_id)"; - if (0 != count($criteriaList) ) { + if (0 != count($criteriaList)) { $sql .= " WHERE " . implode(" AND ", $criteriaList); } $result = $this->db->query($sql, $paramList); reset($result); - while ( false !== ($row = current($result)) ) - { + while (false !== ($row = current($result))) { $ak->ak_parameters[] = new InstanceParameter( $row['name'], $row['value'], @@ -1477,14 +1452,13 @@ public function loadAppKernelInstanceInfo(array $options, InstanceData &$ak, $lo JOIN app_kernel a USING (ak_id) JOIN metric_data md USING(ak_id, collected, resource_id) JOIN metric m USING(metric_id)"; - if (0 != count($criteriaList) ) { + if (0 != count($criteriaList)) { $sql .= " WHERE " . implode(" AND ", $criteriaList); } $result = $this->db->query($sql, $paramList); reset($result); - while ( false !== ($row = current($result)) ) - { + while (false !== ($row = current($result))) { $ak->ak_metrics[] = new InstanceMetric( $row['name'], $row['value'], @@ -1493,7 +1467,7 @@ public function loadAppKernelInstanceInfo(array $options, InstanceData &$ak, $lo next($result); } - if ($loadDebugInfo ) { + if ($loadDebugInfo) { $sql = "SELECT UNCOMPRESS(message) as message, UNCOMPRESS(stderr) as stderr, walltime, cputime, memory, UNCOMPRESS(ak_error_cause) as ak_error_cause, UNCOMPRESS(ak_error_message) as ak_error_message, @@ -1501,11 +1475,11 @@ public function loadAppKernelInstanceInfo(array $options, InstanceData &$ak, $lo FROM ak_instance_debug d JOIN ak_instance i USING(ak_id, collected, resource_id) JOIN app_kernel a USING (ak_id)"; - if (0 != count($criteriaList) ) { + if (0 != count($criteriaList)) { $sql .= " WHERE " . implode(" AND ", $criteriaList); } $result = $this->db->query($sql, $paramList); - if (count($result) > 0 ) { + if (count($result) > 0) { $row = array_shift($result); $ak->deployment_message = $row['message']; $ak->deployment_stderr = $row['stderr']; @@ -1532,15 +1506,14 @@ public function loadAppKernelInstanceInfo(array $options, InstanceData &$ak, $lo private function loadAkMetrics($loadDisabled = false) { $sql = "SELECT * FROM v_ak_metrics" . - ( $loadDisabled ? "" : " WHERE enabled=1"); + ($loadDisabled ? "" : " WHERE enabled=1"); $result = $this->db->query($sql); reset($result); $this->akMetrics = array(); $this->akMetricGuids = array(); - while ( false !== ($row = current($result)) ) - { + while (false !== ($row = current($result))) { $name = $row['name']; $numUnits = $row['num_units']; $guid = $row['guid']; @@ -1562,15 +1535,14 @@ private function loadAkMetrics($loadDisabled = false) private function loadAkParameters($loadDisabled = false) { $sql = "SELECT * FROM v_ak_parameters" . - ( $loadDisabled ? "" : " WHERE enabled=1"); + ($loadDisabled ? "" : " WHERE enabled=1"); $result = $this->db->query($sql); reset($result); $this->akParameters = array(); $this->akParameterGuids = array(); - while ( false !== ($row = current($result)) ) - { + while (false !== ($row = current($result))) { $name = $row['name']; $numUnits = $row['num_units']; $guid = $row['guid']; @@ -1598,19 +1570,16 @@ private function loadAkParameters($loadDisabled = false) public function activeAppKernels(array $appKernels) { - if (null === $this->akBaseNameList ) { + if (null === $this->akBaseNameList) { $this->loadAppKernels(); } $activeAppKernels = array(); - foreach ( $this->akBaseNameList as $basename ) - { - foreach ( $appKernels as $resourceNickname => $resourceAkList ) - { - foreach ( $resourceAkList as $akName ) - { - if (0 !== strpos($akName, $basename) ) { + foreach ($this->akBaseNameList as $basename) { + foreach ($appKernels as $resourceNickname => $resourceAkList) { + foreach ($resourceAkList as $akName) { + if (0 !== strpos($akName, $basename)) { continue; } $activeAppKernels[$resourceNickname][] = $akName; @@ -1631,16 +1600,16 @@ public function storeAppKernelInstance(InstanceData $ak, $replace = false, $add_ { // Get the list of existing app kernels if we haven't done so already - if (null === $this->appKernelDefinitions ) { + if (null === $this->appKernelDefinitions) { $this->loadAppKernelDefinitions(); } - if (null === $this->akIdMap ) { + if (null === $this->akIdMap) { $this->loadAppKernels(); } - if (null === $this->akMetricGuids ) { + if (null === $this->akMetricGuids) { $this->loadAkMetrics(); } - if (null === $this->akParameterGuids ) { + if (null === $this->akParameterGuids) { $this->loadAkParameters(); } @@ -1648,31 +1617,27 @@ public function storeAppKernelInstance(InstanceData $ak, $replace = false, $add_ // Ensure that the base app kernel name exists in the database - if (! isset($this->appKernelDefinitions[$ak->deployment_ak_base_name]) ) { + if (!isset($this->appKernelDefinitions[$ak->deployment_ak_base_name])) { throw new Exception("Undefined app kernel '{$ak->deployment_ak_base_name}'"); } // Create an app kernel instance - try - { + try { $this->log("Store app kernel $ak", PEAR_LOG_DEBUG); $this->db->handle()->beginTransaction(); - if($replace) { + if ($replace) { $this->db->execute('set foreign_key_checks=0;'); } - try - { + try { $this->createInstance($ak, $replace, $dryRunMode); - } - catch ( Exception $e ) - { + } catch (Exception $e) { // If this is a PDOException get the mysql-specific error code and // handle it appropriately. The exception error is almost always 23000 // which is pretty useless. - if ($e instanceof \PDOException && 23000 == $e->getCode() ) { + if ($e instanceof \PDOException && 23000 == $e->getCode()) { // If this is a duplicate key skip the app kernel, otherwise re-throw // the exception. This allows us to re-ingest data and skip what is // already in the database. @@ -1680,7 +1645,7 @@ public function storeAppKernelInstance(InstanceData $ak, $replace = false, $add_ // See http://dev.mysql.com/doc/refman/5.5/en/error-messages-server.html list ($sqlstate, $driverCode, $driverMsg) = $e->errorInfo; - if (1022 == $driverCode || 1062 == $driverCode || 1557 == $driverCode || 1586 == $driverCode ) { + if (1022 == $driverCode || 1062 == $driverCode || 1557 == $driverCode || 1586 == $driverCode) { $msg = "App kernel instance already exists: $ak, skipping. ($driverCode, '{$e->getMessage()}')"; throw new AppKernelException($msg, AppKernelException::DuplicateInstance); } @@ -1690,30 +1655,26 @@ public function storeAppKernelInstance(InstanceData $ak, $replace = false, $add_ throw $e; } - foreach ( $ak->ak_metrics as $metric ) - { + foreach ($ak->ak_metrics as $metric) { $metricId = $this->getMetricId($ak, $metric); $metric->id = $metricId; $this->addMetricData($ak, $metric, $replace, $add_to_a_data, $calc_controls, $dryRunMode); } - foreach ( $ak->ak_parameters as $parameter ) - { + foreach ($ak->ak_parameters as $parameter) { $parameterId = $this->getParameterId($ak, $parameter); $parameter->id = $parameterId; $this->addParameterData($ak, $parameter, $replace, $dryRunMode); } $this->addDebugData($ak, $replace, $dryRunMode); - if($replace) { + if ($replace) { $this->db->execute('set foreign_key_checks=1;'); } $this->db->handle()->commit(); - } - catch (Exception $e) - { + } catch (Exception $e) { $this->log("Rolling back transaction", PEAR_LOG_DEBUG); - if($replace) { + if ($replace) { $this->db->execute('set foreign_key_checks=1;'); } $this->db->handle()->rollback(); @@ -1734,22 +1695,22 @@ private function createInstance(InstanceData &$ak, $replace, $dryRunMode = false { $akId = $this->getAkId($ak); - if (false === ($resourceId = $this->getResourceId($ak)) ) { + if (false === ($resourceId = $this->getResourceId($ak))) { throw new Exception("Unknown resource '{$ak->deployment_hostname}'"); } $appKernelDefinitionId = $this->appKernelDefinitions[$ak->deployment_ak_base_name]->id; $status = $ak->status; - $controlStatus='undefined'; - if($status!=='success') { - $controlStatus='failed'; + $controlStatus = 'undefined'; + if ($status !== 'success') { + $controlStatus = 'failed'; } - $sql = ($replace?'replace':'insert')." INTO ak_instance (ak_id, collected, resource_id, instance_id, job_id, " . + $sql = ($replace ? 'replace' : 'insert') . " INTO ak_instance (ak_id, collected, resource_id, instance_id, job_id, " . "status, ak_def_id, env_version,controlStatus) VALUES (?, FROM_UNIXTIME(?), ?, ?, ?, ?, ?, ?, ?)"; $params = array($akId, $ak->deployment_time, $resourceId, $ak->deployment_instance_id, $ak->deployment_job_id, - $status, $appKernelDefinitionId, $ak->environmentVersion(), $controlStatus); - if(!$dryRunMode) { + $status, $appKernelDefinitionId, $ak->environmentVersion(), $controlStatus); + if (!$dryRunMode) { $numRows = $this->db->execute($sql, $params); } $this->log("-> Created new app kernel instance: $ak", PEAR_LOG_DEBUG); @@ -1771,19 +1732,19 @@ private function createInstance(InstanceData &$ak, $replace, $dryRunMode = false private function addDebugData(InstanceData $ak, $replace, $dryRunMode = false) { $akId = $this->getAkId($ak); - if (false === ($resourceId = $this->getResourceId($ak)) ) { + if (false === ($resourceId = $this->getResourceId($ak))) { throw new Exception("Unknown resource '{$ak->deployment_hostname}'"); } $appKernelId = $this->appKernelDefinitions[$ak->deployment_ak_base_name]->id; - $sql = ($replace?'replace':'insert')." INTO ak_instance_debug (ak_id, collected, resource_id, instance_id, " . + $sql = ($replace ? 'replace' : 'insert') . " INTO ak_instance_debug (ak_id, collected, resource_id, instance_id, " . "message, stderr, walltime, cputime, memory, ak_error_cause, ak_error_message, ak_queue_time) " . "VALUES (?, FROM_UNIXTIME(?), ?, ?, COMPRESS(?), COMPRESS(?), ?, ?, ?, COMPRESS(?), COMPRESS(?), ?)"; $params = array($akId, $ak->deployment_time, $resourceId, $ak->deployment_instance_id, $ak->deployment_message, $ak->deployment_stderr, $ak->deployment_walltime, $ak->deployment_cputime, $ak->deployment_memory, $ak->ak_error_cause, $ak->ak_error_message, $ak->ak_queue_time); - if(!$dryRunMode) { + if (!$dryRunMode) { $numRows = $this->db->execute($sql, $params); } $this->log("-> Logged debug info for app kernel instance $ak", PEAR_LOG_DEBUG); @@ -1805,10 +1766,10 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac $guid = $metric->guid(); - if (! isset($this->akMetrics[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units][$guid]) ) { - $sql = ($replace?'replace':'insert')." INTO ak_has_metric (ak_id, metric_id, num_units) VALUES (?,?,?)"; + if (!isset($this->akMetrics[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units][$guid])) { + $sql = ($replace ? 'replace' : 'insert') . " INTO ak_has_metric (ak_id, metric_id, num_units) VALUES (?,?,?)"; $params = array($ak->db_ak_id, $metric->id, $ak->deployment_num_proc_units); - if(!$dryRunMode) { + if (!$dryRunMode) { $numRows = $this->db->execute($sql, $params); } else { $this->log("$sql " . print_r($params, 1), PEAR_LOG_DEBUG); @@ -1818,139 +1779,139 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac } //metric_data - $sql = ($replace?'replace':'insert')." INTO metric_data (metric_id, ak_id, collected, " . + $sql = ($replace ? 'replace' : 'insert') . " INTO metric_data (metric_id, ak_id, collected, " . "resource_id, value_string) VALUES (?, ?, FROM_UNIXTIME(?), ?, ?)"; $params = array($metric->id, $ak->db_ak_id, $ak->deployment_time, $ak->db_resource_id, $metric->value); - if(!$dryRunMode) { + if (!$dryRunMode) { $numRows = $this->db->execute($sql, $params); } - if($add_to_a_data) { + if ($add_to_a_data) { //a_data and a_tree - if($ak->db_resource_visible && $ak->db_ak_def_visible && $ak->status==='success') { + if ($ak->db_resource_visible && $ak->db_ak_def_visible && $ak->status === 'success') { //a_tree $sql = "SELECT UNIX_TIMESTAMP(start_time) as start_time,UNIX_TIMESTAMP(end_time) as end_time ,status FROM a_tree WHERE ak_def_id=? AND resource_id=? AND metric_id=? AND num_units=?"; $params = array($ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->deployment_num_proc_units); - $rows=$this->db->query($sql, $params); + $rows = $this->db->query($sql, $params); - if(count($rows) > 1) { + if (count($rows) > 1) { $this->log("a_tree has more then one entries for ak_def_id, resource_id, metric_id, num_units", PEAR_LOG_ERR); } - $start_time=$ak->deployment_time; - $end_time=$ak->deployment_time; - $status=$ak->status; - if(count($rows) >= 1) { - if($rows[0]['start_time'] < $start_time) { - $start_time=$rows[0]['start_time']; + $start_time = $ak->deployment_time; + $end_time = $ak->deployment_time; + $status = $ak->status; + if (count($rows) >= 1) { + if ($rows[0]['start_time'] < $start_time) { + $start_time = $rows[0]['start_time']; } - if($rows[0]['end_time'] > $end_time) { - $end_time=$rows[0]['end_time']; - $status=$rows[0]['status']; + if ($rows[0]['end_time'] > $end_time) { + $end_time = $rows[0]['end_time']; + $status = $rows[0]['status']; } } - if(count($rows) != 0) { + if (count($rows) != 0) { $sql = "DELETE FROM a_tree WHERE ak_def_id=? AND resource_id=? AND metric_id=? AND num_units=?"; $params = array($ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->deployment_num_proc_units); - if(!$dryRunMode) { - $rows=$this->db->execute($sql, $params); + if (!$dryRunMode) { + $rows = $this->db->execute($sql, $params); } } - $sql = "insert INTO a_tree ". - "(ak_name, resource, metric, unit, processor_unit, ". - "num_units, ak_def_id,resource_id, metric_id, ". - "start_time, end_time, status)". - " VALUES (?, ?, ?, ?, ?, ". - " ?, ?, ?, ?, ". - " FROM_UNIXTIME(?), FROM_UNIXTIME(?), ?)"; + $sql = "insert INTO a_tree " . + "(ak_name, resource, metric, unit, processor_unit, " . + "num_units, ak_def_id,resource_id, metric_id, " . + "start_time, end_time, status)" . + " VALUES (?, ?, ?, ?, ?, " . + " ?, ?, ?, ?, " . + " FROM_UNIXTIME(?), FROM_UNIXTIME(?), ?)"; $params = array( $ak->db_ak_def_name, $ak->db_resource_name, $metric->name, $metric->unit, $ak->db_proc_unit_type, - $ak->deployment_num_proc_units,$ak->db_ak_def_id, $ak->db_resource_id, $metric->id, - $start_time,$end_time,$status + $ak->deployment_num_proc_units, $ak->db_ak_def_id, $ak->db_resource_id, $metric->id, + $start_time, $end_time, $status ); - if(!$dryRunMode) { + if (!$dryRunMode) { $numRows = $this->db->execute($sql, $params); } //a_data - $sql = ($replace?'replace':'insert'). - " INTO a_data ". - "(ak_name, resource, metric, num_units, processor_unit,". - " collected, env_version, unit, metric_value,". - " ak_def_id,resource_id, metric_id, status)". - " VALUES (?, ?, ?, ?, ?, ". - " ?, ?, ?, ?, ". + $sql = ($replace ? 'replace' : 'insert') . + " INTO a_data " . + "(ak_name, resource, metric, num_units, processor_unit," . + " collected, env_version, unit, metric_value," . + " ak_def_id,resource_id, metric_id, status)" . + " VALUES (?, ?, ?, ?, ?, " . + " ?, ?, ?, ?, " . " ?, ?, ?, ?)"; $params = array($ak->db_ak_def_name, $ak->db_resource_name, $metric->name, $ak->deployment_num_proc_units, $ak->db_proc_unit_type, $ak->deployment_time, $ak->environmentVersion, $metric->unit, $metric->value, $ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->status ); - if(!$dryRunMode) { + if (!$dryRunMode) { $numRows = $this->db->execute($sql, $params); } } - if($ak->db_resource_visible && $ak->db_ak_def_visible && $ak->status!=='queued') { + if ($ak->db_resource_visible && $ak->db_ak_def_visible && $ak->status !== 'queued') { //a_tree2 $sql = "SELECT UNIX_TIMESTAMP(start_time) as start_time,UNIX_TIMESTAMP(end_time) as end_time ,status FROM a_tree2 WHERE ak_def_id=? AND resource_id=? AND metric_id=? AND num_units=?"; $params = array($ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->deployment_num_proc_units); - $rows=$this->db->query($sql, $params); + $rows = $this->db->query($sql, $params); - if(count($rows) > 1) { + if (count($rows) > 1) { $this->log("a_tree2 has more then one entries for ak_def_id, resource_id, metric_id, num_units", PEAR_LOG_ERR); } - $start_time=$ak->deployment_time; - $end_time=$ak->deployment_time; - $status=$ak->status; - if(count($rows) >= 1) { - $status=$rows[0]['status']; - if($rows[0]['start_time'] < $start_time) { - $start_time=$rows[0]['start_time']; + $start_time = $ak->deployment_time; + $end_time = $ak->deployment_time; + $status = $ak->status; + if (count($rows) >= 1) { + $status = $rows[0]['status']; + if ($rows[0]['start_time'] < $start_time) { + $start_time = $rows[0]['start_time']; } - if($rows[0]['end_time'] > $end_time) { - $end_time=$rows[0]['end_time']; - $status=$rows[0]['status']; + if ($rows[0]['end_time'] > $end_time) { + $end_time = $rows[0]['end_time']; + $status = $rows[0]['status']; } } - if(count($rows) !== 0) { + if (count($rows) !== 0) { $sql = "DELETE FROM a_tree2 WHERE ak_def_id=? AND resource_id=? AND metric_id=? AND num_units=?"; $params = array($ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->deployment_num_proc_units); - if(!$dryRunMode) { - $rows=$this->db->execute($sql, $params); + if (!$dryRunMode) { + $rows = $this->db->execute($sql, $params); } } - $sql = "insert INTO a_tree2 ". - "(ak_name, resource, metric, unit, processor_unit, ". - "num_units, ak_def_id,resource_id, metric_id, ". - "start_time, end_time, status)". - " VALUES (?, ?, ?, ?, ?, ". - " ?, ?, ?, ?, ". - " FROM_UNIXTIME(?), FROM_UNIXTIME(?), ?)"; + $sql = "insert INTO a_tree2 " . + "(ak_name, resource, metric, unit, processor_unit, " . + "num_units, ak_def_id,resource_id, metric_id, " . + "start_time, end_time, status)" . + " VALUES (?, ?, ?, ?, ?, " . + " ?, ?, ?, ?, " . + " FROM_UNIXTIME(?), FROM_UNIXTIME(?), ?)"; $params = array( $ak->db_ak_def_name, $ak->db_resource_name, $metric->name, $metric->unit, $ak->db_proc_unit_type, - $ak->deployment_num_proc_units,$ak->db_ak_def_id, $ak->db_resource_id, $metric->id, - $start_time,$end_time,$status + $ak->deployment_num_proc_units, $ak->db_ak_def_id, $ak->db_resource_id, $metric->id, + $start_time, $end_time, $status ); - if(!$dryRunMode) { + if (!$dryRunMode) { $numRows = $this->db->execute($sql, $params); } //a_data2 - $sql = ($replace?'replace':'insert'). - " INTO a_data2 ". - "(ak_name, resource, metric, num_units, processor_unit,". - " collected, env_version, unit, metric_value,". - " ak_def_id,resource_id, metric_id, status)". - " VALUES (?, ?, ?, ?, ?, ". - " ?, ?, ?, ?, ". + $sql = ($replace ? 'replace' : 'insert') . + " INTO a_data2 " . + "(ak_name, resource, metric, num_units, processor_unit," . + " collected, env_version, unit, metric_value," . + " ak_def_id,resource_id, metric_id, status)" . + " VALUES (?, ?, ?, ?, ?, " . + " ?, ?, ?, ?, " . " ?, ?, ?, ?)"; $params = array($ak->db_ak_def_name, $ak->db_resource_name, $metric->name, $ak->deployment_num_proc_units, $ak->db_proc_unit_type, $ak->deployment_time, $ak->environmentVersion, $metric->unit, $metric->value, $ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->status ); - if(!$dryRunMode) { + if (!$dryRunMode) { $numRows = $this->db->execute($sql, $params); } } @@ -1972,11 +1933,11 @@ private function addParameterData(InstanceData $ak, InstanceParameter $parameter { $guid = $parameter->guid(); - if (! isset($this->akParameters[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units][$guid]) ) { - $sql = ($replace?'replace':'insert')." INTO ak_has_parameter (ak_id, parameter_id) " . + if (!isset($this->akParameters[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units][$guid])) { + $sql = ($replace ? 'replace' : 'insert') . " INTO ak_has_parameter (ak_id, parameter_id) " . "VALUES (?, ?)"; $params = array($ak->db_ak_id, $parameter->id); - if(!$dryRunMode) { + if (!$dryRunMode) { $numRows = $this->db->execute($sql, $params); } else { $this->log("$sql " . print_r($params, 1), PEAR_LOG_DEBUG); @@ -1985,10 +1946,10 @@ private function addParameterData(InstanceData $ak, InstanceParameter $parameter $this->log("-> Associated parameter '{$parameter->name}' (id = {$parameter->id}) with app kernel '{$ak->deployment_ak_name}' (ak_id = {$ak->db_ak_id})", PEAR_LOG_DEBUG); } - $sql = ($replace?'replace':'insert')." INTO parameter_data (parameter_id, ak_id, collected, " . + $sql = ($replace ? 'replace' : 'insert') . " INTO parameter_data (parameter_id, ak_id, collected, " . "resource_id, value_string, value_md5) VALUES (?, ?, FROM_UNIXTIME(?), ?, COMPRESS(?), ?)"; $params = array($parameter->id, $ak->db_ak_id, $ak->deployment_time, $ak->db_resource_id, $parameter->value, md5($parameter->value)); - if(!$dryRunMode) { + if (!$dryRunMode) { $numRows = $this->db->execute($sql, $params); } $this->log("-> Stored parameter '{$parameter->name}' for app kernel $ak", PEAR_LOG_DEBUG); @@ -2008,7 +1969,7 @@ private function addParameterData(InstanceData $ak, InstanceParameter $parameter private function getAkId(InstanceData $ak) { - if (isset($this->akIdMap[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units]) ) { + if (isset($this->akIdMap[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units])) { return $this->akIdMap[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units]; } @@ -2043,14 +2004,14 @@ private function getMetricId(InstanceData $ak, InstanceMetric $metric) // If the metric already exists return its id. - if (isset($this->akMetricGuids[$guid]) ) { + if (isset($this->akMetricGuids[$guid])) { return $this->akMetricGuids[$guid]; } // The metric didn't exist for that ak $sql = "SELECT * FROM metric WHERE guid='$guid'"; $result = $this->db->query($sql); - if(count($result) > 0) { + if (count($result) > 0) { $metricId = $result[0]['metric_id']; $sql = "INSERT INTO ak_has_metric (ak_id, metric_id, num_units) VALUES (?,?,?)"; @@ -2095,7 +2056,7 @@ private function getParameterId(InstanceData $ak, InstanceParameter $parameter) // If the parameter already exists return its id. - if (isset($this->akParameterGuids[$guid]) ) { + if (isset($this->akParameterGuids[$guid])) { return $this->akParameterGuids[$guid]; } @@ -2123,7 +2084,7 @@ private function getResourceId(InstanceData $ak) // resources. // $tmpHostname = str_replace(".sdsc.edu", "", $ak->deployment_hostname); - if (! isset($this->resourceList[$ak->deployment_hostname]) ) { + if (!isset($this->resourceList[$ak->deployment_hostname])) { return false; } return $this->resourceList[$ak->deployment_hostname]->id; @@ -2133,7 +2094,7 @@ private function getResourceId(InstanceData $ak) private function log($message, $level = PEAR_LOG_INFO) { - if (null === $this->logger ) { + if (null === $this->logger) { return; } $this->logger->log($message, $level); @@ -2156,16 +2117,16 @@ public function getAppKernelBaseNames() public function getControlRegions($resource_id, $ak_def_id) { $controlRegionDefQuery = - "SELECT control_region_def_id,resource_id,ak_def_id, + "SELECT control_region_def_id,resource_id,ak_def_id, control_region_type, control_region_starts, control_region_ends, control_region_points, comment FROM control_region_def - WHERE resource_id = ".$resource_id." - AND ak_def_id = ".$ak_def_id. - " + WHERE resource_id = " . $resource_id . " + AND ak_def_id = " . $ak_def_id . + " ORDER BY control_region_starts; "; $controlRegionDef = $this->db->query($controlRegionDefQuery); @@ -2182,22 +2143,23 @@ public function newControlRegions( $comment, $update = false, $control_region_def_id = null - ) { + ) + { $resource_id = intval($resource_id); $ak_def_id = intval($ak_def_id); - $control_region_type="'".$control_region_type."'"; - $startDateTime = "'".$startDateTime."'"; - $n_points = ($n_points !== null ? intval($n_points): 'NULL'); - $endDateTime = ($endDateTime !== null ? "'".$endDateTime."'":'NULL'); - $comment = ($comment !== null ? "'".$comment."'": 'NULL'); + $control_region_type = "'" . $control_region_type . "'"; + $startDateTime = "'" . $startDateTime . "'"; + $n_points = ($n_points !== null ? intval($n_points) : 'NULL'); + $endDateTime = ($endDateTime !== null ? "'" . $endDateTime . "'" : 'NULL'); + $comment = ($comment !== null ? "'" . $comment . "'" : 'NULL'); //make query for control recalculation - $sqlAKcond=array(); - $response=$this->db->query("SELECT ak_id FROM mod_appkernel.app_kernel WHERE ak_def_id='{$ak_def_id}'"); + $sqlAKcond = array(); + $response = $this->db->query("SELECT ak_id FROM mod_appkernel.app_kernel WHERE ak_def_id='{$ak_def_id}'"); foreach ($response as $v) { - $sqlAKcond[]="ak_id='".$v['ak_id']."'"; + $sqlAKcond[] = "ak_id='" . $v['ak_id'] . "'"; } - $sqlAKcond=implode(" OR ", $sqlAKcond); + $sqlAKcond = implode(" OR ", $sqlAKcond); $controlRegionDefQuery = "SELECT control_region_def_id,resource_id,ak_def_id, @@ -2207,8 +2169,8 @@ public function newControlRegions( control_region_points, comment FROM control_region_def - WHERE resource_id = ".$resource_id." - AND ak_def_id = ".$ak_def_id." + WHERE resource_id = " . $resource_id . " + AND ak_def_id = " . $ak_def_id . " AND control_region_starts>$startDateTime ORDER BY control_region_starts; "; @@ -2220,29 +2182,27 @@ public function newControlRegions( controlStatus = 'undefined' WHERE ({$sqlAKcond}) AND resource_id=$resource_id AND collected >= $startDateTime"; - if(count($controlRegionDef)>0) { - $new_region_end_collected=$controlRegionDef[0]['control_region_starts']; - $metric_data_updateQuery.=" AND collected<'$new_region_end_collected';"; - } - else{ - $metric_data_updateQuery.=";"; + if (count($controlRegionDef) > 0) { + $new_region_end_collected = $controlRegionDef[0]['control_region_starts']; + $metric_data_updateQuery .= " AND collected<'$new_region_end_collected';"; + } else { + $metric_data_updateQuery .= ";"; } //insert of update control_region_def - if($control_region_def_id!=null && $update) { - $sql="SELECT control_region_def_id FROM control_region_def + if ($control_region_def_id != null && $update) { + $sql = "SELECT control_region_def_id FROM control_region_def WHERE control_region_def_id={$control_region_def_id} "; - } - else{ - $sql="SELECT control_region_def_id FROM control_region_def + } else { + $sql = "SELECT control_region_def_id FROM control_region_def WHERE resource_id = {$resource_id} AND ak_def_id = {$ak_def_id} AND control_region_starts={$startDateTime} "; } - $control_region_def_id=$this->db->query($sql); - if(count($control_region_def_id)>0) { - if($update) { - $sql="UPDATE control_region_def + $control_region_def_id = $this->db->query($sql); + if (count($control_region_def_id) > 0) { + if ($update) { + $sql = "UPDATE control_region_def SET control_region_starts={$startDateTime}, control_region_type={$control_region_type}, control_region_ends={$endDateTime}, @@ -2254,18 +2214,16 @@ public function newControlRegions( return array('success' => true, 'message' => "Control region time interval was updated"); - } - else{ + } else { return array('success' => false, 'message' => "Control region already exists for such time interval"); } } else { - if($update) { + if ($update) { return array('success' => false, 'message' => "Such control region time interval do not exist, can not update it."); - } - else{ - $sql="INSERT INTO control_region_def + } else { + $sql = "INSERT INTO control_region_def (resource_id,ak_def_id,control_region_type,control_region_starts,control_region_ends,control_region_points,comment) VALUES({$resource_id},{$ak_def_id},{$control_region_type},{$startDateTime},{$endDateTime},{$n_points}, {$comment})"; @@ -2276,6 +2234,7 @@ public function newControlRegions( } } } + public function deleteControlRegion($control_region_def_id) { //get full info about region to delete @@ -2290,22 +2249,22 @@ public function deleteControlRegion($control_region_def_id) WHERE control_region_def_id=$control_region_def_id; "; $controlRegionDefToDelete = $this->db->query($controlRegionDefQuery); - if(count($controlRegionDefToDelete) === 0) { + if (count($controlRegionDefToDelete) === 0) { return array('success' => false, 'message' => "Such control region time interval do not exist, can not delete it."); } - $controlRegionDefToDelete=$controlRegionDefToDelete[0]; - $resource_id=$controlRegionDefToDelete['resource_id']; - $ak_def_id=$controlRegionDefToDelete['ak_def_id']; - $control_region_starts=$controlRegionDefToDelete['control_region_starts']; + $controlRegionDefToDelete = $controlRegionDefToDelete[0]; + $resource_id = $controlRegionDefToDelete['resource_id']; + $ak_def_id = $controlRegionDefToDelete['ak_def_id']; + $control_region_starts = $controlRegionDefToDelete['control_region_starts']; //get all ak_ids for this ak_def_id - $sqlAKcond=array(); - $response=$this->db->query("SELECT ak_id FROM mod_appkernel.app_kernel WHERE ak_def_id='{$controlRegionDefToDelete['ak_def_id']}'"); + $sqlAKcond = array(); + $response = $this->db->query("SELECT ak_id FROM mod_appkernel.app_kernel WHERE ak_def_id='{$controlRegionDefToDelete['ak_def_id']}'"); foreach ($response as $v) { - $sqlAKcond[]="ak_id='".$v['ak_id']."'"; + $sqlAKcond[] = "ak_id='" . $v['ak_id'] . "'"; } - $sqlAKcond=implode(" OR ", $sqlAKcond); + $sqlAKcond = implode(" OR ", $sqlAKcond); //find region after this region $controlRegionDefQuery = @@ -2330,18 +2289,17 @@ public function deleteControlRegion($control_region_def_id) controlStatus = 'undefined' WHERE ({$sqlAKcond}) AND resource_id=$resource_id AND collected >= '$control_region_starts'"; - if(count($controlRegionDefAfter)>0) { - $new_region_end_collected=$controlRegionDefAfter[0]['control_region_starts']; - $metric_data_updateQuery.=" AND collected<'$new_region_end_collected';"; - } - else{ - $metric_data_updateQuery.=";"; + if (count($controlRegionDefAfter) > 0) { + $new_region_end_collected = $controlRegionDefAfter[0]['control_region_starts']; + $metric_data_updateQuery .= " AND collected<'$new_region_end_collected';"; + } else { + $metric_data_updateQuery .= ";"; } $this->db->execute("DELETE FROM control_region_def WHERE control_region_def_id=$control_region_def_id"); $this->db->execute($metric_data_updateQuery); return array('success' => true, - 'message' => "Control region time interval was deleted"); + 'message' => "Control region time interval was deleted"); } public function setInitialControlRegions($initial = true, $envbased = false, $controlIntervalSize = 20) @@ -2350,8 +2308,7 @@ public function setInitialControlRegions($initial = true, $envbased = false, $co $resourceIdMap = array(); $sql = "SELECT resource_id, resource, nickname, description , enabled, visible FROM resource"; $result = $this->db->query($sql); - foreach ($result as $row) - { + foreach ($result as $row) { $resourceIdMap[$row['resource_id']] = array( 'name' => $row['nickname'] ); @@ -2359,9 +2316,9 @@ public function setInitialControlRegions($initial = true, $envbased = false, $co $this->log("recalculate control_region_def based on enviroment change\n", PEAR_LOG_INFO); $this->db->execute("TRUNCATE TABLE control_region_def"); - if($initial) { + if ($initial) { //Set initial region - $initial_regions_start=$this->db->query( + $initial_regions_start = $this->db->query( "SELECT ak_def_id,resource_id,MIN(collected) as collected,name as ak_name FROM (SELECT ak_id, MIN(collected) as collected,resource_id FROM `metric_data` GROUP BY resource_id,ak_id) AS smallesttime, @@ -2370,12 +2327,11 @@ public function setInitialControlRegions($initial = true, $envbased = false, $co GROUP BY resource_id,ak_def_id ORDER BY ak_def_id,resource_id" ); - foreach($initial_regions_start as $first_run) - { + foreach ($initial_regions_start as $first_run) { $this->log("Adding initial control region for app kernel: {$first_run['ak_name']} on resource: {$resourceIdMap[$first_run['resource_id']]['name']}", PEAR_LOG_INFO); - $t=date_format(date_create($first_run['collected']), "Y-m-d")." 00:00:00"; - $t=date_format(date_sub(date_create($t), date_interval_create_from_date_string('5 days')), "Y-m-d H:i:s"); - $sql="INSERT INTO control_region_def + $t = date_format(date_create($first_run['collected']), "Y-m-d") . " 00:00:00"; + $t = date_format(date_sub(date_create($t), date_interval_create_from_date_string('5 days')), "Y-m-d H:i:s"); + $sql = "INSERT INTO control_region_def (resource_id,ak_def_id,control_region_type,control_region_starts,control_region_points,comment) VALUES({$first_run['resource_id']},{$first_run['ak_def_id']},'data_points','{$t}',{$controlIntervalSize}, 'initial control region') @@ -2383,9 +2339,9 @@ public function setInitialControlRegions($initial = true, $envbased = false, $co $this->db->execute($sql); } } - if($envbased) { + if ($envbased) { //Set control regions based on enviroment change - $newenv_regions_start=$this->db->query( + $newenv_regions_start = $this->db->query( "SELECT ak_def_id,resource_id,MIN(collected) as collected,name as ak_name, env_version FROM (SELECT ak_id, MIN(collected) as collected,resource_id,env_version @@ -2397,19 +2353,19 @@ public function setInitialControlRegions($initial = true, $envbased = false, $co ORDER BY ak_def_id,resource_id,collected" ); - for($i=1; $ilog("Adding control region due enviroment change, app kernel: {$newenv_regions_start[$i]['ak_name']} on resource: {$resourceIdMap[$newenv_regions_start[$i]['resource_id']]['name']}", PEAR_LOG_INFO); - $sql="INSERT INTO control_region_def + $sql = "INSERT INTO control_region_def (resource_id,ak_def_id,control_region_type,control_region_starts,control_region_points,comment) VALUES({$resource_id},{$ak_def_id},'data_points','{$t}',{$controlIntervalSize}, 'enviroment change, automatically added') @@ -2431,13 +2387,14 @@ public function calculateControls( $runningAverageSize = 5, $restrictToResource = null, $restrictToAppKernel = null - ) { + ) + { $this->log("Calculating control metrics"); - if($runningAverageSize < 1) { + if ($runningAverageSize < 1) { echo "calculateControls: runningAverageSize must be greater than zero. Aborting...\n"; return; } - if($controlIntervalSize < 1) { + if ($controlIntervalSize < 1) { echo "calculateControls: controlIntervalSize must be greater than zero. Aborting...\n"; } //Get akId2akDefIdMap @@ -2448,51 +2405,49 @@ public function calculateControls( FROM app_kernel_def JOIN app_kernel USING(ak_def_id)"; $result = $this->db->query($sql); - foreach ($result as $row) - { + foreach ($result as $row) { $akId2akDefIdMap[$row['ak_id']] = array( 'name' => $row['name'], 'ak_def_id' => $row['ak_def_id'], 'num_units' => $row['num_units'], 'control_criteria' => $row['control_criteria'], ); - if(!array_key_exists($row['ak_def_id'], $akDefId2akIdMap)) { - $akDefId2akIdMap[$row['ak_def_id']]=array(); + if (!array_key_exists($row['ak_def_id'], $akDefId2akIdMap)) { + $akDefId2akIdMap[$row['ak_def_id']] = array(); } - $akDefId2akIdMap[$row['ak_def_id']][]=$row['ak_id']; + $akDefId2akIdMap[$row['ak_def_id']][] = $row['ak_id']; } //Get resourceIdMap $resourceIdMap = array(); $sql = "SELECT resource_id, resource, nickname, description , enabled, visible FROM resource"; $result = $this->db->query($sql); - foreach ($result as $row) - { + foreach ($result as $row) { $resourceIdMap[$row['resource_id']] = array( 'name' => $row['nickname'] ); } //Conditions for $restrictToResource - $sqlResourceCond=null; - if($restrictToResource!==null) { - $sqlResourceCond="resource_id = '".$this->resourceList[$restrictToResource]->id."'"; + $sqlResourceCond = null; + if ($restrictToResource !== null) { + $sqlResourceCond = "resource_id = '" . $this->resourceList[$restrictToResource]->id . "'"; } //Conditions for $restrictToAppKernel - $sqlAKDefCond=null; - $sqlAKcond=null; - if($restrictToAppKernel!==null) { - if(!isset($this->appKernelDefinitions)) { + $sqlAKDefCond = null; + $sqlAKcond = null; + if ($restrictToAppKernel !== null) { + if (!isset($this->appKernelDefinitions)) { $this->loadAppKernelDefinitions(); } - $dbAKList=$this->appKernelDefinitions; - $sqlAKDefCond="ak_def_id = '".$dbAKList[$restrictToAppKernel]->id."'"; + $dbAKList = $this->appKernelDefinitions; + $sqlAKDefCond = "ak_def_id = '" . $dbAKList[$restrictToAppKernel]->id . "'"; - $m_aks=array(); - $response=$this->db->query("SELECT ak_id FROM mod_appkernel.app_kernel WHERE ak_def_id='".$dbAKList[$restrictToAppKernel]->id."'"); + $m_aks = array(); + $response = $this->db->query("SELECT ak_id FROM mod_appkernel.app_kernel WHERE ak_def_id='" . $dbAKList[$restrictToAppKernel]->id . "'"); foreach ($response as $v) { - $m_aks[]="ak_id='".$v['ak_id']."'"; + $m_aks[] = "ak_id='" . $v['ak_id'] . "'"; } - $sqlAKcond=implode(" OR ", $m_aks); + $sqlAKcond = implode(" OR ", $m_aks); } // first, load the metric attributes that help figure out whether a larger value is better or a smaller value @@ -2504,13 +2459,12 @@ public function calculateControls( ORDER BY 1, 2, 3 "; $metricsResults = $this->db->query($metricsQuery); - $metrics_walltime_id=null; - foreach($metricsResults as $mr) - { + $metrics_walltime_id = null; + foreach ($metricsResults as $mr) { $metricsLookupById[$mr['metric_id']] = $mr; $metricsLookupByName[$mr['name']] = $mr; - if(strtolower($mr['name'])===strtolower('wall clock time')) { - $metrics_walltime_id=$mr['metric_id']; + if (strtolower($mr['name']) === strtolower('wall clock time')) { + $metrics_walltime_id = $mr['metric_id']; } } @@ -2519,35 +2473,32 @@ public function calculateControls( $akName = null; $metricsPath = xd_utilities\getConfiguration('appkernel', 'ak_metrics_path'); $metricAttributes = explode("\n", file_get_contents($metricsPath)); - foreach($metricAttributes as $metricAttribute) - { + foreach ($metricAttributes as $metricAttribute) { $metricName = null; $larger = true; $attr = explode(',', $metricAttribute); - if(isset($attr[0]) && $attr[0] !== '') { + if (isset($attr[0]) && $attr[0] !== '') { $akName = $attr[0]; } - if(isset($attr[2]) && count($attr[2]) > 0) { + if (isset($attr[2]) && count($attr[2]) > 0) { $larger = substr($attr[2], 0, 1) != 'S'; } - if(isset($attr[1]) && $attr[1] !== '') { + if (isset($attr[1]) && $attr[1] !== '') { $metricName = strtolower($attr[1]); - if(isset($metricsLookupByName[$metricName])) { + if (isset($metricsLookupByName[$metricName])) { $largerAttributeMap[$metricName] = $larger; } } } //figure out the remaining metrics' larger/smaller property - foreach($metricsLookupById as $metric_id => $metric) - { - if(!isset($largerAttributeMap[$metric['name']])) { - $largerAttributeMap[$metric['name']] = strcasecmp($metric['unit'], 'second') === 0? false : true; + foreach ($metricsLookupById as $metric_id => $metric) { + if (!isset($largerAttributeMap[$metric['name']])) { + $largerAttributeMap[$metric['name']] = strcasecmp($metric['unit'], 'second') === 0 ? false : true; } } $this->db->execute('truncate table metric_attribute'); - foreach($largerAttributeMap as $metricName => $larger) - { + foreach ($largerAttributeMap as $metricName => $larger) { $metric_id = $metricsLookupByName[$metricName]['metric_id']; $insertStatement = @@ -2558,28 +2509,28 @@ public function calculateControls( } - if($recalculateControls) { + if ($recalculateControls) { $time_start = microtime(true); $dataQuery = "update metric_data set control = null, running_average = null, controlStatus = 'undefined'"; - if($sqlResourceCond||$sqlAKcond) { - $dataQuery.="\n WHERE "; + if ($sqlResourceCond || $sqlAKcond) { + $dataQuery .= "\n WHERE "; } - if($sqlResourceCond) { - $dataQuery.="\n ( ".$sqlResourceCond." ) "; + if ($sqlResourceCond) { + $dataQuery .= "\n ( " . $sqlResourceCond . " ) "; } - if($sqlResourceCond||$sqlAKcond) { - $dataQuery.=" AND "; + if ($sqlResourceCond || $sqlAKcond) { + $dataQuery .= " AND "; } - if($sqlAKcond) { - $dataQuery.="\n ( ".$sqlAKcond." ) "; + if ($sqlAKcond) { + $dataQuery .= "\n ( " . $sqlAKcond . " ) "; } $this->db->execute($dataQuery); $time_end = microtime(true); - $this->log("Timing(update metric_data set control = null, running_average = null)=".($time_end - $time_start), PEAR_LOG_DEBUG); + $this->log("Timing(update metric_data set control = null, running_average = null)=" . ($time_end - $time_start), PEAR_LOG_DEBUG); } // Get a list of possible unique datasets (datasetsQuery). @@ -2596,51 +2547,50 @@ public function calculateControls( "SELECT distinct ak_id, metric_id, resource_id FROM `metric_data` "; - if($sqlResourceCond||$sqlAKcond) { - $datasetsQuery.="\n WHERE "; + if ($sqlResourceCond || $sqlAKcond) { + $datasetsQuery .= "\n WHERE "; } - if($sqlResourceCond) { - $datasetsQuery.="\n ( ".$sqlResourceCond." ) "; + if ($sqlResourceCond) { + $datasetsQuery .= "\n ( " . $sqlResourceCond . " ) "; } - if($sqlResourceCond||$sqlAKcond) { - $datasetsQuery.=" AND "; + if ($sqlResourceCond || $sqlAKcond) { + $datasetsQuery .= " AND "; } - if($sqlAKcond) { - $datasetsQuery.="\n ( ".$sqlAKcond." ) "; + if ($sqlAKcond) { + $datasetsQuery .= "\n ( " . $sqlAKcond . " ) "; } - $datasetsQuery.="\nORDER BY 1, 2, 3\n"; + $datasetsQuery .= "\nORDER BY 1, 2, 3\n"; $datasets = $this->db->query($datasetsQuery); $datasetsLength = count($datasets); $time_end = microtime(true); - $this->log("Timing(Get a list of possible unique datasets (datasetsQuery))=".($time_end - $time_start), PEAR_LOG_DEBUG); + $this->log("Timing(Get a list of possible unique datasets (datasetsQuery))=" . ($time_end - $time_start), PEAR_LOG_DEBUG); $time_start_bigcycle = microtime(true); - $progressVerbosity=1; - $timing=array( - 'dataQuery'=>0.0, - 'N_dataQuery'=>0, - 'contRegCalc'=>0.0, - 'N_contRegCalc'=>0, - 'contCalc'=>0.0, - 'N_contCalc'=>0, - 'sqlupdate1'=>0.0, - 'N_sqlupdate1'=>0, - 'sqlupdate2'=>0.0, - 'N_sqlupdate2'=>0 + $progressVerbosity = 1; + $timing = array( + 'dataQuery' => 0.0, + 'N_dataQuery' => 0, + 'contRegCalc' => 0.0, + 'N_contRegCalc' => 0, + 'contCalc' => 0.0, + 'N_contCalc' => 0, + 'sqlupdate1' => 0.0, + 'N_sqlupdate1' => 0, + 'sqlupdate2' => 0.0, + 'N_sqlupdate2' => 0 ); - foreach($datasets as $di => $dataset) - { - if($progressVerbosity===1) { - $message = "Calculating running average and control values. ".number_format(100.0*$di/$datasetsLength, 2)."% ".json_encode($dataset); + foreach ($datasets as $di => $dataset) { + if ($progressVerbosity === 1) { + $message = "Calculating running average and control values. " . number_format(100.0 * $di / $datasetsLength, 2) . "% " . json_encode($dataset); $this->log($message, PEAR_LOG_DEBUG); } - $control_criteria=$this->control_criteria; - if($akId2akDefIdMap[$dataset['ak_id']]['control_criteria']!==null) { - $control_criteria=$akId2akDefIdMap[$dataset['ak_id']]['control_criteria']; + $control_criteria = $this->control_criteria; + if ($akId2akDefIdMap[$dataset['ak_id']]['control_criteria'] !== null) { + $control_criteria = $akId2akDefIdMap[$dataset['ak_id']]['control_criteria']; } //if we dont know whether smaller or larger is better it (hopefully :) ) means we don't want to calculate control on it so skip - if(!isset($metricIdToLargerMap[$dataset['metric_id']])) { + if (!isset($metricIdToLargerMap[$dataset['metric_id']])) { $this->log("Skipping metric {$dataset['metric_id']} {$metricsLookupById[$dataset['metric_id']]['name']} as there was no value in metric_attributes for its larger/smaller property", PEAR_LOG_WARNING); continue; } @@ -2665,17 +2615,16 @@ public function calculateControls( ORDER BY collected"; $data = $this->db->query($dataQuery, $dataset); $time_query = microtime(true); - $timing['dataQuery']+=$time_query - $time_start0; + $timing['dataQuery'] += $time_query - $time_start0; $timing['N_dataQuery']++; $length = count($data); //only process datasets of length 1+ - if($length > 0) { + if ($length > 0) { $time_start = microtime(true); //query for the control region definitions if none present initiate a new one - $controlRegionDef=array(); - while(true) - { + $controlRegionDef = array(); + while (true) { $controlRegionDefQuery = "SELECT control_region_def_id,resource_id,ak_def_id, control_region_type, @@ -2683,45 +2632,41 @@ public function calculateControls( control_region_ends, control_region_points FROM control_region_def - WHERE resource_id = ".$dataset['resource_id']." - AND ak_def_id = ".$akId2akDefIdMap[$dataset['ak_id']]['ak_def_id']. - " + WHERE resource_id = " . $dataset['resource_id'] . " + AND ak_def_id = " . $akId2akDefIdMap[$dataset['ak_id']]['ak_def_id'] . + " ORDER BY control_region_starts; "; $controlRegionDef = $this->db->query($controlRegionDefQuery); //if there is no control regions initiate the first one - if(count($controlRegionDef)==0) { + if (count($controlRegionDef) == 0) { $this->log("Adding initial control region for app kernel: {$akId2akDefIdMap[$dataset['ak_id']]['name']} on resource: {$resourceIdMap[$dataset['resource_id']]['name']}", PEAR_LOG_INFO); - $t=date_format(date_create($data[0]['collected']), "Y-m-d")." 00:00:00"; - $t=date_format(date_sub(date_create($t), date_interval_create_from_date_string('5 days')), "Y-m-d H:i:s"); - $sql="INSERT INTO control_region_def + $t = date_format(date_create($data[0]['collected']), "Y-m-d") . " 00:00:00"; + $t = date_format(date_sub(date_create($t), date_interval_create_from_date_string('5 days')), "Y-m-d H:i:s"); + $sql = "INSERT INTO control_region_def (resource_id,ak_def_id,control_region_type,control_region_starts,control_region_points,comment) VALUES({$dataset['resource_id']},{$akId2akDefIdMap[$dataset['ak_id']]['ak_def_id']},'data_points','{$t}',{$controlIntervalSize}, 'initial control region') "; $this->db->execute($sql); - } - elseif(date_create($controlRegionDef[0]['control_region_starts'])>date_create($data[0]['collected'])) { + } elseif (date_create($controlRegionDef[0]['control_region_starts']) > date_create($data[0]['collected'])) { $this->log("Updating initial control region for app kernel: {$akId2akDefIdMap[$dataset['ak_id']]['name']} on resource: {$resourceIdMap[$dataset['resource_id']]['name']}", PEAR_LOG_INFO); - $t=date_format(date_create($data[0]['collected']), "Y-m-d")." 00:00:00"; - $t=date_format(date_sub(date_create($t), date_interval_create_from_date_string('5 days')), "Y-m-d H:i:s"); - $sql="UPDATE control_region_def + $t = date_format(date_create($data[0]['collected']), "Y-m-d") . " 00:00:00"; + $t = date_format(date_sub(date_create($t), date_interval_create_from_date_string('5 days')), "Y-m-d H:i:s"); + $sql = "UPDATE control_region_def SET control_region_starts='{$t}' WHERE control_region_def_id={$controlRegionDef[0]['control_region_def_id']} "; $this->db->execute($sql); - } - else - { + } else { break; } } //query for the control region definitions if none present initiate a new one - $num_recalculated_CR=0; - $controlRegions=array(); - while(true) - { + $num_recalculated_CR = 0; + $controlRegions = array(); + while (true) { $controlRegionQuery = "SELECT r.control_region_id, d.control_region_def_id,d.resource_id,d.ak_def_id, @@ -2745,29 +2690,25 @@ public function calculateControls( "; $controlRegions = $this->db->query($controlRegionQuery); //if there is no control regions initiate the first one - if(count($controlRegions) !== count($controlRegionDef)) { - $CRdefs=array(); - foreach($controlRegionDef as $cdef) { - $CRdefs[$cdef['control_region_def_id']]=$cdef; + if (count($controlRegions) !== count($controlRegionDef)) { + $CRdefs = array(); + foreach ($controlRegionDef as $cdef) { + $CRdefs[$cdef['control_region_def_id']] = $cdef; } - $CR=array(); - foreach($controlRegions as $cr) - { - if(key_exists($cr['control_region_def_id'], $CRdefs)) { - $CR[$cr['control_region_def_id']]=$cr; - } - else - { - $sql="DELETE FROM control_regions WHERE control_region_id={$cr['control_region_id']}"; + $CR = array(); + foreach ($controlRegions as $cr) { + if (key_exists($cr['control_region_def_id'], $CRdefs)) { + $CR[$cr['control_region_def_id']] = $cr; + } else { + $sql = "DELETE FROM control_regions WHERE control_region_id={$cr['control_region_id']}"; $this->db->execute($sql); } } - foreach($controlRegionDef as $crdef) - { - if(!key_exists($crdef['control_region_def_id'], $CR)) { - $sql="INSERT INTO control_regions + foreach ($controlRegionDef as $crdef) { + if (!key_exists($crdef['control_region_def_id'], $CR)) { + $sql = "INSERT INTO control_regions (control_region_def_id,ak_id,metric_id) VALUES({$crdef['control_region_def_id']},{$dataset['ak_id']},{$dataset['metric_id']})"; $this->db->execute($sql); @@ -2776,15 +2717,14 @@ public function calculateControls( continue; } //if there control regions are not completed recalculate them - if($num_recalculated_CR==0) { - foreach($controlRegions as $controlRegion) - { - if($controlRegion['completed']==0||$recalculateControls) { + if ($num_recalculated_CR == 0) { + foreach ($controlRegions as $controlRegion) { + if ($controlRegion['completed'] == 0 || $recalculateControls) { $num_recalculated_CR++; - $completed=0; + $completed = 0; //caculate controls for that region //Query for calculation properties of the control interval - if($controlRegion['control_region_type']=='data_points') { + if ($controlRegion['control_region_type'] == 'data_points') { $controlIntervalDataQuery = "SELECT md.resource_id,md.ak_id,md.metric_id,md.collected,md.value_string FROM `metric_data` md @@ -2794,9 +2734,7 @@ public function calculateControls( and md.collected >= '{$controlRegion['control_region_starts']}' LIMIT {$controlRegion['control_region_points']} "; - } - else - { + } else { $controlIntervalDataQuery = "SELECT md.resource_id,md.ak_id,md.metric_id,md.collected,md.value_string FROM `metric_data` md @@ -2808,19 +2746,17 @@ public function calculateControls( "; } $controlIntervalData = $this->db->query($controlIntervalDataQuery, $dataset); - if($controlRegion['control_region_type']=='data_points') { - if(count($controlIntervalData)==$controlRegion['control_region_points']) { - $completed=1; + if ($controlRegion['control_region_type'] == 'data_points') { + if (count($controlIntervalData) == $controlRegion['control_region_points']) { + $completed = 1; } - } - else - { - $completed=1; + } else { + $completed = 1; } //pack $controlValues $controlValues = array(); - foreach($controlIntervalData as $controlValue) { + foreach ($controlIntervalData as $controlValue) { $controlValues[] = floatval($controlValue['value_string']); } //calculate control values @@ -2830,50 +2766,50 @@ public function calculateControls( $controlStart = null; $controlEnd = null; - if($controlLength>0) { + if ($controlLength > 0) { $controlMin = min($controlValues); $controlMax = max($controlValues); - if(false) { + if (false) { $controlSum = array_sum($controlValues); - $controlAverage = $controlSum/$controlLength; + $controlAverage = $controlSum / $controlLength; $controlStart = $controlMin; $controlEnd = $controlMax; { - //use advanced technique to figure out (override) control start and end. - //divided the set into two regions based on median, find the - //average of each region and use as start and end. - if($controlLength > 4) { - $middlePoint = $controlLength/2; - sort($controlValues); + //use advanced technique to figure out (override) control start and end. + //divided the set into two regions based on median, find the + //average of each region and use as start and end. + if ($controlLength > 4) { + $middlePoint = $controlLength / 2; + sort($controlValues); - $startRegion = array_slice($controlValues, 0, $middlePoint); - $endRegion = array_slice($controlValues, $middlePoint, $controlLength); + $startRegion = array_slice($controlValues, 0, $middlePoint); + $endRegion = array_slice($controlValues, $middlePoint, $controlLength); - $controlStart = array_sum($startRegion)/count($startRegion); - $controlEnd = array_sum($endRegion)/count($endRegion); + $controlStart = array_sum($startRegion) / count($startRegion); + $controlEnd = array_sum($endRegion) / count($endRegion); + } } - } } $controlSum = array_sum($controlValues); - $controlAverage = $controlSum/$controlLength; + $controlAverage = $controlSum / $controlLength; $controlStDev = stats_standard_deviation($controlValues); - $controlStart = $controlAverage-$control_criteria*$controlStDev; - $controlEnd = $controlAverage+$control_criteria*$controlStDev; + $controlStart = $controlAverage - $control_criteria * $controlStDev; + $controlEnd = $controlAverage + $control_criteria * $controlStDev; - $controlDiff = abs($controlEnd-$controlStart); - if($controlDiff === 0) { + $controlDiff = abs($controlEnd - $controlStart); + if ($controlDiff === 0) { $controlDiff = 1; } $updateStatement = - "UPDATE control_regions + "UPDATE control_regions set completed = {$completed}, controlStart = {$controlStart}, controlEnd = {$controlEnd}, @@ -2881,8 +2817,8 @@ public function calculateControls( controlMax = {$controlMax} WHERE control_region_id = {$controlRegion['control_region_id']}"; - foreach ($controlIntervalData as $data_point){ - $controlStatusUpdateStatement="UPDATE metric_data + foreach ($controlIntervalData as $data_point) { + $controlStatusUpdateStatement = "UPDATE metric_data SET controlStatus='control_region_time_interval' WHERE resource_id = {$data_point['resource_id']} and ak_id = {$data_point['ak_id']} @@ -2890,18 +2826,16 @@ public function calculateControls( and collected = '{$data_point['collected']}' "; $this->db->execute($controlStatusUpdateStatement); - for($i = 0; $i < $length; $i++){ - if($data[$i]['collected']===$data_point['collected']) { - $data[$i]['controlStatus']='control_region_time_interval'; + for ($i = 0; $i < $length; $i++) { + if ($data[$i]['collected'] === $data_point['collected']) { + $data[$i]['controlStatus'] = 'control_region_time_interval'; break; } } } - } - else - { + } else { $updateStatement = - "UPDATE control_regions + "UPDATE control_regions set completed = 0, controlStart = NULL, controlEnd = NULL, @@ -2912,85 +2846,80 @@ public function calculateControls( $this->db->execute($updateStatement); } } - if($num_recalculated_CR==0) { //no recalculation is done + if ($num_recalculated_CR == 0) { //no recalculation is done break; } else { continue; } - } - else { //already been here once + } else { //already been here once break; } } $time_end = microtime(true); - $timing['contRegCalc']+=$time_end - $time_start; + $timing['contRegCalc'] += $time_end - $time_start; $timing['N_contRegCalc']++; $time_start_1 = microtime(true); //set last fake controlRegions for ease of controlRegion search - $controlRegions[]=array('control_region_starts' => date_format(date_add(date_create("now"), date_interval_create_from_date_string('1 year')), "Y-m-d H:i:s")); + $controlRegions[] = array('control_region_starts' => date_format(date_add(date_create("now"), date_interval_create_from_date_string('1 year')), "Y-m-d H:i:s")); //Set $controlApplicationRegions - for($idControlRegion=0; $idControlRegion= $controlRegions[$idControlRegion]['control_region_starts_timestamp'] - && $date_collected_timestamp < $controlRegions[$idControlRegion+1]['control_region_starts_timestamp'] + $date_collected_timestamp = date_timestamp_get(date_create($data[$i]['collected'])); + for ($idControlRegion = 0; $idControlRegion < count($controlRegions) - 1; $idControlRegion++) { + if ($date_collected_timestamp >= $controlRegions[$idControlRegion]['control_region_starts_timestamp'] + && $date_collected_timestamp < $controlRegions[$idControlRegion + 1]['control_region_starts_timestamp'] ) { break; } } - $controlRegion=$controlRegions[$idControlRegion]; + $controlRegion = $controlRegions[$idControlRegion]; $controlMin = $controlRegion['controlMin']; - $controlMax = $controlRegion['controlMax']; + $controlMax = $controlRegion['controlMax']; $controlStart = $controlRegion['controlStart']; $controlEnd = $controlRegion['controlEnd']; - $controlDiff = abs($controlEnd-$controlStart); - if($controlDiff === 0) { + // set $controlDiff to 1 if $controlDiff is near zero + if ($controlDiff / max($controlEnd, $controlStart, 1.0) < 1e-12) { $controlDiff = 1; } //calculate if the data point is in control or what { - if($i < $runningAverageSize) { - $offset = ($i - $runningAverageSize < 0) ? 0 : ($i-$runningAverageSize); - $l = $i - $offset + 1; - } - else - { - $offset = $i - $runningAverageSize + 1; - $l = $runningAverageSize; - } + if ($i < $runningAverageSize) { + $offset = ($i - $runningAverageSize < 0) ? 0 : ($i - $runningAverageSize); + $l = $i - $offset + 1; + } else { + $offset = $i - $runningAverageSize + 1; + $l = $runningAverageSize; + } $ra_values = array(); - for($j = $offset, $m = $offset+$l; $j < $m; $j++) - { - $ra_values[] = floatval($data[$j]['value_string']); - } + for ($j = $offset, $m = $offset + $l; $j < $m; $j++) { + $ra_values[] = floatval($data[$j]['value_string']); + } $ra_count = count($ra_values); - if($ra_count < $runningAverageSize) ///try to find the previous points and continue the running average + if ($ra_count < $runningAverageSize) ///try to find the previous points and continue the running average { - $dataQuery2 = - "SELECT md.collected, md.value_string, aki.env_version + $dataQuery2 = + "SELECT md.collected, md.value_string, aki.env_version FROM `metric_data` md, `ak_instance` aki WHERE md.resource_id = :resource_id @@ -3003,82 +2932,80 @@ public function calculateControls( and aki.resource_id = md.resource_id ORDER BY collected desc limit $runningAverageSize"; - $data2 = $this->db->query($dataQuery2, $dataset); - $data2Count = count($data2); - for($j = 0; $j < $data2Count && $j < $runningAverageSize - $ra_count; $j++) - { - $ra_values[] = $data2[$j]['value_string']; - } + $data2 = $this->db->query($dataQuery2, $dataset); + $data2Count = count($data2); + for ($j = 0; $j < $data2Count && $j < $runningAverageSize - $ra_count; $j++) { + $ra_values[] = $data2[$j]['value_string']; + } - } + } - $runningAverage = array_sum($ra_values)/count($ra_values); + $runningAverage = array_sum($ra_values) / count($ra_values); $decision_value = floatval($data[$i]['value_string']); - $controlStatus='undefined'; - if($controlStart!==null) { - //method 1: use running average to calcualte control - if($decision_value < $controlStart) { - $control = ($larger?-1.0:1.0) * abs($controlStart - $decision_value)/$controlDiff; - } elseif($decision_value > $controlEnd) { - $control = ($larger?1.0:-1.0) * abs($decision_value - $controlEnd)/$controlDiff; + $controlStatus = 'undefined'; + if ($controlStart !== null) { + //method 1: use running average to calcualte control + if ($decision_value < $controlStart) { + $control = ($larger ? -1.0 : 1.0) * abs($controlStart - $decision_value) / $controlDiff; + } elseif ($decision_value > $controlEnd) { + $control = ($larger ? 1.0 : -1.0) * abs($decision_value - $controlEnd) / $controlDiff; + } else { + $control = 0; + } + + //TODO: set $controlPivot globally + $controlPivot = 0.0;//-0.5; + if ($control > 0) { + $controlStatus = 'over_performing'; + } elseif ($control < $controlPivot) { + $controlStatus = 'under_performing'; + } else { + $controlStatus = 'in_contol'; + } } else { $control = 0; } - //TODO: set $controlPivot globally - $controlPivot=0.0;//-0.5; - if($control > 0) { - $controlStatus='over_performing'; - } elseif($control < $controlPivot) { - $controlStatus='under_performing'; - } else { - $controlStatus='in_contol'; + //Update DB + if ($runningAverage === null) { + $runningAverage = 'NULL'; + } + if ($control === null) { + $control = 'NULL'; + $controlStatus = 'undefined'; + } + if ($controlStart === null) { + $controlStart = 'NULL'; + } + if ($controlEnd === null) { + $controlEnd = 'NULL'; + } + if ($controlMin === null) { + $controlMin = 'NULL'; + } + if ($controlMax === null) { + $controlMax = 'NULL'; + } + if ($data[$i]['controlStatus'] === 'control_region_time_interval') { + $controlStatus = 'control_region_time_interval'; } - } - else{ - $control = 0; - } - - //Update DB - if($runningAverage===null) { - $runningAverage='NULL'; - } - if($control===null) { - $control='NULL'; - $controlStatus='undefined'; - } - if($controlStart===null) { - $controlStart='NULL'; - } - if($controlEnd===null) { - $controlEnd='NULL'; - } - if($controlMin===null) { - $controlMin='NULL'; - } - if($controlMax===null) { - $controlMax='NULL'; - } - if($data[$i]['controlStatus']==='control_region_time_interval') { - $controlStatus='control_region_time_interval'; - } - $update_running_average.=" WHEN '{$data[$i]['collected']}' THEN $runningAverage \n"; - $update_control.=" WHEN '{$data[$i]['collected']}' THEN $control \n"; - $update_controlStart.=" WHEN '{$data[$i]['collected']}' THEN $controlStart \n"; - $update_controlEnd.=" WHEN '{$data[$i]['collected']}' THEN $controlEnd \n"; - $update_controlMin.=" WHEN '{$data[$i]['collected']}' THEN $controlMin \n"; - $update_controlMax.=" WHEN '{$data[$i]['collected']}' THEN $controlMax \n"; - $update_controlStatus.=" WHEN '{$data[$i]['collected']}' THEN '$controlStatus' \n"; - - $collected_array[]="'".$data[$i]['collected']."'"; - - $Nallupdate_metric_data+=1; - if($Nallupdate_metric_data>=500||$i >= $length-1) {// - $time_start_sqlupdate = microtime(true); - $collected_array=implode(',', $collected_array); - $allupdate_metric_data="UPDATE metric_data SET + $update_running_average .= " WHEN '{$data[$i]['collected']}' THEN $runningAverage \n"; + $update_control .= " WHEN '{$data[$i]['collected']}' THEN $control \n"; + $update_controlStart .= " WHEN '{$data[$i]['collected']}' THEN $controlStart \n"; + $update_controlEnd .= " WHEN '{$data[$i]['collected']}' THEN $controlEnd \n"; + $update_controlMin .= " WHEN '{$data[$i]['collected']}' THEN $controlMin \n"; + $update_controlMax .= " WHEN '{$data[$i]['collected']}' THEN $controlMax \n"; + $update_controlStatus .= " WHEN '{$data[$i]['collected']}' THEN '$controlStatus' \n"; + + $collected_array[] = "'" . $data[$i]['collected'] . "'"; + + $Nallupdate_metric_data += 1; + if ($Nallupdate_metric_data >= 500 || $i >= $length - 1) {// + $time_start_sqlupdate = microtime(true); + $collected_array = implode(',', $collected_array); + $allupdate_metric_data = "UPDATE metric_data SET running_average = CASE collected {$update_running_average} ELSE running_average @@ -3111,11 +3038,11 @@ public function calculateControls( and ak_id = {$dataset['ak_id']} and metric_id = {$dataset['metric_id']} and collected IN ({$collected_array}) ;"; - $this->db->execute($allupdate_metric_data); - $time_end_sqlupdate1 = microtime(true); - $timing['sqlupdate1']+=$time_end_sqlupdate1 - $time_start_sqlupdate; + $this->db->execute($allupdate_metric_data); + $time_end_sqlupdate1 = microtime(true); + $timing['sqlupdate1'] += $time_end_sqlupdate1 - $time_start_sqlupdate; - $allupdate_a_data2="UPDATE a_data2 SET + $allupdate_a_data2 = "UPDATE a_data2 SET running_average = CASE FROM_UNIXTIME(collected) {$update_running_average} ELSE running_average @@ -3149,12 +3076,12 @@ public function calculateControls( and num_units = {$akId2akDefIdMap[$dataset['ak_id']]['num_units']} and metric_id = {$dataset['metric_id']} and FROM_UNIXTIME(collected) IN ({$collected_array}) ;"; - $this->db->execute($allupdate_a_data2); - $time_end_sqlupdate2 = microtime(true); + $this->db->execute($allupdate_a_data2); + $time_end_sqlupdate2 = microtime(true); - // ak_instance - if($metrics_walltime_id!==null && $dataset['metric_id']===$metrics_walltime_id) { - $allupdate_ak_instance="UPDATE ak_instance SET + // ak_instance + if ($metrics_walltime_id !== null && $dataset['metric_id'] === $metrics_walltime_id) { + $allupdate_ak_instance = "UPDATE ak_instance SET controlStatus = CASE collected {$update_controlStatus} ELSE controlStatus @@ -3162,44 +3089,44 @@ public function calculateControls( WHERE resource_id = {$dataset['resource_id']} and ak_id = {$dataset['ak_id']} and collected IN ({$collected_array}) ;"; - $this->db->execute($allupdate_ak_instance); - } + $this->db->execute($allupdate_ak_instance); + } - $timing['sqlupdate1']+=$time_end_sqlupdate1 - $time_start_sqlupdate; - $timing['sqlupdate2']+=$time_end_sqlupdate2 - $time_end_sqlupdate1; + $timing['sqlupdate1'] += $time_end_sqlupdate1 - $time_start_sqlupdate; + $timing['sqlupdate2'] += $time_end_sqlupdate2 - $time_end_sqlupdate1; - $timing['N_sqlupdate1']+=$Nallupdate_metric_data; - $timing['N_sqlupdate2']+=$Nallupdate_metric_data; + $timing['N_sqlupdate1'] += $Nallupdate_metric_data; + $timing['N_sqlupdate2'] += $Nallupdate_metric_data; - $update_running_average=""; - $update_control=""; - $update_controlStart=""; - $update_controlEnd=""; - $update_controlMin=""; - $update_controlMax=""; - $update_controlStatus=""; - $collected_array=array(); + $update_running_average = ""; + $update_control = ""; + $update_controlStart = ""; + $update_controlEnd = ""; + $update_controlMin = ""; + $update_controlMax = ""; + $update_controlStatus = ""; + $collected_array = array(); - $Nallupdate_metric_data=0; - } + $Nallupdate_metric_data = 0; + } } } $time_end = microtime(true); - $timing['contCalc']+=$time_end - $time_start_1; + $timing['contCalc'] += $time_end - $time_start_1; $timing['N_contCalc']++; } } $time_end_bigcycle = microtime(true); - $t_bigcycle=$time_end_bigcycle - $time_start_bigcycle; + $t_bigcycle = $time_end_bigcycle - $time_start_bigcycle; - $this->log("Timing(Cycle for calculating running average and control values)=".($t_bigcycle), PEAR_LOG_DEBUG); - $this->log(" Timing(data for control calc)=".sprintf("%.4f", $timing['dataQuery'])." (".sprintf("%.2f", 100.0*$timing['dataQuery']/$t_bigcycle)."%)", PEAR_LOG_DEBUG); - $this->log(" Timing(Control region calculation)=".sprintf("%.4f", $timing['contRegCalc'])." (".sprintf("%.2f", 100.0*$timing['contRegCalc']/$t_bigcycle)."%)", PEAR_LOG_DEBUG); - $this->log(" Timing(data for control calc)=".sprintf("%.4f", $timing['contCalc'])." (".sprintf("%.2f", 100.0*$timing['contCalc']/$t_bigcycle)."%)", PEAR_LOG_DEBUG); - $this->log(" Timing(sql update)=".sprintf("%.4f", $timing['sqlupdate1'])." (".sprintf("%.2f", 100.0*$timing['sqlupdate1']/$t_bigcycle)."%)", PEAR_LOG_DEBUG); - $this->log(" Timing(sql update)=".sprintf("%.4f", $timing['sqlupdate2'])." (".sprintf("%.2f", 100.0*$timing['sqlupdate2']/$t_bigcycle)."%)", PEAR_LOG_DEBUG); + $this->log("Timing(Cycle for calculating running average and control values)=" . ($t_bigcycle), PEAR_LOG_DEBUG); + $this->log(" Timing(data for control calc)=" . sprintf("%.4f", $timing['dataQuery']) . " (" . sprintf("%.2f", 100.0 * $timing['dataQuery'] / $t_bigcycle) . "%)", PEAR_LOG_DEBUG); + $this->log(" Timing(Control region calculation)=" . sprintf("%.4f", $timing['contRegCalc']) . " (" . sprintf("%.2f", 100.0 * $timing['contRegCalc'] / $t_bigcycle) . "%)", PEAR_LOG_DEBUG); + $this->log(" Timing(data for control calc)=" . sprintf("%.4f", $timing['contCalc']) . " (" . sprintf("%.2f", 100.0 * $timing['contCalc'] / $t_bigcycle) . "%)", PEAR_LOG_DEBUG); + $this->log(" Timing(sql update)=" . sprintf("%.4f", $timing['sqlupdate1']) . " (" . sprintf("%.2f", 100.0 * $timing['sqlupdate1'] / $t_bigcycle) . "%)", PEAR_LOG_DEBUG); + $this->log(" Timing(sql update)=" . sprintf("%.4f", $timing['sqlupdate2']) . " (" . sprintf("%.2f", 100.0 * $timing['sqlupdate2'] / $t_bigcycle) . "%)", PEAR_LOG_DEBUG); } @@ -3300,7 +3227,7 @@ public function createAggregateTables($includeControlData = false) ORDER BY def.name, r.resource, m.name, ak.num_units, ai.collected"; $this->db->execute($sql); - if ($includeControlData ) { + if ($includeControlData) { $sql = "DROP TABLE IF EXISTS a_tree2"; $this->db->execute($sql); @@ -3415,33 +3342,30 @@ public function updateEnvironmentVersions($dryRunMode = false) $this->db->handle()->beginTransaction(); - foreach ( $resources as $resource ) - { + foreach ($resources as $resource) { print "Scan resource {$resource->nickname}\n"; - foreach ( $appKernelDefs as $appKernelDef ) - { + foreach ($appKernelDefs as $appKernelDef) { print " Scan app kernel {$appKernelDef->basename}\n"; $akInstances = $this->loadAppKernelInstances($appKernelDef->id, $resource->id); - foreach ( $akInstances as $akInstance ) - { + foreach ($akInstances as $akInstance) { $timestamp = strtotime($akInstance->deployment_time); - $options = array('ak_def_id' => $appKernelDef->id, - 'collected' => $timestamp, + $options = array('ak_def_id' => $appKernelDef->id, + 'collected' => $timestamp, 'resource_id' => $resource->id, 'num_units' => 1); $this->loadAppKernelInstanceInfo($options, $instanceData); $recalculatedEnvVersion = $instanceData->environmentVersion(); - if ($recalculatedEnvVersion != $instanceData->environmentVersion ) { + if ($recalculatedEnvVersion != $instanceData->environmentVersion) { print " * " . $resource->nickname . "@" . $appKernelDef->basename . "." . $instanceData->num_proc_units . " (" . date("Y-m-d", $timestamp) . ") UPDATE " . $recalculatedEnvVersion . " != " . $instanceData->environmentVersion . "\n"; - if ($dryRunMode ) { + if ($dryRunMode) { continue; } @@ -3500,7 +3424,7 @@ public function __construct($size) public function set() { - if (func_num_args() != $this->size ) { + if (func_num_args() != $this->size) { throw new Exception("Not enough data elements"); } $this->data = func_get_args(); @@ -3519,17 +3443,17 @@ public function set() class Dataset { // phpcs:enable PSR1.Classes.ClassDeclaration - public $akName ; - public $resourceName ; - public $metric ; - public $metricUnit ; - public $numProcUnits ; - public $description ; + public $akName; + public $resourceName; + public $metric; + public $metricUnit; + public $numProcUnits; + public $description; public $resourceDescription; - public $rawNumProcUnits ; + public $rawNumProcUnits; public $note; - public $akId ; - public $resourceId ; + public $akId; + public $resourceId; public $metricId; public $valueVector = array(); public $valueLowVector = array(); @@ -3556,7 +3480,8 @@ public function __construct( $description, $rawNumProcUnits, $resourceDescription = 'resource description' - ) { + ) + { $this->akName = $name; $this->akId = $akId; $this->resourceName = $resource; @@ -3570,22 +3495,23 @@ public function __construct( $this->rawNumProcUnits = $rawNumProcUnits; $this->note = ""; } + public function getChartTimeVector() { $chartTimeVector = array(); - foreach ($this->timeVector as $time) - { + foreach ($this->timeVector as $time) { $chartTimeVector[] = chartTime2($time); } return $chartTimeVector; } + public function durationInDays() { $length = count($this->valueVector); - if($length <= 0) { + if ($length <= 0) { return 0; } - return ($this->timeVector[$length-1] - $this->timeVector[0])/(3600.00*24.0); + return ($this->timeVector[$length - 1] - $this->timeVector[0]) / (3600.00 * 24.0); } public function export() @@ -3598,19 +3524,18 @@ public function export() $title2 = array(); $length = count($this->valueVector); - if($length > 0) { + if ($length > 0) { $duration_info['start'] = date('Y-m-d', $this->timeVector[0]); - $duration_info['end'] = date('Y-m-d', $this->timeVector[$length-1]); + $duration_info['end'] = date('Y-m-d', $this->timeVector[$length - 1]); $title['title'] = "App Kernel Data"; - $title2['parameters'] = array("App Kernel = ". $this->akName, - "Resource = ". $this->resourceName, - "Metric = ". $this->metric, - "Processing Units = ". $this->numProcUnits); + $title2['parameters'] = array("App Kernel = " . $this->akName, + "Resource = " . $this->resourceName, + "Metric = " . $this->metric, + "Processing Units = " . $this->numProcUnits); $headers = array('Date', 'Value', 'Control', 'Changed'); - for($i = 0; $i < $length; $i++) - { - $rows[$this->timeVector[$i]] = array(date('Y-m-d H:i:s', $this->timeVector[$i]), $this->valueVector[$i], $this->controlVector[$i], $this->versionVector[$i]==1?'yes':'no'); + for ($i = 0; $i < $length; $i++) { + $rows[$this->timeVector[$i]] = array(date('Y-m-d H:i:s', $this->timeVector[$i]), $this->valueVector[$i], $this->controlVector[$i], $this->versionVector[$i] == 1 ? 'yes' : 'no'); } } @@ -3645,57 +3570,57 @@ public function aggregate($aggTime) $this->resourceDescription ); - if(count($this->timeVector) === 0) { + if (count($this->timeVector) === 0) { return $aggDataset; } - if($aggTime === 24*3600) { + if ($aggTime === 24 * 3600) { $aggDataset->note .= "(One day avg.)"; - } elseif($aggTime === 7*24*3600) { + } elseif ($aggTime === 7 * 24 * 3600) { $aggDataset->note .= "(Avr. by week)"; - } elseif($aggTime === 30*24*3600) { + } elseif ($aggTime === 30 * 24 * 3600) { $aggDataset->note .= "(Avr. by 30 days)"; } else { - $aggDataset->note .= sprintf("(Avr. by %.1f days)", $aggTime/(24*3600)); + $aggDataset->note .= sprintf("(Avr. by %.1f days)", $aggTime / (24 * 3600)); } - $prevTime = intval(intval($this->timeVector[0])/$aggTime); + $prevTime = intval(intval($this->timeVector[0]) / $aggTime); $meanVal = 0.0; $minVal = $this->valueVector[0]; $maxVal = $this->valueVector[0]; $n = 0; $totalPoints = count($this->timeVector); for ($i = 0; $i < $totalPoints; $i++) { - $curTime = intval(intval($this->timeVector[$i])/$aggTime); - if($curTime !== $prevTime || $i === $totalPoints-1) { + $curTime = intval(intval($this->timeVector[$i]) / $aggTime); + if ($curTime !== $prevTime || $i === $totalPoints - 1) { $aggDataset->timeVector[] = strval($curTime * $aggTime); - $aggDataset->valueVector[] = strval($meanVal/$n); + $aggDataset->valueVector[] = strval($meanVal / $n); $aggDataset->valueHighVector[] = strval($maxVal); $aggDataset->valueLowVector[] = strval($minVal); // for following arragy let's keep only last record for aggregated period - if(count($this->controlVector)>$i) { + if (count($this->controlVector) > $i) { $aggDataset->controlVector[] = $this->controlVector[$i]; } - if(count($this->controlStartVector)>$i) { + if (count($this->controlStartVector) > $i) { $aggDataset->controlStartVector[] = $this->controlStartVector[$i]; } - if(count($this->controlEndVector)>$i) { + if (count($this->controlEndVector) > $i) { $aggDataset->controlEndVector[] = $this->controlEndVector[$i]; } - if(count($this->controlMinVector)>$i) { + if (count($this->controlMinVector) > $i) { $aggDataset->controlMinVector[] = $this->controlMinVector[$i]; } - if(count($this->controlMaxVector)>$i) { + if (count($this->controlMaxVector) > $i) { $aggDataset->controlMaxVector[] = $this->controlMaxVector[$i]; } - if(count($this->runningAverageVector)>$i) { + if (count($this->runningAverageVector) > $i) { $aggDataset->runningAverageVector[] = $this->runningAverageVector[$i]; } - if(count($this->versionVector)>$i) { + if (count($this->versionVector) > $i) { $aggDataset->versionVector[] = $this->versionVector[$i]; } - if(count($this->controlStatus)>$i) { + if (count($this->controlStatus) > $i) { $aggDataset->controlStatus[] = $this->controlStatus[$i]; } @@ -3722,16 +3647,14 @@ public function autoAggregate() { // aggregate output if number of points is large $num_points = count($this->timeVector); - if($num_points < 201) { + if ($num_points < 201) { return $this; - } - else - { - $dt = intval($this->timeVector[0]) - intval($this->timeVector[$num_points-1]); - $dt /= 24*3600; - if($dt < 365/2) { + } else { + $dt = intval($this->timeVector[0]) - intval($this->timeVector[$num_points - 1]); + $dt /= 24 * 3600; + if ($dt < 365 / 2) { return $this->aggregate(24 * 3600); - } elseif($dt < 365) { + } elseif ($dt < 365) { return $this->aggregate(7 * 24 * 3600); } else { return $this->aggregate(30 * 24 * 3600); diff --git a/classes/AppKernel/InstanceData.php b/classes/AppKernel/InstanceData.php index 1572291..7ed4783 100644 --- a/classes/AppKernel/InstanceData.php +++ b/classes/AppKernel/InstanceData.php @@ -29,10 +29,14 @@ class InstanceData // -------------------------------------------------------------------------------- // Information from the app kernel database. Prefixed with "db_" - // Application kernel id (takes into account the number of proc units) + /** + * @var int|null Application kernel id (takes into account the number of proc units) + */ public $db_ak_id = null; - // Database id for the application kernel definition + /** + * @var int|null Database id for the application kernel definition + */ public $db_ak_def_id = null; // Name of the app kernel in the database definition @@ -73,7 +77,9 @@ class InstanceData // The name of the app kernel without number of processing units (taken from the database) public $deployment_ak_base_name = null; - // The number of processing units used by this app kernel + /** + * @var int|null The number of processing units used by this app kernel + */ public $deployment_num_proc_units = null; // The resource that the app kernel was run on @@ -82,7 +88,9 @@ class InstanceData // The optional cluster node that the app kernel was run on public $deployment_execution_hostname = null; - // Execution time (unix timestamp) + /** + * @var int|null Execution time (unix timestamp) + */ public $deployment_time = null; // Error message returned by the deployment infrastructure diff --git a/tests/unit/AppKernelDbTest.php b/tests/unit/AppKernelDbTest.php index 7fc0e66..580e3b1 100644 --- a/tests/unit/AppKernelDbTest.php +++ b/tests/unit/AppKernelDbTest.php @@ -14,7 +14,7 @@ function create_instance_data($db_ak_id, $deployment_num_proc_units, $deployment { $ak = new InstanceData; $ak->db_ak_id = $db_ak_id; - $ak->deployment_num_proc_units = $deployment_num_proc_units; + $ak->deployment_num_proc_units = strtotime($deployment_num_proc_units); $ak->deployment_time = $deployment_time; $ak->status = $status; return $ak; @@ -233,10 +233,10 @@ public function loadAppKernelInstancesProvider() /** * @dataProvider loadAppKernelInstancesProvider */ - public function testLoadAppKernelInstances($appKernelDefId, $resourceId, $n_expected = null, $expected = null) + public function testLoadAppKernelInstances($ak_def_id, $resource_id, $n_expected = null, $expected = null) { $ak_db = new \AppKernel\AppKernelDb(); - $actual = $ak_db->loadAppKernelInstances($appKernelDefId, $resourceId); + $actual = $ak_db->loadAppKernelInstances($ak_def_id, $resource_id); if ($expected === null && $n_expected === null) { print(count($actual) . ", [\n"); From e7a9649b5bf008a2d3dfb32bbc99a01d60e9f251 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Wed, 27 May 2020 11:09:30 -0400 Subject: [PATCH 27/63] moving functions from xdmod-akrr-ingestor to AppKernelIngestor.php --- classes/AppKernelIngestor.php | 1086 +++++++++++++++++++++++++++++++++ 1 file changed, 1086 insertions(+) create mode 100644 classes/AppKernelIngestor.php diff --git a/classes/AppKernelIngestor.php b/classes/AppKernelIngestor.php new file mode 100644 index 0000000..d70e0b7 --- /dev/null +++ b/classes/AppKernelIngestor.php @@ -0,0 +1,1086 @@ +#!/usr/bin/env php + + */ + +require_once __DIR__ . '/../configuration/linker.php'; + +use CCR\Log; +use AppKernel\AppKernelDb; +use AppKernel\IngestionLogEntry; +use AppKernel\InstanceData; + +/** + * Explorer class to query and parse the deployment engine. + * + * NOTE: This should be renamed to Akrr or AKRR. + * + * @var string + */ +$explorerType = 'Arr'; + +/** + * Database handle. + * + * @var AppKernelDb|null + */ +$db = null; + +/** + * Logs for data on the ingestion process. + * + * @var IngestionLogEntry|null + */ +$ingestionLog = null; + +// Various flags. + +/** + * Calculate controls if true. + * + * @var bool + */ +$calculateControls = false; + +/** + * Recalculate the controls and control intervals + * + * @var bool + */ +$recalculateControls = false; + +/** + * Operate in dry-run mode. Query and parse files but do not update the + * database in any way. + * + * @var bool + */ +$dryRunMode = false; + +/** + * Use replace statements to replace duplicate metric/intance data. + * Default behavior is to ignore duplicates. + * + * @var bool + */ +$replace = false; + +/** + * Log level determined by "verbose", "debug" and "quiet". + * + * @var int + */ +$logLevel = -1; + +// Load timeframe options. + +/** + * Ingestion start timestamp. + * + * @var int|null + */ +$startTimestamp = null; + +/** + * Ingestion end timestamp. + * + * @var int|null + */ +$endTimestamp = null; + +/** + * A time period to use for ingestion. + * + * @see $validTimeframes + * + * @var string|null + */ +$sinceLastLoadTime = null; + +/** + * Ingestion timeperiod used in log messages. + * + * @var string + */ +$ingestionTimePeriodStr = ''; + +// Loading restrictions + +/** + * If set, the app kernel to ingest. + * + * @var string|null + */ +$restrictToAppKernel = null; + +/** + * If set, the resource to ingest. + * + * @var string|null + */ +$restrictToResource = null; + +/** + * Deployment engine explorer. + * + * @var \AppKernel\iAppKernelExplorer + */ +$deploymentExplorer = null; + +/** + * List of enabled resources from the app kernel database. + * + * @var array + */ +$dbResourceList = array(); + +/** + * Number of app kernels ingested. + * + * This is not currently used. + * + * @var int + */ +$appKernelCounter = 0; + +// Structures to keep track of data for reporting ingestion results. + +/** + * App kernel reports for each resource. + * + * @var array + */ +$appKernelReport = array(); + +/** + * Summary of app kernel ingestion. + * + * @var array + */ +$appKernelSummaryReport = array( + 'examined' => 0, + 'loaded' => 0, + 'incomplete' => 0, + 'parse_error' => 0, + 'queued' => 0, + 'unknown_type' => 0, + 'sql_error' => 0, + 'error' => 0, + 'duplicate' => 0, + 'exception' => 0, +); + +/** + * List of all enabled resources to query. + * + * @var array + */ +$resourceNicknames = array(); + +/** + * Timeframes available for the "last N" option + * + * @var array + */ +$validTimeframes = array( + 'hour' => 3600, + 'day' => 86400, + 'week' => 604800, + 'month' => 2618784, + + // All data since the last successful load recorded in the database + 'load' => null, +); + +/** + * Remove ingested data for given time period prior to reingesting it. + * + * @var bool + */ +$removeIngestedData = false; + +/** + * Offset the ingesting starting date by "o" days. + * + * @var int + */ +$offsetStartTimestampBy = 0; + +/** + * Parse command line options. + * + * @var array + */ +$options = array( + 'h' => 'help', + + // Calculate running averages and controls + 'c' => 'calculate-controls', + + // Re-calculate running averages, control and control intervals + 'y' => 're-calculate-controls', + + // Test or dry-run Mode + 'd' => 'dry-run', + + // Force replace all instance/metric data + 'r' => 'replace', + + // Start date (and optional time) for import + 's:' => 'start:', + + // End date (and optional time) for import + 'e:' => 'end:', + + // Import data using specified time period + 'l:' => 'since-last:', + + // Process only app kernels containing this string + 'k:' => 'kernel', + + // Process only the specified resource + 'R:' => 'resource', + + // Verbose mode. + 'v' => 'verbose', + + // Debug mode. + '' => 'debug', + + // Quiet mode. + 'q' => 'quiet', + + // Remove ingested data for given time period prior to reingesting it + 'm' => 'remove', + + // offset the ingesting starting date by o days + 'o:' => 'offset:', +); + +$args = getopt(implode('', array_keys($options)), $options); + +foreach ($args as $arg => $value) { + switch ($arg) { + case 'c': + case 'calculate-controls': + $calculateControls = true; + break; + case 'y': + case 're-calculate-controls': + $recalculateControls = true; + break; + case 'e': + case 'end': + $value = trim($value); + if (!preg_match("/^[0-9]+$/", $value)) { + // End of the day + $endTimestamp = strtotime($value) + 86399; + } else { + $endTimestamp = $value; + } + break; + case 'd': + case 'dry-run': + $dryRunMode = true; + $logLevel = max($logLevel, Log::INFO); + break; + case 'r': + case 'replace': + $replace = true; + break; + case 'h': + case 'help': + usage_and_exit(); + break; + case 'k': + case 'kernel': + $restrictToAppKernel = $value; + break; + case 'l': + case 'since-last': + $sinceLastLoadTime = $value; + break; + case 'R': + case 'resource': + $restrictToResource = $value; + break; + case 's': + case 'start': + $value = trim($value); + if (!preg_match("/^[0-9]+$/", $value)) { + $startTimestamp = strtotime($value); + } else { + $startTimestamp = $value; + } + break; + case 'm': + case 'remove': + $removeIngestedData = true; + break; + case 'o': + case 'offset': + $offsetStartTimestampBy = intval($value) * 3600 * 24; + break; + case 'q': + case 'quiet': + $logLevel = max($logLevel, Log::WARNING); + break; + case 'v': + case 'verbose': + $logLevel = max($logLevel, Log::INFO); + break; + case 'debug': + $logLevel = max($logLevel, Log::DEBUG); + break; + default: + break; + } +} + +// Verify arguments +// +// The "load since last" flag or start/end flags must be specified. If +// start/end is specified only one is required. + +if (null !== $sinceLastLoadTime) { + if (!array_key_exists($sinceLastLoadTime, $validTimeframes)) { + usage_and_exit("Invalid timeframe for -l option. Valid timeframes are: " . implode(", ", array_keys($validTimeframes))); + } +} else { + if (null === $startTimestamp && null === $endTimestamp) { + usage_and_exit("Time period not specified"); + } elseif (null !== $startTimestamp && !preg_match("/^[0-9]+$/", $startTimestamp)) { + usage_and_exit("Start time could not be parsed"); + } elseif (null !== $endTimestamp && !preg_match("/^[0-9]+$/", $endTimestamp)) { + usage_and_exit("End time is not a unix timestamp"); + } +} + +$conf = array( + 'file' => false, + 'mail' => false, + 'consoleLogLevel' => $logLevel, +); +$logger = Log::factory('xdmod-akrr', $conf); + +// Create handles to both databases +try { + $db = new AppKernelDb($logger, 'appkernel'); + $ingestionLog = new IngestionLogEntry(); +} catch (Exception $e) { + $logger->crit(array( + 'message' => "Error connecting to database: " . $e->getMessage(), + 'stacktrace' => $e->getTraceAsString(), + )); + cleanup_and_exit(1); +} + +// Determine the timeframe for the import +if ($sinceLastLoadTime) { + $endTimestamp = time(); + + if ("load" == $sinceLastLoadTime) { + // Load the last ingestion time fron the database. The production database takes priority. + $loaded = $db->loadMostRecentIngestionLogEntry($ingestionLog); + $startTimestamp = $ingestionLog->end_time + 1; + } else { + $startTimestamp = $endTimestamp - $validTimeframes[$sinceLastLoadTime]; + } +} + +if (null !== $startTimestamp && null === $endTimestamp) { + $endTimestamp = time(); +} + +// offset the start time +$startTimestamp -= $offsetStartTimestampBy; + +// NOTE: "process_start_time" is needed for the log summary. +$logger->notice(array( + 'message' => 'Ingestion start', + 'process_start_time' => date('Y-m-d H:i:s'), +)); + +if ($dryRunMode) { + $logger->info("OPTION: Running in dryrun mode - discarding database updates"); +} + +if (null !== $restrictToResource) { + $logger->info("OPTION: Load only resource (nickname) '$restrictToResource'"); +} + +if (null !== $restrictToAppKernel) { + $logger->info("OPTION: Load only app kernels starting with '$restrictToAppKernel'"); +} + +$ingestionTimePeriodStr + = date("Y-m-d H:i:s", $startTimestamp) + . " to " + . date("Y-m-d H:i:s", $endTimestamp); + +$logger->notice(array( + 'message' => 'Ingestion data time period', + 'data_start_time' => date("Y-m-d H:i:s", $startTimestamp), + 'data_end_time' => date("Y-m-d H:i:s", $endTimestamp), +)); + +// Reset and initialize the ingestion logs +$ingestionLog->reset(); +$ingestionLog->source = $explorerType; +$ingestionLog->url = null; +$ingestionLog->last_update = time(); +$ingestionLog->start_time = $startTimestamp; +$ingestionLog->end_time = $endTimestamp; + +// Instantiate the Explorer +try { + $config = array( + 'config_appkernel' => 'appkernel', + 'config_akrr' => 'akrr-db', + 'add_supremm_metrix' => false, + ); + $deploymentExplorer = AppKernel::explorer($explorerType, $config, $logger); + $deploymentExplorer->setQueryInterval($startTimestamp, $endTimestamp); +} catch (Exception $e) { + $msg = "Error creating explorer ($explorerType): " . $e->getMessage(); + $logger->crit(array( + 'message' => $msg, + 'stacktrace' => $e->getTraceAsString(), + )); + $ingestionLog->setStatus(false, $msg); + cleanup_and_exit(1); +} + +// Instantiate the Parser +try { + $parser = AppKernel::parser($explorerType, null, $logger); +} catch (Exception $e) { + $msg = "Error creating parser ($explorerType): " . $e->getMessage(); + $logger->crit(array( + 'message' => $msg, + 'stacktrace' => $e->getTraceAsString(), + )); + $ingestionLog->setStatus(false, $msg); + cleanup_and_exit(1); +} + +// Get enabled resources configured in the app kernel database + +// If we are restricting the resource do it now +$options = array('inc_hidden' => true); +if (null !== $restrictToResource) { + $options['filter' ] = $restrictToResource; +} + +try { + $dbResourceList = $db->loadResources($options); + $logger->debug("Loaded database resources: " . json_encode(array_keys($dbResourceList))); +} catch (\PDOException $e) { + $msg = "Error querying database for resoures: " . formatPdoExceptionMessage($e); + $logger->crit(array( + 'message' => $msg, + 'stacktrace' => $e->getTraceAsString(), + )); + $ingestionLog->setStatus(false, $msg); + cleanup_and_exit(1); +} + +if (0 == count($dbResourceList)) { + $msg = "No resources enabled in the database, skipping import."; + $logger->warning($msg); + $ingestionLog->setStatus(true, $msg); + cleanup_and_exit(1); +} + +try { + $dbAKList = $db->loadAppKernelDefinitions(); + $dbAKIdMap = $db->loadAppKernels(true, true); + $logger->debug('DB AK List: ' . json_encode($dbAKList)); + $logger->debug('DB AK ID Map: ' . json_encode($dbAKIdMap)); +} catch (\PDOException $e) { + $msg = "Error querying database for appkernels: " . formatPdoExceptionMessage($e); + $logger->crit(array( + 'message' => $msg, + 'stacktrace' => $e->getTraceAsString(), + )); + $ingestionLog->setStatus(false, $msg); + cleanup_and_exit(1); +} + +$resourceNicknames = array_keys($dbResourceList); + +// remove old ingested data +if ($removeIngestedData === true) { + $logger->notice('Removing old ingested data (if present) in new ingestion period'); + + $akdb = $db->getDB(); + + $sqlcond + = "collected >= '" . date("Y-m-d H:i:s", $startTimestamp) + . "' AND collected <= '" . date("Y-m-d H:i:s", $endTimestamp) . "'"; + $sqlcondUNIX_TIMESTAMP + = "collected >= UNIX_TIMESTAMP('" + . date("Y-m-d H:i:s", $startTimestamp) + . "') AND collected <= UNIX_TIMESTAMP('" + . date("Y-m-d H:i:s", $endTimestamp) . "')"; + + if ($restrictToResource!==null){ + $sqlcond .= " AND resource_id = '" + . $dbResourceList[$restrictToResource]->id . "'"; + $sqlcondUNIX_TIMESTAMP .= " AND resource_id = '" + . $dbResourceList[$restrictToResource]->id . "'"; + } + + $sqlAKDefcond = ""; + $sqlAKcond = ""; + $sqlNumUnitsCond = ""; + + if ($restrictToAppKernel !== null) { + $sqlAKDefcond .= " AND ak_def_id = '" + . $dbAKList[$restrictToAppKernel]->id . "'"; + + $m_aks = array(); + $m_num_units = array(); + + $response = $akdb->query("SELECT ak_id, num_units FROM mod_appkernel.app_kernel WHERE ak_def_id='" . $dbAKList[$restrictToAppKernel]->id . "'"); + + foreach ($response as $v) { + $m_aks[] = "ak_id='" . $v['ak_id'] . "'"; + $m_num_units[] = "num_units=" . $v['num_units'] . ""; + } + $sqlAKcond = " AND (" . implode(" OR ", $m_aks) . ")"; + $sqlNumUnitsCond = " AND (" . implode(" OR ", $m_num_units) . ")"; + } + $akdb->execute("DELETE FROM mod_appkernel.metric_data WHERE " . $sqlcond . $sqlAKcond); + $logger->info("SELECT * FROM mod_appkernel.metric_data WHERE " . $sqlcond . $sqlAKcond); + $akdb->execute("DELETE FROM mod_appkernel.parameter_data WHERE " . $sqlcond . $sqlAKcond); + $akdb->execute("DELETE FROM mod_appkernel.ak_instance_debug WHERE " . $sqlcond . $sqlAKcond); + $akdb->execute("DELETE FROM mod_appkernel.ak_instance WHERE " . $sqlcond . $sqlAKcond); + $akdb->execute("DELETE FROM mod_appkernel.a_data WHERE " . $sqlcondUNIX_TIMESTAMP . $sqlAKDefcond . $sqlNumUnitsCond); + $akdb->execute("DELETE FROM mod_appkernel.a_data2 WHERE " . $sqlcondUNIX_TIMESTAMP . $sqlAKDefcond . $sqlNumUnitsCond); + $logger->info("SELECT * FROM mod_appkernel.a_data2 WHERE " . $sqlcondUNIX_TIMESTAMP . $sqlAKDefcond . $sqlNumUnitsCond); +} + +// Iterate over each resource and query for all app kernels for that +// resource and time period. Use a single AppKernelData object and +// re-initialize it for each app kernel instance. This'll keep us lean +// and mean. +$parsedInstanceData = new InstanceData(); +$logger->info("Start processing application kernel data"); + +if (null !== $restrictToAppKernel) { + $logger->info("Restrict to app kernels containing string '$restrictToAppKernel'"); +} + +foreach ($resourceNicknames as $resourceNickname) { + $logger->info("Start resource: $resourceNickname"); + + $resourceReport = array(); + $resource_id = $dbResourceList[$resourceNickname]->id; + $resource_name = $dbResourceList[$resourceNickname]->name; + $resource_nickname = $dbResourceList[$resourceNickname]->nickname; + $resource_visible = $dbResourceList[$resourceNickname]->visible; + + $options = array('resource' => $resourceNickname); + + if (null !== $restrictToAppKernel) { + $options['app_kernel'] = $restrictToAppKernel; + } + + $instanceList = array(); + + try { + $instanceListGroupedByAK = $deploymentExplorer->getAvailableInstances($options, true); + $numInstances = 0; + + foreach ($instanceListGroupedByAK as $ak_basename => $instanceListGroupedByNumUnits) { + foreach ($instanceListGroupedByNumUnits as $num_units => $instanceList) { + $numInstances += count($instanceList); + } + } + + $msg = "Resource: $resourceNickname found $numInstances instances"; + if (0 == $numInstances) { + $logger->warning("$msg from $ingestionTimePeriodStr"); + } else { + $logger->info($msg); + } + } catch (Exception $e) { + $msg = "Error retrieving app kernel instances: " . $e->getMessage(); + $logger->crit(array( + 'message' => $msg, + 'stacktrace' => $e->getTraceAsString(), + )); + } + + foreach ($instanceListGroupedByAK as $ak_basename => $instanceListGroupedByNumUnits) { + $logger->debug("Current AK: $ak_basename"); + + if (!isset($dbAKList[$ak_basename])) { + $logger->warning("$ak_basename not in AK list"); + #continue; + } + + $ak_def_id = $dbAKList[$ak_basename]->id; + $ak_name = $dbAKList[$ak_basename]->name; + $processor_unit = $dbAKList[$ak_basename]->processor_unit; + $ak_def_visible = $dbAKList[$ak_basename]->visible; + + foreach ($instanceListGroupedByNumUnits as $num_units => $instanceList) { + if (!isset($dbAKIdMap[$ak_basename])) { + $logger->warning("$ak_basename not in AK id map"); + #continue; + } + + $ak_id = $dbAKIdMap[$ak_basename][$num_units]; + + foreach ($instanceList as $instanceId => $akInstance) { + $logger->info("Processing $akInstance"); + + if (!isset($resourceReport[$akInstance->akNickname])) { + $resourceReport[$akInstance->akNickname] = array( + 'examined' => 0, + 'loaded' => 0, + 'incomplete' => 0, + 'parse_error' => 0, + 'queued' => 0, + 'error' => 0, + 'sql_error' => 0, + 'unknown_type' => 0, + 'duplicate' => 0, + 'exception' => 0, + ); + } + + $resourceReport[$akInstance->akNickname]['examined']++; + $appKernelSummaryReport['examined']++; + + try { + try { + + // The parser should throw 4 types of exception: general, inca error, queued job, invalid xml + $success = $parser->parse($akInstance, $parsedInstanceData); + + // Set some data that will be needed for adding metrics and parameters + // TODO These should be preset during InstanceData &$ak query + $parsedInstanceData->db_resource_id = $resource_id; + $parsedInstanceData->db_resource_name = $resource_name; + $parsedInstanceData->db_resource_nickname = $resource_nickname; + $parsedInstanceData->db_resource_visible = $resource_visible; + $parsedInstanceData->db_proc_unit_type = $processor_unit; + $parsedInstanceData->db_ak_id = $ak_id; + $parsedInstanceData->db_ak_def_id = $ak_def_id; + $parsedInstanceData->db_ak_def_name = $ak_name; + $parsedInstanceData->db_ak_def_visible = $ak_def_visible; + } catch(AppKernel\AppKernelException $e) { + $msg = $e->getMessage(); + + // Handle errors during parsing. In most cases log the error, increment + // a counter, and skip the saving of the data. + + switch ($e->getCode()) { + case AppKernel\AppKernelException::ParseError: + $resourceReport[$akInstance->akNickname]['parse_error']++; + $appKernelSummaryReport['parse_error']++; + $logger->err("Parse error: '$msg'"); + $logger->debug("Raw instance data:\n{$akInstance->data}\n"); + continue; + break; + case AppKernel\AppKernelException::Queued: + $resourceReport[$akInstance->akNickname]['queued']++; + $appKernelSummaryReport['queued']++; + $logger->notice("Queued: '$msg'"); + continue; + break; + case AppKernel\AppKernelException::Error: + $resourceReport[$akInstance->akNickname]['error']++; + $appKernelSummaryReport['error']++; + $logger->err("Error: '$msg'"); + continue; + break; + case AppKernel\AppKernelException::UnknownType: + $resourceReport[$akInstance->akNickname]['unknown_type']++; + $appKernelSummaryReport['unknown_type']++; + $logger->warning("Unknown Type: '$msg'"); + continue; + break; + default: + $logger->err(array( + 'message' => "AppKernelException: '$msg'", + 'stacktrace' => $e->getTraceAsString(), + )); + continue; + break; + } + } + + $logger->debug(print_r($parsedInstanceData, 1)); + + // Store data in the appropriate databases. Need a + // better way to handle errors here so we know what + // actually happened. Use AppKernelException!! + try { + $add_to_a_data = true; + $calc_controls = true; + + if (array_key_exists($resourceNickname, $dbResourceList)) { + $stored = $db->storeAppKernelInstance( + $parsedInstanceData, + $replace, + $add_to_a_data, + $calc_controls, + $dryRunMode + ); + } + } catch (AppKernel\AppKernelException $e) { + switch ($e->getCode()) { + case AppKernel\AppKernelException::DuplicateInstance: + $resourceReport[$akInstance->akNickname]['duplicate']++; + $appKernelSummaryReport['duplicate']++; + $logger->warning($e->getMessage()); + break; + default: + $logger->warning($e->getMessage()); + break; + } + continue; + } + + if (!$akInstance->completed) { + $logger->err("$akInstance did not complete. message: '{$akInstance->message}'"); + $logger->debug("$akInstance did not complete. message: '{$akInstance->message}', stderr: '{$akInstance->stderr}'"); + $resourceReport[$akInstance->akNickname]['incomplete']++; + $appKernelSummaryReport['incomplete']++; + } elseif (false !== $stored) { + $resourceReport[$akInstance->akNickname]['loaded']++; + $appKernelSummaryReport['loaded']++; + $appKernelCounter++; + } + } catch (\PDOException $e) { + $msg = formatPdoExceptionMessage($e); + $logger->err(array( + 'message' => $msg, + 'stacktrace' => $e->getTraceAsString(), + )); + $resourceReport[$akInstance->akNickname]['sql_error']++; + $appKernelSummaryReport['sql_error']++; + continue; + } catch (Exception $e) { + $logger->warning("Error: {$e->getMessage()} ({$e->getCode()}), skipping."); + $resourceReport[$akInstance->akNickname]['exception']++; + $appKernelSummaryReport['exception']++; + continue; + } + } + } + } + + $appKernelReport[$resourceNickname] = $resourceReport; + + $logger->info("End resource: $resourceNickname"); +} + +if (!$dryRunMode) { + $logger->info("Loaded $appKernelCounter application kernels"); + + try { + if ($calculateControls || $recalculateControls) { + $logger->info("Caculate running average and control values"); + $db->calculateControls($recalculateControls, $recalculateControls, 20, 5, $restrictToResource, $restrictToAppKernel); + } + } catch (\PDOException $e) { + $msg = formatPdoExceptionMessage($e); + $logger->err(array( + 'message' => $msg, + 'stacktrace' => $e->getTraceAsString(), + )); + } catch (Exception $e) { + $logger->err(array( + 'message' => "Error: {$e->getMessage()} ({$e->getCode()})", + 'stacktrace' => $e->getTraceAsString(), + )); + } +} + +$summaryReport + = "Summary report for " . date("Y-m-d H:i:s", $startTimestamp) + . " to " . date("Y-m-d H:i:s", $endTimestamp) . "\n" + . "examined = {$appKernelSummaryReport['examined']}, " + . "loaded = {$appKernelSummaryReport['loaded']}, " + . "incomplete = {$appKernelSummaryReport['incomplete']}, " + . "parse error = {$appKernelSummaryReport['parse_error']}, " + . "queued = {$appKernelSummaryReport['queued']}, " + . "unknown type = {$appKernelSummaryReport['unknown_type']}, " + . "sql_error = {$appKernelSummaryReport['sql_error']}, " + . "error = {$appKernelSummaryReport['error']}, " + . "duplicate = {$appKernelSummaryReport['duplicate']}, " + . "exception = {$appKernelSummaryReport['exception']}\n" + . format_summary_report($appKernelReport); + +$logger->info($summaryReport); + +// NOTE: This is needed for the log summary. +$logger->notice(array( + 'message' => 'Summary data', + 'records_examined' => $appKernelSummaryReport['examined'], + 'records_loaded' => $appKernelSummaryReport['loaded'], + 'records_incomplete' => $appKernelSummaryReport['incomplete'], + 'records_parse_error' => $appKernelSummaryReport['parse_error'], + 'records_queued' => $appKernelSummaryReport['queued'], + 'records_unknown_type' => $appKernelSummaryReport['unknown_type'], + 'records_sql_error' => $appKernelSummaryReport['sql_error'], + 'records_error' => $appKernelSummaryReport['error'], + 'records_duplicate' => $appKernelSummaryReport['duplicate'], + 'records_exception' => $appKernelSummaryReport['exception'] +)); + +// Test sending errors and queued info + +$ingestionLog->num = $appKernelCounter; + +if (0 == $appKernelSummaryReport['sql_error']) { + $ingestionLog->setStatus(true, serialize($appKernelSummaryReport)); +} else { + $ingestionLog->setStatus(false, "SQL errors present"); +} + +$ingestionLog->reportObj = serialize($appKernelReport); + +// NOTE: "process_end_time" is needed for the log summary. +$logger->notice(array( + 'message' => 'Ingestion End', + 'process_end_time' => date('Y-m-d H:i:s'), +)); + +cleanup_and_exit(0); + +/** + * Format the summary report. + * + * @param array $reportData + * + * @return string + */ +function format_summary_report(array $reportData) +{ + $reportString = ""; + + foreach ($reportData as $resourceNickname => $resourceData) { + $reportString .= "Resource nickname: $resourceNickname\n"; + + foreach ($resourceData as $appKernelName => $akData) { + $reportString .= " App Kernel: $appKernelName\n"; + $tmp = array(); + + foreach ($akData as $key => $value) { + $tmp[] = "$key = $value"; + } + + $reportString .= " " . implode(", ", $tmp) . "\n"; + } + } + + return $reportString; +} + +/** + * Format the error report. + * + * @param array $reportData + * + * @return string + */ +function format_error_report(array $reportData) +{ + $reportString = ""; + + foreach ($reportData as $resourceNickname => $resourceData) { + $reportString .= "\nResource nickname: $resourceNickname\n"; + + foreach ($resourceData as $appKernelName => $info) { + $reportString + .= " App kernel: $appKernelName (errors = " + . (isset($info['error']) ? count($info['error']) : 0) + . ", queued = " + . (isset($info['queued']) ? count($info['queued']) : 0) + . ")\n"; + + if (isset($info['error'])) { + $reportString .= " Errors:\n"; + + foreach ($info['error'] as $value) { + $reportString .= " $value\n"; + } + } + + if (isset($info['queued'])) { + $reportString .= " Queued:\n"; + + foreach ($info['queued'] as $value) { + $reportString .= " $value\n"; + } + } + } + } + + return $reportString; +} + +/** + * Display usage text and exit. + * + * @param string $msg Optional message. + */ +function usage_and_exit($msg = null) +{ + global $validTimeframes; + + if (null !== $msg) { + echo "\n$msg\n"; + } + + $timeframes = implode(', ', array_keys($validTimeframes)); + + echo <<<"EOF" + +Usage: xdmod-akrr-ingestor [[-l *timeframe*]|[-s *start-date*] [-e *end-date*]] + + -h, --help + Display this help. + + -v, --verbose + Output info level logging. + + --debug + Output debug level logging. + + -q, --quiet + Output warning level logging. + + -d, --dry-run + Run in dry-run mode. Do not update database. + + -r, --replace + Force replacement of all instance/metric data. Default + behavior is to ignore duplicates. + + -m, --remove + Remove ingested data for given time period prior to reingesting + it. + + -c, --calculate-controls + Calculate the running average and control values. + + -y, --re-calculate-controls + Re-calculate the running average, control values and control + intervals. + + -l, --since-last *timeframe* + Import data for time period. + Valid timeframes are $timeframes. + + -s, --start *start-date* + Start timestamp or date for import. + + -e, --end *end-date* + End timestamp or date for import. + + -o, --offset *days* + Offset the ingesting starting date by *days* (previous) days. + + -k, --kernel *app-kernel* + Ingest only app kernels matching this string. + + -R, --resource *resource-name* + Ingest app kernels for this resource only. + +If a start time is specified without an end time then data will be +loaded from the start to the current time. If an end time is specified +without a start time then data will be loaded from the beginning to the +end time. + +Examples: + +Ingest all application kernels since the last load and calculate control +regions. + + xdmod-akrr-ingestor -v -c -l load + + +EOF; + + cleanup_and_exit(1); +} + +/** + * Clean up and exit. + * + * @param int $exitCode Optional exit code. + */ +function cleanup_and_exit($exitCode = 0) +{ + global $dryRunMode, $ingestionLog, $logger, $db; + + if (!$dryRunMode) { + if ($db instanceof \AppKernel\AppKernelDb) { + $db->storeIngestionLogEntry($ingestionLog); + } + } + + if ($logger instanceof \Log) { + $logger->close(); + } + + exit($exitCode); +} + +/** + * Format a PDO exception message. + * + * @param PDOException $e + * + * @return string + */ +function formatPdoExceptionMessage(PDOException $e) +{ + $msg = ""; + + // If there are 3 elements in the errorInfo array we can assume + // that this was a driver error so display a useful message instead + // of the generic PDO message. + + if (3 == count($e->errorInfo)) { + + // MySQL error + list ($sqlstate, $driverCode, $driverMsg) = $e->errorInfo; + + $msg = "Database Error ($driverCode): '$driverMsg'"; + $trace = $e->getTrace(); + + if (count($trace) >= 3) { + $msg .= " at {$trace[2]['file']}:{$trace[1]['line']} {$trace[2]['function']}()"; + } + } else { + + // PDO layer error + $msg = "Database Error (" . $e->getCode() . ") '" . $e->getMessage() . "'"; + $trace = $e->getTrace(); + + if (count($trace) >= 3) { + $msg .= " at {$trace[1]['file']}:{$trace[1]['line']} {$trace[1]['function']}()"; + } + } + + return $msg; +} From b37cdf72616ec357b7c90a1b599a3c358c5b9e79 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Wed, 27 May 2020 11:13:01 -0400 Subject: [PATCH 28/63] moved AppKernelIngestor.php to class/AppKernel --- classes/{ => AppKernel}/AppKernelIngestor.php | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename classes/{ => AppKernel}/AppKernelIngestor.php (100%) diff --git a/classes/AppKernelIngestor.php b/classes/AppKernel/AppKernelIngestor.php similarity index 100% rename from classes/AppKernelIngestor.php rename to classes/AppKernel/AppKernelIngestor.php From 24f53feb6270f1392c0f92e32762c8a8647052d3 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Thu, 28 May 2020 20:39:24 -0400 Subject: [PATCH 29/63] finished moving bin/xdmod-akrr-ingestor to classes/AppKernel/AppKernelIngestor.php --- bin/xdmod-akrr-ingestor | 877 +----------- classes/AppKernel/AppKernelIngestor.php | 1715 ++++++++++------------- 2 files changed, 790 insertions(+), 1802 deletions(-) diff --git a/bin/xdmod-akrr-ingestor b/bin/xdmod-akrr-ingestor index d70e0b7..f89fca7 100755 --- a/bin/xdmod-akrr-ingestor +++ b/bin/xdmod-akrr-ingestor @@ -14,67 +14,11 @@ * @author Jeffrey T. Palmer */ -require_once __DIR__ . '/../configuration/linker.php'; +#require_once __DIR__ . '/../configuration/linker.php'; +require_once '/usr/share/xdmod/configuration/linker.php'; use CCR\Log; -use AppKernel\AppKernelDb; -use AppKernel\IngestionLogEntry; -use AppKernel\InstanceData; - -/** - * Explorer class to query and parse the deployment engine. - * - * NOTE: This should be renamed to Akrr or AKRR. - * - * @var string - */ -$explorerType = 'Arr'; - -/** - * Database handle. - * - * @var AppKernelDb|null - */ -$db = null; - -/** - * Logs for data on the ingestion process. - * - * @var IngestionLogEntry|null - */ -$ingestionLog = null; - -// Various flags. - -/** - * Calculate controls if true. - * - * @var bool - */ -$calculateControls = false; - -/** - * Recalculate the controls and control intervals - * - * @var bool - */ -$recalculateControls = false; - -/** - * Operate in dry-run mode. Query and parse files but do not update the - * database in any way. - * - * @var bool - */ -$dryRunMode = false; - -/** - * Use replace statements to replace duplicate metric/intance data. - * Default behavior is to ignore duplicates. - * - * @var bool - */ -$replace = false; +use AppKernel\AppKernelIngestor; /** * Log level determined by "verbose", "debug" and "quiet". @@ -83,139 +27,28 @@ $replace = false; */ $logLevel = -1; -// Load timeframe options. - -/** - * Ingestion start timestamp. - * - * @var int|null - */ -$startTimestamp = null; - -/** - * Ingestion end timestamp. - * - * @var int|null - */ -$endTimestamp = null; - -/** - * A time period to use for ingestion. - * - * @see $validTimeframes - * - * @var string|null - */ -$sinceLastLoadTime = null; - -/** - * Ingestion timeperiod used in log messages. - * - * @var string - */ -$ingestionTimePeriodStr = ''; - -// Loading restrictions - -/** - * If set, the app kernel to ingest. - * - * @var string|null - */ -$restrictToAppKernel = null; - -/** - * If set, the resource to ingest. - * - * @var string|null - */ -$restrictToResource = null; - -/** - * Deployment engine explorer. - * - * @var \AppKernel\iAppKernelExplorer - */ -$deploymentExplorer = null; - -/** - * List of enabled resources from the app kernel database. - * - * @var array - */ -$dbResourceList = array(); - -/** - * Number of app kernels ingested. - * - * This is not currently used. - * - * @var int - */ -$appKernelCounter = 0; - -// Structures to keep track of data for reporting ingestion results. - -/** - * App kernel reports for each resource. - * - * @var array - */ -$appKernelReport = array(); - -/** - * Summary of app kernel ingestion. - * - * @var array - */ -$appKernelSummaryReport = array( - 'examined' => 0, - 'loaded' => 0, - 'incomplete' => 0, - 'parse_error' => 0, - 'queued' => 0, - 'unknown_type' => 0, - 'sql_error' => 0, - 'error' => 0, - 'duplicate' => 0, - 'exception' => 0, -); - -/** - * List of all enabled resources to query. - * - * @var array - */ -$resourceNicknames = array(); - -/** - * Timeframes available for the "last N" option - * - * @var array - */ -$validTimeframes = array( - 'hour' => 3600, - 'day' => 86400, - 'week' => 604800, - 'month' => 2618784, - - // All data since the last successful load recorded in the database - 'load' => null, -); - -/** - * Remove ingested data for given time period prior to reingesting it. - * - * @var bool - */ -$removeIngestedData = false; - -/** - * Offset the ingesting starting date by "o" days. - * - * @var int - */ -$offsetStartTimestampBy = 0; +$ingestingConfig = [ + /** @var bool Operate in dry-run mode. Query and parse files but do not update the database in any way. */ + 'dryRunMode' => false, + /** @var int|null Ingestion start timestamp. */ + 'startTimestamp' => null, + /** @var int|null Ingestion end timestamp. */ + 'endTimestamp' => null, + /** @var string|null A time period to use for ingestion. */ + 'sinceLastLoadTime' => null, + /** @var int Offset the ingesting starting date by "o" days. */ + 'offsetStartTimestampBy' => 0, + /** @var string|null If set, the resource to ingest. */ + 'restrictToAppKernel' => null, + /** @var string|null If set, the app kernel to ingest. */ + 'restrictToResource' => null, + /** @var bool Remove ingested data for given time period prior to reingesting it. */ + 'removeIngestedData' => false, + /** @var bool Use replace statements to replace duplicate metric/intance data. Default behavior is to ignore duplicates. */ + 'replace' => false, + /** @var bool Recalculate the controls and control intervals */ + 'recalculateControls' => false, +]; /** * Parse command line options. @@ -225,9 +58,6 @@ $offsetStartTimestampBy = 0; $options = array( 'h' => 'help', - // Calculate running averages and controls - 'c' => 'calculate-controls', - // Re-calculate running averages, control and control intervals 'y' => 're-calculate-controls', @@ -272,22 +102,18 @@ $args = getopt(implode('', array_keys($options)), $options); foreach ($args as $arg => $value) { switch ($arg) { - case 'c': - case 'calculate-controls': - $calculateControls = true; - break; case 'y': case 're-calculate-controls': - $recalculateControls = true; + $ingestingConfig['recalculateControls'] = true; break; case 'e': case 'end': $value = trim($value); if (!preg_match("/^[0-9]+$/", $value)) { // End of the day - $endTimestamp = strtotime($value) + 86399; + $ingestingConfig['endTimestamp'] = strtotime($value) + 86399; } else { - $endTimestamp = $value; + $ingestingConfig['endTimestamp'] = $value; } break; case 'd': @@ -297,7 +123,7 @@ foreach ($args as $arg => $value) { break; case 'r': case 'replace': - $replace = true; + $ingestingConfig['replace'] = true; break; case 'h': case 'help': @@ -305,32 +131,32 @@ foreach ($args as $arg => $value) { break; case 'k': case 'kernel': - $restrictToAppKernel = $value; + $ingestingConfig['restrictToAppKernel'] = $value; break; case 'l': case 'since-last': - $sinceLastLoadTime = $value; + $ingestingConfig['sinceLastLoadTime'] = $value; break; case 'R': case 'resource': - $restrictToResource = $value; + $ingestingConfig['restrictToResource'] = $value; break; case 's': case 'start': $value = trim($value); if (!preg_match("/^[0-9]+$/", $value)) { - $startTimestamp = strtotime($value); + $ingestingConfig['startTimestamp'] = strtotime($value); } else { - $startTimestamp = $value; + $ingestingConfig['startTimestamp'] = $value; } break; case 'm': case 'remove': - $removeIngestedData = true; + $ingestingConfig['removeIngestedData'] = true; break; case 'o': case 'offset': - $offsetStartTimestampBy = intval($value) * 3600 * 24; + $ingestingConfig['offsetStartTimestampBy'] = intval($value) * 3600 * 24; break; case 'q': case 'quiet': @@ -348,594 +174,51 @@ foreach ($args as $arg => $value) { } } -// Verify arguments -// // The "load since last" flag or start/end flags must be specified. If // start/end is specified only one is required. - -if (null !== $sinceLastLoadTime) { - if (!array_key_exists($sinceLastLoadTime, $validTimeframes)) { - usage_and_exit("Invalid timeframe for -l option. Valid timeframes are: " . implode(", ", array_keys($validTimeframes))); +if ($ingestingConfig['sinceLastLoadTime'] !== null) { + if (!array_key_exists($ingestingConfig['sinceLastLoadTime'], AppKernelIngestor::$validTimeframes)) { + usage_and_exit("Invalid timeframe for -l option. Valid timeframes are: " . implode(", ", + array_keys(AppKernelIngestor::$validTimeframes))); } } else { - if (null === $startTimestamp && null === $endTimestamp) { + if ($ingestingConfig['startTimestamp'] === null && $ingestingConfig['endTimestamp'] === null) { usage_and_exit("Time period not specified"); - } elseif (null !== $startTimestamp && !preg_match("/^[0-9]+$/", $startTimestamp)) { + } elseif ($ingestingConfig['startTimestamp'] !== null && !preg_match("/^[0-9]+$/", + $ingestingConfig['startTimestamp'])) { usage_and_exit("Start time could not be parsed"); - } elseif (null !== $endTimestamp && !preg_match("/^[0-9]+$/", $endTimestamp)) { + } elseif ($ingestingConfig['endTimestamp'] !== null && !preg_match("/^[0-9]+$/", + $ingestingConfig['endTimestamp'])) { usage_and_exit("End time is not a unix timestamp"); } } $conf = array( - 'file' => false, - 'mail' => false, + 'file' => false, + 'mail' => false, 'consoleLogLevel' => $logLevel, ); $logger = Log::factory('xdmod-akrr', $conf); -// Create handles to both databases -try { - $db = new AppKernelDb($logger, 'appkernel'); - $ingestionLog = new IngestionLogEntry(); -} catch (Exception $e) { - $logger->crit(array( - 'message' => "Error connecting to database: " . $e->getMessage(), - 'stacktrace' => $e->getTraceAsString(), - )); - cleanup_and_exit(1); -} - -// Determine the timeframe for the import -if ($sinceLastLoadTime) { - $endTimestamp = time(); - - if ("load" == $sinceLastLoadTime) { - // Load the last ingestion time fron the database. The production database takes priority. - $loaded = $db->loadMostRecentIngestionLogEntry($ingestionLog); - $startTimestamp = $ingestionLog->end_time + 1; - } else { - $startTimestamp = $endTimestamp - $validTimeframes[$sinceLastLoadTime]; - } -} - -if (null !== $startTimestamp && null === $endTimestamp) { - $endTimestamp = time(); -} - -// offset the start time -$startTimestamp -= $offsetStartTimestampBy; - -// NOTE: "process_start_time" is needed for the log summary. -$logger->notice(array( - 'message' => 'Ingestion start', - 'process_start_time' => date('Y-m-d H:i:s'), -)); - -if ($dryRunMode) { - $logger->info("OPTION: Running in dryrun mode - discarding database updates"); -} - -if (null !== $restrictToResource) { - $logger->info("OPTION: Load only resource (nickname) '$restrictToResource'"); -} - -if (null !== $restrictToAppKernel) { - $logger->info("OPTION: Load only app kernels starting with '$restrictToAppKernel'"); -} - -$ingestionTimePeriodStr - = date("Y-m-d H:i:s", $startTimestamp) - . " to " - . date("Y-m-d H:i:s", $endTimestamp); - -$logger->notice(array( - 'message' => 'Ingestion data time period', - 'data_start_time' => date("Y-m-d H:i:s", $startTimestamp), - 'data_end_time' => date("Y-m-d H:i:s", $endTimestamp), -)); - -// Reset and initialize the ingestion logs -$ingestionLog->reset(); -$ingestionLog->source = $explorerType; -$ingestionLog->url = null; -$ingestionLog->last_update = time(); -$ingestionLog->start_time = $startTimestamp; -$ingestionLog->end_time = $endTimestamp; - -// Instantiate the Explorer -try { - $config = array( - 'config_appkernel' => 'appkernel', - 'config_akrr' => 'akrr-db', - 'add_supremm_metrix' => false, - ); - $deploymentExplorer = AppKernel::explorer($explorerType, $config, $logger); - $deploymentExplorer->setQueryInterval($startTimestamp, $endTimestamp); -} catch (Exception $e) { - $msg = "Error creating explorer ($explorerType): " . $e->getMessage(); - $logger->crit(array( - 'message' => $msg, - 'stacktrace' => $e->getTraceAsString(), - )); - $ingestionLog->setStatus(false, $msg); - cleanup_and_exit(1); -} - -// Instantiate the Parser +// Run Ingestion try { - $parser = AppKernel::parser($explorerType, null, $logger); + $appKernelIngestor = new AppKernelIngestor($logger, $config = $ingestingConfig); + $success = $appKernelIngestor->run(); } catch (Exception $e) { - $msg = "Error creating parser ($explorerType): " . $e->getMessage(); - $logger->crit(array( - 'message' => $msg, - 'stacktrace' => $e->getTraceAsString(), - )); - $ingestionLog->setStatus(false, $msg); - cleanup_and_exit(1); -} - -// Get enabled resources configured in the app kernel database - -// If we are restricting the resource do it now -$options = array('inc_hidden' => true); -if (null !== $restrictToResource) { - $options['filter' ] = $restrictToResource; -} - -try { - $dbResourceList = $db->loadResources($options); - $logger->debug("Loaded database resources: " . json_encode(array_keys($dbResourceList))); -} catch (\PDOException $e) { - $msg = "Error querying database for resoures: " . formatPdoExceptionMessage($e); - $logger->crit(array( - 'message' => $msg, - 'stacktrace' => $e->getTraceAsString(), - )); - $ingestionLog->setStatus(false, $msg); - cleanup_and_exit(1); -} - -if (0 == count($dbResourceList)) { - $msg = "No resources enabled in the database, skipping import."; - $logger->warning($msg); - $ingestionLog->setStatus(true, $msg); - cleanup_and_exit(1); -} - -try { - $dbAKList = $db->loadAppKernelDefinitions(); - $dbAKIdMap = $db->loadAppKernels(true, true); - $logger->debug('DB AK List: ' . json_encode($dbAKList)); - $logger->debug('DB AK ID Map: ' . json_encode($dbAKIdMap)); -} catch (\PDOException $e) { - $msg = "Error querying database for appkernels: " . formatPdoExceptionMessage($e); $logger->crit(array( - 'message' => $msg, + 'message' => "Error in Appkernel Ingestion: " . $e->getMessage(), 'stacktrace' => $e->getTraceAsString(), )); - $ingestionLog->setStatus(false, $msg); cleanup_and_exit(1); } -$resourceNicknames = array_keys($dbResourceList); - -// remove old ingested data -if ($removeIngestedData === true) { - $logger->notice('Removing old ingested data (if present) in new ingestion period'); - - $akdb = $db->getDB(); - - $sqlcond - = "collected >= '" . date("Y-m-d H:i:s", $startTimestamp) - . "' AND collected <= '" . date("Y-m-d H:i:s", $endTimestamp) . "'"; - $sqlcondUNIX_TIMESTAMP - = "collected >= UNIX_TIMESTAMP('" - . date("Y-m-d H:i:s", $startTimestamp) - . "') AND collected <= UNIX_TIMESTAMP('" - . date("Y-m-d H:i:s", $endTimestamp) . "')"; - - if ($restrictToResource!==null){ - $sqlcond .= " AND resource_id = '" - . $dbResourceList[$restrictToResource]->id . "'"; - $sqlcondUNIX_TIMESTAMP .= " AND resource_id = '" - . $dbResourceList[$restrictToResource]->id . "'"; - } - - $sqlAKDefcond = ""; - $sqlAKcond = ""; - $sqlNumUnitsCond = ""; - - if ($restrictToAppKernel !== null) { - $sqlAKDefcond .= " AND ak_def_id = '" - . $dbAKList[$restrictToAppKernel]->id . "'"; - - $m_aks = array(); - $m_num_units = array(); - - $response = $akdb->query("SELECT ak_id, num_units FROM mod_appkernel.app_kernel WHERE ak_def_id='" . $dbAKList[$restrictToAppKernel]->id . "'"); - - foreach ($response as $v) { - $m_aks[] = "ak_id='" . $v['ak_id'] . "'"; - $m_num_units[] = "num_units=" . $v['num_units'] . ""; - } - $sqlAKcond = " AND (" . implode(" OR ", $m_aks) . ")"; - $sqlNumUnitsCond = " AND (" . implode(" OR ", $m_num_units) . ")"; - } - $akdb->execute("DELETE FROM mod_appkernel.metric_data WHERE " . $sqlcond . $sqlAKcond); - $logger->info("SELECT * FROM mod_appkernel.metric_data WHERE " . $sqlcond . $sqlAKcond); - $akdb->execute("DELETE FROM mod_appkernel.parameter_data WHERE " . $sqlcond . $sqlAKcond); - $akdb->execute("DELETE FROM mod_appkernel.ak_instance_debug WHERE " . $sqlcond . $sqlAKcond); - $akdb->execute("DELETE FROM mod_appkernel.ak_instance WHERE " . $sqlcond . $sqlAKcond); - $akdb->execute("DELETE FROM mod_appkernel.a_data WHERE " . $sqlcondUNIX_TIMESTAMP . $sqlAKDefcond . $sqlNumUnitsCond); - $akdb->execute("DELETE FROM mod_appkernel.a_data2 WHERE " . $sqlcondUNIX_TIMESTAMP . $sqlAKDefcond . $sqlNumUnitsCond); - $logger->info("SELECT * FROM mod_appkernel.a_data2 WHERE " . $sqlcondUNIX_TIMESTAMP . $sqlAKDefcond . $sqlNumUnitsCond); -} - -// Iterate over each resource and query for all app kernels for that -// resource and time period. Use a single AppKernelData object and -// re-initialize it for each app kernel instance. This'll keep us lean -// and mean. -$parsedInstanceData = new InstanceData(); -$logger->info("Start processing application kernel data"); - -if (null !== $restrictToAppKernel) { - $logger->info("Restrict to app kernels containing string '$restrictToAppKernel'"); -} - -foreach ($resourceNicknames as $resourceNickname) { - $logger->info("Start resource: $resourceNickname"); - - $resourceReport = array(); - $resource_id = $dbResourceList[$resourceNickname]->id; - $resource_name = $dbResourceList[$resourceNickname]->name; - $resource_nickname = $dbResourceList[$resourceNickname]->nickname; - $resource_visible = $dbResourceList[$resourceNickname]->visible; - - $options = array('resource' => $resourceNickname); - - if (null !== $restrictToAppKernel) { - $options['app_kernel'] = $restrictToAppKernel; - } - - $instanceList = array(); - - try { - $instanceListGroupedByAK = $deploymentExplorer->getAvailableInstances($options, true); - $numInstances = 0; - - foreach ($instanceListGroupedByAK as $ak_basename => $instanceListGroupedByNumUnits) { - foreach ($instanceListGroupedByNumUnits as $num_units => $instanceList) { - $numInstances += count($instanceList); - } - } - - $msg = "Resource: $resourceNickname found $numInstances instances"; - if (0 == $numInstances) { - $logger->warning("$msg from $ingestionTimePeriodStr"); - } else { - $logger->info($msg); - } - } catch (Exception $e) { - $msg = "Error retrieving app kernel instances: " . $e->getMessage(); - $logger->crit(array( - 'message' => $msg, - 'stacktrace' => $e->getTraceAsString(), - )); - } - - foreach ($instanceListGroupedByAK as $ak_basename => $instanceListGroupedByNumUnits) { - $logger->debug("Current AK: $ak_basename"); - - if (!isset($dbAKList[$ak_basename])) { - $logger->warning("$ak_basename not in AK list"); - #continue; - } - - $ak_def_id = $dbAKList[$ak_basename]->id; - $ak_name = $dbAKList[$ak_basename]->name; - $processor_unit = $dbAKList[$ak_basename]->processor_unit; - $ak_def_visible = $dbAKList[$ak_basename]->visible; - - foreach ($instanceListGroupedByNumUnits as $num_units => $instanceList) { - if (!isset($dbAKIdMap[$ak_basename])) { - $logger->warning("$ak_basename not in AK id map"); - #continue; - } - - $ak_id = $dbAKIdMap[$ak_basename][$num_units]; - - foreach ($instanceList as $instanceId => $akInstance) { - $logger->info("Processing $akInstance"); - - if (!isset($resourceReport[$akInstance->akNickname])) { - $resourceReport[$akInstance->akNickname] = array( - 'examined' => 0, - 'loaded' => 0, - 'incomplete' => 0, - 'parse_error' => 0, - 'queued' => 0, - 'error' => 0, - 'sql_error' => 0, - 'unknown_type' => 0, - 'duplicate' => 0, - 'exception' => 0, - ); - } - - $resourceReport[$akInstance->akNickname]['examined']++; - $appKernelSummaryReport['examined']++; - - try { - try { - - // The parser should throw 4 types of exception: general, inca error, queued job, invalid xml - $success = $parser->parse($akInstance, $parsedInstanceData); - - // Set some data that will be needed for adding metrics and parameters - // TODO These should be preset during InstanceData &$ak query - $parsedInstanceData->db_resource_id = $resource_id; - $parsedInstanceData->db_resource_name = $resource_name; - $parsedInstanceData->db_resource_nickname = $resource_nickname; - $parsedInstanceData->db_resource_visible = $resource_visible; - $parsedInstanceData->db_proc_unit_type = $processor_unit; - $parsedInstanceData->db_ak_id = $ak_id; - $parsedInstanceData->db_ak_def_id = $ak_def_id; - $parsedInstanceData->db_ak_def_name = $ak_name; - $parsedInstanceData->db_ak_def_visible = $ak_def_visible; - } catch(AppKernel\AppKernelException $e) { - $msg = $e->getMessage(); - - // Handle errors during parsing. In most cases log the error, increment - // a counter, and skip the saving of the data. - - switch ($e->getCode()) { - case AppKernel\AppKernelException::ParseError: - $resourceReport[$akInstance->akNickname]['parse_error']++; - $appKernelSummaryReport['parse_error']++; - $logger->err("Parse error: '$msg'"); - $logger->debug("Raw instance data:\n{$akInstance->data}\n"); - continue; - break; - case AppKernel\AppKernelException::Queued: - $resourceReport[$akInstance->akNickname]['queued']++; - $appKernelSummaryReport['queued']++; - $logger->notice("Queued: '$msg'"); - continue; - break; - case AppKernel\AppKernelException::Error: - $resourceReport[$akInstance->akNickname]['error']++; - $appKernelSummaryReport['error']++; - $logger->err("Error: '$msg'"); - continue; - break; - case AppKernel\AppKernelException::UnknownType: - $resourceReport[$akInstance->akNickname]['unknown_type']++; - $appKernelSummaryReport['unknown_type']++; - $logger->warning("Unknown Type: '$msg'"); - continue; - break; - default: - $logger->err(array( - 'message' => "AppKernelException: '$msg'", - 'stacktrace' => $e->getTraceAsString(), - )); - continue; - break; - } - } - - $logger->debug(print_r($parsedInstanceData, 1)); - - // Store data in the appropriate databases. Need a - // better way to handle errors here so we know what - // actually happened. Use AppKernelException!! - try { - $add_to_a_data = true; - $calc_controls = true; - - if (array_key_exists($resourceNickname, $dbResourceList)) { - $stored = $db->storeAppKernelInstance( - $parsedInstanceData, - $replace, - $add_to_a_data, - $calc_controls, - $dryRunMode - ); - } - } catch (AppKernel\AppKernelException $e) { - switch ($e->getCode()) { - case AppKernel\AppKernelException::DuplicateInstance: - $resourceReport[$akInstance->akNickname]['duplicate']++; - $appKernelSummaryReport['duplicate']++; - $logger->warning($e->getMessage()); - break; - default: - $logger->warning($e->getMessage()); - break; - } - continue; - } - if (!$akInstance->completed) { - $logger->err("$akInstance did not complete. message: '{$akInstance->message}'"); - $logger->debug("$akInstance did not complete. message: '{$akInstance->message}', stderr: '{$akInstance->stderr}'"); - $resourceReport[$akInstance->akNickname]['incomplete']++; - $appKernelSummaryReport['incomplete']++; - } elseif (false !== $stored) { - $resourceReport[$akInstance->akNickname]['loaded']++; - $appKernelSummaryReport['loaded']++; - $appKernelCounter++; - } - } catch (\PDOException $e) { - $msg = formatPdoExceptionMessage($e); - $logger->err(array( - 'message' => $msg, - 'stacktrace' => $e->getTraceAsString(), - )); - $resourceReport[$akInstance->akNickname]['sql_error']++; - $appKernelSummaryReport['sql_error']++; - continue; - } catch (Exception $e) { - $logger->warning("Error: {$e->getMessage()} ({$e->getCode()}), skipping."); - $resourceReport[$akInstance->akNickname]['exception']++; - $appKernelSummaryReport['exception']++; - continue; - } - } - } - } - - $appKernelReport[$resourceNickname] = $resourceReport; - - $logger->info("End resource: $resourceNickname"); -} - -if (!$dryRunMode) { - $logger->info("Loaded $appKernelCounter application kernels"); - - try { - if ($calculateControls || $recalculateControls) { - $logger->info("Caculate running average and control values"); - $db->calculateControls($recalculateControls, $recalculateControls, 20, 5, $restrictToResource, $restrictToAppKernel); - } - } catch (\PDOException $e) { - $msg = formatPdoExceptionMessage($e); - $logger->err(array( - 'message' => $msg, - 'stacktrace' => $e->getTraceAsString(), - )); - } catch (Exception $e) { - $logger->err(array( - 'message' => "Error: {$e->getMessage()} ({$e->getCode()})", - 'stacktrace' => $e->getTraceAsString(), - )); - } -} - -$summaryReport - = "Summary report for " . date("Y-m-d H:i:s", $startTimestamp) - . " to " . date("Y-m-d H:i:s", $endTimestamp) . "\n" - . "examined = {$appKernelSummaryReport['examined']}, " - . "loaded = {$appKernelSummaryReport['loaded']}, " - . "incomplete = {$appKernelSummaryReport['incomplete']}, " - . "parse error = {$appKernelSummaryReport['parse_error']}, " - . "queued = {$appKernelSummaryReport['queued']}, " - . "unknown type = {$appKernelSummaryReport['unknown_type']}, " - . "sql_error = {$appKernelSummaryReport['sql_error']}, " - . "error = {$appKernelSummaryReport['error']}, " - . "duplicate = {$appKernelSummaryReport['duplicate']}, " - . "exception = {$appKernelSummaryReport['exception']}\n" - . format_summary_report($appKernelReport); - -$logger->info($summaryReport); - -// NOTE: This is needed for the log summary. -$logger->notice(array( - 'message' => 'Summary data', - 'records_examined' => $appKernelSummaryReport['examined'], - 'records_loaded' => $appKernelSummaryReport['loaded'], - 'records_incomplete' => $appKernelSummaryReport['incomplete'], - 'records_parse_error' => $appKernelSummaryReport['parse_error'], - 'records_queued' => $appKernelSummaryReport['queued'], - 'records_unknown_type' => $appKernelSummaryReport['unknown_type'], - 'records_sql_error' => $appKernelSummaryReport['sql_error'], - 'records_error' => $appKernelSummaryReport['error'], - 'records_duplicate' => $appKernelSummaryReport['duplicate'], - 'records_exception' => $appKernelSummaryReport['exception'] -)); - -// Test sending errors and queued info - -$ingestionLog->num = $appKernelCounter; - -if (0 == $appKernelSummaryReport['sql_error']) { - $ingestionLog->setStatus(true, serialize($appKernelSummaryReport)); +if ($success) { + cleanup_and_exit(); } else { - $ingestionLog->setStatus(false, "SQL errors present"); + cleanup_and_exit(1); } -$ingestionLog->reportObj = serialize($appKernelReport); - -// NOTE: "process_end_time" is needed for the log summary. -$logger->notice(array( - 'message' => 'Ingestion End', - 'process_end_time' => date('Y-m-d H:i:s'), -)); - -cleanup_and_exit(0); - -/** - * Format the summary report. - * - * @param array $reportData - * - * @return string - */ -function format_summary_report(array $reportData) -{ - $reportString = ""; - - foreach ($reportData as $resourceNickname => $resourceData) { - $reportString .= "Resource nickname: $resourceNickname\n"; - - foreach ($resourceData as $appKernelName => $akData) { - $reportString .= " App Kernel: $appKernelName\n"; - $tmp = array(); - - foreach ($akData as $key => $value) { - $tmp[] = "$key = $value"; - } - - $reportString .= " " . implode(", ", $tmp) . "\n"; - } - } - - return $reportString; -} - -/** - * Format the error report. - * - * @param array $reportData - * - * @return string - */ -function format_error_report(array $reportData) -{ - $reportString = ""; - - foreach ($reportData as $resourceNickname => $resourceData) { - $reportString .= "\nResource nickname: $resourceNickname\n"; - - foreach ($resourceData as $appKernelName => $info) { - $reportString - .= " App kernel: $appKernelName (errors = " - . (isset($info['error']) ? count($info['error']) : 0) - . ", queued = " - . (isset($info['queued']) ? count($info['queued']) : 0) - . ")\n"; - - if (isset($info['error'])) { - $reportString .= " Errors:\n"; - - foreach ($info['error'] as $value) { - $reportString .= " $value\n"; - } - } - - if (isset($info['queued'])) { - $reportString .= " Queued:\n"; - - foreach ($info['queued'] as $value) { - $reportString .= " $value\n"; - } - } - } - } - - return $reportString; -} /** * Display usage text and exit. @@ -979,9 +262,6 @@ Usage: xdmod-akrr-ingestor [[-l *timeframe*]|[-s *start-date*] [-e *end-date*]] Remove ingested data for given time period prior to reingesting it. - -c, --calculate-controls - Calculate the running average and control values. - -y, --re-calculate-controls Re-calculate the running average, control values and control intervals. @@ -1017,7 +297,6 @@ regions. xdmod-akrr-ingestor -v -c -l load - EOF; cleanup_and_exit(1); @@ -1028,14 +307,13 @@ EOF; * * @param int $exitCode Optional exit code. */ + function cleanup_and_exit($exitCode = 0) { - global $dryRunMode, $ingestionLog, $logger, $db; + global $appKernelIngestor, $logger; - if (!$dryRunMode) { - if ($db instanceof \AppKernel\AppKernelDb) { - $db->storeIngestionLogEntry($ingestionLog); - } + if ($appKernelIngestor !== null) { + unset($appKernelIngestor); } if ($logger instanceof \Log) { @@ -1045,42 +323,3 @@ function cleanup_and_exit($exitCode = 0) exit($exitCode); } -/** - * Format a PDO exception message. - * - * @param PDOException $e - * - * @return string - */ -function formatPdoExceptionMessage(PDOException $e) -{ - $msg = ""; - - // If there are 3 elements in the errorInfo array we can assume - // that this was a driver error so display a useful message instead - // of the generic PDO message. - - if (3 == count($e->errorInfo)) { - - // MySQL error - list ($sqlstate, $driverCode, $driverMsg) = $e->errorInfo; - - $msg = "Database Error ($driverCode): '$driverMsg'"; - $trace = $e->getTrace(); - - if (count($trace) >= 3) { - $msg .= " at {$trace[2]['file']}:{$trace[1]['line']} {$trace[2]['function']}()"; - } - } else { - - // PDO layer error - $msg = "Database Error (" . $e->getCode() . ") '" . $e->getMessage() . "'"; - $trace = $e->getTrace(); - - if (count($trace) >= 3) { - $msg .= " at {$trace[1]['file']}:{$trace[1]['line']} {$trace[1]['function']}()"; - } - } - - return $msg; -} diff --git a/classes/AppKernel/AppKernelIngestor.php b/classes/AppKernel/AppKernelIngestor.php index d70e0b7..4f29fde 100644 --- a/classes/AppKernel/AppKernelIngestor.php +++ b/classes/AppKernel/AppKernelIngestor.php @@ -1,1086 +1,835 @@ -#!/usr/bin/env php - */ -require_once __DIR__ . '/../configuration/linker.php'; +namespace AppKernel; use CCR\Log; -use AppKernel\AppKernelDb; -use AppKernel\IngestionLogEntry; -use AppKernel\InstanceData; - -/** - * Explorer class to query and parse the deployment engine. - * - * NOTE: This should be renamed to Akrr or AKRR. - * - * @var string - */ -$explorerType = 'Arr'; - -/** - * Database handle. - * - * @var AppKernelDb|null - */ -$db = null; - -/** - * Logs for data on the ingestion process. - * - * @var IngestionLogEntry|null - */ -$ingestionLog = null; - -// Various flags. - -/** - * Calculate controls if true. - * - * @var bool - */ -$calculateControls = false; - -/** - * Recalculate the controls and control intervals - * - * @var bool - */ -$recalculateControls = false; - -/** - * Operate in dry-run mode. Query and parse files but do not update the - * database in any way. - * - * @var bool - */ -$dryRunMode = false; - -/** - * Use replace statements to replace duplicate metric/intance data. - * Default behavior is to ignore duplicates. - * - * @var bool - */ -$replace = false; - -/** - * Log level determined by "verbose", "debug" and "quiet". - * - * @var int - */ -$logLevel = -1; - -// Load timeframe options. - -/** - * Ingestion start timestamp. - * - * @var int|null - */ -$startTimestamp = null; - -/** - * Ingestion end timestamp. - * - * @var int|null - */ -$endTimestamp = null; +use AppKernel; -/** - * A time period to use for ingestion. - * - * @see $validTimeframes - * - * @var string|null - */ -$sinceLastLoadTime = null; - -/** - * Ingestion timeperiod used in log messages. - * - * @var string - */ -$ingestionTimePeriodStr = ''; - -// Loading restrictions - -/** - * If set, the app kernel to ingest. - * - * @var string|null - */ -$restrictToAppKernel = null; - -/** - * If set, the resource to ingest. - * - * @var string|null - */ -$restrictToResource = null; - -/** - * Deployment engine explorer. - * - * @var \AppKernel\iAppKernelExplorer - */ -$deploymentExplorer = null; - -/** - * List of enabled resources from the app kernel database. - * - * @var array - */ -$dbResourceList = array(); - -/** - * Number of app kernels ingested. - * - * This is not currently used. - * - * @var int - */ -$appKernelCounter = 0; - -// Structures to keep track of data for reporting ingestion results. +//use AppKernel\AppKernelDb; +//use AppKernel\IngestionLogEntry; +//use AppKernel\InstanceData; +use Exception; /** - * App kernel reports for each resource. - * - * @var array + * Class AppKernelIngestor + * @package AppKernel */ -$appKernelReport = array(); - -/** - * Summary of app kernel ingestion. - * - * @var array - */ -$appKernelSummaryReport = array( - 'examined' => 0, - 'loaded' => 0, - 'incomplete' => 0, - 'parse_error' => 0, - 'queued' => 0, - 'unknown_type' => 0, - 'sql_error' => 0, - 'error' => 0, - 'duplicate' => 0, - 'exception' => 0, -); - -/** - * List of all enabled resources to query. - * - * @var array - */ -$resourceNicknames = array(); - -/** - * Timeframes available for the "last N" option - * - * @var array - */ -$validTimeframes = array( - 'hour' => 3600, - 'day' => 86400, - 'week' => 604800, - 'month' => 2618784, - - // All data since the last successful load recorded in the database - 'load' => null, -); - -/** - * Remove ingested data for given time period prior to reingesting it. - * - * @var bool - */ -$removeIngestedData = false; - -/** - * Offset the ingesting starting date by "o" days. - * - * @var int - */ -$offsetStartTimestampBy = 0; - -/** - * Parse command line options. - * - * @var array - */ -$options = array( - 'h' => 'help', - - // Calculate running averages and controls - 'c' => 'calculate-controls', - - // Re-calculate running averages, control and control intervals - 'y' => 're-calculate-controls', - - // Test or dry-run Mode - 'd' => 'dry-run', - - // Force replace all instance/metric data - 'r' => 'replace', - - // Start date (and optional time) for import - 's:' => 'start:', - - // End date (and optional time) for import - 'e:' => 'end:', - - // Import data using specified time period - 'l:' => 'since-last:', - - // Process only app kernels containing this string - 'k:' => 'kernel', - - // Process only the specified resource - 'R:' => 'resource', - - // Verbose mode. - 'v' => 'verbose', - - // Debug mode. - '' => 'debug', - - // Quiet mode. - 'q' => 'quiet', - - // Remove ingested data for given time period prior to reingesting it - 'm' => 'remove', - - // offset the ingesting starting date by o days - 'o:' => 'offset:', -); +class AppKernelIngestor +{ + /** + * Handle to the database resource + * + * @var \AppKernel\AppKernelDb|null + */ + private $db = null; + + /** + * Optional PEAR::Log for logging + * + * @var Log|\Log|object|null + */ + private $logger = null; + + /** + * Operate in dry-run mode. Query and parse files but do not update the + * database in any way. + * + * @var bool + */ + private $dryRunMode = false; + + /** + * Ingestion start timestamp. + * + * @var int|null + */ + private $startTimestamp = null; + + /** + * Ingestion end timestamp. + * + * @var int|null + */ + private $endTimestamp = null; + + // Loading restrictions + + /** + * If set, the app kernel to ingest. + * + * @var string|null + */ + private $restrictToAppKernel = null; + + /** + * If set, the resource to ingest. + * + * @var string|null + */ + private $restrictToResource = null; + + /** + * Remove ingested data for given time period prior to reingesting it. + * + * @var bool + */ + private $removeIngestedDataVar = false; + + /** + * Use replace statements to replace duplicate metric/intance data. + * Default behavior is to ignore duplicates. + * + * @var bool + */ + private $replace = false; + + /** + * Recalculate the controls and control intervals + * + * @var bool + */ + private $recalculateControls = false; + + /** + * Logs for data on the ingestion process. + * + * @var IngestionLogEntry|null + */ + private $ingestionLog = null; + + /** + * Number of app kernels ingested. + * + * This is not currently used. + * + * @var int + */ + private $appKernelCounter = 0; + + /** + * Explorer class to query and parse the deployment engine. + * + * NOTE: This should be renamed to Akrr or AKRR. + * + * @var string + */ + private $explorerType = 'Arr'; + + /** + * List of enabled resources from the app kernel database. + * + * @var array + */ + private $dbResourceList = []; + private $dbAKList = []; + private $dbAKIdMap = []; + + /** + * Deployment engine explorer. + * + * @var \AppKernel\iAppKernelExplorer + */ + private $deploymentExplorer = null; + private $parser = null; + /** + * Summary of app kernel ingestion. + * + * @var array + */ + private $appKernelSummaryReport = array( + 'examined' => 0, + 'loaded' => 0, + 'incomplete' => 0, + 'parse_error' => 0, + 'queued' => 0, + 'unknown_type' => 0, + 'sql_error' => 0, + 'error' => 0, + 'duplicate' => 0, + 'exception' => 0, + ); -$args = getopt(implode('', array_keys($options)), $options); + /** + * Timeframes available for the "last N" option + * + * @var array + */ + public static $validTimeframes = array( + 'hour' => 3600, + 'day' => 86400, + 'week' => 604800, + 'month' => 2618784, + + // All data since the last successful load recorded in the database + 'load' => null, + ); -foreach ($args as $arg => $value) { - switch ($arg) { - case 'c': - case 'calculate-controls': - $calculateControls = true; - break; - case 'y': - case 're-calculate-controls': - $recalculateControls = true; - break; - case 'e': - case 'end': - $value = trim($value); - if (!preg_match("/^[0-9]+$/", $value)) { - // End of the day - $endTimestamp = strtotime($value) + 86399; - } else { - $endTimestamp = $value; + /** + * AppKernelIngestor constructor. + * @param \Log|null $logger A Pear::Log object (http://pear.php.net/package/Log/ + * @param array $config The configuration section for ingestion + * @param bool $config ['dryRunMode'] + * @param int|null $config ['startTimestamp'] + * @param int|null $config ['endTimestamp'] + * @param string|null $config ['sinceLastLoadTime'] + * @param int $config ['offsetStartTimestampBy'] + * @param string|null $config ['restrictToAppKernel'] + * @param string|null $config ['restrictToResource'] + * @param bool $config ['removeIngestedData'] + * + * @throws Exception on incorrect config + */ + public function __construct(\Log $logger = null, $config = []) + { + $this->logger = $logger !== null ? $logger : \Log::singleton('null'); + + // set options + if (array_key_exists('dryRunMode', $config)) { + if (!is_bool($config['dryRunMode'])) { + throw new Exception("dryRunMode should be boolean!"); } - break; - case 'd': - case 'dry-run': - $dryRunMode = true; - $logLevel = max($logLevel, Log::INFO); - break; - case 'r': - case 'replace': - $replace = true; - break; - case 'h': - case 'help': - usage_and_exit(); - break; - case 'k': - case 'kernel': - $restrictToAppKernel = $value; - break; - case 'l': - case 'since-last': - $sinceLastLoadTime = $value; - break; - case 'R': - case 'resource': - $restrictToResource = $value; - break; - case 's': - case 'start': - $value = trim($value); - if (!preg_match("/^[0-9]+$/", $value)) { - $startTimestamp = strtotime($value); - } else { - $startTimestamp = $value; + $this->dryRunMode = $config['dryRunMode']; + unset($config['dryRunMode']); + } + if (array_key_exists('endTimestamp', $config)) { + if ($config['endTimestamp'] !== null && !is_integer($config['endTimestamp'])) { + throw new Exception("endTimestamp should be integer timestamp!"); } - break; - case 'm': - case 'remove': - $removeIngestedData = true; - break; - case 'o': - case 'offset': - $offsetStartTimestampBy = intval($value) * 3600 * 24; - break; - case 'q': - case 'quiet': - $logLevel = max($logLevel, Log::WARNING); - break; - case 'v': - case 'verbose': - $logLevel = max($logLevel, Log::INFO); - break; - case 'debug': - $logLevel = max($logLevel, Log::DEBUG); - break; - default: - break; - } -} - -// Verify arguments -// -// The "load since last" flag or start/end flags must be specified. If -// start/end is specified only one is required. - -if (null !== $sinceLastLoadTime) { - if (!array_key_exists($sinceLastLoadTime, $validTimeframes)) { - usage_and_exit("Invalid timeframe for -l option. Valid timeframes are: " . implode(", ", array_keys($validTimeframes))); - } -} else { - if (null === $startTimestamp && null === $endTimestamp) { - usage_and_exit("Time period not specified"); - } elseif (null !== $startTimestamp && !preg_match("/^[0-9]+$/", $startTimestamp)) { - usage_and_exit("Start time could not be parsed"); - } elseif (null !== $endTimestamp && !preg_match("/^[0-9]+$/", $endTimestamp)) { - usage_and_exit("End time is not a unix timestamp"); - } -} + $this->endTimestamp = $config['endTimestamp']; + unset($config['endTimestamp']); + } + if (array_key_exists('startTimestamp', $config)) { + if ($config['startTimestamp'] !== null && !is_integer($config['startTimestamp'])) { + throw new Exception("startTimestamp should be integer timestamp!"); + } + $this->startTimestamp = $config['startTimestamp']; + unset($config['startTimestamp']); + } + if (array_key_exists('restrictToAppKernel', $config)) { + if ($config['restrictToAppKernel'] !== null && !is_string($config['restrictToAppKernel'])) { + throw new Exception("restrictToAppKernel should be string!"); + } + $this->restrictToAppKernel = $config['restrictToAppKernel']; + unset($config['restrictToAppKernel']); + } + if (array_key_exists('restrictToResource', $config)) { + if ($config['restrictToResource'] !== null && !is_string($config['restrictToResource'])) { + throw new Exception("restrictToResource should be string!"); + } + $this->restrictToResource = $config['restrictToResource']; + unset($config['restrictToResource']); + } + if (array_key_exists('removeIngestedData', $config)) { + if (!is_bool($config['removeIngestedData'])) { + throw new Exception("removeIngestedData should be boolean!"); + } + $this->removeIngestedDataVar = $config['removeIngestedData']; + unset($config['removeIngestedData']); + } + if (array_key_exists('replace', $config)) { + if (!is_bool($config['replace'])) { + throw new Exception("replace should be boolean!"); + } + $this->replace = $config['replace']; + unset($config['replace']); + } + if (array_key_exists('recalculateControls', $config)) { + if (!is_bool($config['recalculateControls'])) { + throw new Exception("recalculateControls should be boolean!"); + } + $this->recalculateControls = $config['recalculateControls']; + unset($config['recalculateControls']); + } + /** + * A time period to use for ingestion. + * + * @see $validTimeframes + * + * @var string|null + */ + $sinceLastLoadTime = null; + if (array_key_exists('sinceLastLoadTime', $config)) { + $sinceLastLoadTime = $config['sinceLastLoadTime']; + if ($sinceLastLoadTime !== null && !array_key_exists($sinceLastLoadTime, + AppKernelIngestor::$validTimeframes)) { + throw new Exception("sinceLastLoadTime should be [hour,day,week,month,load]"); + } + unset($config['sinceLastLoadTime']); + } + /** + * Offset the ingesting starting date by "o" days. + * + * @var int + */ + $offsetStartTimestampBy = 0; + if (array_key_exists('offsetStartTimestampBy', $config)) { + $offsetStartTimestampBy = intval($config['offsetStartTimestampBy']); + unset($config['offsetStartTimestampBy']); + } -$conf = array( - 'file' => false, - 'mail' => false, - 'consoleLogLevel' => $logLevel, -); -$logger = Log::factory('xdmod-akrr', $conf); - -// Create handles to both databases -try { - $db = new AppKernelDb($logger, 'appkernel'); - $ingestionLog = new IngestionLogEntry(); -} catch (Exception $e) { - $logger->crit(array( - 'message' => "Error connecting to database: " . $e->getMessage(), - 'stacktrace' => $e->getTraceAsString(), - )); - cleanup_and_exit(1); -} + if (count($config) > 0) { + throw new Exception("Unknown config options: " . implode(",", array_keys($config))); + } -// Determine the timeframe for the import -if ($sinceLastLoadTime) { - $endTimestamp = time(); + // Create handles to both databases + $this->db = new AppKernelDb($this->logger, 'appkernel'); + $this->ingestionLog = new IngestionLogEntry(); - if ("load" == $sinceLastLoadTime) { - // Load the last ingestion time fron the database. The production database takes priority. - $loaded = $db->loadMostRecentIngestionLogEntry($ingestionLog); - $startTimestamp = $ingestionLog->end_time + 1; - } else { - $startTimestamp = $endTimestamp - $validTimeframes[$sinceLastLoadTime]; - } -} + // Determine the startTimestamp from sinceLastLoadTime the import + if ($sinceLastLoadTime !== null) { + $this->endTimestamp = time(); -if (null !== $startTimestamp && null === $endTimestamp) { - $endTimestamp = time(); -} + if ("load" == $sinceLastLoadTime) { + // Load the last ingestion time from the database. The production database takes priority. + $loaded = $this->db->loadMostRecentIngestionLogEntry($this->ingestionLog); + if ($loaded === false) { + throw new Exception("AppKernelIngestor::__construct can not load loadMostRecentIngestionLogEntry"); + } + $this->startTimestamp = $this->ingestionLog->end_time + 1; + } else { + $this->startTimestamp = $this->endTimestamp - AppKernelIngestor::$validTimeframes[$sinceLastLoadTime]; + } + } -// offset the start time -$startTimestamp -= $offsetStartTimestampBy; + if ($this->startTimestamp !== null && $this->endTimestamp === null) { + $this->endTimestamp = time(); + } -// NOTE: "process_start_time" is needed for the log summary. -$logger->notice(array( - 'message' => 'Ingestion start', - 'process_start_time' => date('Y-m-d H:i:s'), -)); + // offset the start time + $this->startTimestamp -= $offsetStartTimestampBy; -if ($dryRunMode) { - $logger->info("OPTION: Running in dryrun mode - discarding database updates"); -} -if (null !== $restrictToResource) { - $logger->info("OPTION: Load only resource (nickname) '$restrictToResource'"); -} + // Get enabled resources configured in the app kernel database -if (null !== $restrictToAppKernel) { - $logger->info("OPTION: Load only app kernels starting with '$restrictToAppKernel'"); -} + // If we are restricting the resource do it now + $options = array('inc_hidden' => true); + if ($this->restrictToResource !== null) { + $options['filter'] = $this->restrictToResource; + } -$ingestionTimePeriodStr - = date("Y-m-d H:i:s", $startTimestamp) - . " to " - . date("Y-m-d H:i:s", $endTimestamp); - -$logger->notice(array( - 'message' => 'Ingestion data time period', - 'data_start_time' => date("Y-m-d H:i:s", $startTimestamp), - 'data_end_time' => date("Y-m-d H:i:s", $endTimestamp), -)); - -// Reset and initialize the ingestion logs -$ingestionLog->reset(); -$ingestionLog->source = $explorerType; -$ingestionLog->url = null; -$ingestionLog->last_update = time(); -$ingestionLog->start_time = $startTimestamp; -$ingestionLog->end_time = $endTimestamp; - -// Instantiate the Explorer -try { - $config = array( - 'config_appkernel' => 'appkernel', - 'config_akrr' => 'akrr-db', - 'add_supremm_metrix' => false, - ); - $deploymentExplorer = AppKernel::explorer($explorerType, $config, $logger); - $deploymentExplorer->setQueryInterval($startTimestamp, $endTimestamp); -} catch (Exception $e) { - $msg = "Error creating explorer ($explorerType): " . $e->getMessage(); - $logger->crit(array( - 'message' => $msg, - 'stacktrace' => $e->getTraceAsString(), - )); - $ingestionLog->setStatus(false, $msg); - cleanup_and_exit(1); -} + try { + $this->dbResourceList = $this->db->loadResources($options); + $this->logger->debug("Loaded database resources: " . json_encode(array_keys($this->dbResourceList))); + } catch (\PDOException $e) { + $msg = "Error querying database for resoures: " . formatPdoExceptionMessage($e); + $this->logger->crit(array( + 'message' => $msg, + 'stacktrace' => $e->getTraceAsString(), + )); + $this->ingestionLog->setStatus(false, $msg); + return false; + } -// Instantiate the Parser -try { - $parser = AppKernel::parser($explorerType, null, $logger); -} catch (Exception $e) { - $msg = "Error creating parser ($explorerType): " . $e->getMessage(); - $logger->crit(array( - 'message' => $msg, - 'stacktrace' => $e->getTraceAsString(), - )); - $ingestionLog->setStatus(false, $msg); - cleanup_and_exit(1); -} + if (count($this->dbResourceList) == 0) { + $msg = "No resources enabled in the database, skipping import."; + $this->logger->warning($msg); + $this->ingestionLog->setStatus(true, $msg); + return false; + } -// Get enabled resources configured in the app kernel database + try { + $this->dbAKList = $this->db->loadAppKernelDefinitions(); + $this->dbAKIdMap = $this->db->loadAppKernels(true, true); + $this->logger->debug('DB AK List: ' . json_encode($this->dbAKList)); + $this->logger->debug('DB AK ID Map: ' . json_encode($this->dbAKIdMap)); + } catch (\PDOException $e) { + $msg = "Error querying database for appkernels: " . formatPdoExceptionMessage($e); + $this->logger->crit(array( + 'message' => $msg, + 'stacktrace' => $e->getTraceAsString(), + )); + $this->ingestionLog->setStatus(false, $msg); + return false; + } + } -// If we are restricting the resource do it now -$options = array('inc_hidden' => true); -if (null !== $restrictToResource) { - $options['filter' ] = $restrictToResource; -} + public function __destruct() + { + if ($this->dryRunMode == false && $this->db !== null && $this->ingestionLog !== null) { + if ($this->db instanceof \AppKernel\AppKernelDb) { + if ($this->ingestionLog->source !== null) { + $this->db->storeIngestionLogEntry($this->ingestionLog); + } + } + } + } -try { - $dbResourceList = $db->loadResources($options); - $logger->debug("Loaded database resources: " . json_encode(array_keys($dbResourceList))); -} catch (\PDOException $e) { - $msg = "Error querying database for resoures: " . formatPdoExceptionMessage($e); - $logger->crit(array( - 'message' => $msg, - 'stacktrace' => $e->getTraceAsString(), - )); - $ingestionLog->setStatus(false, $msg); - cleanup_and_exit(1); -} + /** + * Remove Ingested Data (For clean re-ingestion) + */ + public function removeIngestedData() + { + $this->logger->notice('Removing old ingested data (if present) in new ingestion period'); -if (0 == count($dbResourceList)) { - $msg = "No resources enabled in the database, skipping import."; - $logger->warning($msg); - $ingestionLog->setStatus(true, $msg); - cleanup_and_exit(1); -} + $akdb = $this->db->getDB(); -try { - $dbAKList = $db->loadAppKernelDefinitions(); - $dbAKIdMap = $db->loadAppKernels(true, true); - $logger->debug('DB AK List: ' . json_encode($dbAKList)); - $logger->debug('DB AK ID Map: ' . json_encode($dbAKIdMap)); -} catch (\PDOException $e) { - $msg = "Error querying database for appkernels: " . formatPdoExceptionMessage($e); - $logger->crit(array( - 'message' => $msg, - 'stacktrace' => $e->getTraceAsString(), - )); - $ingestionLog->setStatus(false, $msg); - cleanup_and_exit(1); -} + $sqlcondDatetime = "collected >= :startDateTime AND collected <= :endDateTime"; + $sqlcondTimestamp = "collected >= UNIX_TIMESTAMP(:startDateTime) AND collected <= UNIX_TIMESTAMP(:endDateTime)"; -$resourceNicknames = array_keys($dbResourceList); + $sqlcondDatetimeParam = [ + ':startDateTime' => date("Y-m-d H:i:s", $this->startTimestamp), + ':endDateTime' => date("Y-m-d H:i:s", $this->endTimestamp) + ]; -// remove old ingested data -if ($removeIngestedData === true) { - $logger->notice('Removing old ingested data (if present) in new ingestion period'); + if ($this->restrictToResource !== null) { + $sqlcondDatetime .= " AND resource_id = :resource_id"; + $sqlcondTimestamp .= " AND resource_id = :resource_id"; + $sqlcondDatetimeParam[':resource_id'] = $this->dbResourceList[$this->restrictToResource]->id; + } - $akdb = $db->getDB(); + $sqlAKDefcond = ""; + $sqlAKDefcondParam = []; + $sqlAKcond = ""; + $sqlAKcondParam = []; + $sqlNumUnitsCond = ""; + $sqlNumUnitsCondParam = []; - $sqlcond - = "collected >= '" . date("Y-m-d H:i:s", $startTimestamp) - . "' AND collected <= '" . date("Y-m-d H:i:s", $endTimestamp) . "'"; - $sqlcondUNIX_TIMESTAMP - = "collected >= UNIX_TIMESTAMP('" - . date("Y-m-d H:i:s", $startTimestamp) - . "') AND collected <= UNIX_TIMESTAMP('" - . date("Y-m-d H:i:s", $endTimestamp) . "')"; + if ($this->restrictToAppKernel !== null) { + $sqlAKDefcond .= " AND ak_def_id = :ak_def_id"; + $sqlAKDefcondParam[':ak_def_id'] = $this->dbAKList[$this->restrictToAppKernel]->id; - if ($restrictToResource!==null){ - $sqlcond .= " AND resource_id = '" - . $dbResourceList[$restrictToResource]->id . "'"; - $sqlcondUNIX_TIMESTAMP .= " AND resource_id = '" - . $dbResourceList[$restrictToResource]->id . "'"; - } + $response = $akdb->query("SELECT ak_id, num_units FROM mod_appkernel.app_kernel WHERE ak_def_id=?", + [$this->dbAKList[$this->restrictToAppKernel]->id]); - $sqlAKDefcond = ""; - $sqlAKcond = ""; - $sqlNumUnitsCond = ""; + foreach ($response as $i => $v) { + $sqlAKcondParam[':ak_id_' . $i] = $v['ak_id']; + $sqlNumUnitsCondParam[':num_units_' . $i] = $v['ak_id']; + } + $sqlAKcond = " AND ak_id IN (" . implode(",", array_keys($sqlAKcondParam)) . ")"; + $sqlNumUnitsCond = " AND num_units IN (" . implode(",", array_keys($sqlNumUnitsCondParam)) . ")"; + } - if ($restrictToAppKernel !== null) { - $sqlAKDefcond .= " AND ak_def_id = '" - . $dbAKList[$restrictToAppKernel]->id . "'"; + $sqlcond = $sqlcondDatetime . $sqlAKcond; + $sqlcondParam = array_merge($sqlcondDatetimeParam, $sqlAKcondParam); - $m_aks = array(); - $m_num_units = array(); + $akdb->execute("DELETE FROM mod_appkernel.metric_data WHERE " . $sqlcond, $sqlcondParam); + $akdb->execute("DELETE FROM mod_appkernel.parameter_data WHERE " . $sqlcond, $sqlcondParam); + $akdb->execute("DELETE FROM mod_appkernel.ak_instance_debug WHERE " . $sqlcond, $sqlcondParam); + $akdb->execute("DELETE FROM mod_appkernel.ak_instance WHERE " . $sqlcond, $sqlcondParam); - $response = $akdb->query("SELECT ak_id, num_units FROM mod_appkernel.app_kernel WHERE ak_def_id='" . $dbAKList[$restrictToAppKernel]->id . "'"); + $sqlcond = $sqlcondTimestamp . $sqlAKDefcond . $sqlNumUnitsCond; + $sqlcondParam = array_merge($sqlcondDatetimeParam, $sqlAKDefcondParam, $sqlNumUnitsCondParam); - foreach ($response as $v) { - $m_aks[] = "ak_id='" . $v['ak_id'] . "'"; - $m_num_units[] = "num_units=" . $v['num_units'] . ""; - } - $sqlAKcond = " AND (" . implode(" OR ", $m_aks) . ")"; - $sqlNumUnitsCond = " AND (" . implode(" OR ", $m_num_units) . ")"; + $akdb->execute("DELETE FROM mod_appkernel.a_data WHERE " . $sqlcond, $sqlcondParam); + $akdb->execute("DELETE FROM mod_appkernel.a_data2 WHERE " . $sqlcond, $sqlcondParam); } - $akdb->execute("DELETE FROM mod_appkernel.metric_data WHERE " . $sqlcond . $sqlAKcond); - $logger->info("SELECT * FROM mod_appkernel.metric_data WHERE " . $sqlcond . $sqlAKcond); - $akdb->execute("DELETE FROM mod_appkernel.parameter_data WHERE " . $sqlcond . $sqlAKcond); - $akdb->execute("DELETE FROM mod_appkernel.ak_instance_debug WHERE " . $sqlcond . $sqlAKcond); - $akdb->execute("DELETE FROM mod_appkernel.ak_instance WHERE " . $sqlcond . $sqlAKcond); - $akdb->execute("DELETE FROM mod_appkernel.a_data WHERE " . $sqlcondUNIX_TIMESTAMP . $sqlAKDefcond . $sqlNumUnitsCond); - $akdb->execute("DELETE FROM mod_appkernel.a_data2 WHERE " . $sqlcondUNIX_TIMESTAMP . $sqlAKDefcond . $sqlNumUnitsCond); - $logger->info("SELECT * FROM mod_appkernel.a_data2 WHERE " . $sqlcondUNIX_TIMESTAMP . $sqlAKDefcond . $sqlNumUnitsCond); -} -// Iterate over each resource and query for all app kernels for that -// resource and time period. Use a single AppKernelData object and -// re-initialize it for each app kernel instance. This'll keep us lean -// and mean. -$parsedInstanceData = new InstanceData(); -$logger->info("Start processing application kernel data"); + /** + * Ingest AppKernel Instances executed on $resourceNickname and time period. + * + * @param string $resourceNickname + * @return bool true on success + */ + public function ingestAppKernelInstances($resourceNickname) + { + // Use a single AppKernelData object and + // re-initialize it for each app kernel instance. This'll keep us lean + // and mean. -if (null !== $restrictToAppKernel) { - $logger->info("Restrict to app kernels containing string '$restrictToAppKernel'"); -} + $parsedInstanceData = new InstanceData(); -foreach ($resourceNicknames as $resourceNickname) { - $logger->info("Start resource: $resourceNickname"); + $this->logger->info("Start resource: $resourceNickname"); - $resourceReport = array(); - $resource_id = $dbResourceList[$resourceNickname]->id; - $resource_name = $dbResourceList[$resourceNickname]->name; - $resource_nickname = $dbResourceList[$resourceNickname]->nickname; - $resource_visible = $dbResourceList[$resourceNickname]->visible; + $resourceReport = array(); + $resource_id = $this->dbResourceList[$resourceNickname]->id; + $resource_name = $this->dbResourceList[$resourceNickname]->name; + $resource_nickname = $this->dbResourceList[$resourceNickname]->nickname; + $resource_visible = $this->dbResourceList[$resourceNickname]->visible; - $options = array('resource' => $resourceNickname); + $options = array('resource' => $resourceNickname); - if (null !== $restrictToAppKernel) { - $options['app_kernel'] = $restrictToAppKernel; - } + if ($this->restrictToAppKernel !== null) { + $options['app_kernel'] = $this->restrictToAppKernel; + } - $instanceList = array(); + $instanceList = array(); - try { - $instanceListGroupedByAK = $deploymentExplorer->getAvailableInstances($options, true); - $numInstances = 0; + try { + $instanceListGroupedByAK = $this->deploymentExplorer->getAvailableInstances($options, true); + $numInstances = 0; - foreach ($instanceListGroupedByAK as $ak_basename => $instanceListGroupedByNumUnits) { - foreach ($instanceListGroupedByNumUnits as $num_units => $instanceList) { - $numInstances += count($instanceList); + foreach ($instanceListGroupedByAK as $ak_basename => $instanceListGroupedByNumUnits) { + foreach ($instanceListGroupedByNumUnits as $num_units => $instanceList) { + $numInstances += count($instanceList); + } } - } - $msg = "Resource: $resourceNickname found $numInstances instances"; - if (0 == $numInstances) { - $logger->warning("$msg from $ingestionTimePeriodStr"); - } else { - $logger->info($msg); - } - } catch (Exception $e) { - $msg = "Error retrieving app kernel instances: " . $e->getMessage(); - $logger->crit(array( - 'message' => $msg, - 'stacktrace' => $e->getTraceAsString(), - )); - } - - foreach ($instanceListGroupedByAK as $ak_basename => $instanceListGroupedByNumUnits) { - $logger->debug("Current AK: $ak_basename"); - - if (!isset($dbAKList[$ak_basename])) { - $logger->warning("$ak_basename not in AK list"); - #continue; + $msg = "Resource: $resourceNickname found $numInstances instances"; + if ($numInstances == 0) { + $this->logger->warning($msg . " from " . date("Y-m-d H:i:s", $this->startTimestamp) . " to " . + date("Y-m-d H:i:s", $this->endTimestamp)); + } else { + $this->logger->info($msg); + } + } catch (Exception $e) { + $msg = "Error retrieving app kernel instances: " . $e->getMessage(); + $this->logger->crit(array( + 'message' => $msg, + 'stacktrace' => $e->getTraceAsString(), + )); + return false; } - $ak_def_id = $dbAKList[$ak_basename]->id; - $ak_name = $dbAKList[$ak_basename]->name; - $processor_unit = $dbAKList[$ak_basename]->processor_unit; - $ak_def_visible = $dbAKList[$ak_basename]->visible; + foreach ($instanceListGroupedByAK as $ak_basename => $instanceListGroupedByNumUnits) { + $this->logger->debug("Current AK: $ak_basename"); - foreach ($instanceListGroupedByNumUnits as $num_units => $instanceList) { - if (!isset($dbAKIdMap[$ak_basename])) { - $logger->warning("$ak_basename not in AK id map"); + if (!isset($dbAKList[$ak_basename])) { + $this->logger->warning("$ak_basename not in AK list"); #continue; } - $ak_id = $dbAKIdMap[$ak_basename][$num_units]; - - foreach ($instanceList as $instanceId => $akInstance) { - $logger->info("Processing $akInstance"); - - if (!isset($resourceReport[$akInstance->akNickname])) { - $resourceReport[$akInstance->akNickname] = array( - 'examined' => 0, - 'loaded' => 0, - 'incomplete' => 0, - 'parse_error' => 0, - 'queued' => 0, - 'error' => 0, - 'sql_error' => 0, - 'unknown_type' => 0, - 'duplicate' => 0, - 'exception' => 0, - ); - } - - $resourceReport[$akInstance->akNickname]['examined']++; - $appKernelSummaryReport['examined']++; + $ak_def_id = $this->dbAKList[$ak_basename]->id; + $ak_name = $this->dbAKList[$ak_basename]->name; + $processor_unit = $this->dbAKList[$ak_basename]->processor_unit; + $ak_def_visible = $this->dbAKList[$ak_basename]->visible; - try { - try { + foreach ($instanceListGroupedByNumUnits as $num_units => $instanceList) { + if (!isset($dbAKIdMap[$ak_basename])) { + $this->logger->warning("$ak_basename not in AK id map"); + #continue; + } - // The parser should throw 4 types of exception: general, inca error, queued job, invalid xml - $success = $parser->parse($akInstance, $parsedInstanceData); - - // Set some data that will be needed for adding metrics and parameters - // TODO These should be preset during InstanceData &$ak query - $parsedInstanceData->db_resource_id = $resource_id; - $parsedInstanceData->db_resource_name = $resource_name; - $parsedInstanceData->db_resource_nickname = $resource_nickname; - $parsedInstanceData->db_resource_visible = $resource_visible; - $parsedInstanceData->db_proc_unit_type = $processor_unit; - $parsedInstanceData->db_ak_id = $ak_id; - $parsedInstanceData->db_ak_def_id = $ak_def_id; - $parsedInstanceData->db_ak_def_name = $ak_name; - $parsedInstanceData->db_ak_def_visible = $ak_def_visible; - } catch(AppKernel\AppKernelException $e) { - $msg = $e->getMessage(); - - // Handle errors during parsing. In most cases log the error, increment - // a counter, and skip the saving of the data. - - switch ($e->getCode()) { - case AppKernel\AppKernelException::ParseError: - $resourceReport[$akInstance->akNickname]['parse_error']++; - $appKernelSummaryReport['parse_error']++; - $logger->err("Parse error: '$msg'"); - $logger->debug("Raw instance data:\n{$akInstance->data}\n"); - continue; - break; - case AppKernel\AppKernelException::Queued: - $resourceReport[$akInstance->akNickname]['queued']++; - $appKernelSummaryReport['queued']++; - $logger->notice("Queued: '$msg'"); - continue; - break; - case AppKernel\AppKernelException::Error: - $resourceReport[$akInstance->akNickname]['error']++; - $appKernelSummaryReport['error']++; - $logger->err("Error: '$msg'"); - continue; - break; - case AppKernel\AppKernelException::UnknownType: - $resourceReport[$akInstance->akNickname]['unknown_type']++; - $appKernelSummaryReport['unknown_type']++; - $logger->warning("Unknown Type: '$msg'"); - continue; - break; - default: - $logger->err(array( - 'message' => "AppKernelException: '$msg'", - 'stacktrace' => $e->getTraceAsString(), - )); - continue; - break; - } + $ak_id = $this->dbAKIdMap[$ak_basename][$num_units]; + + foreach ($instanceList as $instanceId => $akInstance) { + $this->logger->info("Processing $akInstance"); + + if (!isset($resourceReport[$akInstance->akNickname])) { + $resourceReport[$akInstance->akNickname] = array( + 'examined' => 0, + 'loaded' => 0, + 'incomplete' => 0, + 'parse_error' => 0, + 'queued' => 0, + 'error' => 0, + 'sql_error' => 0, + 'unknown_type' => 0, + 'duplicate' => 0, + 'exception' => 0, + ); } - $logger->debug(print_r($parsedInstanceData, 1)); + $resourceReport[$akInstance->akNickname]['examined']++; + $this->appKernelSummaryReport['examined']++; - // Store data in the appropriate databases. Need a - // better way to handle errors here so we know what - // actually happened. Use AppKernelException!! try { - $add_to_a_data = true; - $calc_controls = true; - - if (array_key_exists($resourceNickname, $dbResourceList)) { - $stored = $db->storeAppKernelInstance( - $parsedInstanceData, - $replace, - $add_to_a_data, - $calc_controls, - $dryRunMode - ); + try { + // The parser should throw 4 types of exception: general, inca error, queued job, invalid xml + $success = $this->parser->parse($akInstance, $parsedInstanceData); + + // Set some data that will be needed for adding metrics and parameters + // TODO These should be preset during InstanceData &$ak query + $parsedInstanceData->db_resource_id = $resource_id; + $parsedInstanceData->db_resource_name = $resource_name; + $parsedInstanceData->db_resource_nickname = $resource_nickname; + $parsedInstanceData->db_resource_visible = $resource_visible; + $parsedInstanceData->db_proc_unit_type = $processor_unit; + $parsedInstanceData->db_ak_id = $ak_id; + $parsedInstanceData->db_ak_def_id = $ak_def_id; + $parsedInstanceData->db_ak_def_name = $ak_name; + $parsedInstanceData->db_ak_def_visible = $ak_def_visible; + } catch (AppKernel\AppKernelException $e) { + $msg = $e->getMessage(); + + // Handle errors during parsing. In most cases log the error, increment + // a counter, and skip the saving of the data. + + switch ($e->getCode()) { + case AppKernel\AppKernelException::ParseError: + $resourceReport[$akInstance->akNickname]['parse_error']++; + $this->appKernelSummaryReport['parse_error']++; + $this->logger->err("Parse error: '$msg'"); + $this->logger->debug("Raw instance data:\n{$akInstance->data}\n"); + continue; + break; + case AppKernel\AppKernelException::Queued: + $resourceReport[$akInstance->akNickname]['queued']++; + $this->appKernelSummaryReport['queued']++; + $this->logger->notice("Queued: '$msg'"); + continue; + break; + case AppKernel\AppKernelException::Error: + $resourceReport[$akInstance->akNickname]['error']++; + $this->appKernelSummaryReport['error']++; + $this->logger->err("Error: '$msg'"); + continue; + break; + case AppKernel\AppKernelException::UnknownType: + $resourceReport[$akInstance->akNickname]['unknown_type']++; + $this->appKernelSummaryReport['unknown_type']++; + $this->logger->warning("Unknown Type: '$msg'"); + continue; + break; + default: + $this->logger->err(array( + 'message' => "AppKernelException: '$msg'", + 'stacktrace' => $e->getTraceAsString(), + )); + continue; + break; + } } - } catch (AppKernel\AppKernelException $e) { - switch ($e->getCode()) { - case AppKernel\AppKernelException::DuplicateInstance: - $resourceReport[$akInstance->akNickname]['duplicate']++; - $appKernelSummaryReport['duplicate']++; - $logger->warning($e->getMessage()); - break; - default: - $logger->warning($e->getMessage()); - break; + + $this->logger->debug(print_r($parsedInstanceData, 1)); + + // Store data in the appropriate databases. Need a + // better way to handle errors here so we know what + // actually happened. Use AppKernelException!! + try { + $add_to_a_data = true; + $calc_controls = true; + + if (array_key_exists($resourceNickname, $this->dbResourceList)) { + $stored = $this->db->storeAppKernelInstance( + $parsedInstanceData, + $this->replace, + $add_to_a_data, + $calc_controls, + $this->dryRunMode + ); + } + } catch (AppKernel\AppKernelException $e) { + switch ($e->getCode()) { + case AppKernel\AppKernelException::DuplicateInstance: + $resourceReport[$akInstance->akNickname]['duplicate']++; + $this->appKernelSummaryReport['duplicate']++; + $this->logger->warning($e->getMessage()); + break; + default: + $this->logger->warning($e->getMessage()); + break; + } + continue; } - continue; - } - if (!$akInstance->completed) { - $logger->err("$akInstance did not complete. message: '{$akInstance->message}'"); - $logger->debug("$akInstance did not complete. message: '{$akInstance->message}', stderr: '{$akInstance->stderr}'"); - $resourceReport[$akInstance->akNickname]['incomplete']++; - $appKernelSummaryReport['incomplete']++; - } elseif (false !== $stored) { - $resourceReport[$akInstance->akNickname]['loaded']++; - $appKernelSummaryReport['loaded']++; - $appKernelCounter++; + if (!$akInstance->completed) { + $this->logger->err("$akInstance did not complete. message: '{$akInstance->message}'"); + $this->logger->debug("$akInstance did not complete. message: '{$akInstance->message}', stderr: '{$akInstance->stderr}'"); + $resourceReport[$akInstance->akNickname]['incomplete']++; + $this->appKernelSummaryReport['incomplete']++; + } elseif (false !== $stored) { + $resourceReport[$akInstance->akNickname]['loaded']++; + $this->appKernelSummaryReport['loaded']++; + $this->appKernelCounter++; + } + } catch (\PDOException $e) { + $msg = formatPdoExceptionMessage($e); + $this->logger->err(array( + 'message' => $msg, + 'stacktrace' => $e->getTraceAsString(), + )); + $resourceReport[$akInstance->akNickname]['sql_error']++; + $this->appKernelSummaryReport['sql_error']++; + continue; + } catch (Exception $e) { + $this->logger->warning("Error: {$e->getMessage()} ({$e->getCode()}), skipping."); + $resourceReport[$akInstance->akNickname]['exception']++; + $this->appKernelSummaryReport['exception']++; + continue; } - } catch (\PDOException $e) { - $msg = formatPdoExceptionMessage($e); - $logger->err(array( - 'message' => $msg, - 'stacktrace' => $e->getTraceAsString(), - )); - $resourceReport[$akInstance->akNickname]['sql_error']++; - $appKernelSummaryReport['sql_error']++; - continue; - } catch (Exception $e) { - $logger->warning("Error: {$e->getMessage()} ({$e->getCode()}), skipping."); - $resourceReport[$akInstance->akNickname]['exception']++; - $appKernelSummaryReport['exception']++; - continue; } } } - } - - $appKernelReport[$resourceNickname] = $resourceReport; - - $logger->info("End resource: $resourceNickname"); -} - -if (!$dryRunMode) { - $logger->info("Loaded $appKernelCounter application kernels"); - - try { - if ($calculateControls || $recalculateControls) { - $logger->info("Caculate running average and control values"); - $db->calculateControls($recalculateControls, $recalculateControls, 20, 5, $restrictToResource, $restrictToAppKernel); - } - } catch (\PDOException $e) { - $msg = formatPdoExceptionMessage($e); - $logger->err(array( - 'message' => $msg, - 'stacktrace' => $e->getTraceAsString(), - )); - } catch (Exception $e) { - $logger->err(array( - 'message' => "Error: {$e->getMessage()} ({$e->getCode()})", - 'stacktrace' => $e->getTraceAsString(), - )); - } -} - -$summaryReport - = "Summary report for " . date("Y-m-d H:i:s", $startTimestamp) - . " to " . date("Y-m-d H:i:s", $endTimestamp) . "\n" - . "examined = {$appKernelSummaryReport['examined']}, " - . "loaded = {$appKernelSummaryReport['loaded']}, " - . "incomplete = {$appKernelSummaryReport['incomplete']}, " - . "parse error = {$appKernelSummaryReport['parse_error']}, " - . "queued = {$appKernelSummaryReport['queued']}, " - . "unknown type = {$appKernelSummaryReport['unknown_type']}, " - . "sql_error = {$appKernelSummaryReport['sql_error']}, " - . "error = {$appKernelSummaryReport['error']}, " - . "duplicate = {$appKernelSummaryReport['duplicate']}, " - . "exception = {$appKernelSummaryReport['exception']}\n" - . format_summary_report($appKernelReport); - -$logger->info($summaryReport); - -// NOTE: This is needed for the log summary. -$logger->notice(array( - 'message' => 'Summary data', - 'records_examined' => $appKernelSummaryReport['examined'], - 'records_loaded' => $appKernelSummaryReport['loaded'], - 'records_incomplete' => $appKernelSummaryReport['incomplete'], - 'records_parse_error' => $appKernelSummaryReport['parse_error'], - 'records_queued' => $appKernelSummaryReport['queued'], - 'records_unknown_type' => $appKernelSummaryReport['unknown_type'], - 'records_sql_error' => $appKernelSummaryReport['sql_error'], - 'records_error' => $appKernelSummaryReport['error'], - 'records_duplicate' => $appKernelSummaryReport['duplicate'], - 'records_exception' => $appKernelSummaryReport['exception'] -)); - -// Test sending errors and queued info - -$ingestionLog->num = $appKernelCounter; - -if (0 == $appKernelSummaryReport['sql_error']) { - $ingestionLog->setStatus(true, serialize($appKernelSummaryReport)); -} else { - $ingestionLog->setStatus(false, "SQL errors present"); -} - -$ingestionLog->reportObj = serialize($appKernelReport); - -// NOTE: "process_end_time" is needed for the log summary. -$logger->notice(array( - 'message' => 'Ingestion End', - 'process_end_time' => date('Y-m-d H:i:s'), -)); - -cleanup_and_exit(0); - -/** - * Format the summary report. - * - * @param array $reportData - * - * @return string - */ -function format_summary_report(array $reportData) -{ - $reportString = ""; - - foreach ($reportData as $resourceNickname => $resourceData) { - $reportString .= "Resource nickname: $resourceNickname\n"; - foreach ($resourceData as $appKernelName => $akData) { - $reportString .= " App Kernel: $appKernelName\n"; - $tmp = array(); + $appKernelReport[$resourceNickname] = $resourceReport; - foreach ($akData as $key => $value) { - $tmp[] = "$key = $value"; - } + $this->logger->info("End resource: $resourceNickname"); - $reportString .= " " . implode(", ", $tmp) . "\n"; - } + unset($parsedInstanceData); + return true; } - return $reportString; -} - -/** - * Format the error report. - * - * @param array $reportData - * - * @return string - */ -function format_error_report(array $reportData) -{ - $reportString = ""; - - foreach ($reportData as $resourceNickname => $resourceData) { - $reportString .= "\nResource nickname: $resourceNickname\n"; - - foreach ($resourceData as $appKernelName => $info) { - $reportString - .= " App kernel: $appKernelName (errors = " - . (isset($info['error']) ? count($info['error']) : 0) - . ", queued = " - . (isset($info['queued']) ? count($info['queued']) : 0) - . ")\n"; - - if (isset($info['error'])) { - $reportString .= " Errors:\n"; - - foreach ($info['error'] as $value) { - $reportString .= " $value\n"; + /** + * Format the summary report. + * + * @param array $reportData + * + * @return string + */ + public function format_summary_report(array $reportData) + { + $reportString = ""; + + foreach ($reportData as $resourceNickname => $resourceData) { + $reportString .= "Resource nickname: $resourceNickname\n"; + + foreach ($resourceData as $appKernelName => $akData) { + $reportString .= " App Kernel: $appKernelName\n"; + $tmp = array(); + + foreach ($akData as $key => $value) { + $tmp[] = "$key = $value"; } - } - - if (isset($info['queued'])) { - $reportString .= " Queued:\n"; - foreach ($info['queued'] as $value) { - $reportString .= " $value\n"; - } + $reportString .= " " . implode(", ", $tmp) . "\n"; } } - } - - return $reportString; -} -/** - * Display usage text and exit. - * - * @param string $msg Optional message. - */ -function usage_and_exit($msg = null) -{ - global $validTimeframes; - - if (null !== $msg) { - echo "\n$msg\n"; + return $reportString; } - $timeframes = implode(', ', array_keys($validTimeframes)); - - echo <<<"EOF" - -Usage: xdmod-akrr-ingestor [[-l *timeframe*]|[-s *start-date*] [-e *end-date*]] - - -h, --help - Display this help. - - -v, --verbose - Output info level logging. - - --debug - Output debug level logging. - - -q, --quiet - Output warning level logging. - - -d, --dry-run - Run in dry-run mode. Do not update database. - - -r, --replace - Force replacement of all instance/metric data. Default - behavior is to ignore duplicates. - - -m, --remove - Remove ingested data for given time period prior to reingesting - it. - - -c, --calculate-controls - Calculate the running average and control values. - - -y, --re-calculate-controls - Re-calculate the running average, control values and control - intervals. - - -l, --since-last *timeframe* - Import data for time period. - Valid timeframes are $timeframes. - - -s, --start *start-date* - Start timestamp or date for import. - - -e, --end *end-date* - End timestamp or date for import. - - -o, --offset *days* - Offset the ingesting starting date by *days* (previous) days. - - -k, --kernel *app-kernel* - Ingest only app kernels matching this string. - - -R, --resource *resource-name* - Ingest app kernels for this resource only. - -If a start time is specified without an end time then data will be -loaded from the start to the current time. If an end time is specified -without a start time then data will be loaded from the beginning to the -end time. + /** + * @return bool true on success + */ + public function run() + { + // NOTE: "process_start_time" is needed for the log summary. + $this->logger->notice(array( + 'message' => 'Ingestion start', + 'process_start_time' => date('Y-m-d H:i:s'), + )); -Examples: + if ($this->dryRunMode) { + $this->logger->info("OPTION: Running in dryrun mode - discarding database updates"); + } -Ingest all application kernels since the last load and calculate control -regions. + if ($this->restrictToResource !== null) { + $this->logger->info("OPTION: Load only resource (nickname) '$this->restrictToResource'"); + } - xdmod-akrr-ingestor -v -c -l load + if ($this->restrictToAppKernel !== null) { + $this->logger->info("OPTION: Load only app kernels starting with '$this->restrictToAppKernel'"); + } + $this->logger->notice(array( + 'message' => 'Ingestion data time period', + 'data_start_time' => date("Y-m-d H:i:s", $this->startTimestamp), + 'data_end_time' => date("Y-m-d H:i:s", $this->endTimestamp), + )); -EOF; + // Reset and initialize the ingestion logs + $this->ingestionLog->reset(); + $this->ingestionLog->source = $this->explorerType; + $this->ingestionLog->url = null; + $this->ingestionLog->last_update = time(); + $this->ingestionLog->start_time = $this->startTimestamp; + $this->ingestionLog->end_time = $this->endTimestamp; + + // Instantiate the Explorer + try { + $config = array( + 'config_appkernel' => 'appkernel', + 'config_akrr' => 'akrr-db', + 'add_supremm_metrix' => false, + ); + $this->deploymentExplorer = AppKernel::explorer($this->explorerType, $config, $this->logger); + $this->deploymentExplorer->setQueryInterval($this->startTimestamp, $this->endTimestamp); + } catch (Exception $e) { + $msg = "Error creating explorer ($this->explorerType): " . $e->getMessage(); + $this->logger->crit(array( + 'message' => $msg, + 'stacktrace' => $e->getTraceAsString(), + )); + $this->ingestionLog->setStatus(false, $msg); + return false; + } - cleanup_and_exit(1); -} + // Instantiate the Parser + try { + $this->parser = AppKernel::parser($this->explorerType, null, $this->logger); + } catch (Exception $e) { + $msg = "Error creating parser ($this->explorerType): " . $e->getMessage(); + $this->logger->crit(array( + 'message' => $msg, + 'stacktrace' => $e->getTraceAsString(), + )); + $this->ingestionLog->setStatus(false, $msg); + return false; + } -/** - * Clean up and exit. - * - * @param int $exitCode Optional exit code. - */ -function cleanup_and_exit($exitCode = 0) -{ - global $dryRunMode, $ingestionLog, $logger, $db; + $resourceNicknames = array_keys($this->dbResourceList); - if (!$dryRunMode) { - if ($db instanceof \AppKernel\AppKernelDb) { - $db->storeIngestionLogEntry($ingestionLog); + // remove old ingested data + if ($this->removeIngestedDataVar === true) { + $this->removeIngestedData(); } - } - if ($logger instanceof \Log) { - $logger->close(); - } + // Iterate over each resource and query for all app kernels for that + // resource and time period. + $this->logger->info("Start processing application kernel data"); - exit($exitCode); -} + if ($this->restrictToAppKernel !== null) { + $this->logger->info("Restrict to app kernels containing string '$this->restrictToAppKernel'"); + } -/** - * Format a PDO exception message. - * - * @param PDOException $e - * - * @return string - */ -function formatPdoExceptionMessage(PDOException $e) -{ - $msg = ""; + foreach ($resourceNicknames as $resourceNickname) { + $status = $this->ingestAppKernelInstances($resourceNickname); + if ($status == false) { + return false; + } + } - // If there are 3 elements in the errorInfo array we can assume - // that this was a driver error so display a useful message instead - // of the generic PDO message. + $this->logger->info("Loaded $this->appKernelCounter application kernels"); + + if (!$this->dryRunMode) { + try { + $this->logger->info("Caculate running average and control values"); + $this->db->calculateControls($this->recalculateControls, $this->recalculateControls, 20, 5, + $this->restrictToResource, $this->restrictToAppKernel); + } catch (\PDOException $e) { + $msg = formatPdoExceptionMessage($e); + $this->logger->err(array( + 'message' => $msg, + 'stacktrace' => $e->getTraceAsString(), + )); + } catch (Exception $e) { + $this->logger->err(array( + 'message' => "Error: {$e->getMessage()} ({$e->getCode()})", + 'stacktrace' => $e->getTraceAsString(), + )); + } + } - if (3 == count($e->errorInfo)) { + $summaryReport + = "Summary report for " . date("Y-m-d H:i:s", $this->startTimestamp) + . " to " . date("Y-m-d H:i:s", $this->endTimestamp) . "\n" + . "examined = {$this->appKernelSummaryReport['examined']}, " + . "loaded = {$this->appKernelSummaryReport['loaded']}, " + . "incomplete = {$this->appKernelSummaryReport['incomplete']}, " + . "parse error = {$this->appKernelSummaryReport['parse_error']}, " + . "queued = {$this->appKernelSummaryReport['queued']}, " + . "unknown type = {$this->appKernelSummaryReport['unknown_type']}, " + . "sql_error = {$this->appKernelSummaryReport['sql_error']}, " + . "error = {$this->appKernelSummaryReport['error']}, " + . "duplicate = {$this->appKernelSummaryReport['duplicate']}, " + . "exception = {$this->appKernelSummaryReport['exception']}\n"; + //. $this->format_summary_report($this->appKernelReport); + + $this->logger->info($summaryReport); + + // NOTE: This is needed for the log summary. + $this->logger->notice(array( + 'message' => 'Summary data', + 'records_examined' => $this->appKernelSummaryReport['examined'], + 'records_loaded' => $this->appKernelSummaryReport['loaded'], + 'records_incomplete' => $this->appKernelSummaryReport['incomplete'], + 'records_parse_error' => $this->appKernelSummaryReport['parse_error'], + 'records_queued' => $this->appKernelSummaryReport['queued'], + 'records_unknown_type' => $this->appKernelSummaryReport['unknown_type'], + 'records_sql_error' => $this->appKernelSummaryReport['sql_error'], + 'records_error' => $this->appKernelSummaryReport['error'], + 'records_duplicate' => $this->appKernelSummaryReport['duplicate'], + 'records_exception' => $this->appKernelSummaryReport['exception'] + )); - // MySQL error - list ($sqlstate, $driverCode, $driverMsg) = $e->errorInfo; + // Test sending errors and queued info - $msg = "Database Error ($driverCode): '$driverMsg'"; - $trace = $e->getTrace(); + $this->ingestionLog->num = $this->appKernelCounter; - if (count($trace) >= 3) { - $msg .= " at {$trace[2]['file']}:{$trace[1]['line']} {$trace[2]['function']}()"; + if ($this->appKernelSummaryReport['sql_error'] == 0) { + $this->ingestionLog->setStatus(true, serialize($this->appKernelSummaryReport)); + } else { + $this->ingestionLog->setStatus(false, "SQL errors present"); } - } else { - // PDO layer error - $msg = "Database Error (" . $e->getCode() . ") '" . $e->getMessage() . "'"; - $trace = $e->getTrace(); + //$this->ingestionLog->reportObj = serialize($this->appKernelReport); - if (count($trace) >= 3) { - $msg .= " at {$trace[1]['file']}:{$trace[1]['line']} {$trace[1]['function']}()"; - } - } + // NOTE: "process_end_time" is needed for the log summary. + $this->logger->notice(array( + 'message' => 'Ingestion End', + 'process_end_time' => date('Y-m-d H:i:s'), + )); - return $msg; + return true; + } } From c63e34b9cfe3b6c56d4d01ea4e801a9b871f566c Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Thu, 28 May 2020 20:40:02 -0400 Subject: [PATCH 30/63] keep refactoring sql query, something is not working --- classes/AppKernel/AppKernelDb.php | 1121 ++++++++++++++++++----------- tests/unit/AppKernelDbTest.php | 69 +- 2 files changed, 743 insertions(+), 447 deletions(-) diff --git a/classes/AppKernel/AppKernelDb.php b/classes/AppKernel/AppKernelDb.php index d25b296..ca83b4a 100644 --- a/classes/AppKernel/AppKernelDb.php +++ b/classes/AppKernel/AppKernelDb.php @@ -2,6 +2,7 @@ namespace AppKernel; +use PDO; use xd_utilities; use CCR\DB; use Exception; @@ -66,7 +67,7 @@ class AppKernelDb // List of key/value pairs where the key is the resource nickname and the // value is the database resource id - private $resourceList = array(); + private $resourceList = null; // Multi-dimensional array of app kernels already in the database mapping to // the database id. App kernels are uniquely identified by the name, number @@ -207,8 +208,10 @@ public function loadAppKernelDefinitions(array $criteria = null) // Initialize default criteria to be overrided if necessary - $sqlCriteria = array('inc_disabled' => "enabled = 1", - 'inc_hidden' => "visible = 1"); + $sqlCriteria = array( + 'inc_disabled' => "enabled = 1", + 'inc_hidden' => "visible = 1" + ); if (null !== $criteria) { foreach ($criteria as $key => $value) { @@ -266,7 +269,6 @@ public function loadAppKernelDefinitions(array $criteria = null) } return $this->appKernelDefinitions; - } // -------------------------------------------------------------------------------- @@ -306,10 +308,12 @@ private function convertWildcards(&$value) private function extractOperator(&$value, &$op) { - $validOperators = array('=' => '=', + $validOperators = array( + '=' => '=', '!' => '!=', '>' => '>', - '<' => '<'); + '<' => '<' + ); $op = "="; $operatorFound = false; @@ -325,7 +329,6 @@ private function extractOperator(&$value, &$op) } return $operatorFound; - } /** @@ -355,7 +358,6 @@ private function getMetricWheres(array $metrics = array()) { $metricWheres = array(); foreach ($metrics as $metric) { - if (preg_match('/ak_(?P\d+)_metric_(?P\d+)_(?P\d+)/', $metric, $matches)) { $metricWheres[] = "(vt.ak_def_id = {$matches['ak']} and vt.metric_id = {$matches['metric']} and vt.num_units = {$matches['pu']})"; } else { @@ -369,8 +371,13 @@ private function getMetricWheres(array $metrics = array()) // -------------------------------------------------------------------------------- - public function getResources($start_date = null, $end_date = null, array $pu_counts = array(), array $metrics = array(), $user = null) - { + public function getResources( + $start_date = null, + $end_date = null, + array $pu_counts = array(), + array $metrics = array(), + $user = null + ) { $processorCountWheres = $this->getProcessorCountWheres($pu_counts); $metricWheres = $this->getMetricWheres($metrics); @@ -411,7 +418,8 @@ public function getResources($start_date = null, $end_date = null, array $pu_cou ); // get resource_id for all associated resources - $rr = $this->getResourceListing(date_format(date_sub(date_create(), date_interval_create_from_date_string("90 days")), 'Y-m-d'), date_format(date_create(), 'Y-m-d')); + $rr = $this->getResourceListing(date_format(date_sub(date_create(), + date_interval_create_from_date_string("90 days")), 'Y-m-d'), date_format(date_create(), 'Y-m-d')); $organizations_resources_id = array(); foreach ($rr as $r) { @@ -446,7 +454,6 @@ public function getResources($start_date = null, $end_date = null, array $pu_cou */ public function getResourceListing($start_date = null, $end_date = null) { - // Order by descending end_date and processors $ts = ""; @@ -460,7 +467,6 @@ public function getResourceListing($start_date = null, $end_date = null) $query_params = array(); if (isset($start_date) && isset($end_date)) { - /* Account for ALL resources (in other words, an overlap between the supplied timeframe and the resource timeframe) @@ -482,7 +488,6 @@ public function getResourceListing($start_date = null, $end_date = null) $query_params[':ts_start_date_lte'] = $end_date; $query_params[':ts_end_date_gte'] = $start_date; - } $query = " @@ -537,8 +542,12 @@ public function getResourceListing($start_date = null, $end_date = null) * @param array $metrics Metrics string IDs (ak__metric_) * @return array of ProcessingUnit */ - public function getProcessingUnits($start_date = null, $end_date = null, array $resource_ids = array(), array $metrics = array()) - { + public function getProcessingUnits( + $start_date = null, + $end_date = null, + array $resource_ids = array(), + array $metrics = array() + ) { $processingUnitList = array(); $metricWheres = $this->getMetricWheres($metrics); @@ -554,8 +563,15 @@ public function getProcessingUnits($start_date = null, $end_date = null, array $ $params[':end_date'] = $end_date; } if (count($resource_ids) > 0) { - $sql .= ' AND vt.resource_id in (:resource_ids)'; - $params[':resource_ids'] = implode(',', array_map('intval', $resource_ids)); + $sql .= ' AND vt.resource_id in ('; + for($i=0; $i < count($resource_ids); $i++) { + $sql .= ':resource_id_' . $i; + if($i < count($resource_ids) - 1) { + $sql .= ','; + } + $params[':resource_id_' . $i] = $resource_ids[$i]; + } + $sql .= ')'; } if (count($metricWheres) > 0) { $sql .= " and ( " . implode(' or ', $metricWheres) . " ) "; @@ -575,15 +591,19 @@ public function getProcessingUnits($start_date = null, $end_date = null, array $ } /** - * Get list of unique appkernels on $resource_ids + * Get list of unique appkernels on $resource_ids. In case of multiple resources appkernel should be + * at least at one. * * @param array $resource_ids * @param array $node_counts * @param array $core_counts * @return array */ - public function getUniqueAppKernels(array $resource_ids = array(), array $node_counts = array(), array $core_counts = array()) - { + public function getUniqueAppKernels( + array $resource_ids = array(), + array $node_counts = array(), + array $core_counts = array() + ) { $processorCountWheres = $this->getProcessorCountWheres($node_counts, $core_counts); $sql = "SELECT distinct vt.ak_def_id, vt.ak_name, akd.description, akd.ak_base_name, akd.processor_unit, " . @@ -593,8 +613,15 @@ public function getUniqueAppKernels(array $resource_ids = array(), array $node_c $params = array(); if (count($resource_ids) > 0) { - $sql .= ' AND vt.resource_id in (:resource_ids)'; - $params[':resource_ids'] = implode(',', array_map('intval', $resource_ids)); + $sql .= ' AND vt.resource_id in ('; + for($i=0; $i < count($resource_ids); $i++) { + $sql .= ':resource_id_' . $i; + if($i < count($resource_ids) - 1) { + $sql .= ','; + } + $params[':resource_id_' . $i] = intval($resource_ids[$i]); + } + $sql .= ')'; } if (count($processorCountWheres) > 0) { $sql .= " AND ( " . implode(' OR ', $processorCountWheres) . " ) "; @@ -632,8 +659,13 @@ public function getUniqueAppKernels(array $resource_ids = array(), array $node_c * @param array $pu_counts * @return array */ - public function getMetrics($ak_def_id, $start_date = null, $end_date = null, array $resource_ids = array(), array $pu_counts = array()) - { + public function getMetrics( + $ak_def_id, + $start_date = null, + $end_date = null, + array $resource_ids = array(), + array $pu_counts = array() + ) { $processorCountWheres = $this->getProcessorCountWheres($pu_counts); $sql = "SELECT distinct vt.metric_id, vt.metric, vt.unit, vt.processor_unit, vt.num_units " . @@ -654,8 +686,15 @@ public function getMetrics($ak_def_id, $start_date = null, $end_date = null, arr $params[':end_date'] = $end_date; } if (count($resource_ids) > 0) { - $sql .= 'AND vt.resource_id in (:resource_ids) '; - $params[':resource_ids'] = implode(',', array_map('intval', $resource_ids)); + $sql .= ' AND vt.resource_id in ('; + for($i=0; $i < count($resource_ids); $i++) { + $sql .= ':resource_id_' . $i; + if($i < count($resource_ids) - 1) { + $sql .= ','; + } + $params[':resource_id_' . $i] = intval($resource_ids[$i]); + } + $sql .= ')'; } if (count($processorCountWheres) > 0) { $sql .= "AND ( " . implode(' OR ', $processorCountWheres) . " ) "; @@ -668,7 +707,6 @@ public function getMetrics($ak_def_id, $start_date = null, $end_date = null, arr $metrics = array(); foreach ($results as $row) { $metrics[$row['metric_id']] = new InstanceMetric($row['metric'], null, $row['unit'], $row['metric_id']); - } return $metrics; } @@ -686,16 +724,15 @@ public function getDataset( $debugMode = false, $datesAsEpoch = true, $maximizeQueryCacheUsage = true - ) - { - + ) { $restrictions = array( 'ak' => $akId, 'start' => $startTime, 'end' => $endTime, 'metadata_only' => $metadataOnly, 'debug' => $debugMode, - 'dates_as_epoch' => $datesAsEpoch); + 'dates_as_epoch' => $datesAsEpoch + ); if ($maximizeQueryCacheUsage === false) //this will make the queries as specific as possible { @@ -784,7 +821,6 @@ public function getDataset( $prevEnvVersion = $row['env_version']; } $prev->set($row['ak_name'], $row['resource'], $row['metric'], $row['num_units']); - } if (null !== $dataset) { @@ -812,8 +848,10 @@ public function loadResources(array $criteria = null) // Initialize default criteria to be overrided if necessary - $sqlCriteria = array('inc_disabled' => "enabled = 1", - 'inc_hidden' => "visible = 1"); + $sqlCriteria = array( + 'inc_disabled' => "enabled = 1", + 'inc_hidden' => "visible = 1" + ); if (null !== $criteria) { foreach ($criteria as $key => $value) { @@ -856,7 +894,6 @@ public function loadResources(array $criteria = null) } return $this->resourceList; - } // -------------------------------------------------------------------------------- @@ -1233,7 +1270,6 @@ public function loadDataPoints(array $criteria = null) } return $retval; - } // -------------------------------------------------------------------------------- @@ -1596,8 +1632,13 @@ public function activeAppKernels(array $appKernels) // instance. // -------------------------------------------------------------------------------- - public function storeAppKernelInstance(InstanceData $ak, $replace = false, $add_to_a_data = true, $calc_controls = true, $dryRunMode = false) - { + public function storeAppKernelInstance( + InstanceData $ak, + $replace = false, + $add_to_a_data = true, + $calc_controls = true, + $dryRunMode = false + ) { // Get the list of existing app kernels if we haven't done so already if (null === $this->appKernelDefinitions) { @@ -1708,8 +1749,17 @@ private function createInstance(InstanceData &$ak, $replace, $dryRunMode = false $sql = ($replace ? 'replace' : 'insert') . " INTO ak_instance (ak_id, collected, resource_id, instance_id, job_id, " . "status, ak_def_id, env_version,controlStatus) VALUES (?, FROM_UNIXTIME(?), ?, ?, ?, ?, ?, ?, ?)"; - $params = array($akId, $ak->deployment_time, $resourceId, $ak->deployment_instance_id, $ak->deployment_job_id, - $status, $appKernelDefinitionId, $ak->environmentVersion(), $controlStatus); + $params = array( + $akId, + $ak->deployment_time, + $resourceId, + $ak->deployment_instance_id, + $ak->deployment_job_id, + $status, + $appKernelDefinitionId, + $ak->environmentVersion(), + $controlStatus + ); if (!$dryRunMode) { $numRows = $this->db->execute($sql, $params); } @@ -1740,10 +1790,20 @@ private function addDebugData(InstanceData $ak, $replace, $dryRunMode = false) $sql = ($replace ? 'replace' : 'insert') . " INTO ak_instance_debug (ak_id, collected, resource_id, instance_id, " . "message, stderr, walltime, cputime, memory, ak_error_cause, ak_error_message, ak_queue_time) " . "VALUES (?, FROM_UNIXTIME(?), ?, ?, COMPRESS(?), COMPRESS(?), ?, ?, ?, COMPRESS(?), COMPRESS(?), ?)"; - $params = array($akId, $ak->deployment_time, $resourceId, $ak->deployment_instance_id, $ak->deployment_message, - $ak->deployment_stderr, $ak->deployment_walltime, $ak->deployment_cputime, - $ak->deployment_memory, $ak->ak_error_cause, $ak->ak_error_message, - $ak->ak_queue_time); + $params = array( + $akId, + $ak->deployment_time, + $resourceId, + $ak->deployment_instance_id, + $ak->deployment_message, + $ak->deployment_stderr, + $ak->deployment_walltime, + $ak->deployment_cputime, + $ak->deployment_memory, + $ak->ak_error_cause, + $ak->ak_error_message, + $ak->ak_queue_time + ); if (!$dryRunMode) { $numRows = $this->db->execute($sql, $params); } @@ -1761,8 +1821,14 @@ private function addDebugData(InstanceData $ak, $replace, $dryRunMode = false) // @param $metric An AppKernelMetric containing the metric information // -------------------------------------------------------------------------------- - private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replace, $add_to_a_data = true, $calc_controls = true, $dryRunMode = false) - { + private function addMetricData( + InstanceData $ak, + InstanceMetric $metric, + $replace, + $add_to_a_data = true, + $calc_controls = true, + $dryRunMode = false + ) { $guid = $metric->guid(); @@ -1775,7 +1841,8 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac $this->log("$sql " . print_r($params, 1), PEAR_LOG_DEBUG); } $this->akMetrics[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units][$guid] = $this->akMetricGuids[$guid]; - $this->log("-> Associated metric '{$metric->name}' (id = {$metric->id}) with app kernel '{$ak->deployment_ak_name}' (ak_id = {$ak->db_ak_id})", PEAR_LOG_DEBUG); + $this->log("-> Associated metric '{$metric->name}' (id = {$metric->id}) with app kernel '{$ak->deployment_ak_name}' (ak_id = {$ak->db_ak_id})", + PEAR_LOG_DEBUG); } //metric_data @@ -1795,7 +1862,8 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac $rows = $this->db->query($sql, $params); if (count($rows) > 1) { - $this->log("a_tree has more then one entries for ak_def_id, resource_id, metric_id, num_units", PEAR_LOG_ERR); + $this->log("a_tree has more then one entries for ak_def_id, resource_id, metric_id, num_units", + PEAR_LOG_ERR); } $start_time = $ak->deployment_time; @@ -1812,7 +1880,12 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac } if (count($rows) != 0) { $sql = "DELETE FROM a_tree WHERE ak_def_id=? AND resource_id=? AND metric_id=? AND num_units=?"; - $params = array($ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->deployment_num_proc_units); + $params = array( + $ak->db_ak_def_id, + $ak->db_resource_id, + $metric->id, + $ak->deployment_num_proc_units + ); if (!$dryRunMode) { $rows = $this->db->execute($sql, $params); } @@ -1825,9 +1898,18 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac " ?, ?, ?, ?, " . " FROM_UNIXTIME(?), FROM_UNIXTIME(?), ?)"; $params = array( - $ak->db_ak_def_name, $ak->db_resource_name, $metric->name, $metric->unit, $ak->db_proc_unit_type, - $ak->deployment_num_proc_units, $ak->db_ak_def_id, $ak->db_resource_id, $metric->id, - $start_time, $end_time, $status + $ak->db_ak_def_name, + $ak->db_resource_name, + $metric->name, + $metric->unit, + $ak->db_proc_unit_type, + $ak->deployment_num_proc_units, + $ak->db_ak_def_id, + $ak->db_resource_id, + $metric->id, + $start_time, + $end_time, + $status ); if (!$dryRunMode) { $numRows = $this->db->execute($sql, $params); @@ -1842,9 +1924,20 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac " VALUES (?, ?, ?, ?, ?, " . " ?, ?, ?, ?, " . " ?, ?, ?, ?)"; - $params = array($ak->db_ak_def_name, $ak->db_resource_name, $metric->name, $ak->deployment_num_proc_units, $ak->db_proc_unit_type, - $ak->deployment_time, $ak->environmentVersion, $metric->unit, $metric->value, - $ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->status + $params = array( + $ak->db_ak_def_name, + $ak->db_resource_name, + $metric->name, + $ak->deployment_num_proc_units, + $ak->db_proc_unit_type, + $ak->deployment_time, + $ak->environmentVersion, + $metric->unit, + $metric->value, + $ak->db_ak_def_id, + $ak->db_resource_id, + $metric->id, + $ak->status ); if (!$dryRunMode) { $numRows = $this->db->execute($sql, $params); @@ -1858,7 +1951,8 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac $rows = $this->db->query($sql, $params); if (count($rows) > 1) { - $this->log("a_tree2 has more then one entries for ak_def_id, resource_id, metric_id, num_units", PEAR_LOG_ERR); + $this->log("a_tree2 has more then one entries for ak_def_id, resource_id, metric_id, num_units", + PEAR_LOG_ERR); } $start_time = $ak->deployment_time; @@ -1877,7 +1971,12 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac if (count($rows) !== 0) { $sql = "DELETE FROM a_tree2 WHERE ak_def_id=? AND resource_id=? AND metric_id=? AND num_units=?"; - $params = array($ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->deployment_num_proc_units); + $params = array( + $ak->db_ak_def_id, + $ak->db_resource_id, + $metric->id, + $ak->deployment_num_proc_units + ); if (!$dryRunMode) { $rows = $this->db->execute($sql, $params); } @@ -1890,9 +1989,18 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac " ?, ?, ?, ?, " . " FROM_UNIXTIME(?), FROM_UNIXTIME(?), ?)"; $params = array( - $ak->db_ak_def_name, $ak->db_resource_name, $metric->name, $metric->unit, $ak->db_proc_unit_type, - $ak->deployment_num_proc_units, $ak->db_ak_def_id, $ak->db_resource_id, $metric->id, - $start_time, $end_time, $status + $ak->db_ak_def_name, + $ak->db_resource_name, + $metric->name, + $metric->unit, + $ak->db_proc_unit_type, + $ak->deployment_num_proc_units, + $ak->db_ak_def_id, + $ak->db_resource_id, + $metric->id, + $start_time, + $end_time, + $status ); if (!$dryRunMode) { $numRows = $this->db->execute($sql, $params); @@ -1907,9 +2015,20 @@ private function addMetricData(InstanceData $ak, InstanceMetric $metric, $replac " VALUES (?, ?, ?, ?, ?, " . " ?, ?, ?, ?, " . " ?, ?, ?, ?)"; - $params = array($ak->db_ak_def_name, $ak->db_resource_name, $metric->name, $ak->deployment_num_proc_units, $ak->db_proc_unit_type, - $ak->deployment_time, $ak->environmentVersion, $metric->unit, $metric->value, - $ak->db_ak_def_id, $ak->db_resource_id, $metric->id, $ak->status + $params = array( + $ak->db_ak_def_name, + $ak->db_resource_name, + $metric->name, + $ak->deployment_num_proc_units, + $ak->db_proc_unit_type, + $ak->deployment_time, + $ak->environmentVersion, + $metric->unit, + $metric->value, + $ak->db_ak_def_id, + $ak->db_resource_id, + $metric->id, + $ak->status ); if (!$dryRunMode) { $numRows = $this->db->execute($sql, $params); @@ -1943,12 +2062,20 @@ private function addParameterData(InstanceData $ak, InstanceParameter $parameter $this->log("$sql " . print_r($params, 1), PEAR_LOG_DEBUG); } $this->akParameters[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units][$guid] = $this->akParameterGuids[$guid]; - $this->log("-> Associated parameter '{$parameter->name}' (id = {$parameter->id}) with app kernel '{$ak->deployment_ak_name}' (ak_id = {$ak->db_ak_id})", PEAR_LOG_DEBUG); + $this->log("-> Associated parameter '{$parameter->name}' (id = {$parameter->id}) with app kernel '{$ak->deployment_ak_name}' (ak_id = {$ak->db_ak_id})", + PEAR_LOG_DEBUG); } $sql = ($replace ? 'replace' : 'insert') . " INTO parameter_data (parameter_id, ak_id, collected, " . "resource_id, value_string, value_md5) VALUES (?, ?, FROM_UNIXTIME(?), ?, COMPRESS(?), ?)"; - $params = array($parameter->id, $ak->db_ak_id, $ak->deployment_time, $ak->db_resource_id, $parameter->value, md5($parameter->value)); + $params = array( + $parameter->id, + $ak->db_ak_id, + $ak->deployment_time, + $ak->db_resource_id, + $parameter->value, + md5($parameter->value) + ); if (!$dryRunMode) { $numRows = $this->db->execute($sql, $params); } @@ -2009,8 +2136,10 @@ private function getMetricId(InstanceData $ak, InstanceMetric $metric) } // The metric didn't exist for that ak - $sql = "SELECT * FROM metric WHERE guid='$guid'"; - $result = $this->db->query($sql); + $sql = "SELECT * FROM metric WHERE guid=?"; + $params = array($guid); + $result = $this->db->query($sql, $params); + if (count($result) > 0) { $metricId = $result[0]['metric_id']; @@ -2020,7 +2149,8 @@ private function getMetricId(InstanceData $ak, InstanceMetric $metric) $numRows = $this->db->execute($sql, $params); $this->akMetricGuids[$metric->guid()] = $metricId; - $this->log("Add metric to ak: name='{$metric->name}', unit='{$metric->unit}' ak='{$ak->deployment_ak_name}' (id = $metricId)", PEAR_LOG_DEBUG); + $this->log("Add metric to ak: name='{$metric->name}', unit='{$metric->unit}' ak='{$ak->deployment_ak_name}' (id = $metricId)", + PEAR_LOG_DEBUG); return $metricId; } @@ -2033,10 +2163,10 @@ private function getMetricId(InstanceData $ak, InstanceMetric $metric) $numRows = $this->db->execute($sql, $params); $metricId = $this->db->handle()->lastInsertId(); $this->akMetricGuids[$metric->guid()] = $metricId; - $this->log("Created new metric: name='{$metric->name}', unit='{$metric->unit}' (id = $metricId)", PEAR_LOG_DEBUG); + $this->log("Created new metric: name='{$metric->name}', unit='{$metric->unit}' (id = $metricId)", + PEAR_LOG_DEBUG); return $metricId; - } // -------------------------------------------------------------------------------- @@ -2069,10 +2199,10 @@ private function getParameterId(InstanceData $ak, InstanceParameter $parameter) $numRows = $this->db->execute($sql, $params); $parameterId = $this->db->handle()->lastInsertId(); $this->akParameterGuids[$guid] = $parameterId; - $this->log("Created new parameter: name='{$parameter->name}' unit='{$parameter->unit}' tag='{$parameter->tag}' (id = $parameterId)", PEAR_LOG_DEBUG); + $this->log("Created new parameter: name='{$parameter->name}' unit='{$parameter->unit}' tag='{$parameter->tag}' (id = $parameterId)", + PEAR_LOG_DEBUG); return $parameterId; - } // -------------------------------------------------------------------------------- @@ -2116,21 +2246,36 @@ public function getAppKernelBaseNames() public function getControlRegions($resource_id, $ak_def_id) { - $controlRegionDefQuery = - "SELECT control_region_def_id,resource_id,ak_def_id, - control_region_type, - control_region_starts, - control_region_ends, - control_region_points, - comment - FROM control_region_def - WHERE resource_id = " . $resource_id . " - AND ak_def_id = " . $ak_def_id . - " - ORDER BY control_region_starts; - "; - $controlRegionDef = $this->db->query($controlRegionDefQuery); - return $controlRegionDef; + $sql = + "SELECT control_region_def_id,resource_id,ak_def_id,control_region_type,control_region_starts," . + " control_region_ends,control_region_points,comment " . + "FROM control_region_def " . + "WHERE resource_id = :resource_id AND ak_def_id = :ak_def_id " . + "ORDER BY control_region_starts"; + $params = [ + ":resource_id" => $resource_id, + ":ak_def_id" => $ak_def_id, + ]; + return $this->db->query($sql, $params);; + } + + /** + * Get array with ak_id for ak_def_id + * @param $ak_def_id + * @return array + */ + protected function getAppKernelIdsForAppKernelDefId($ak_def_id) { + $ak_def_id = intval($ak_def_id); + $sql = "SELECT ak_id FROM mod_appkernel.app_kernel WHERE ak_def_id=:ak_def_id"; + $params = [":ak_def_id" => $ak_def_id]; + $response = $this->db->query($sql, $params); + + $ak_ids = []; + foreach ($response as $v) { + $ak_ids[] = intval($v['ak_id']); + } + + return $ak_ids; } public function newControlRegions( @@ -2143,94 +2288,127 @@ public function newControlRegions( $comment, $update = false, $control_region_def_id = null - ) - { + ) { $resource_id = intval($resource_id); $ak_def_id = intval($ak_def_id); - $control_region_type = "'" . $control_region_type . "'"; - $startDateTime = "'" . $startDateTime . "'"; - $n_points = ($n_points !== null ? intval($n_points) : 'NULL'); - $endDateTime = ($endDateTime !== null ? "'" . $endDateTime . "'" : 'NULL'); - $comment = ($comment !== null ? "'" . $comment . "'" : 'NULL'); - - //make query for control recalculation - $sqlAKcond = array(); - $response = $this->db->query("SELECT ak_id FROM mod_appkernel.app_kernel WHERE ak_def_id='{$ak_def_id}'"); - foreach ($response as $v) { - $sqlAKcond[] = "ak_id='" . $v['ak_id'] . "'"; + $n_points = ($n_points !== null ? intval($n_points) : null); + + $ak_ids = $this->getAppKernelIdsForAppKernelDefId($ak_def_id); + $ak_ids_in_sql_param = []; + $ak_ids_in_sql = ''; + for($i=0; $i < count($ak_ids); $i++) { + $ak_ids_in_sql .= ':ak_id_' . $i; + if($i < count($ak_ids) - 1) { + $ak_ids_in_sql .= ','; + } + $ak_ids_in_sql_param[':ak_id_' . $i] = $ak_ids[$i]; } - $sqlAKcond = implode(" OR ", $sqlAKcond); - $controlRegionDefQuery = - "SELECT control_region_def_id,resource_id,ak_def_id, - control_region_type, - control_region_starts, - control_region_ends, - control_region_points, - comment - FROM control_region_def - WHERE resource_id = " . $resource_id . " - AND ak_def_id = " . $ak_def_id . " - AND control_region_starts>$startDateTime - ORDER BY control_region_starts; - "; - $controlRegionDef = $this->db->query($controlRegionDefQuery); - $metric_data_updateQuery = "UPDATE metric_data - SET control = null, - running_average = null, - controlStatus = 'undefined' - WHERE ({$sqlAKcond}) AND resource_id=$resource_id - AND collected >= $startDateTime"; + //make query for control recalculation + $sql = + "SELECT control_region_def_id,resource_id,ak_def_id,control_region_type,control_region_starts," . + " control_region_ends,control_region_points,comment " . + "FROM control_region_def " . + "WHERE resource_id = :resource_id AND ak_def_id = :ak_def_id AND control_region_starts>:start_date_time " . + "ORDER BY control_region_starts"; + $params = [ + ":resource_id" => $resource_id, + ":ak_def_id" => $ak_def_id, + ":start_date_time" => $startDateTime, + ]; + $controlRegionDef = $this->db->query($sql, $params); + + $metric_data_update_sql = + "UPDATE metric_data " . + "SET control = null, " . + " running_average = null, " . + " controlStatus = 'undefined' " . + "WHERE ak_id IN (" . $ak_ids_in_sql . ") AND resource_id=:resource_id " . + " AND collected >= :start_date_time"; + + $metric_data_update_params = array_merge([ + ":resource_id" => $resource_id, + ":start_date_time" => $startDateTime, + ], $ak_ids_in_sql_param); + if (count($controlRegionDef) > 0) { $new_region_end_collected = $controlRegionDef[0]['control_region_starts']; - $metric_data_updateQuery .= " AND collected<'$new_region_end_collected';"; - } else { - $metric_data_updateQuery .= ";"; + $metric_data_update_sql .= " AND collected<:new_region_end_collected"; + $metric_data_update_params[":new_region_end_collected"] = $new_region_end_collected; } //insert of update control_region_def + $sql = "SELECT control_region_def_id FROM control_region_def WHERE "; + $params = []; if ($control_region_def_id != null && $update) { - $sql = "SELECT control_region_def_id FROM control_region_def - WHERE control_region_def_id={$control_region_def_id} - "; + $sql .= "control_region_def_id={$control_region_def_id}"; + $params[":control_region_def_id"] = $control_region_def_id; } else { - $sql = "SELECT control_region_def_id FROM control_region_def - WHERE resource_id = {$resource_id} AND ak_def_id = {$ak_def_id} AND control_region_starts={$startDateTime} - "; + $sql .= "resource_id=:resource_id AND ak_def_id=:ak_def_id AND control_region_starts=:start_date_time"; + $params[":resource_id"] = $resource_id; + $params[":ak_def_id"] = $ak_def_id; + $params[":start_date_time"] = $startDateTime; } - $control_region_def_id = $this->db->query($sql); + $control_region_def_id = $this->db->query($sql, $params); if (count($control_region_def_id) > 0) { if ($update) { - $sql = "UPDATE control_region_def - SET control_region_starts={$startDateTime}, - control_region_type={$control_region_type}, - control_region_ends={$endDateTime}, - control_region_points={$n_points}, - comment={$comment} - WHERE control_region_def_id={$control_region_def_id[0]['control_region_def_id']}"; - $this->db->execute($sql); - $this->db->execute($metric_data_updateQuery); - - return array('success' => true, - 'message' => "Control region time interval was updated"); + $sql = + "UPDATE control_region_def " . + "SET control_region_starts=:start_date_time," . + " control_region_type=:control_region_type," . + " control_region_ends=:end_date_time," . + " control_region_points=:control_region_points," . + " comment=:comment " . + "WHERE control_region_def_id=:control_region_def_id"; + $params = [ + ":start_date_time" => $startDateTime, + ":control_region_type" => $control_region_type, + ":end_date_time" => $endDateTime, + ":control_region_points" => $n_points, + ":comment" => $comment, + ":control_region_def_id" => $control_region_def_id[0]['control_region_def_id'] + ]; + $this->db->execute($sql, $params); + $this->db->execute($metric_data_update_sql, $metric_data_update_params); + + return array( + 'success' => true, + 'message' => "Control region time interval was updated" + ); } else { - return array('success' => false, - 'message' => "Control region already exists for such time interval"); + return array( + 'success' => false, + 'message' => "Control region already exists for such time interval" + ); } } else { if ($update) { - return array('success' => false, - 'message' => "Such control region time interval do not exist, can not update it."); + return array( + 'success' => false, + 'message' => "Such control region time interval do not exist, can not update it." + ); } else { - $sql = "INSERT INTO control_region_def - (resource_id,ak_def_id,control_region_type,control_region_starts,control_region_ends,control_region_points,comment) - VALUES({$resource_id},{$ak_def_id},{$control_region_type},{$startDateTime},{$endDateTime},{$n_points}, - {$comment})"; - $this->db->execute($sql); - $this->db->execute($metric_data_updateQuery); - return array('success' => true, - 'message' => "Control region time interval was created"); + $sql = + "INSERT INTO control_region_def " . + "(resource_id,ak_def_id,control_region_type," . + "control_region_starts,control_region_ends,control_region_points,comment) " . + "VALUES(?,?,?,?,?,?,?) "; + $params = [ + $resource_id, + $ak_def_id, + $control_region_type, + $startDateTime, + $endDateTime, + $n_points, + $comment + ]; + $this->db->execute($sql, $params); + $this->db->execute($metric_data_update_sql); + return array( + 'success' => true, + 'message' => "Control region time interval was created" + ); } } } @@ -2250,8 +2428,10 @@ public function deleteControlRegion($control_region_def_id) "; $controlRegionDefToDelete = $this->db->query($controlRegionDefQuery); if (count($controlRegionDefToDelete) === 0) { - return array('success' => false, - 'message' => "Such control region time interval do not exist, can not delete it."); + return array( + 'success' => false, + 'message' => "Such control region time interval do not exist, can not delete it." + ); } $controlRegionDefToDelete = $controlRegionDefToDelete[0]; $resource_id = $controlRegionDefToDelete['resource_id']; @@ -2298,8 +2478,10 @@ public function deleteControlRegion($control_region_def_id) $this->db->execute("DELETE FROM control_region_def WHERE control_region_def_id=$control_region_def_id"); $this->db->execute($metric_data_updateQuery); - return array('success' => true, - 'message' => "Control region time interval was deleted"); + return array( + 'success' => true, + 'message' => "Control region time interval was deleted" + ); } public function setInitialControlRegions($initial = true, $envbased = false, $controlIntervalSize = 20) @@ -2328,9 +2510,11 @@ public function setInitialControlRegions($initial = true, $envbased = false, $co ORDER BY ak_def_id,resource_id" ); foreach ($initial_regions_start as $first_run) { - $this->log("Adding initial control region for app kernel: {$first_run['ak_name']} on resource: {$resourceIdMap[$first_run['resource_id']]['name']}", PEAR_LOG_INFO); + $this->log("Adding initial control region for app kernel: {$first_run['ak_name']} on resource: {$resourceIdMap[$first_run['resource_id']]['name']}", + PEAR_LOG_INFO); $t = date_format(date_create($first_run['collected']), "Y-m-d") . " 00:00:00"; - $t = date_format(date_sub(date_create($t), date_interval_create_from_date_string('5 days')), "Y-m-d H:i:s"); + $t = date_format(date_sub(date_create($t), date_interval_create_from_date_string('5 days')), + "Y-m-d H:i:s"); $sql = "INSERT INTO control_region_def (resource_id,ak_def_id,control_region_type,control_region_starts,control_region_points,comment) VALUES({$first_run['resource_id']},{$first_run['ak_def_id']},'data_points','{$t}',{$controlIntervalSize}, @@ -2363,7 +2547,8 @@ public function setInitialControlRegions($initial = true, $envbased = false, $co $collected = $newenv_regions_start[$i]['collected']; $ak_name = $newenv_regions_start[$i]['ak_name']; $t = $collected; - $this->log("Adding control region due enviroment change, app kernel: {$newenv_regions_start[$i]['ak_name']} on resource: {$resourceIdMap[$newenv_regions_start[$i]['resource_id']]['name']}", PEAR_LOG_INFO); + $this->log("Adding control region due enviroment change, app kernel: {$newenv_regions_start[$i]['ak_name']} on resource: {$resourceIdMap[$newenv_regions_start[$i]['resource_id']]['name']}", + PEAR_LOG_INFO); $sql = "INSERT INTO control_region_def (resource_id,ak_def_id,control_region_type,control_region_starts,control_region_points,comment) @@ -2376,10 +2561,17 @@ public function setInitialControlRegions($initial = true, $envbased = false, $co } } - // -------------------------------------------------------------------------------- - // Calcualte the running average and control values for each metric value - // @author: Amin Ghadersohi - // -------------------------------------------------------------------------------- + /** + * Calculates the running average and control values for each metric value + * + * @param bool $recalculateControlIntervals + * @param bool $recalculateControls + * @param int $controlIntervalSize + * @param int $runningAverageSize + * @param null $restrictToResource + * @param null $restrictToAppKernel + * @throws Exception + */ public function calculateControls( $recalculateControlIntervals = false, $recalculateControls = false, @@ -2387,9 +2579,9 @@ public function calculateControls( $runningAverageSize = 5, $restrictToResource = null, $restrictToAppKernel = null - ) - { + ) { $this->log("Calculating control metrics"); + $runningAverageSize = intval($runningAverageSize); if ($runningAverageSize < 1) { echo "calculateControls: runningAverageSize must be greater than zero. Aborting...\n"; return; @@ -2400,10 +2592,8 @@ public function calculateControls( //Get akId2akDefIdMap $akId2akDefIdMap = array(); $akDefId2akIdMap = array(); - $sql = - "SELECT ak_base_name as name, ak_id, num_units, ak_def_id, control_criteria - FROM app_kernel_def - JOIN app_kernel USING(ak_def_id)"; + $sql = "SELECT ak_base_name as name, ak_id, num_units, ak_def_id, control_criteria " . + "FROM app_kernel_def JOIN app_kernel USING(ak_def_id)"; $result = $this->db->query($sql); foreach ($result as $row) { $akId2akDefIdMap[$row['ak_id']] = array( @@ -2417,7 +2607,8 @@ public function calculateControls( } $akDefId2akIdMap[$row['ak_def_id']][] = $row['ak_id']; } - //Get resourceIdMap + + // Get resourceIdMap $resourceIdMap = array(); $sql = "SELECT resource_id, resource, nickname, description , enabled, visible FROM resource"; $result = $this->db->query($sql); @@ -2427,27 +2618,33 @@ public function calculateControls( ); } - //Conditions for $restrictToResource - $sqlResourceCond = null; + // Conditions for $restrictToResource + $resource_id = null; if ($restrictToResource !== null) { - $sqlResourceCond = "resource_id = '" . $this->resourceList[$restrictToResource]->id . "'"; + if (!isset($this->resourceList)) { + $this->loadResources(); + } + $resource_id = $this->resourceList[$restrictToResource]->id; } - //Conditions for $restrictToAppKernel - $sqlAKDefCond = null; - $sqlAKcond = null; + // Conditions for $restrictToAppKernel + $ak_ids = null; + $ak_ids_in_sql_param = []; + $ak_ids_in_sql = ''; if ($restrictToAppKernel !== null) { if (!isset($this->appKernelDefinitions)) { $this->loadAppKernelDefinitions(); } - $dbAKList = $this->appKernelDefinitions; - $sqlAKDefCond = "ak_def_id = '" . $dbAKList[$restrictToAppKernel]->id . "'"; - $m_aks = array(); - $response = $this->db->query("SELECT ak_id FROM mod_appkernel.app_kernel WHERE ak_def_id='" . $dbAKList[$restrictToAppKernel]->id . "'"); - foreach ($response as $v) { - $m_aks[] = "ak_id='" . $v['ak_id'] . "'"; + $ak_def_id =$this->appKernelDefinitions[$restrictToAppKernel]->id; + $ak_ids = $this->getAppKernelIdsForAppKernelDefId($ak_def_id); + + for($i=0; $i < count($ak_ids); $i++) { + $ak_ids_in_sql .= ':ak_id_' . $i; + if($i < count($ak_ids) - 1) { + $ak_ids_in_sql .= ','; + } + $ak_ids_in_sql_param[':ak_id_' . $i] = $ak_ids[$i]; } - $sqlAKcond = implode(" OR ", $m_aks); } // first, load the metric attributes that help figure out whether a larger value is better or a smaller value @@ -2511,26 +2708,25 @@ public function calculateControls( if ($recalculateControls) { $time_start = microtime(true); - $dataQuery = "update metric_data - set control = null, - running_average = null, - controlStatus = 'undefined'"; - if ($sqlResourceCond || $sqlAKcond) { - $dataQuery .= "\n WHERE "; - } - if ($sqlResourceCond) { - $dataQuery .= "\n ( " . $sqlResourceCond . " ) "; - } - if ($sqlResourceCond || $sqlAKcond) { - $dataQuery .= " AND "; - } - if ($sqlAKcond) { - $dataQuery .= "\n ( " . $sqlAKcond . " ) "; + $sql = "UPDATE metric_data SET control = null,running_average = null,controlStatus = 'undefined'"; + $params = []; + + if ($resource_id!==null && $ak_ids!==null) { + $sql .= " WHERE resource_id=:resource_id AND ak_id IN (" . $ak_ids_in_sql . ")"; + $params[':resource_id'] = $resource_id; + $params = array_merge($params, $ak_ids_in_sql_param); + } elseif ($resource_id===null && $ak_ids!==null) { + $sql .= " WHERE ak_id IN (" . $ak_ids_in_sql . ")"; + $params = array_merge($params, $ak_ids_in_sql_param); + } elseif ($resource_id!==null && $ak_ids===null) { + $sql .= " WHERE resource_id=:resource_id"; + $params[':resource_id'] = $resource_id; } - $this->db->execute($dataQuery); + $this->db->execute($sql, $params); $time_end = microtime(true); - $this->log("Timing(update metric_data set control = null, running_average = null)=" . ($time_end - $time_start), PEAR_LOG_DEBUG); + $this->log("Timing(update metric_data set control = null, running_average = null)=" . ($time_end - $time_start), + PEAR_LOG_DEBUG); } // Get a list of possible unique datasets (datasetsQuery). @@ -2543,27 +2739,28 @@ public function calculateControls( //this query enumeterates all possible unique datasets by their key (resource_id, ak_id, metric_id) $time_start = microtime(true); - $datasetsQuery = - "SELECT distinct ak_id, metric_id, resource_id - FROM `metric_data` - "; - if ($sqlResourceCond || $sqlAKcond) { - $datasetsQuery .= "\n WHERE "; - } - if ($sqlResourceCond) { - $datasetsQuery .= "\n ( " . $sqlResourceCond . " ) "; - } - if ($sqlResourceCond || $sqlAKcond) { - $datasetsQuery .= " AND "; - } - if ($sqlAKcond) { - $datasetsQuery .= "\n ( " . $sqlAKcond . " ) "; - } - $datasetsQuery .= "\nORDER BY 1, 2, 3\n"; - $datasets = $this->db->query($datasetsQuery); + + $sql = "SELECT distinct ak_id, metric_id, resource_id FROM `metric_data`"; + $params = []; + if ($resource_id!==null && $ak_ids!==null) { + $sql .= " WHERE resource_id=:resource_id AND ak_id IN (" . $ak_ids_in_sql . ")"; + $params[':resource_id'] = $resource_id; + $params = array_merge($params, $ak_ids_in_sql_param); + } elseif ($resource_id===null && $ak_ids!==null) { + $sql .= " WHERE ak_id IN (" . $ak_ids_in_sql . ")"; + $params = array_merge($params, $ak_ids_in_sql_param); + } elseif ($resource_id!==null && $ak_ids===null) { + $sql .= " WHERE resource_id=:resource_id"; + $params[':resource_id'] = $resource_id; + } + $sql .= " ORDER BY 1, 2, 3"; + $datasets = $this->db->query($sql, $params); $datasetsLength = count($datasets); $time_end = microtime(true); - $this->log("Timing(Get a list of possible unique datasets (datasetsQuery))=" . ($time_end - $time_start), PEAR_LOG_DEBUG); + + $this->log( + "Timing(Get a list of possible unique datasets (datasetsQuery))=" . ($time_end - $time_start), + PEAR_LOG_DEBUG); $time_start_bigcycle = microtime(true); $progressVerbosity = 1; @@ -2580,8 +2777,14 @@ public function calculateControls( 'N_sqlupdate2' => 0 ); foreach ($datasets as $di => $dataset) { + $dataset_params = [ + ":resource_id" => $dataset["resource_id"], + ":ak_id" => $dataset["ak_id"], + ":metric_id" => $dataset["metric_id"] + ]; if ($progressVerbosity === 1) { - $message = "Calculating running average and control values. " . number_format(100.0 * $di / $datasetsLength, 2) . "% " . json_encode($dataset); + $message = "Calculating running average and control values. " . + number_format(100.0 * $di / $datasetsLength,2) . "% " . json_encode($dataset); $this->log($message, PEAR_LOG_DEBUG); } $control_criteria = $this->control_criteria; @@ -2589,79 +2792,89 @@ public function calculateControls( $control_criteria = $akId2akDefIdMap[$dataset['ak_id']]['control_criteria']; } - //if we dont know whether smaller or larger is better it (hopefully :) ) means we don't want to calculate control on it so skip + // if we dont know whether smaller or larger is better it (hopefully :) ) means + // we don't want to calculate control on it so skip if (!isset($metricIdToLargerMap[$dataset['metric_id']])) { - $this->log("Skipping metric {$dataset['metric_id']} {$metricsLookupById[$dataset['metric_id']]['name']} as there was no value in metric_attributes for its larger/smaller property", PEAR_LOG_WARNING); + $this->log( + "Skipping metric {$dataset['metric_id']} {$metricsLookupById[$dataset['metric_id']]['name']} " . + "as there was no value in metric_attributes for its larger/smaller property", + PEAR_LOG_WARNING); continue; } $time_start0 = microtime(true); - //whether larger values are good for this metric or not + // whether larger values are good for this metric or not $larger = $metricIdToLargerMap[$dataset['metric_id']]; $dataQuery = - "SELECT md.collected, md.value_string, aki.env_version,md.controlStatus - FROM `metric_data` md, - `ak_instance` aki - WHERE md.resource_id = :resource_id - and md.ak_id = :ak_id - and md.metric_id = :metric_id - and md.control is NULL - and md.value_string is not NULL - and aki.ak_id = md.ak_id - and aki.collected = md.collected - and aki.resource_id = md.resource_id - ORDER BY collected"; - $data = $this->db->query($dataQuery, $dataset); + "SELECT md.collected, md.value_string, aki.env_version,md.controlStatus " . + "FROM `metric_data` md, `ak_instance` aki " . + "WHERE md.resource_id = :resource_id AND md.ak_id = :ak_id AND md.metric_id = :metric_id" . + " AND md.control is NULL AND md.value_string is not NULL" . + " AND aki.ak_id = md.ak_id AND aki.collected = md.collected AND aki.resource_id = md.resource_id " . + "ORDER BY collected"; + $data = $this->db->query($dataQuery, $dataset_params); $time_query = microtime(true); $timing['dataQuery'] += $time_query - $time_start0; $timing['N_dataQuery']++; $length = count($data); - //only process datasets of length 1+ + // only process datasets of length 1+ if ($length > 0) { $time_start = microtime(true); //query for the control region definitions if none present initiate a new one $controlRegionDef = array(); while (true) { $controlRegionDefQuery = - "SELECT control_region_def_id,resource_id,ak_def_id, - control_region_type, - control_region_starts, - control_region_ends, - control_region_points - FROM control_region_def - WHERE resource_id = " . $dataset['resource_id'] . " - AND ak_def_id = " . $akId2akDefIdMap[$dataset['ak_id']]['ak_def_id'] . - " - ORDER BY control_region_starts; - "; - $controlRegionDef = $this->db->query($controlRegionDefQuery); - //if there is no control regions initiate the first one + "SELECT control_region_def_id,resource_id,ak_def_id,control_region_type," . + " control_region_starts,control_region_ends,control_region_points " . + "FROM control_region_def " . + "WHERE resource_id = :resource_id AND ak_def_id = :ak_def_id " . + "ORDER BY control_region_starts"; + $controlRegionDefParams = [ + ":resource_id" => $dataset['resource_id'], + ":ak_def_id" => $akId2akDefIdMap[$dataset['ak_id']]['ak_def_id'] + ]; + $controlRegionDef = $this->db->query($controlRegionDefQuery, $controlRegionDefParams); + + // if there is no control regions initiate the first one if (count($controlRegionDef) == 0) { - $this->log("Adding initial control region for app kernel: {$akId2akDefIdMap[$dataset['ak_id']]['name']} on resource: {$resourceIdMap[$dataset['resource_id']]['name']}", PEAR_LOG_INFO); + $this->log( + "Adding initial control region for app kernel: {$akId2akDefIdMap[$dataset['ak_id']]['name']} " . + "on resource: {$resourceIdMap[$dataset['resource_id']]['name']}", + PEAR_LOG_INFO); $t = date_format(date_create($data[0]['collected']), "Y-m-d") . " 00:00:00"; - $t = date_format(date_sub(date_create($t), date_interval_create_from_date_string('5 days')), "Y-m-d H:i:s"); - $sql = "INSERT INTO control_region_def - (resource_id,ak_def_id,control_region_type,control_region_starts,control_region_points,comment) - VALUES({$dataset['resource_id']},{$akId2akDefIdMap[$dataset['ak_id']]['ak_def_id']},'data_points','{$t}',{$controlIntervalSize}, - 'initial control region') - "; - $this->db->execute($sql); + $t = date_format(date_sub(date_create($t), date_interval_create_from_date_string('5 days')), + "Y-m-d H:i:s"); + $sql = + "INSERT INTO control_region_def " . + "(resource_id,ak_def_id,control_region_type,control_region_starts,control_region_points,comment) " . + "VALUES(?,?,?,?,?,?)"; + $params = [ + $dataset['resource_id'], + $akId2akDefIdMap[$dataset['ak_id']]['ak_def_id'], + 'data_points', + $t, + $controlIntervalSize, + 'initial control region' + ]; + $this->db->execute($sql, $params); } elseif (date_create($controlRegionDef[0]['control_region_starts']) > date_create($data[0]['collected'])) { - $this->log("Updating initial control region for app kernel: {$akId2akDefIdMap[$dataset['ak_id']]['name']} on resource: {$resourceIdMap[$dataset['resource_id']]['name']}", PEAR_LOG_INFO); + $this->log( + "Updating initial control region for app kernel: " . + "{$akId2akDefIdMap[$dataset['ak_id']]['name']} on resource: " . + "{$resourceIdMap[$dataset['resource_id']]['name']}", + PEAR_LOG_INFO); $t = date_format(date_create($data[0]['collected']), "Y-m-d") . " 00:00:00"; - $t = date_format(date_sub(date_create($t), date_interval_create_from_date_string('5 days')), "Y-m-d H:i:s"); - $sql = "UPDATE control_region_def - SET control_region_starts='{$t}' - WHERE control_region_def_id={$controlRegionDef[0]['control_region_def_id']} - "; - $this->db->execute($sql); + $t = date_format(date_sub(date_create($t), date_interval_create_from_date_string('5 days')), + "Y-m-d H:i:s"); + $sql = "UPDATE control_region_def SET control_region_starts=? WHERE control_region_def_id=?"; + $params = [$t, $controlRegionDef[0]['control_region_def_id']]; + $this->db->execute($sql, $params); } else { break; } - } //query for the control region definitions if none present initiate a new one $num_recalculated_CR = 0; @@ -2681,14 +2894,20 @@ public function calculateControls( r.controlMin, r.controlMax FROM control_region_def AS d,control_regions AS r - WHERE d.resource_id = {$dataset['resource_id']} - AND d.ak_def_id = {$akId2akDefIdMap[$dataset['ak_id']]['ak_def_id']} - AND r.ak_id = {$dataset['ak_id']} - AND r.metric_id = {$dataset['metric_id']} + WHERE d.resource_id = :resource_id + AND d.ak_def_id = :ak_def_id + AND r.ak_id = :ak_id + AND r.metric_id = :metric_id AND r.control_region_def_id=d.control_region_def_id ORDER BY d.control_region_starts; "; - $controlRegions = $this->db->query($controlRegionQuery); + $controlRegionParams = [ + ":resource_id" => $dataset['resource_id'], + ":ak_def_id" => $akId2akDefIdMap[$dataset['ak_id']]['ak_def_id'], + ":ak_id" => $dataset['ak_id'], + ":metric_id" => $dataset['metric_id'] + ]; + $controlRegions = $this->db->query($controlRegionQuery, $controlRegionParams); //if there is no control regions initiate the first one if (count($controlRegions) !== count($controlRegionDef)) { $CRdefs = array(); @@ -2701,17 +2920,17 @@ public function calculateControls( if (key_exists($cr['control_region_def_id'], $CRdefs)) { $CR[$cr['control_region_def_id']] = $cr; } else { - $sql = "DELETE FROM control_regions WHERE control_region_id={$cr['control_region_id']}"; - $this->db->execute($sql); + $sql = "DELETE FROM control_regions WHERE control_region_id=?"; + $params = [$cr['control_region_id']]; + $this->db->execute($sql, $params); } } foreach ($controlRegionDef as $crdef) { if (!key_exists($crdef['control_region_def_id'], $CR)) { - $sql = "INSERT INTO control_regions - (control_region_def_id,ak_id,metric_id) - VALUES({$crdef['control_region_def_id']},{$dataset['ak_id']},{$dataset['metric_id']})"; - $this->db->execute($sql); + $sql = "INSERT INTO control_regions (control_region_def_id,ak_id,metric_id) VALUES(?,?,?)"; + $params = [$crdef['control_region_def_id'],$dataset['ak_id'],$dataset['metric_id']]; + $this->db->execute($sql, $params); } } continue; @@ -2724,28 +2943,21 @@ public function calculateControls( $completed = 0; //caculate controls for that region //Query for calculation properties of the control interval + $controlIntervalDataQuery = + "SELECT md.resource_id,md.ak_id,md.metric_id,md.collected,md.value_string + FROM `metric_data` md + WHERE md.resource_id = :resource_id AND md.ak_id = :ak_id AND md.metric_id = :metric_id + AND md.collected >= :control_region_starts"; + $controlIntervalDataParams = $dataset_params; + $controlIntervalDataParams[":control_region_starts"] = $controlRegion['control_region_starts']; + if ($controlRegion['control_region_type'] == 'data_points') { - $controlIntervalDataQuery = - "SELECT md.resource_id,md.ak_id,md.metric_id,md.collected,md.value_string - FROM `metric_data` md - WHERE md.resource_id = :resource_id - and md.ak_id = :ak_id - and md.metric_id = :metric_id - and md.collected >= '{$controlRegion['control_region_starts']}' - LIMIT {$controlRegion['control_region_points']} - "; + $controlIntervalDataQuery .= " LIMIT " . intval($controlRegion['control_region_points']); } else { - $controlIntervalDataQuery = - "SELECT md.resource_id,md.ak_id,md.metric_id,md.collected,md.value_string - FROM `metric_data` md - WHERE md.resource_id = :resource_id - and md.ak_id = :ak_id - and md.metric_id = :metric_id - and md.collected >= '{$controlRegion['control_region_starts']}' - and md.collected <= '{$controlRegion['control_region_ends']}' - "; + $controlIntervalDataQuery .= " AND md.collected <= :control_region_ends"; + $controlIntervalDataParams[":control_region_ends"] = $controlRegion['control_region_ends']; } - $controlIntervalData = $this->db->query($controlIntervalDataQuery, $dataset); + $controlIntervalData = $this->db->query($controlIntervalDataQuery, $controlIntervalDataParams); if ($controlRegion['control_region_type'] == 'data_points') { if (count($controlIntervalData) == $controlRegion['control_region_points']) { $completed = 1; @@ -2767,7 +2979,6 @@ public function calculateControls( $controlEnd = null; if ($controlLength > 0) { - $controlMin = min($controlValues); $controlMax = max($controlValues); @@ -2792,7 +3003,6 @@ public function calculateControls( $controlStart = array_sum($startRegion) / count($startRegion); $controlEnd = array_sum($endRegion) / count($endRegion); - } } } @@ -2810,22 +3020,36 @@ public function calculateControls( $updateStatement = "UPDATE control_regions - set completed = {$completed}, - controlStart = {$controlStart}, - controlEnd = {$controlEnd}, - controlMin = {$controlMin}, - controlMax = {$controlMax} - WHERE control_region_id = {$controlRegion['control_region_id']}"; + SET completed = :completed, + controlStart = :controlStart, + controlEnd = :controlEnd, + controlMin = :controlMin, + controlMax = :controlMax + WHERE control_region_id = :control_region_id"; + $updateStatementParams = [ + ":control_region_id" => $controlRegion['control_region_id'], + ":completed" => $completed, + ":controlStart" => $controlStart, + ":controlEnd" => $controlEnd, + ":controlMin" => $controlMin, + ":controlMax" => $controlMax + ]; foreach ($controlIntervalData as $data_point) { $controlStatusUpdateStatement = "UPDATE metric_data - SET controlStatus='control_region_time_interval' - WHERE resource_id = {$data_point['resource_id']} - and ak_id = {$data_point['ak_id']} - and metric_id = {$data_point['metric_id']} - and collected = '{$data_point['collected']}' - "; - $this->db->execute($controlStatusUpdateStatement); + SET controlStatus=:controlStatus + WHERE resource_id = :resource_id + and ak_id = :ak_id + and metric_id = :metric_id + and collected = :collected"; + $controlStatusUpdateStatementParams = [ + "controlStatus" => 'control_region_time_interval', + "resource_id" => $data_point['resource_id'], + "ak_id" => $data_point['ak_id'], + "metric_id" => $data_point['metric_id'], + "collected" =>$data_point['collected'], + ]; + $this->db->execute($controlStatusUpdateStatement, $controlStatusUpdateStatementParams); for ($i = 0; $i < $length; $i++) { if ($data[$i]['collected'] === $data_point['collected']) { $data[$i]['controlStatus'] = 'control_region_time_interval'; @@ -2836,14 +3060,14 @@ public function calculateControls( } else { $updateStatement = "UPDATE control_regions - set completed = 0, - controlStart = NULL, - controlEnd = NULL, - controlMin = NULL, - controlMax = NULL - WHERE control_region_id = {$controlRegion['control_region_id']}"; + SET completed = 0,controlStart = NULL,controlEnd = NULL, + controlMin = NULL,controlMax = NULL + WHERE control_region_id = :control_region_id"; + $updateStatementParams = [ + ":control_region_id" => $controlRegion['control_region_id'] + ]; } - $this->db->execute($updateStatement); + $this->db->execute($updateStatement, $updateStatementParams); } } if ($num_recalculated_CR == 0) { //no recalculation is done @@ -2854,7 +3078,6 @@ public function calculateControls( } else { //already been here once break; } - } $time_end = microtime(true); $timing['contRegCalc'] += $time_end - $time_start; @@ -2862,7 +3085,10 @@ public function calculateControls( $time_start_1 = microtime(true); //set last fake controlRegions for ease of controlRegion search - $controlRegions[] = array('control_region_starts' => date_format(date_add(date_create("now"), date_interval_create_from_date_string('1 year')), "Y-m-d H:i:s")); + $controlRegions[] = array( + 'control_region_starts' => date_format(date_add(date_create("now"), + date_interval_create_from_date_string('1 year')), "Y-m-d H:i:s") + ); //Set $controlApplicationRegions for ($idControlRegion = 0; $idControlRegion < count($controlRegions); $idControlRegion++) { $controlRegions[$idControlRegion]['control_region_starts_timestamp'] = date_timestamp_get(date_create($controlRegions[$idControlRegion]['control_region_starts'])); @@ -2879,6 +3105,7 @@ public function calculateControls( $update_controlMax = ""; $update_controlStatus = ""; $collected_array = array(); + $collected_array_2 = array(); for ($i = 0; $i < $length; $i++) { //get control region @@ -2897,6 +3124,7 @@ public function calculateControls( $controlEnd = $controlRegion['controlEnd']; // set $controlDiff to 1 if $controlDiff is near zero + $controlDiff = abs($controlEnd - $controlStart); if ($controlDiff / max($controlEnd, $controlStart, 1.0) < 1e-12) { $controlDiff = 1; } @@ -2918,7 +3146,7 @@ public function calculateControls( $ra_count = count($ra_values); if ($ra_count < $runningAverageSize) ///try to find the previous points and continue the running average { - $dataQuery2 = + $dataQuery2 = $this->db->prepare( "SELECT md.collected, md.value_string, aki.env_version FROM `metric_data` md, `ak_instance` aki @@ -2930,14 +3158,18 @@ public function calculateControls( and aki.ak_id = md.ak_id and aki.collected = md.collected and aki.resource_id = md.resource_id - ORDER BY collected desc - limit $runningAverageSize"; - $data2 = $this->db->query($dataQuery2, $dataset); + ORDER BY collected DESC + LIMIT :running_average_size"); + $dataQuery2->bindValue(":resource_id",$dataset_params[":resource_id"]); + $dataQuery2->bindValue(":ak_id",$dataset_params[":ak_id"]); + $dataQuery2->bindValue(":metric_id",$dataset_params[":metric_id"]); + $dataQuery2->bindValue(":running_average_size",$runningAverageSize, PDO::PARAM_INT); + + $data2 = $dataQuery2->execute(); $data2Count = count($data2); for ($j = 0; $j < $data2Count && $j < $runningAverageSize - $ra_count; $j++) { $ra_values[] = $data2[$j]['value_string']; } - } $runningAverage = array_sum($ra_values) / count($ra_values); @@ -2968,7 +3200,7 @@ public function calculateControls( } //Update DB - if ($runningAverage === null) { + /* if ($runningAverage === null) { $runningAverage = 'NULL'; } if ($control === null) { @@ -2986,12 +3218,12 @@ public function calculateControls( } if ($controlMax === null) { $controlMax = 'NULL'; - } + }*/ if ($data[$i]['controlStatus'] === 'control_region_time_interval') { $controlStatus = 'control_region_time_interval'; } - $update_running_average .= " WHEN '{$data[$i]['collected']}' THEN $runningAverage \n"; + /*$update_running_average .= " WHEN '{$data[$i]['collected']}' THEN $runningAverage \n"; $update_control .= " WHEN '{$data[$i]['collected']}' THEN $control \n"; $update_controlStart .= " WHEN '{$data[$i]['collected']}' THEN $controlStart \n"; $update_controlEnd .= " WHEN '{$data[$i]['collected']}' THEN $controlEnd \n"; @@ -2999,97 +3231,98 @@ public function calculateControls( $update_controlMax .= " WHEN '{$data[$i]['collected']}' THEN $controlMax \n"; $update_controlStatus .= " WHEN '{$data[$i]['collected']}' THEN '$controlStatus' \n"; - $collected_array[] = "'" . $data[$i]['collected'] . "'"; + $collected_array[] = "'" . $data[$i]['collected'] . "'";*/ + $collected_array_2[":collected" . $i] = $data[$i]['collected']; $Nallupdate_metric_data += 1; if ($Nallupdate_metric_data >= 500 || $i >= $length - 1) {// $time_start_sqlupdate = microtime(true); - $collected_array = implode(',', $collected_array); - $allupdate_metric_data = "UPDATE metric_data SET - running_average = CASE collected - {$update_running_average} - ELSE running_average - END - , control = CASE collected - {$update_control} - ELSE control - END - , controlStart = CASE collected - {$update_controlStart} - ELSE controlStart - END - , controlEnd = CASE collected - {$update_controlEnd} - ELSE controlEnd - END - , controlMin = CASE collected - {$update_controlMin} - ELSE controlMin - END - , controlMax = CASE collected - {$update_controlMax} - ELSE controlMax - END - , controlStatus = CASE collected - {$update_controlStatus} - ELSE controlStatus - END - WHERE resource_id = {$dataset['resource_id']} - and ak_id = {$dataset['ak_id']} - and metric_id = {$dataset['metric_id']} and collected IN ({$collected_array}) ;"; - - $this->db->execute($allupdate_metric_data); + //$collected_array = implode(',', $collected_array); + + $update_metric_data_params = [ + ":resource_id" => $dataset_params[":resource_id"], + ":collected" => $data[$i]['collected'], + ":runningAverage" => $runningAverage, + ":control" => $control, + ":controlStart" => $controlStart, + ":controlEnd" => $controlEnd, + ":controlMin" => $controlMin, + ":controlMax" => $controlMax, + ":controlStatus" => $controlStatus, + ]; + + $allupdate_metric_data = + "UPDATE metric_data SET + running_average = CASE collected WHEN :collected THEN :runningAverage + ELSE running_average END, + control = CASE collected WHEN :collected THEN :control + ELSE control END, + controlStart = CASE collected WHEN :collected THEN :controlStart + ELSE controlStart END, + controlEnd = CASE collected WHEN :collected THEN :controlEnd + ELSE controlEnd END, + controlMin = CASE collected WHEN :collected THEN :controlMin + ELSE controlMin END, + controlMax = CASE collected WHEN :collected THEN :controlMax + ELSE controlMax END, + controlStatus = CASE collected WHEN :collected THEN :controlStatus + ELSE controlStatus END + WHERE resource_id = :resource_id AND ak_id = :ak_id AND metric_id = :metric_id + AND collected IN (".implode(',',array_keys($collected_array_2)).")"; + + $allupdate_metric_data_params = array_merge([ + ":ak_id" => $dataset_params[":ak_id"], + ":metric_id" => $dataset_params[":metric_id"]], + $update_metric_data_params, $collected_array_2); + + $this->db->execute($allupdate_metric_data, $allupdate_metric_data_params); $time_end_sqlupdate1 = microtime(true); $timing['sqlupdate1'] += $time_end_sqlupdate1 - $time_start_sqlupdate; $allupdate_a_data2 = "UPDATE a_data2 SET - running_average = CASE FROM_UNIXTIME(collected) - {$update_running_average} - ELSE running_average - END - , control = CASE FROM_UNIXTIME(collected) - {$update_control} - ELSE control - END - , controlStart = CASE FROM_UNIXTIME(collected) - {$update_controlStart} - ELSE controlStart - END - , controlEnd = CASE FROM_UNIXTIME(collected) - {$update_controlEnd} - ELSE controlEnd - END - , controlMin = CASE FROM_UNIXTIME(collected) - {$update_controlMin} - ELSE controlMin - END - , controlMax = CASE FROM_UNIXTIME(collected) - {$update_controlMax} - ELSE controlMax - END - , controlStatus = CASE FROM_UNIXTIME(collected) - {$update_controlStatus} - ELSE controlStatus - END - WHERE resource_id = {$dataset['resource_id']} - and ak_def_id = {$akId2akDefIdMap[$dataset['ak_id']]['ak_def_id']} - and num_units = {$akId2akDefIdMap[$dataset['ak_id']]['num_units']} - and metric_id = {$dataset['metric_id']} and FROM_UNIXTIME(collected) IN ({$collected_array}) ;"; - - $this->db->execute($allupdate_a_data2); + running_average = CASE FROM_UNIXTIME(collected) WHEN :collected THEN :runningAverage + ELSE running_average END, + control = CASE collected WHEN :collected THEN :control + ELSE control END, + controlStart = CASE FROM_UNIXTIME(collected) WHEN :collected THEN :controlStart + ELSE controlStart END, + controlEnd = CASE FROM_UNIXTIME(collected) WHEN :collected THEN :controlEnd + ELSE controlEnd END, + controlMin = CASE FROM_UNIXTIME(collected) WHEN :collected THEN :controlMin + ELSE controlMin END, + controlMax = CASE FROM_UNIXTIME(collected) WHEN :collected THEN :controlMax + ELSE controlMax END, + controlStatus = CASE FROM_UNIXTIME(collected) WHEN :collected THEN :controlStatus + ELSE controlStatus END + WHERE resource_id = :resource_id AND ak_def_id = :ak_def_id AND num_units = :num_units + AND metric_id = :metric_id + AND FROM_UNIXTIME(collected) IN (" . implode(', ', array_keys($collected_array_2)) . ")"; + + $allupdate_a_data2_params = array_merge( + [ + ":ak_def_id" => $akId2akDefIdMap[$dataset['ak_id']]['ak_def_id'], + ":num_units" => $akId2akDefIdMap[$dataset['ak_id']]['num_units'], + ":metric_id" => $dataset_params[":metric_id"] + ], + $update_metric_data_params, $collected_array_2); + + $this->db->execute($allupdate_a_data2, $allupdate_a_data2_params); $time_end_sqlupdate2 = microtime(true); // ak_instance if ($metrics_walltime_id !== null && $dataset['metric_id'] === $metrics_walltime_id) { - $allupdate_ak_instance = "UPDATE ak_instance SET - controlStatus = CASE collected - {$update_controlStatus} - ELSE controlStatus - END - WHERE resource_id = {$dataset['resource_id']} - and ak_id = {$dataset['ak_id']} - and collected IN ({$collected_array}) ;"; - $this->db->execute($allupdate_ak_instance); + $allupdate_ak_instance = + "UPDATE ak_instance SET + controlStatus = CASE collected WHEN :collected THEN :controlStatus ELSE controlStatus END + WHERE resource_id = :resource_id AND ak_id = :ak_id + and collected IN (" . implode(', ', array_keys($collected_array_2)) . ")"; + $allupdate_ak_instance_params = array_merge([ + ":resource_id" => $dataset_params[":resource_id"], + ":ak_id" => $dataset_params[":ak_id"], + ":collected" => $data[$i]['collected'], + ":controlStatus" => $controlStatus ], + $collected_array_2); + $this->db->execute($allupdate_ak_instance, $allupdate_ak_instance_params); } $timing['sqlupdate1'] += $time_end_sqlupdate1 - $time_start_sqlupdate; @@ -3098,15 +3331,6 @@ public function calculateControls( $timing['N_sqlupdate1'] += $Nallupdate_metric_data; $timing['N_sqlupdate2'] += $Nallupdate_metric_data; - $update_running_average = ""; - $update_control = ""; - $update_controlStart = ""; - $update_controlEnd = ""; - $update_controlMin = ""; - $update_controlMax = ""; - $update_controlStatus = ""; - $collected_array = array(); - $Nallupdate_metric_data = 0; } } @@ -3122,12 +3346,17 @@ public function calculateControls( $t_bigcycle = $time_end_bigcycle - $time_start_bigcycle; $this->log("Timing(Cycle for calculating running average and control values)=" . ($t_bigcycle), PEAR_LOG_DEBUG); - $this->log(" Timing(data for control calc)=" . sprintf("%.4f", $timing['dataQuery']) . " (" . sprintf("%.2f", 100.0 * $timing['dataQuery'] / $t_bigcycle) . "%)", PEAR_LOG_DEBUG); - $this->log(" Timing(Control region calculation)=" . sprintf("%.4f", $timing['contRegCalc']) . " (" . sprintf("%.2f", 100.0 * $timing['contRegCalc'] / $t_bigcycle) . "%)", PEAR_LOG_DEBUG); - $this->log(" Timing(data for control calc)=" . sprintf("%.4f", $timing['contCalc']) . " (" . sprintf("%.2f", 100.0 * $timing['contCalc'] / $t_bigcycle) . "%)", PEAR_LOG_DEBUG); - $this->log(" Timing(sql update)=" . sprintf("%.4f", $timing['sqlupdate1']) . " (" . sprintf("%.2f", 100.0 * $timing['sqlupdate1'] / $t_bigcycle) . "%)", PEAR_LOG_DEBUG); - $this->log(" Timing(sql update)=" . sprintf("%.4f", $timing['sqlupdate2']) . " (" . sprintf("%.2f", 100.0 * $timing['sqlupdate2'] / $t_bigcycle) . "%)", PEAR_LOG_DEBUG); - + $this->log(" Timing(data for control calc)=" . sprintf("%.4f", $timing['dataQuery']) . " (" . sprintf("%.2f", + 100.0 * $timing['dataQuery'] / $t_bigcycle) . "%)", PEAR_LOG_DEBUG); + $this->log(" Timing(Control region calculation)=" . sprintf("%.4f", + $timing['contRegCalc']) . " (" . sprintf("%.2f", 100.0 * $timing['contRegCalc'] / $t_bigcycle) . "%)", + PEAR_LOG_DEBUG); + $this->log(" Timing(data for control calc)=" . sprintf("%.4f", $timing['contCalc']) . " (" . sprintf("%.2f", + 100.0 * $timing['contCalc'] / $t_bigcycle) . "%)", PEAR_LOG_DEBUG); + $this->log(" Timing(sql update)=" . sprintf("%.4f", $timing['sqlupdate1']) . " (" . sprintf("%.2f", + 100.0 * $timing['sqlupdate1'] / $t_bigcycle) . "%)", PEAR_LOG_DEBUG); + $this->log(" Timing(sql update)=" . sprintf("%.4f", $timing['sqlupdate2']) . " (" . sprintf("%.2f", + 100.0 * $timing['sqlupdate2'] / $t_bigcycle) . "%)", PEAR_LOG_DEBUG); } // -------------------------------------------------------------------------------- @@ -3140,7 +3369,6 @@ public function createAggregateTables($includeControlData = false) $this->db->handle()->beginTransaction(); try { - // Create a table containing data needed to generate a hierarchical tree // view of the application kernels including a start and end date for the // collection of metrics. @@ -3329,7 +3557,6 @@ public function createAggregateTables($includeControlData = false) $this->db->handle()->commit(); return true; - } // -------------------------------------------------------------------------------- @@ -3352,10 +3579,12 @@ public function updateEnvironmentVersions($dryRunMode = false) foreach ($akInstances as $akInstance) { $timestamp = strtotime($akInstance->deployment_time); - $options = array('ak_def_id' => $appKernelDef->id, + $options = array( + 'ak_def_id' => $appKernelDef->id, 'collected' => $timestamp, 'resource_id' => $resource->id, - 'num_units' => 1); + 'num_units' => 1 + ); $this->loadAppKernelInstanceInfo($options, $instanceData); $recalculatedEnvVersion = $instanceData->environmentVersion(); @@ -3372,8 +3601,13 @@ public function updateEnvironmentVersions($dryRunMode = false) try { $sql = "UPDATE ak_instance SET env_version=? WHERE " . "ak_id=? AND collected=FROM_UNIXTIME(?) AND resource_id=? AND env_version=?"; - $params = array($recalculatedEnvVersion, $instanceData->db_ak_id, - $timestamp, $resource->id, $instanceData->environmentVersion); + $params = array( + $recalculatedEnvVersion, + $instanceData->db_ak_id, + $timestamp, + $resource->id, + $instanceData->environmentVersion + ); $this->db->execute($sql, $params); print " UPDATE ak_instance SET env_version='$recalculatedEnvVersion' WHERE " . "ak_id={$instanceData->db_ak_id} AND collected=FROM_UNIXTIME($timestamp) AND " . @@ -3382,7 +3616,6 @@ public function updateEnvironmentVersions($dryRunMode = false) $this->log("Error executing query '$sql': " . $e->getMessage()); $this->db->handle()->rollback(); } - } } } @@ -3480,8 +3713,7 @@ public function __construct( $description, $rawNumProcUnits, $resourceDescription = 'resource description' - ) - { + ) { $this->akName = $name; $this->akId = $akId; $this->resourceName = $resource; @@ -3529,21 +3761,30 @@ public function export() $duration_info['end'] = date('Y-m-d', $this->timeVector[$length - 1]); $title['title'] = "App Kernel Data"; - $title2['parameters'] = array("App Kernel = " . $this->akName, + $title2['parameters'] = array( + "App Kernel = " . $this->akName, "Resource = " . $this->resourceName, "Metric = " . $this->metric, - "Processing Units = " . $this->numProcUnits); + "Processing Units = " . $this->numProcUnits + ); $headers = array('Date', 'Value', 'Control', 'Changed'); for ($i = 0; $i < $length; $i++) { - $rows[$this->timeVector[$i]] = array(date('Y-m-d H:i:s', $this->timeVector[$i]), $this->valueVector[$i], $this->controlVector[$i], $this->versionVector[$i] == 1 ? 'yes' : 'no'); + $rows[$this->timeVector[$i]] = array( + date('Y-m-d H:i:s', $this->timeVector[$i]), + $this->valueVector[$i], + $this->controlVector[$i], + $this->versionVector[$i] == 1 ? 'yes' : 'no' + ); } } - return array('title' => $title, + return array( + 'title' => $title, 'title2' => $title2, 'duration' => $duration_info, 'headers' => $headers, - 'rows' => $rows); + 'rows' => $rows + ); } // -------------------------------------------------------------------------------- diff --git a/tests/unit/AppKernelDbTest.php b/tests/unit/AppKernelDbTest.php index 580e3b1..d093043 100644 --- a/tests/unit/AppKernelDbTest.php +++ b/tests/unit/AppKernelDbTest.php @@ -13,9 +13,9 @@ function create_instance_data($db_ak_id, $deployment_num_proc_units, $deployment_time, $status) { $ak = new InstanceData; - $ak->db_ak_id = $db_ak_id; - $ak->deployment_num_proc_units = strtotime($deployment_num_proc_units); - $ak->deployment_time = $deployment_time; + $ak->db_ak_id = intval($db_ak_id); + $ak->deployment_num_proc_units = intval($deployment_num_proc_units); + $ak->deployment_time = strtotime($deployment_time); $ak->status = $status; return $ak; } @@ -87,7 +87,7 @@ public function getUniqueAppKernelsProvider() ]; return [ [[], [], [], 27, null], - [[28, 1], [], [], null, $akd_list], + [[28, 1], [], [], 26, null], [[28], [], [], null, $akd_list], [[28], [1], [], null, [ 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1537780756, 1589170859), @@ -220,13 +220,13 @@ public function loadAppKernelInstancesProvider() create_instance_data(81, 2, "2020-05-01 10:57:03", "success"), create_instance_data(82, 4, "2020-05-01 10:56:56", "success"), ]], - [23,28,45, [ + [23, 28, 45, [ create_instance_data(80, 1, "2020-05-01 11:57:11", "success"), create_instance_data(81, 2, "2020-05-01 10:57:03", "success"), create_instance_data(82, 4, "2020-05-01 10:56:56", "success"), create_instance_data(82, 4, "2020-05-01 10:34:33", "success") ]], - [23001,null, 0, null] + [23001, null, 0, null] ]; } @@ -240,7 +240,7 @@ public function testLoadAppKernelInstances($ak_def_id, $resource_id, $n_expected if ($expected === null && $n_expected === null) { print(count($actual) . ", [\n"); - foreach (array_slice($actual,0,min(10,count($actual))) as $val) { + foreach (array_slice($actual, 0, min(10, count($actual))) as $val) { print("create_instance_data($val->db_ak_id, $val->deployment_num_proc_units, \"$val->deployment_time\", \"$val->status\"),\n"); } print("]\n"); @@ -266,4 +266,59 @@ public function testLoadAppKernelInstances($ak_def_id, $resource_id, $n_expected } } } + + public function testNewControlRegions() + { + $ak_db = new \AppKernel\AppKernelDb(); + + // update initial control for 5 points + $ak_db->newControlRegions( + $resource_id=28, + $ak_def_id=23, + $control_region_type='data_points', + $startDateTime="2020-03-28", + $endDateTime=null, + $n_points=5, + $comment="short initial control region", + $update = true, + $control_region_def_id = null + ); + $ak_db->calculateControls(false, false, 20, 5, "UBHPC_32core", "namd"); + + $control_regions = $ak_db->getControlRegions($resource_id = 28, $ak_def_id = 23); + + $this->assertSame(1, count($control_regions)); + $this->assertEquals([ + 'control_region_def_id' => "8", + 'resource_id' => "28", + 'ak_def_id' => "23", + 'control_region_type' => "data_points", + 'control_region_starts' => "2020-03-28 00:00:00", + 'control_region_ends' => null, + 'control_region_points' => "5", + 'comment' => "short initial control region" + ], $control_regions[0]); + + var_dump($control_regions); + + +// $actual = $ak_db->newControlRegions( +// $resource_id=28, +// $ak_def_id=23, +// $control_region_type='data_points', +// $startDateTime="2020-04-01", +// $endDateTime=null, +// $n_points=5, +// $comment="test", +// $update = true, +// $control_region_def_id = null +// ); +// $ak_db->calculateControls(false, false, 20, 5, "UBHPC_32core", "namd"); +// +// var_dump($control_regions); + + #print_r($actual); + } + + } From b6da6bef66b51f5b042766474e78b28e45e911ca Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Fri, 29 May 2020 17:11:24 -0400 Subject: [PATCH 31/63] fixed control calculations --- classes/AppKernel/AppKernelDb.php | 233 +++++++++++------------- classes/AppKernel/AppKernelIngestor.php | 43 ++++- 2 files changed, 148 insertions(+), 128 deletions(-) diff --git a/classes/AppKernel/AppKernelDb.php b/classes/AppKernel/AppKernelDb.php index ca83b4a..ae458e1 100644 --- a/classes/AppKernel/AppKernelDb.php +++ b/classes/AppKernel/AppKernelDb.php @@ -564,9 +564,9 @@ public function getProcessingUnits( } if (count($resource_ids) > 0) { $sql .= ' AND vt.resource_id in ('; - for($i=0; $i < count($resource_ids); $i++) { + for ($i = 0; $i < count($resource_ids); $i++) { $sql .= ':resource_id_' . $i; - if($i < count($resource_ids) - 1) { + if ($i < count($resource_ids) - 1) { $sql .= ','; } $params[':resource_id_' . $i] = $resource_ids[$i]; @@ -614,9 +614,9 @@ public function getUniqueAppKernels( if (count($resource_ids) > 0) { $sql .= ' AND vt.resource_id in ('; - for($i=0; $i < count($resource_ids); $i++) { + for ($i = 0; $i < count($resource_ids); $i++) { $sql .= ':resource_id_' . $i; - if($i < count($resource_ids) - 1) { + if ($i < count($resource_ids) - 1) { $sql .= ','; } $params[':resource_id_' . $i] = intval($resource_ids[$i]); @@ -687,9 +687,9 @@ public function getMetrics( } if (count($resource_ids) > 0) { $sql .= ' AND vt.resource_id in ('; - for($i=0; $i < count($resource_ids); $i++) { + for ($i = 0; $i < count($resource_ids); $i++) { $sql .= ':resource_id_' . $i; - if($i < count($resource_ids) - 1) { + if ($i < count($resource_ids) - 1) { $sql .= ','; } $params[':resource_id_' . $i] = intval($resource_ids[$i]); @@ -2264,7 +2264,8 @@ public function getControlRegions($resource_id, $ak_def_id) * @param $ak_def_id * @return array */ - protected function getAppKernelIdsForAppKernelDefId($ak_def_id) { + protected function getAppKernelIdsForAppKernelDefId($ak_def_id) + { $ak_def_id = intval($ak_def_id); $sql = "SELECT ak_id FROM mod_appkernel.app_kernel WHERE ak_def_id=:ak_def_id"; $params = [":ak_def_id" => $ak_def_id]; @@ -2296,9 +2297,9 @@ public function newControlRegions( $ak_ids = $this->getAppKernelIdsForAppKernelDefId($ak_def_id); $ak_ids_in_sql_param = []; $ak_ids_in_sql = ''; - for($i=0; $i < count($ak_ids); $i++) { + for ($i = 0; $i < count($ak_ids); $i++) { $ak_ids_in_sql .= ':ak_id_' . $i; - if($i < count($ak_ids) - 1) { + if ($i < count($ak_ids) - 1) { $ak_ids_in_sql .= ','; } $ak_ids_in_sql_param[':ak_id_' . $i] = $ak_ids[$i]; @@ -2564,7 +2565,6 @@ public function setInitialControlRegions($initial = true, $envbased = false, $co /** * Calculates the running average and control values for each metric value * - * @param bool $recalculateControlIntervals * @param bool $recalculateControls * @param int $controlIntervalSize * @param int $runningAverageSize @@ -2573,7 +2573,6 @@ public function setInitialControlRegions($initial = true, $envbased = false, $co * @throws Exception */ public function calculateControls( - $recalculateControlIntervals = false, $recalculateControls = false, $controlIntervalSize = 20, $runningAverageSize = 5, @@ -2635,12 +2634,12 @@ public function calculateControls( $this->loadAppKernelDefinitions(); } - $ak_def_id =$this->appKernelDefinitions[$restrictToAppKernel]->id; + $ak_def_id = $this->appKernelDefinitions[$restrictToAppKernel]->id; $ak_ids = $this->getAppKernelIdsForAppKernelDefId($ak_def_id); - for($i=0; $i < count($ak_ids); $i++) { + for ($i = 0; $i < count($ak_ids); $i++) { $ak_ids_in_sql .= ':ak_id_' . $i; - if($i < count($ak_ids) - 1) { + if ($i < count($ak_ids) - 1) { $ak_ids_in_sql .= ','; } $ak_ids_in_sql_param[':ak_id_' . $i] = $ak_ids[$i]; @@ -2711,14 +2710,14 @@ public function calculateControls( $sql = "UPDATE metric_data SET control = null,running_average = null,controlStatus = 'undefined'"; $params = []; - if ($resource_id!==null && $ak_ids!==null) { + if ($resource_id !== null && $ak_ids !== null) { $sql .= " WHERE resource_id=:resource_id AND ak_id IN (" . $ak_ids_in_sql . ")"; $params[':resource_id'] = $resource_id; $params = array_merge($params, $ak_ids_in_sql_param); - } elseif ($resource_id===null && $ak_ids!==null) { + } elseif ($resource_id === null && $ak_ids !== null) { $sql .= " WHERE ak_id IN (" . $ak_ids_in_sql . ")"; $params = array_merge($params, $ak_ids_in_sql_param); - } elseif ($resource_id!==null && $ak_ids===null) { + } elseif ($resource_id !== null && $ak_ids === null) { $sql .= " WHERE resource_id=:resource_id"; $params[':resource_id'] = $resource_id; } @@ -2742,14 +2741,14 @@ public function calculateControls( $sql = "SELECT distinct ak_id, metric_id, resource_id FROM `metric_data`"; $params = []; - if ($resource_id!==null && $ak_ids!==null) { + if ($resource_id !== null && $ak_ids !== null) { $sql .= " WHERE resource_id=:resource_id AND ak_id IN (" . $ak_ids_in_sql . ")"; $params[':resource_id'] = $resource_id; $params = array_merge($params, $ak_ids_in_sql_param); - } elseif ($resource_id===null && $ak_ids!==null) { + } elseif ($resource_id === null && $ak_ids !== null) { $sql .= " WHERE ak_id IN (" . $ak_ids_in_sql . ")"; $params = array_merge($params, $ak_ids_in_sql_param); - } elseif ($resource_id!==null && $ak_ids===null) { + } elseif ($resource_id !== null && $ak_ids === null) { $sql .= " WHERE resource_id=:resource_id"; $params[':resource_id'] = $resource_id; } @@ -2784,7 +2783,7 @@ public function calculateControls( ]; if ($progressVerbosity === 1) { $message = "Calculating running average and control values. " . - number_format(100.0 * $di / $datasetsLength,2) . "% " . json_encode($dataset); + number_format(100.0 * $di / $datasetsLength, 2) . "% " . json_encode($dataset); $this->log($message, PEAR_LOG_DEBUG); } $control_criteria = $this->control_criteria; @@ -2929,7 +2928,7 @@ public function calculateControls( foreach ($controlRegionDef as $crdef) { if (!key_exists($crdef['control_region_def_id'], $CR)) { $sql = "INSERT INTO control_regions (control_region_def_id,ak_id,metric_id) VALUES(?,?,?)"; - $params = [$crdef['control_region_def_id'],$dataset['ak_id'],$dataset['metric_id']]; + $params = [$crdef['control_region_def_id'], $dataset['ak_id'], $dataset['metric_id']]; $this->db->execute($sql, $params); } } @@ -2952,12 +2951,13 @@ public function calculateControls( $controlIntervalDataParams[":control_region_starts"] = $controlRegion['control_region_starts']; if ($controlRegion['control_region_type'] == 'data_points') { - $controlIntervalDataQuery .= " LIMIT " . intval($controlRegion['control_region_points']); + $controlIntervalDataQuery .= " LIMIT " . intval($controlRegion['control_region_points']); } else { $controlIntervalDataQuery .= " AND md.collected <= :control_region_ends"; $controlIntervalDataParams[":control_region_ends"] = $controlRegion['control_region_ends']; } - $controlIntervalData = $this->db->query($controlIntervalDataQuery, $controlIntervalDataParams); + $controlIntervalData = $this->db->query($controlIntervalDataQuery, + $controlIntervalDataParams); if ($controlRegion['control_region_type'] == 'data_points') { if (count($controlIntervalData) == $controlRegion['control_region_points']) { $completed = 1; @@ -3043,13 +3043,14 @@ public function calculateControls( and metric_id = :metric_id and collected = :collected"; $controlStatusUpdateStatementParams = [ - "controlStatus" => 'control_region_time_interval', - "resource_id" => $data_point['resource_id'], - "ak_id" => $data_point['ak_id'], - "metric_id" => $data_point['metric_id'], - "collected" =>$data_point['collected'], + ":controlStatus" => 'control_region_time_interval', + ":resource_id" => $data_point['resource_id'], + ":ak_id" => $data_point['ak_id'], + ":metric_id" => $data_point['metric_id'], + ":collected" => $data_point['collected'], ]; - $this->db->execute($controlStatusUpdateStatement, $controlStatusUpdateStatementParams); + $this->db->execute($controlStatusUpdateStatement, + $controlStatusUpdateStatementParams); for ($i = 0; $i < $length; $i++) { if ($data[$i]['collected'] === $data_point['collected']) { $data[$i]['controlStatus'] = 'control_region_time_interval'; @@ -3104,8 +3105,9 @@ public function calculateControls( $update_controlMin = ""; $update_controlMax = ""; $update_controlStatus = ""; - $collected_array = array(); - $collected_array_2 = array(); + $update_param = []; + $controlStatusParam = []; + $collected_array = []; for ($i = 0; $i < $length; $i++) { //get control region @@ -3160,12 +3162,13 @@ public function calculateControls( and aki.resource_id = md.resource_id ORDER BY collected DESC LIMIT :running_average_size"); - $dataQuery2->bindValue(":resource_id",$dataset_params[":resource_id"]); - $dataQuery2->bindValue(":ak_id",$dataset_params[":ak_id"]); - $dataQuery2->bindValue(":metric_id",$dataset_params[":metric_id"]); - $dataQuery2->bindValue(":running_average_size",$runningAverageSize, PDO::PARAM_INT); + $dataQuery2->bindValue(":resource_id", $dataset_params[":resource_id"]); + $dataQuery2->bindValue(":ak_id", $dataset_params[":ak_id"]); + $dataQuery2->bindValue(":metric_id", $dataset_params[":metric_id"]); + $dataQuery2->bindValue(":running_average_size", $runningAverageSize, PDO::PARAM_INT); - $data2 = $dataQuery2->execute(); + $dataQuery2->execute(); + $data2 = $dataQuery2->fetchAll(); $data2Count = count($data2); for ($j = 0; $j < $data2Count && $j < $runningAverageSize - $ra_count; $j++) { $ra_values[] = $data2[$j]['value_string']; @@ -3199,112 +3202,77 @@ public function calculateControls( $control = 0; } - //Update DB - /* if ($runningAverage === null) { - $runningAverage = 'NULL'; - } - if ($control === null) { - $control = 'NULL'; - $controlStatus = 'undefined'; - } - if ($controlStart === null) { - $controlStart = 'NULL'; - } - if ($controlEnd === null) { - $controlEnd = 'NULL'; - } - if ($controlMin === null) { - $controlMin = 'NULL'; - } - if ($controlMax === null) { - $controlMax = 'NULL'; - }*/ if ($data[$i]['controlStatus'] === 'control_region_time_interval') { $controlStatus = 'control_region_time_interval'; } - /*$update_running_average .= " WHEN '{$data[$i]['collected']}' THEN $runningAverage \n"; - $update_control .= " WHEN '{$data[$i]['collected']}' THEN $control \n"; - $update_controlStart .= " WHEN '{$data[$i]['collected']}' THEN $controlStart \n"; - $update_controlEnd .= " WHEN '{$data[$i]['collected']}' THEN $controlEnd \n"; - $update_controlMin .= " WHEN '{$data[$i]['collected']}' THEN $controlMin \n"; - $update_controlMax .= " WHEN '{$data[$i]['collected']}' THEN $controlMax \n"; - $update_controlStatus .= " WHEN '{$data[$i]['collected']}' THEN '$controlStatus' \n"; - - $collected_array[] = "'" . $data[$i]['collected'] . "'";*/ - $collected_array_2[":collected" . $i] = $data[$i]['collected']; + $update_param[":collected" . $i] = $data[$i]['collected']; + $update_param[":runningAverage" . $i] = $runningAverage; + $update_param[":control" . $i] = $control; + $update_param[":controlStart" . $i] = $controlStart; + $update_param[":controlEnd" . $i] = $controlEnd; + $update_param[":controlMin" . $i] = $controlMin; + $update_param[":controlMax" . $i] = $controlMax; + $update_param[":controlStatus" . $i] = $controlStatus; + $controlStatusParam[":controlStatus" . $i] = $controlStatus; + + $update_running_average .= " WHEN :collected$i THEN :runningAverage$i \n"; + $update_control .= " WHEN :collected$i THEN :control$i \n"; + $update_controlStart .= " WHEN :collected$i THEN :controlStart$i \n"; + $update_controlEnd .= " WHEN :collected$i THEN :controlEnd$i \n"; + $update_controlMin .= " WHEN :collected$i THEN :controlMin$i \n"; + $update_controlMax .= " WHEN :collected$i THEN :controlMax$i \n"; + $update_controlStatus .= " WHEN :collected$i THEN :controlStatus$i \n"; + + $collected_array[":collected" . $i] = $data[$i]['collected']; $Nallupdate_metric_data += 1; - if ($Nallupdate_metric_data >= 500 || $i >= $length - 1) {// + if ($Nallupdate_metric_data >= 500 || $i >= $length - 1) { $time_start_sqlupdate = microtime(true); - //$collected_array = implode(',', $collected_array); - - $update_metric_data_params = [ - ":resource_id" => $dataset_params[":resource_id"], - ":collected" => $data[$i]['collected'], - ":runningAverage" => $runningAverage, - ":control" => $control, - ":controlStart" => $controlStart, - ":controlEnd" => $controlEnd, - ":controlMin" => $controlMin, - ":controlMax" => $controlMax, - ":controlStatus" => $controlStatus, - ]; - - $allupdate_metric_data = - "UPDATE metric_data SET - running_average = CASE collected WHEN :collected THEN :runningAverage - ELSE running_average END, - control = CASE collected WHEN :collected THEN :control - ELSE control END, - controlStart = CASE collected WHEN :collected THEN :controlStart - ELSE controlStart END, - controlEnd = CASE collected WHEN :collected THEN :controlEnd - ELSE controlEnd END, - controlMin = CASE collected WHEN :collected THEN :controlMin - ELSE controlMin END, - controlMax = CASE collected WHEN :collected THEN :controlMax - ELSE controlMax END, - controlStatus = CASE collected WHEN :collected THEN :controlStatus - ELSE controlStatus END + + $allupdate_metric_data = "UPDATE metric_data SET + running_average = CASE collected {$update_running_average} ELSE running_average END, + control = CASE collected {$update_control} ELSE control END, + controlStart = CASE collected {$update_controlStart} ELSE controlStart END, + controlEnd = CASE collected {$update_controlEnd} ELSE controlEnd END, + controlMin = CASE collected {$update_controlMin} ELSE controlMin END, + controlMax = CASE collected {$update_controlMax} ELSE controlMax END, + controlStatus = CASE collected {$update_controlStatus} ELSE controlStatus END WHERE resource_id = :resource_id AND ak_id = :ak_id AND metric_id = :metric_id - AND collected IN (".implode(',',array_keys($collected_array_2)).")"; + AND collected IN (" . implode(',', array_keys($collected_array)) . ")"; - $allupdate_metric_data_params = array_merge([ - ":ak_id" => $dataset_params[":ak_id"], - ":metric_id" => $dataset_params[":metric_id"]], - $update_metric_data_params, $collected_array_2); + $allupdate_metric_data_params = array_merge( + [ + ":resource_id" => $dataset_params[":resource_id"], + ":ak_id" => $dataset_params[":ak_id"], + ":metric_id" => $dataset_params[":metric_id"] + ], + $update_param, $collected_array); $this->db->execute($allupdate_metric_data, $allupdate_metric_data_params); $time_end_sqlupdate1 = microtime(true); $timing['sqlupdate1'] += $time_end_sqlupdate1 - $time_start_sqlupdate; $allupdate_a_data2 = "UPDATE a_data2 SET - running_average = CASE FROM_UNIXTIME(collected) WHEN :collected THEN :runningAverage - ELSE running_average END, - control = CASE collected WHEN :collected THEN :control - ELSE control END, - controlStart = CASE FROM_UNIXTIME(collected) WHEN :collected THEN :controlStart - ELSE controlStart END, - controlEnd = CASE FROM_UNIXTIME(collected) WHEN :collected THEN :controlEnd - ELSE controlEnd END, - controlMin = CASE FROM_UNIXTIME(collected) WHEN :collected THEN :controlMin - ELSE controlMin END, - controlMax = CASE FROM_UNIXTIME(collected) WHEN :collected THEN :controlMax - ELSE controlMax END, - controlStatus = CASE FROM_UNIXTIME(collected) WHEN :collected THEN :controlStatus - ELSE controlStatus END + running_average = CASE FROM_UNIXTIME(collected) {$update_running_average} ELSE running_average END, + control = CASE FROM_UNIXTIME(collected) {$update_control} ELSE control END, + controlStart = CASE FROM_UNIXTIME(collected) {$update_controlStart} ELSE controlStart END, + controlEnd = CASE FROM_UNIXTIME(collected) {$update_controlEnd} ELSE controlEnd END, + controlMin = CASE FROM_UNIXTIME(collected) {$update_controlMin} ELSE controlMin END, + controlMax = CASE FROM_UNIXTIME(collected) {$update_controlMax} ELSE controlMax END, + controlStatus = CASE FROM_UNIXTIME(collected) {$update_controlStatus} ELSE controlStatus END WHERE resource_id = :resource_id AND ak_def_id = :ak_def_id AND num_units = :num_units AND metric_id = :metric_id - AND FROM_UNIXTIME(collected) IN (" . implode(', ', array_keys($collected_array_2)) . ")"; + AND FROM_UNIXTIME(collected) IN (" . implode(', ', array_keys($collected_array)) . ")"; $allupdate_a_data2_params = array_merge( [ + ":resource_id" => $dataset_params[":resource_id"], ":ak_def_id" => $akId2akDefIdMap[$dataset['ak_id']]['ak_def_id'], ":num_units" => $akId2akDefIdMap[$dataset['ak_id']]['num_units'], ":metric_id" => $dataset_params[":metric_id"] ], - $update_metric_data_params, $collected_array_2); + $update_param, $collected_array); $this->db->execute($allupdate_a_data2, $allupdate_a_data2_params); $time_end_sqlupdate2 = microtime(true); @@ -3313,15 +3281,15 @@ public function calculateControls( if ($metrics_walltime_id !== null && $dataset['metric_id'] === $metrics_walltime_id) { $allupdate_ak_instance = "UPDATE ak_instance SET - controlStatus = CASE collected WHEN :collected THEN :controlStatus ELSE controlStatus END + controlStatus = CASE collected {$update_controlStatus} ELSE controlStatus END WHERE resource_id = :resource_id AND ak_id = :ak_id - and collected IN (" . implode(', ', array_keys($collected_array_2)) . ")"; - $allupdate_ak_instance_params = array_merge([ - ":resource_id" => $dataset_params[":resource_id"], - ":ak_id" => $dataset_params[":ak_id"], - ":collected" => $data[$i]['collected'], - ":controlStatus" => $controlStatus ], - $collected_array_2); + and collected IN (" . implode(', ', array_keys($collected_array)) . ")"; + $allupdate_ak_instance_params = array_merge( + [ + ":resource_id" => $dataset_params[":resource_id"], + ":ak_id" => $dataset_params[":ak_id"], + ], + $controlStatusParam, $collected_array); $this->db->execute($allupdate_ak_instance, $allupdate_ak_instance_params); } @@ -3332,6 +3300,17 @@ public function calculateControls( $timing['N_sqlupdate2'] += $Nallupdate_metric_data; $Nallupdate_metric_data = 0; + + $update_running_average = ""; + $update_control = ""; + $update_controlStart = ""; + $update_controlEnd = ""; + $update_controlMin = ""; + $update_controlMax = ""; + $update_controlStatus = ""; + $update_param = []; + $controlStatusParam = []; + $collected_array = []; } } } diff --git a/classes/AppKernel/AppKernelIngestor.php b/classes/AppKernel/AppKernelIngestor.php index 4f29fde..5a9b7ff 100644 --- a/classes/AppKernel/AppKernelIngestor.php +++ b/classes/AppKernel/AppKernelIngestor.php @@ -9,6 +9,7 @@ //use AppKernel\IngestionLogEntry; //use AppKernel\InstanceData; use Exception; +use PDOException; /** * Class AppKernelIngestor @@ -764,7 +765,7 @@ public function run() if (!$this->dryRunMode) { try { $this->logger->info("Caculate running average and control values"); - $this->db->calculateControls($this->recalculateControls, $this->recalculateControls, 20, 5, + $this->db->calculateControls($this->recalculateControls, 20, 5, $this->restrictToResource, $this->restrictToAppKernel); } catch (\PDOException $e) { $msg = formatPdoExceptionMessage($e); @@ -833,3 +834,43 @@ public function run() return true; } } + +/** + * Format a PDO exception message. + * + * @param PDOException $e + * + * @return string + */ +function formatPdoExceptionMessage(PDOException $e) +{ + $msg = ""; + + // If there are 3 elements in the errorInfo array we can assume + // that this was a driver error so display a useful message instead + // of the generic PDO message. + + if (3 == count($e->errorInfo)) { + + // MySQL error + list ($sqlstate, $driverCode, $driverMsg) = $e->errorInfo; + + $msg = "Database Error ($driverCode): '$driverMsg'"; + $trace = $e->getTrace(); + + if (count($trace) >= 3) { + $msg .= " at {$trace[2]['file']}:{$trace[1]['line']} {$trace[2]['function']}()"; + } + } else { + + // PDO layer error + $msg = "Database Error (" . $e->getCode() . ") '" . $e->getMessage() . "'"; + $trace = $e->getTrace(); + + if (count($trace) >= 3) { + $msg .= " at {$trace[1]['file']}:{$trace[1]['line']} {$trace[1]['function']}()"; + } + } + + return $msg; +} From a1a74308d278f395d51815b48e957fc7a0791ed5 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Fri, 29 May 2020 17:19:26 -0400 Subject: [PATCH 32/63] added control interval option --- bin/xdmod-akrr-ingestor | 12 ++++++++++++ classes/AppKernel/AppKernelIngestor.php | 16 +++++++++++++++- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/bin/xdmod-akrr-ingestor b/bin/xdmod-akrr-ingestor index f89fca7..b348fbb 100755 --- a/bin/xdmod-akrr-ingestor +++ b/bin/xdmod-akrr-ingestor @@ -48,6 +48,8 @@ $ingestingConfig = [ 'replace' => false, /** @var bool Recalculate the controls and control intervals */ 'recalculateControls' => false, + /** @var integer Control Interval Size for initial control regions*/ + 'controlIntervalSize' => 20 ]; /** @@ -96,6 +98,9 @@ $options = array( // offset the ingesting starting date by o days 'o:' => 'offset:', + + // Control Interval Size for initial control regions + 'i:' => 'control-interval:', ); $args = getopt(implode('', array_keys($options)), $options); @@ -133,6 +138,10 @@ foreach ($args as $arg => $value) { case 'kernel': $ingestingConfig['restrictToAppKernel'] = $value; break; + case 'i': + case 'control-interval': + $ingestingConfig['controlIntervalSize'] = intval($value); + break; case 'l': case 'since-last': $ingestingConfig['sinceLastLoadTime'] = $value; @@ -285,6 +294,9 @@ Usage: xdmod-akrr-ingestor [[-l *timeframe*]|[-s *start-date*] [-e *end-date*]] -R, --resource *resource-name* Ingest app kernels for this resource only. + -i, --control-interval *control interval size* + Control interval size for new control regions. Default: 20. + If a start time is specified without an end time then data will be loaded from the start to the current time. If an end time is specified without a start time then data will be loaded from the beginning to the diff --git a/classes/AppKernel/AppKernelIngestor.php b/classes/AppKernel/AppKernelIngestor.php index 5a9b7ff..15173a6 100644 --- a/classes/AppKernel/AppKernelIngestor.php +++ b/classes/AppKernel/AppKernelIngestor.php @@ -91,6 +91,13 @@ class AppKernelIngestor */ private $recalculateControls = false; + + /** + * Control Interval Size for initial control regions + * + * @var int + */ + private $controlIntervalSize = 20; /** * Logs for data on the ingestion process. * @@ -241,6 +248,13 @@ public function __construct(\Log $logger = null, $config = []) $this->recalculateControls = $config['recalculateControls']; unset($config['recalculateControls']); } + if (array_key_exists('controlIntervalSize', $config)) { + if (!is_bool($config['controlIntervalSize'])) { + throw new Exception("controlIntervalSize should be boolean!"); + } + $this->recalculateControls = $config['controlIntervalSize']; + unset($config['controlIntervalSize']); + } /** * A time period to use for ingestion. * @@ -765,7 +779,7 @@ public function run() if (!$this->dryRunMode) { try { $this->logger->info("Caculate running average and control values"); - $this->db->calculateControls($this->recalculateControls, 20, 5, + $this->db->calculateControls($this->recalculateControls, $this->controlIntervalSize, 5, $this->restrictToResource, $this->restrictToAppKernel); } catch (\PDOException $e) { $msg = formatPdoExceptionMessage($e); From 5148b9f41fda6427c42b6046e1211870607c49f8 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Thu, 4 Jun 2020 13:37:34 -0400 Subject: [PATCH 33/63] added ingesting from 2001-01-01 if previously there were no loading --- classes/AppKernel/AppKernelIngestor.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/classes/AppKernel/AppKernelIngestor.php b/classes/AppKernel/AppKernelIngestor.php index 15173a6..a086e91 100644 --- a/classes/AppKernel/AppKernelIngestor.php +++ b/classes/AppKernel/AppKernelIngestor.php @@ -249,10 +249,10 @@ public function __construct(\Log $logger = null, $config = []) unset($config['recalculateControls']); } if (array_key_exists('controlIntervalSize', $config)) { - if (!is_bool($config['controlIntervalSize'])) { - throw new Exception("controlIntervalSize should be boolean!"); + if (!is_integer($config['controlIntervalSize'])) { + throw new Exception("controlIntervalSize should be integer!"); } - $this->recalculateControls = $config['controlIntervalSize']; + $this->controlIntervalSize = $config['controlIntervalSize']; unset($config['controlIntervalSize']); } /** @@ -297,10 +297,12 @@ public function __construct(\Log $logger = null, $config = []) if ("load" == $sinceLastLoadTime) { // Load the last ingestion time from the database. The production database takes priority. $loaded = $this->db->loadMostRecentIngestionLogEntry($this->ingestionLog); - if ($loaded === false) { - throw new Exception("AppKernelIngestor::__construct can not load loadMostRecentIngestionLogEntry"); + if ($loaded === true) { + $this->startTimestamp = $this->ingestionLog->end_time + 1; + } else { + // first run, set to 2001-01-01 + $this->startTimestamp = 978325200; } - $this->startTimestamp = $this->ingestionLog->end_time + 1; } else { $this->startTimestamp = $this->endTimestamp - AppKernelIngestor::$validTimeframes[$sinceLastLoadTime]; } @@ -865,7 +867,6 @@ function formatPdoExceptionMessage(PDOException $e) // of the generic PDO message. if (3 == count($e->errorInfo)) { - // MySQL error list ($sqlstate, $driverCode, $driverMsg) = $e->errorInfo; @@ -876,7 +877,6 @@ function formatPdoExceptionMessage(PDOException $e) $msg .= " at {$trace[2]['file']}:{$trace[1]['line']} {$trace[2]['function']}()"; } } else { - // PDO layer error $msg = "Database Error (" . $e->getCode() . ") '" . $e->getMessage() . "'"; $trace = $e->getTrace(); From 4137ca306929f0a8460f824b473b4513a31b1fed Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Fri, 5 Jun 2020 14:05:51 -0400 Subject: [PATCH 34/63] added metric filet by name to getMetrics method --- classes/AppKernel/AppKernelDb.php | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/classes/AppKernel/AppKernelDb.php b/classes/AppKernel/AppKernelDb.php index ae458e1..3dc56d6 100644 --- a/classes/AppKernel/AppKernelDb.php +++ b/classes/AppKernel/AppKernelDb.php @@ -657,6 +657,7 @@ public function getUniqueAppKernels( * @param null $end_date * @param array $resource_ids * @param array $pu_counts + * @param array $metric_names * @return array */ public function getMetrics( @@ -664,7 +665,8 @@ public function getMetrics( $start_date = null, $end_date = null, array $resource_ids = array(), - array $pu_counts = array() + array $pu_counts = array(), + array $metric_names = array() ) { $processorCountWheres = $this->getProcessorCountWheres($pu_counts); @@ -696,6 +698,19 @@ public function getMetrics( } $sql .= ')'; } + if (count($metric_names) > 0) { + $sql .= ' AND vt.metric in ('; + for ($i = 0; $i < count($metric_names); $i++) { + $sql .= ':metric_name_' . $i; + if ($i < count($metric_names) - 1) { + $sql .= ','; + } + $params[':metric_name_' . $i] = $metric_names[$i]; + } + $sql .= ')'; + } + + if (count($processorCountWheres) > 0) { $sql .= "AND ( " . implode(' OR ', $processorCountWheres) . " ) "; } From 739ab2da0d79db33de5bc517ffc0acf118125fe8 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Fri, 5 Jun 2020 14:06:26 -0400 Subject: [PATCH 35/63] updated tests for smaller test db --- tests/unit/AppKernelDbTest.php | 251 +++++++++++++++++++++------------ 1 file changed, 163 insertions(+), 88 deletions(-) diff --git a/tests/unit/AppKernelDbTest.php b/tests/unit/AppKernelDbTest.php index d093043..73cdd19 100644 --- a/tests/unit/AppKernelDbTest.php +++ b/tests/unit/AppKernelDbTest.php @@ -10,12 +10,16 @@ use AppKernel\InstanceMetric; use AppKernel\InstanceData; -function create_instance_data($db_ak_id, $deployment_num_proc_units, $deployment_time, $status) +function create_instance_data($ak_name, $deployment_num_proc_units, $deployment_time, $status) { + $ak_db = new \AppKernel\AppKernelDb(); + $db = $ak_db->getDB(); + + $db_ak_id = $db->query("SELECT ak_id FROM mod_appkernel.app_kernel WHERE name=\"$ak_name\" AND num_units=$deployment_num_proc_units;")[0]['ak_id']; $ak = new InstanceData; $ak->db_ak_id = intval($db_ak_id); $ak->deployment_num_proc_units = intval($deployment_num_proc_units); - $ak->deployment_time = strtotime($deployment_time); + $ak->deployment_time = intval($deployment_time); $ak->status = $status; return $ak; } @@ -32,13 +36,6 @@ public function processingUnitProvider() new ProcessingUnit("node", "16"), new ProcessingUnit("node", "32"), ]; - $proc_unit_core_8to128 = [ - new ProcessingUnit("core", "8"), - new ProcessingUnit("core", "16"), - new ProcessingUnit("core", "32"), - new ProcessingUnit("core", "64"), - new ProcessingUnit("core", "128"), - ]; $proc_unit_node_1to8 = array_slice($proc_unit_node_1to32, 0, 4); $proc_unit_node_1to4 = array_slice($proc_unit_node_1to32, 0, 3); $proc_unit_node_2to8 = array_slice($proc_unit_node_1to32, 1, 3); @@ -46,16 +43,20 @@ public function processingUnitProvider() $proc_unit_node_1to16 = array_slice($proc_unit_node_1to32, 0, 5); $proc_unit_node_2to16 = array_slice($proc_unit_node_1to32, 1, 4); + $ak_db = new \AppKernel\AppKernelDb(); + $metrics_id = intval($ak_db->getDB()->query( + 'SELECT metric_id FROM mod_appkernel.metric WHERE name="Wall Clock Time"')[0]['metric_id']); + return [ - [null, null, [], [], array_merge($proc_unit_node_1to32, $proc_unit_core_8to128)], - ["2020-04-01", null, [], [], $proc_unit_node_1to16], - ["2020-04-01", "2020-05-01", [], [], $proc_unit_node_1to16], + [null, null, [], [], $proc_unit_node_1to8], + ["2020-04-01", null, [], [], $proc_unit_node_1to8], + ["2020-04-01", "2020-05-01", [], [], $proc_unit_node_1to8], ["2020-04-01", "2020-05-01", [28], [], $proc_unit_node_1to8], ["2020-04-01", "2020-05-01", [288], [], []], // wrong resource id - ["2020-04-01", "2020-05-01", [28], ['ak_23_metric_4'], $proc_unit_node_1to4], - ["2020-04-01", "2020-05-01", [28], ['ak_7_metric_4'], $proc_unit_node_2to8], - ["2020-04-01", "2020-05-01", [28, 0], ['ak_23_metric_4'], $proc_unit_node_1to4], - ["2020-04-01", "2020-05-01", [28], ['ak_7_metric_4', 'ak_7_metric_4'], $proc_unit_node_2to8], + ["2020-04-01", "2020-05-01", [28], ["ak_23_metric_$metrics_id"], $proc_unit_node_1to4], + ["2020-04-01", "2020-05-01", [28], ["ak_7_metric_$metrics_id"], $proc_unit_node_2to8], + ["2020-04-01", "2020-05-01", [28, 0], ["ak_23_metric_$metrics_id"], $proc_unit_node_1to4], + ["2020-04-01", "2020-05-01", [28], ["ak_7_metric_$metrics_id", "ak_7_metric_$metrics_id"], $proc_unit_node_2to8], ]; } @@ -66,57 +67,89 @@ public function processingUnitProvider() public function testProcessingUnit($start_date, $end_date, array $resource_ids, array $metrics, $expected) { $ak_db = new \AppKernel\AppKernelDb(); - $proc_unit = $ak_db->getProcessingUnits($start_date, $end_date, $resource_ids, $metrics); - #var_dump($proc_unit); - $this->assertEquals($expected, $proc_unit); - if (sizeof($proc_unit) > 0) { - $this->assertInstanceOf('AppKernel\ProcessingUnit', $proc_unit[0]); + $actual = $ak_db->getProcessingUnits($start_date, $end_date, $resource_ids, $metrics); + + if ($expected === null) { + print(count($actual) . ", [\n"); + foreach (array_slice($actual, 0, min(10, count($actual))) as $val) { + print("new ProcessingUnit(\"$val->unit\", \"$val->count\"),\n"); + } + print("]\n"); + } + + $this->assertEquals($expected, $actual); + if (sizeof($actual) > 0) { + $this->assertInstanceOf('AppKernel\ProcessingUnit', $actual[0]); } } public function getUniqueAppKernelsProvider() { $akd_list = [ - 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1537524242, 1589170859), - 22 => new AppKernelDefinition(22, "GAMESS", "gamess", null, "node", true, true, 1537530111, 1589162281), - 28 => new AppKernelDefinition(28, "Graph500", "graph500", null, "node", true, true, 1537523226, 1589169778), - 25 => new AppKernelDefinition(25, "HPCC", "hpcc", null, "node", true, true, 1537271498, 1589170329), - 7 => new AppKernelDefinition(7, "IMB", "imb", null, "node", true, true, 1537294454, 1589171649), - 23 => new AppKernelDefinition(23, "NAMD", "namd", null, "node", true, true, 1536972644, 1589149529), - 24 => new AppKernelDefinition(24, "NWChem", "nwchem", null, "node", true, true, 1537537457, 1589169723), + 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1585713559, 1588331144), + 22 => new AppKernelDefinition(22, "GAMESS", "gamess", null, "node", true, true, 1585704478, 1588329295), + 28 => new AppKernelDefinition(28, "Graph500", "graph500", null, "node", true, true, 1585707582, 1588331351), + 25 => new AppKernelDefinition(25, "HPCC", "hpcc", null, "node", true, true, 1585701706, 1588351754), + 7 => new AppKernelDefinition(7, "IMB", "imb", null, "node", true, true, 1585706634, 1588351238), + 23 => new AppKernelDefinition(23, "NAMD", "namd", null, "node", true, true, 1585868136, 1588334231), + 24 => new AppKernelDefinition(24, "NWChem", "nwchem", null, "node", true, true, 1585704196, 1588329513), ]; return [ - [[], [], [], 27, null], - [[28, 1], [], [], 26, null], - [[28], [], [], null, $akd_list], + [[], [], [], 7, null], + [[28, 1], [], [], 7, null], + [[28], [], [], null, [ + 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1585713559, 1588331144), + 22 => new AppKernelDefinition(22, "GAMESS", "gamess", null, "node", true, true, 1585704478, 1588329295), + 28 => new AppKernelDefinition(28, "Graph500", "graph500", null, "node", true, true, 1585707582, 1588331351), + 25 => new AppKernelDefinition(25, "HPCC", "hpcc", null, "node", true, true, 1585701706, 1588351754), + 7 => new AppKernelDefinition(7, "IMB", "imb", null, "node", true, true, 1585706634, 1588351238), + 23 => new AppKernelDefinition(23, "NAMD", "namd", null, "node", true, true, 1585868136, 1588334231), + 24 => new AppKernelDefinition(24, "NWChem", "nwchem", null, "node", true, true, 1585704196, 1588329513), + + ]], [[28], [1], [], null, [ - 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1537780756, 1589170859), - 22 => new AppKernelDefinition(22, "GAMESS", "gamess", null, "node", true, true, 1537530111, 1589162281), - 28 => new AppKernelDefinition(28, "Graph500", "graph500", null, "node", true, true, 1537780749, 1589167423), - 25 => new AppKernelDefinition(25, "HPCC", "hpcc", null, "node", true, true, 1537286604, 1589159946), - 23 => new AppKernelDefinition(23, "NAMD", "namd", null, "node", true, true, 1537179935, 1589149529), - 24 => new AppKernelDefinition(24, "NWChem", "nwchem", null, "node", true, true, 1537537457, 1589169723), + 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1585714858, 1588330625), + 22 => new AppKernelDefinition(22, "GAMESS", "gamess", null, "node", true, true, 1585704478, 1588329295), + 28 => new AppKernelDefinition(28, "Graph500", "graph500", null, "node", true, true, 1585711421, 1588329038), + 25 => new AppKernelDefinition(25, "HPCC", "hpcc", null, "node", true, true, 1585703946, 1588328720), + 23 => new AppKernelDefinition(23, "NAMD", "namd", null, "node", true, true, 1585868136, 1588334231), + 24 => new AppKernelDefinition(24, "NWChem", "nwchem", null, "node", true, true, 1585711919, 1588329513), ]], [[28], [1, 2], [], null, [ - 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1537524242, 1589170859), - 22 => new AppKernelDefinition(22, "GAMESS", "gamess", null, "node", true, true, 1537530111, 1589162281), - 28 => new AppKernelDefinition(28, "Graph500", "graph500", null, "node", true, true, 1537523226, 1589167423), - 25 => new AppKernelDefinition(25, "HPCC", "hpcc", null, "node", true, true, 1537271498, 1589159946), - 7 => new AppKernelDefinition(7, "IMB", "imb", null, "node", true, true, 1537294454, 1589169470), - 23 => new AppKernelDefinition(23, "NAMD", "namd", null, "node", true, true, 1536972644, 1589149529), - 24 => new AppKernelDefinition(24, "NWChem", "nwchem", null, "node", true, true, 1537537457, 1589169723), - ]], + 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1585713559, 1588330625), + 22 => new AppKernelDefinition(22, "GAMESS", "gamess", null, "node", true, true, 1585704478, 1588329295), + 28 => new AppKernelDefinition(28, "Graph500", "graph500", null, "node", true, true, 1585707582, 1588329038), + 25 => new AppKernelDefinition(25, "HPCC", "hpcc", null, "node", true, true, 1585703391, 1588328720), + 7 => new AppKernelDefinition(7, "IMB", "imb", null, "node", true, true, 1585711665, 1588329286), + 23 => new AppKernelDefinition(23, "NAMD", "namd", null, "node", true, true, 1585868136, 1588334231), + 24 => new AppKernelDefinition(24, "NWChem", "nwchem", null, "node", true, true, 1585704196, 1588329513), + ]] ]; } /** * @dataProvider getUniqueAppKernelsProvider */ - public function testGetUniqueAppKernels($resource_ids, $node_counts, $core_counts, $n_expected = null, $expected = null) - { + public function testGetUniqueAppKernels( + $resource_ids, + $node_counts, + $core_counts, + $n_expected = null, + $expected = null + ) { $ak_db = new \AppKernel\AppKernelDb(); $actual = $ak_db->getUniqueAppKernels($resource_ids, $node_counts, $core_counts); + if ($expected === null && $n_expected === null) + { + print(count($actual) . ", [\n"); + foreach (array_slice($actual, 0, min(10, count($actual))) as $val) { + print("$val->id => new AppKernelDefinition($val->id, \"$val->name\", \"$val->basename\"," . + " null, \"node\", true, true, $val->start_ts, $val->end_ts),\n"); + } + print("]\n"); + } + if ($n_expected === null && $expected !== null) { $n_expected = count($expected); } @@ -144,11 +177,24 @@ public function testGetUniqueAppKernels($resource_ids, $node_counts, $core_count public function getMetricsProvider() { + $ak_db = new \AppKernel\AppKernelDb(); + $db = $ak_db->getDB(); + # Get metric id + $ak_exec_exists_id = intval($db->query( + 'SELECT metric_id FROM mod_appkernel.metric WHERE name="App kernel executable exists"')[0]['metric_id']); + $ak_input_exists_id = intval($db->query( + 'SELECT metric_id FROM mod_appkernel.metric WHERE name="App kernel input exists"')[0]['metric_id']); + $ak_dgemm_flops_id = intval($db->query( + 'SELECT metric_id FROM mod_appkernel.metric WHERE name="Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance"')[0]['metric_id']); + $ak_stream_band_id = intval($db->query( + 'SELECT metric_id FROM mod_appkernel.metric WHERE name="Average STREAM \'Add\' Memory Bandwidth"')[0]['metric_id']); + $inst1 = [ - 317 => new InstanceMetric("App kernel executable exists", null, "", 317), - 318 => new InstanceMetric("App kernel input exists", null, "", 318), - 76 => new InstanceMetric("Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance", null, "MFLOP per Second", 76), - 77 => new InstanceMetric("Average STREAM 'Add' Memory Bandwidth", null, "MByte per Second", 77), + $ak_exec_exists_id => new InstanceMetric("App kernel executable exists", null, "", $ak_exec_exists_id), + $ak_input_exists_id => new InstanceMetric("App kernel input exists", null, "", $ak_input_exists_id), + $ak_dgemm_flops_id => new InstanceMetric("Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance", + null, "MFLOP per Second", $ak_dgemm_flops_id), + $ak_stream_band_id => new InstanceMetric("Average STREAM 'Add' Memory Bandwidth", null, "MByte per Second", $ak_stream_band_id), ]; return [ [25, null, null, [], [], 20, $inst1], @@ -166,15 +212,22 @@ public function getMetricsProvider() [25, "2020-04-01", "2020-05-01", [28, 1], [], 20, $inst1], [25, "2020-04-01", "2020-05-01", [28, 1], [1], 20, $inst1], [25, "2020-04-01", "2020-05-01", [28, 1], [1, 2], 20, $inst1], - [null, null, null, [], [], 320, null], + [null, null, null, [], [], 79, null], ]; } /** * @dataProvider getMetricsProvider */ - public function testGetMetrics($ak_def_id, $start_date, $end_date, $resource_ids, $pu_counts, $n_expected = null, $expected = null) - { + public function testGetMetrics( + $ak_def_id, + $start_date, + $end_date, + $resource_ids, + $pu_counts, + $n_expected = null, + $expected = null + ) { $ak_db = new \AppKernel\AppKernelDb(); $actual = $ak_db->getMetrics($ak_def_id, $start_date, $end_date, $resource_ids, $pu_counts); @@ -204,28 +257,50 @@ public function testGetMetrics($ak_def_id, $start_date, $end_date, $resource_ids public function loadAppKernelInstancesProvider() { - + $ak_db = new \AppKernel\AppKernelDb(); + $db = $ak_db->getDB(); + $ak_exec_exists_id = intval($db->query( + 'SELECT metric_id FROM mod_appkernel.metric WHERE name="App kernel executable exists"')[0]['metric_id']); return [ - [null, null, 821, [ - create_instance_data(90, 8, "2020-05-01 16:49:14", "success"), - create_instance_data(59, 8, "2020-05-01 16:40:38", "success"), - create_instance_data(80, 1, "2020-05-01 11:57:11", "success"), - create_instance_data(103, 1, "2020-05-01 11:52:35", "success"), - create_instance_data(104, 2, "2020-05-01 11:28:52", "success"), - create_instance_data(75, 2, "2020-05-01 11:21:48", "failure") - ]], - [23, null, 105, [ - create_instance_data(80, 1, "2020-05-01 11:57:11", "success"), - create_instance_data(80, 1, "2020-05-01 10:59:01", "success"), - create_instance_data(81, 2, "2020-05-01 10:57:03", "success"), - create_instance_data(82, 4, "2020-05-01 10:56:56", "success"), - ]], - [23, 28, 45, [ - create_instance_data(80, 1, "2020-05-01 11:57:11", "success"), - create_instance_data(81, 2, "2020-05-01 10:57:03", "success"), - create_instance_data(82, 4, "2020-05-01 10:56:56", "success"), - create_instance_data(82, 4, "2020-05-01 10:34:33", "success") - ]], + [ + null, + null, + 461, + [ + create_instance_data("hpcc", 8, "1588351754", "success"), + create_instance_data("imb", 8, "1588351238", "success"), + create_instance_data("namd", 1, "1588334231", "success"), + create_instance_data("gamess", 2, "1588332108", "failure"), + create_instance_data("graph500", 4, "1588331351", "success"), + create_instance_data("enzo", 4, "1588331144", "success"), + create_instance_data("namd", 1, "1588330741", "success"), + create_instance_data("enzo", 1, "1588330625", "success"), + create_instance_data("namd", 2, "1588330623", "success"), + create_instance_data("namd", 4, "1588330616", "success"), + ] + ], + [ + 23, + null, + 105, + [ + create_instance_data("namd", 1, "1588334231", "success"), + create_instance_data("namd", 1, "1588330741", "success"), + create_instance_data("namd", 2, "1588330623", "success"), + create_instance_data("namd", 4, "1588330616", "success"), + ] + ], + [ + 23, + 28, + 45, + [ + create_instance_data("namd", 1, "1588334231", "success"), + create_instance_data("namd", 2, "1588330623", "success"), + create_instance_data("namd", 4, "1588330616", "success"), + create_instance_data("namd", 4, "1588329273", "success"), + ] + ], [23001, null, 0, null] ]; } @@ -237,11 +312,14 @@ public function testLoadAppKernelInstances($ak_def_id, $resource_id, $n_expected { $ak_db = new \AppKernel\AppKernelDb(); $actual = $ak_db->loadAppKernelInstances($ak_def_id, $resource_id); + $db = $ak_db->getDB(); if ($expected === null && $n_expected === null) { print(count($actual) . ", [\n"); foreach (array_slice($actual, 0, min(10, count($actual))) as $val) { - print("create_instance_data($val->db_ak_id, $val->deployment_num_proc_units, \"$val->deployment_time\", \"$val->status\"),\n"); + $ak_name = $db->query( + "SELECT name FROM mod_appkernel.app_kernel WHERE ak_id=$val->db_ak_id;")[0]['name']; + print("create_instance_data(\"$ak_name\", $val->deployment_num_proc_units, \"$val->deployment_time\", \"$val->status\"),\n"); } print("]\n"); } @@ -273,23 +351,23 @@ public function testNewControlRegions() // update initial control for 5 points $ak_db->newControlRegions( - $resource_id=28, - $ak_def_id=23, - $control_region_type='data_points', - $startDateTime="2020-03-28", - $endDateTime=null, - $n_points=5, - $comment="short initial control region", + $resource_id = 28, + $ak_def_id = 23, + $control_region_type = 'data_points', + $startDateTime = "2020-03-28", + $endDateTime = null, + $n_points = 5, + $comment = "short initial control region", $update = true, $control_region_def_id = null ); - $ak_db->calculateControls(false, false, 20, 5, "UBHPC_32core", "namd"); + $ak_db->calculateControls(false, 5, 5, "UBHPC_32core", "namd"); $control_regions = $ak_db->getControlRegions($resource_id = 28, $ak_def_id = 23); $this->assertSame(1, count($control_regions)); $this->assertEquals([ - 'control_region_def_id' => "8", + 'control_region_def_id' => $control_regions[0]['control_region_def_id'], 'resource_id' => "28", 'ak_def_id' => "23", 'control_region_type' => "data_points", @@ -299,9 +377,6 @@ public function testNewControlRegions() 'comment' => "short initial control region" ], $control_regions[0]); - var_dump($control_regions); - - // $actual = $ak_db->newControlRegions( // $resource_id=28, // $ak_def_id=23, From f9aabc5433ea2a8ab5cbcd64aeb9a44161815bb1 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 9 Jun 2020 16:21:57 -0400 Subject: [PATCH 36/63] initial shippable scripts --- Dockerfile | 1 + shippable.yml | 54 ++ tests/artifacts/mod_akrr_xdmod_dev_test.sql | 598 ++++++++++++ .../mod_appkernel_xdmod_dev_test.sql | 914 ++++++++++++++++++ tests/integration_tests/scripts/bootstrap.sh | 39 + tests/integration_tests/scripts/validate.sh | 0 6 files changed, 1606 insertions(+) create mode 100644 Dockerfile create mode 100644 shippable.yml create mode 100644 tests/artifacts/mod_akrr_xdmod_dev_test.sql create mode 100644 tests/artifacts/mod_appkernel_xdmod_dev_test.sql create mode 100755 tests/integration_tests/scripts/bootstrap.sh create mode 100755 tests/integration_tests/scripts/validate.sh diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..dff613f --- /dev/null +++ b/Dockerfile @@ -0,0 +1 @@ +FROM tas-tools-ext-01.ccr.xdmod.org/centos7_6-open-job_performance-8.5.0:latest diff --git a/shippable.yml b/shippable.yml new file mode 100644 index 0000000..7959403 --- /dev/null +++ b/shippable.yml @@ -0,0 +1,54 @@ +language: none +env: + global: + - COMPOSER_ALLOW_SUPERUSER=1 + - XDMOD_REALMS='jobs,storage,cloud,supremm,jobefficiency' + matrix: + - XDMOD_TEST_MODE=fresh_install + - XDMOD_TEST_MODE=upgrade +build: + cache: true + cache_dir_list: + - /root/.composer + pre_ci: + - docker build -t pseudo_repo/xdmod-open-supremm:latest . + pre_ci_boot: + image_name: pseudo_repo/xdmod-open-supremm + image_tag: latest + pull: false + options: "--user root -e HOME=/root --shm-size 2g" + ci: + - pwd + - echo $SHIPPABLE_BUILD_DIR + - git clone --depth=1 --branch=$BRANCH https://github.com/ubccr/xdmod.git ../xdmod + - ln -s $SHIPPABLE_BUILD_DIR ../xdmod/open_xdmod/modules/supremm + - composer install -d ../xdmod --no-progress + - cd ../xdmod && ~/bin/buildrpm xdmod xdmod-appkernels && cd $SHIPPABLE_BUILD_DIR + - ./tests/integration_tests/scripts/bootstrap.sh + - ./tests/integration_tests/scripts/validate.sh + - composer install -d ../xdmod --no-progress + - ./tests/unit/runtests.sh + - ./tests/integration_tests/runtests.sh + on_failure: + - cat /var/log/xdmod/* +jobs: + - name: xdmod-supremm_runCI + type: runCI + steps: + - IN: nightly-trigger + on_success: + - NOTIFY: email-team + on_failure: + - NOTIFY: email-team +resources: + - name: nightly-trigger + type: time + versionTemplate: + interval: "0 3 * * *" # UTC + - name: email-team + type: notification + versionTemplate: + method: email + recipients: + - "nikolays@buffalo.edu" + - "ccr-xdmod-cron@buffalo.edu" diff --git a/tests/artifacts/mod_akrr_xdmod_dev_test.sql b/tests/artifacts/mod_akrr_xdmod_dev_test.sql new file mode 100644 index 0000000..baf8c98 --- /dev/null +++ b/tests/artifacts/mod_akrr_xdmod_dev_test.sql @@ -0,0 +1,598 @@ +-- MySQL dump 10.13 Distrib 5.7.30, for Linux (x86_64) +-- +-- Host: localhost Database: mod_akrr_xdmod_dev +-- ------------------------------------------------------ +-- Server version 5.7.30-0ubuntu0.18.04.1 + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `active_tasks` +-- + +DROP TABLE IF EXISTS `active_tasks`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `active_tasks` ( + `task_id` int(11) DEFAULT NULL, + `next_check_time` datetime NOT NULL, + `status` text, + `status_info` text, + `status_update_time` datetime DEFAULT NULL, + `datetime_stamp` text, + `time_activated` datetime DEFAULT NULL, + `time_submitted_to_queue` datetime DEFAULT NULL, + `task_lock` int(11) DEFAULT NULL, + `time_to_start` datetime DEFAULT NULL, + `repeat_in` char(20) DEFAULT NULL, + `resource` text, + `app` text, + `resource_param` text, + `app_param` text, + `task_param` text, + `group_id` text, + `fatal_errors_count` int(4) DEFAULT '0', + `fails_to_submit_to_the_queue` int(4) DEFAULT '0', + `taskexeclog` longtext, + `master_task_id` int(4) NOT NULL DEFAULT '0' COMMENT '0 - independent task, otherwise task_id of master task ', + `parent_task_id` int(11) DEFAULT NULL, + UNIQUE KEY `task_id` (`task_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `active_tasks` +-- + +LOCK TABLES `active_tasks` WRITE; +/*!40000 ALTER TABLE `active_tasks` DISABLE KEYS */; +/*!40000 ALTER TABLE `active_tasks` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ak_on_nodes` +-- + +DROP TABLE IF EXISTS `ak_on_nodes`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ak_on_nodes` ( + `resource_id` int(11) NOT NULL, + `node_id` int(11) NOT NULL, + `task_id` int(11) NOT NULL, + `collected` datetime NOT NULL, + `status` int(11) DEFAULT NULL +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ak_on_nodes` +-- + +LOCK TABLES `ak_on_nodes` WRITE; +/*!40000 ALTER TABLE `ak_on_nodes` DISABLE KEYS */; +INSERT INTO `ak_on_nodes` VALUES (1,1,7,'2012-09-25 16:28:54',1),(1,2,7,'2012-09-25 16:28:54',1),(1,3,56,'2012-09-25 16:58:46',1),(1,4,56,'2012-09-25 16:58:46',1),(1,5,30,'2012-09-25 16:58:47',1),(1,6,30,'2012-09-25 16:58:47',1),(1,6,9,'2012-09-25 16:58:47',1),(1,4,9,'2012-09-25 16:58:47',1),(1,7,2,'2012-09-25 16:58:50',1),(1,2,1,'2012-09-25 16:58:50',1),(1,4,5,'2012-09-25 16:58:55',1),(1,8,4,'2012-09-25 16:58:55',1),(1,9,3,'2012-09-25 16:58:55',1),(1,10,6,'2012-09-25 16:58:56',1),(1,2,6,'2012-09-25 16:58:56',1),(1,11,8,'2012-09-25 16:58:57',1),(1,12,8,'2012-09-25 16:58:57',1),(1,13,13,'2012-09-25 16:58:59',1),(1,14,13,'2012-09-25 16:58:59',1),(1,15,13,'2012-09-25 16:58:59',1),(1,7,13,'2012-09-25 16:58:59',1),(1,16,12,'2012-09-25 16:58:59',1),(1,11,12,'2012-09-25 16:58:59',1),(1,12,12,'2012-09-25 16:58:59',1),(1,17,12,'2012-09-25 16:58:59',1),(1,18,11,'2012-09-25 16:58:59',1),(1,1,11,'2012-09-25 16:58:59',1),(1,19,11,'2012-09-25 16:58:59',1),(1,14,11,'2012-09-25 16:58:59',1),(1,10,10,'2012-09-25 16:58:59',1),(1,5,10,'2012-09-25 16:58:59',1),(1,20,19,'2012-09-25 16:59:04',1),(1,16,19,'2012-09-25 16:59:04',1),(1,11,19,'2012-09-25 16:59:04',1),(1,18,19,'2012-09-25 16:59:04',1),(1,21,19,'2012-09-25 16:59:04',1),(1,12,19,'2012-09-25 16:59:04',1),(1,22,19,'2012-09-25 16:59:04',1),(1,1,19,'2012-09-25 16:59:04',1),(1,18,16,'2012-09-25 16:59:04',1),(1,22,16,'2012-09-25 16:59:04',1),(1,1,16,'2012-09-25 16:59:04',1),(1,19,16,'2012-09-25 16:59:04',1),(1,13,16,'2012-09-25 16:59:04',1),(1,14,16,'2012-09-25 16:59:04',1),(1,10,16,'2012-09-25 16:59:04',1),(1,2,16,'2012-09-25 16:59:04',1),(1,19,15,'2012-09-25 16:59:04',1),(1,17,15,'2012-09-25 16:59:04',1),(1,23,15,'2012-09-25 16:59:04',1),(1,9,15,'2012-09-25 16:59:04',1),(1,24,14,'2012-09-25 16:59:04',1),(1,13,14,'2012-09-25 16:59:04',1),(1,14,14,'2012-09-25 16:59:04',1),(1,15,14,'2012-09-25 16:59:04',1),(1,2,21,'2012-09-25 16:59:07',1),(1,25,20,'2012-09-25 16:59:07',1),(1,26,20,'2012-09-25 16:59:07',1),(1,8,20,'2012-09-25 16:59:07',1),(1,24,20,'2012-09-25 16:59:07',1),(1,13,20,'2012-09-25 16:59:07',1),(1,14,20,'2012-09-25 16:59:07',1),(1,15,20,'2012-09-25 16:59:07',1),(1,2,20,'2012-09-25 16:59:07',1),(1,20,18,'2012-09-25 16:59:07',1),(1,16,18,'2012-09-25 16:59:07',1),(1,11,18,'2012-09-25 16:59:07',1),(1,18,18,'2012-09-25 16:59:07',1),(1,21,18,'2012-09-25 16:59:07',1),(1,12,18,'2012-09-25 16:59:07',1),(1,22,18,'2012-09-25 16:59:07',1),(1,1,18,'2012-09-25 16:59:07',1),(1,16,17,'2012-09-25 16:59:07',1),(1,11,17,'2012-09-25 16:59:07',1),(1,18,17,'2012-09-25 16:59:07',1),(1,12,17,'2012-09-25 16:59:07',1),(1,22,17,'2012-09-25 16:59:07',1),(1,1,17,'2012-09-25 16:59:07',1),(1,19,17,'2012-09-25 16:59:07',1),(1,17,17,'2012-09-25 16:59:07',1),(1,6,24,'2012-09-25 16:59:09',1),(1,4,24,'2012-09-25 16:59:09',1),(1,6,23,'2012-09-25 16:59:09',1),(1,4,23,'2012-09-25 16:59:09',1),(1,4,22,'2012-09-25 16:59:09',1),(1,20,33,'2012-09-25 16:59:13',1),(1,16,33,'2012-09-25 16:59:13',1),(1,27,33,'2012-09-25 16:59:13',1),(1,11,33,'2012-09-25 16:59:13',1),(1,18,33,'2012-09-25 16:59:13',1),(1,21,33,'2012-09-25 16:59:13',1),(1,12,33,'2012-09-25 16:59:13',1),(1,22,33,'2012-09-25 16:59:13',1),(1,1,33,'2012-09-25 16:59:13',1),(1,19,33,'2012-09-25 16:59:13',1),(1,17,33,'2012-09-25 16:59:13',1),(1,23,33,'2012-09-25 16:59:13',1),(1,7,33,'2012-09-25 16:59:13',1),(1,9,33,'2012-09-25 16:59:13',1),(1,10,33,'2012-09-25 16:59:13',1),(1,5,33,'2012-09-25 16:59:13',1),(1,5,35,'2012-09-25 16:59:15',1),(1,6,35,'2012-09-25 16:59:15',1),(1,2,34,'2012-09-25 16:59:15',1),(1,3,39,'2012-09-25 16:59:18',1),(1,4,39,'2012-09-25 16:59:18',1),(1,3,43,'2012-09-25 16:59:20',1),(1,4,43,'2012-09-25 16:59:20',1),(1,20,46,'2012-09-25 16:59:22',1),(1,16,46,'2012-09-25 16:59:22',1),(1,27,46,'2012-09-25 16:59:22',1),(1,11,46,'2012-09-25 16:59:22',1),(1,18,46,'2012-09-25 16:59:22',1),(1,21,46,'2012-09-25 16:59:22',1),(1,12,46,'2012-09-25 16:59:22',1),(1,28,46,'2012-09-25 16:59:22',1),(1,22,46,'2012-09-25 16:59:22',1),(1,1,46,'2012-09-25 16:59:22',1),(1,19,46,'2012-09-25 16:59:22',1),(1,17,46,'2012-09-25 16:59:22',1),(1,23,46,'2012-09-25 16:59:22',1),(1,7,46,'2012-09-25 16:59:22',1),(1,9,46,'2012-09-25 16:59:22',1),(1,10,46,'2012-09-25 16:59:22',1),(1,5,50,'2012-09-25 17:28:44',NULL),(1,6,50,'2012-09-25 17:28:44',NULL),(1,10,49,'2012-09-25 17:28:46',1),(1,2,49,'2012-09-25 17:28:46',1),(1,3,55,'2012-09-25 17:28:47',1),(1,4,55,'2012-09-25 17:28:47',1),(1,29,60,'2012-09-25 17:28:50',1),(1,30,60,'2012-09-25 17:28:50',1),(1,31,60,'2012-09-25 17:28:50',1),(1,32,60,'2012-09-25 17:28:50',1),(1,8,60,'2012-09-25 17:28:50',1),(1,24,60,'2012-09-25 17:28:50',1),(1,13,60,'2012-09-25 17:28:50',1),(1,14,60,'2012-09-25 17:28:50',1),(1,25,61,'2012-09-25 17:28:53',NULL),(1,26,61,'2012-09-25 17:28:53',NULL),(1,33,61,'2012-09-25 17:28:53',NULL),(1,34,61,'2012-09-25 17:28:53',NULL),(1,35,61,'2012-09-25 17:28:53',NULL),(1,36,61,'2012-09-25 17:28:53',NULL),(1,37,61,'2012-09-25 17:28:53',NULL),(1,29,61,'2012-09-25 17:28:53',NULL),(1,30,61,'2012-09-25 17:28:53',NULL),(1,31,61,'2012-09-25 17:28:53',NULL),(1,8,61,'2012-09-25 17:28:53',NULL),(1,24,61,'2012-09-25 17:28:53',NULL),(1,13,61,'2012-09-25 17:28:53',NULL),(1,14,61,'2012-09-25 17:28:53',NULL),(1,15,61,'2012-09-25 17:28:53',NULL),(1,38,61,'2012-09-25 17:28:53',NULL),(1,2,65,'2012-09-25 17:28:56',1),(1,20,64,'2012-09-25 17:28:56',NULL),(1,16,64,'2012-09-25 17:28:56',NULL),(1,27,64,'2012-09-25 17:28:56',NULL),(1,11,64,'2012-09-25 17:28:56',NULL),(1,18,64,'2012-09-25 17:28:56',NULL),(1,21,64,'2012-09-25 17:28:56',NULL),(1,12,64,'2012-09-25 17:28:56',NULL),(1,28,64,'2012-09-25 17:28:56',NULL),(1,22,64,'2012-09-25 17:28:56',NULL),(1,1,64,'2012-09-25 17:28:56',NULL),(1,39,64,'2012-09-25 17:28:56',NULL),(1,19,64,'2012-09-25 17:28:56',NULL),(1,17,64,'2012-09-25 17:28:56',NULL),(1,23,64,'2012-09-25 17:28:56',NULL),(1,7,64,'2012-09-25 17:28:56',NULL),(1,9,64,'2012-09-25 17:28:56',NULL),(1,6,58,'2012-09-25 17:29:03',1),(1,4,58,'2012-09-25 17:29:03',1),(1,38,57,'2012-09-25 17:29:03',1),(1,4,57,'2012-09-25 17:29:03',1),(1,25,68,'2012-09-25 17:29:07',1),(1,3,68,'2012-09-25 17:29:07',1),(1,26,68,'2012-09-25 17:29:07',1),(1,33,68,'2012-09-25 17:29:07',1),(1,34,68,'2012-09-25 17:29:07',1),(1,35,68,'2012-09-25 17:29:07',1),(1,36,68,'2012-09-25 17:29:07',1),(1,37,68,'2012-09-25 17:29:07',1),(1,29,68,'2012-09-25 17:29:07',1),(1,30,68,'2012-09-25 17:29:07',1),(1,31,68,'2012-09-25 17:29:07',1),(1,8,68,'2012-09-25 17:29:07',1),(1,24,68,'2012-09-25 17:29:07',1),(1,13,68,'2012-09-25 17:29:07',1),(1,14,68,'2012-09-25 17:29:07',1),(1,15,68,'2012-09-25 17:29:07',1),(1,4,69,'2012-09-25 17:29:09',1),(1,20,27,'2012-09-25 17:29:18',1),(1,16,27,'2012-09-25 17:29:18',1),(1,27,27,'2012-09-25 17:29:18',1),(1,11,27,'2012-09-25 17:29:18',1),(1,18,27,'2012-09-25 17:29:18',1),(1,21,27,'2012-09-25 17:29:18',1),(1,12,27,'2012-09-25 17:29:18',1),(1,28,27,'2012-09-25 17:29:18',1),(1,9,26,'2012-09-25 17:29:18',1),(1,10,26,'2012-09-25 17:29:18',1),(1,5,26,'2012-09-25 17:29:18',1),(1,2,26,'2012-09-25 17:29:18',1),(1,9,25,'2012-09-25 17:29:18',1),(1,10,25,'2012-09-25 17:29:18',1),(1,2,25,'2012-09-25 17:29:18',1),(1,4,25,'2012-09-25 17:29:18',1),(1,15,29,'2012-09-25 17:29:20',NULL),(1,9,29,'2012-09-25 17:29:20',NULL),(1,10,29,'2012-09-25 17:29:20',NULL),(1,5,29,'2012-09-25 17:29:20',NULL),(1,22,28,'2012-09-25 17:29:20',1),(1,1,28,'2012-09-25 17:29:20',1),(1,39,28,'2012-09-25 17:29:20',1),(1,19,28,'2012-09-25 17:29:20',1),(1,17,28,'2012-09-25 17:29:20',1),(1,23,28,'2012-09-25 17:29:20',1),(1,7,28,'2012-09-25 17:29:20',1),(1,9,28,'2012-09-25 17:29:20',1),(1,20,32,'2012-09-25 17:29:22',1),(1,16,32,'2012-09-25 17:29:22',1),(1,27,32,'2012-09-25 17:29:22',1),(1,11,32,'2012-09-25 17:29:22',1),(1,18,32,'2012-09-25 17:29:22',1),(1,21,32,'2012-09-25 17:29:22',1),(1,12,32,'2012-09-25 17:29:22',1),(1,28,32,'2012-09-25 17:29:22',1),(1,2,38,'2012-09-25 17:29:25',1),(1,22,37,'2012-09-25 17:29:25',1),(1,1,37,'2012-09-25 17:29:25',1),(1,39,37,'2012-09-25 17:29:25',1),(1,19,37,'2012-09-25 17:29:25',1),(1,17,37,'2012-09-25 17:29:25',1),(1,23,37,'2012-09-25 17:29:25',1),(1,7,37,'2012-09-25 17:29:25',1),(1,38,37,'2012-09-25 17:29:25',1),(1,20,41,'2012-09-25 17:29:26',1),(1,16,41,'2012-09-25 17:29:26',1),(1,27,41,'2012-09-25 17:29:26',1),(1,11,41,'2012-09-25 17:29:26',1),(1,18,41,'2012-09-25 17:29:26',1),(1,21,41,'2012-09-25 17:29:26',1),(1,12,41,'2012-09-25 17:29:26',1),(1,28,41,'2012-09-25 17:29:26',1),(1,2,42,'2012-09-25 17:29:28',1),(1,20,45,'2012-09-25 17:29:30',1),(1,16,45,'2012-09-25 17:29:30',1),(1,27,45,'2012-09-25 17:29:30',1),(1,11,45,'2012-09-25 17:29:30',1),(1,18,45,'2012-09-25 17:29:30',1),(1,21,45,'2012-09-25 17:29:30',1),(1,12,45,'2012-09-25 17:29:30',1),(1,28,45,'2012-09-25 17:29:30',1),(1,4,47,'2012-09-25 17:29:31',1),(1,34,52,'2012-09-25 17:58:47',NULL),(1,35,52,'2012-09-25 17:58:47',NULL),(1,36,52,'2012-09-25 17:58:47',NULL),(1,37,52,'2012-09-25 17:58:47',NULL),(1,38,51,'2012-09-25 17:58:47',1),(1,9,51,'2012-09-25 17:58:47',1),(1,10,51,'2012-09-25 17:58:47',1),(1,5,51,'2012-09-25 17:58:47',1),(1,22,54,'2012-09-25 17:58:48',NULL),(1,1,54,'2012-09-25 17:58:48',NULL),(1,39,54,'2012-09-25 17:58:48',NULL),(1,19,54,'2012-09-25 17:58:48',NULL),(1,17,54,'2012-09-25 17:58:48',NULL),(1,23,54,'2012-09-25 17:58:48',NULL),(1,7,54,'2012-09-25 17:58:48',NULL),(1,38,54,'2012-09-25 17:58:48',NULL),(1,25,53,'2012-09-25 17:58:48',NULL),(1,3,53,'2012-09-25 17:58:48',NULL),(1,26,53,'2012-09-25 17:58:48',NULL),(1,33,53,'2012-09-25 17:58:48',NULL),(1,34,53,'2012-09-25 17:58:48',NULL),(1,35,53,'2012-09-25 17:58:48',NULL),(1,36,53,'2012-09-25 17:58:48',NULL),(1,37,53,'2012-09-25 17:58:48',NULL),(1,11,59,'2012-09-25 17:58:51',1),(1,18,59,'2012-09-25 17:58:51',1),(1,40,59,'2012-09-25 17:58:51',1),(1,41,59,'2012-09-25 17:58:51',1),(1,20,62,'2012-09-25 17:58:54',1),(1,16,62,'2012-09-25 17:58:54',1),(1,27,62,'2012-09-25 17:58:54',1),(1,42,62,'2012-09-25 17:58:54',1),(1,43,66,'2012-09-25 17:58:57',1),(1,21,66,'2012-09-25 17:58:57',1),(1,44,66,'2012-09-25 17:58:57',1),(1,45,66,'2012-09-25 17:58:57',1),(1,20,63,'2012-09-25 17:58:57',1),(1,16,63,'2012-09-25 17:58:57',1),(1,27,63,'2012-09-25 17:58:57',1),(1,11,63,'2012-09-25 17:58:57',1),(1,18,63,'2012-09-25 17:58:57',1),(1,21,63,'2012-09-25 17:58:57',1),(1,12,63,'2012-09-25 17:58:57',1),(1,28,63,'2012-09-25 17:58:57',1),(1,12,70,'2012-09-25 17:59:11',1),(1,28,70,'2012-09-25 17:59:11',1),(1,46,70,'2012-09-25 17:59:11',1),(1,47,70,'2012-09-25 17:59:11',1),(1,20,71,'2012-09-25 17:59:23',1),(1,16,71,'2012-09-25 17:59:23',1),(1,27,71,'2012-09-25 17:59:23',1),(1,11,71,'2012-09-25 17:59:23',1),(1,18,71,'2012-09-25 17:59:23',1),(1,21,71,'2012-09-25 17:59:23',1),(1,12,71,'2012-09-25 17:59:23',1),(1,28,71,'2012-09-25 17:59:23',1),(1,15,31,'2012-09-25 17:59:23',1),(1,9,31,'2012-09-25 17:59:23',1),(1,10,31,'2012-09-25 17:59:23',1),(1,5,31,'2012-09-25 17:59:23',1),(1,22,36,'2012-09-25 17:59:26',1),(1,1,36,'2012-09-25 17:59:26',1),(1,39,36,'2012-09-25 17:59:26',1),(1,19,36,'2012-09-25 17:59:26',1),(1,17,40,'2012-09-25 17:59:27',1),(1,23,40,'2012-09-25 17:59:27',1),(1,7,40,'2012-09-25 17:59:27',1),(1,38,40,'2012-09-25 17:59:27',1),(1,17,44,'2012-09-25 17:59:29',1),(1,23,44,'2012-09-25 17:59:29',1),(1,15,44,'2012-09-25 17:59:29',1),(1,7,44,'2012-09-25 17:59:29',1),(1,6,48,'2012-09-25 17:59:33',NULL),(1,29,67,'2012-09-25 18:29:08',1),(1,30,67,'2012-09-25 18:29:08',1),(1,31,67,'2012-09-25 18:29:08',1),(1,32,67,'2012-09-25 18:29:08',1),(1,8,67,'2012-09-25 18:29:08',1),(1,24,67,'2012-09-25 18:29:08',1),(1,13,67,'2012-09-25 18:29:08',1),(1,14,67,'2012-09-25 18:29:08',1),(1,6,78,'2012-09-26 00:16:15',1),(1,4,77,'2012-09-26 00:16:15',1),(1,48,76,'2012-09-26 00:16:15',1),(1,49,75,'2012-09-26 00:16:15',1),(1,6,82,'2012-09-26 00:16:23',1),(1,4,82,'2012-09-26 00:16:23',1),(1,50,81,'2012-09-26 00:16:23',1),(1,51,81,'2012-09-26 00:16:23',1),(1,6,80,'2012-09-26 00:16:23',1),(1,4,80,'2012-09-26 00:16:23',1),(1,52,79,'2012-09-26 00:16:23',1),(1,48,86,'2012-09-26 00:16:31',1),(1,53,86,'2012-09-26 00:16:31',1),(1,6,86,'2012-09-26 00:16:31',1),(1,4,86,'2012-09-26 00:16:31',1),(1,48,85,'2012-09-26 00:16:31',1),(1,54,85,'2012-09-26 00:16:31',1),(1,55,85,'2012-09-26 00:16:31',1),(1,53,85,'2012-09-26 00:16:31',1),(1,50,84,'2012-09-26 00:16:31',1),(1,51,84,'2012-09-26 00:16:31',1),(1,6,83,'2012-09-26 00:16:31',1),(1,4,83,'2012-09-26 00:16:31',1),(1,53,90,'2012-09-26 00:16:40',1),(1,56,90,'2012-09-26 00:16:40',1),(1,48,90,'2012-09-26 00:16:40',1),(1,57,90,'2012-09-26 00:16:40',1),(1,54,90,'2012-09-26 00:16:40',1),(1,58,90,'2012-09-26 00:16:40',1),(1,59,90,'2012-09-26 00:16:40',1),(1,55,90,'2012-09-26 00:16:40',1),(1,48,87,'2012-09-26 00:16:40',1),(1,54,87,'2012-09-26 00:16:40',1),(1,55,87,'2012-09-26 00:16:40',1),(1,53,87,'2012-09-26 00:16:40',1),(1,53,93,'2012-09-26 00:16:47',1),(1,56,93,'2012-09-26 00:16:47',1),(1,48,93,'2012-09-26 00:16:47',1),(1,57,93,'2012-09-26 00:16:47',1),(1,54,93,'2012-09-26 00:16:47',1),(1,58,93,'2012-09-26 00:16:47',1),(1,59,93,'2012-09-26 00:16:47',1),(1,55,93,'2012-09-26 00:16:47',1),(1,53,91,'2012-09-26 00:16:47',1),(1,56,91,'2012-09-26 00:16:47',1),(1,48,91,'2012-09-26 00:16:47',1),(1,57,91,'2012-09-26 00:16:47',1),(1,54,91,'2012-09-26 00:16:47',1),(1,58,91,'2012-09-26 00:16:47',1),(1,59,91,'2012-09-26 00:16:47',1),(1,55,91,'2012-09-26 00:16:47',1),(1,52,89,'2012-09-26 00:46:41',1),(1,56,89,'2012-09-26 00:46:41',1),(1,6,89,'2012-09-26 00:46:41',1),(1,4,89,'2012-09-26 00:46:41',1),(1,52,88,'2012-09-26 00:46:41',1),(1,56,88,'2012-09-26 00:46:41',1),(1,6,88,'2012-09-26 00:46:41',1),(1,4,88,'2012-09-26 00:46:41',1),(1,6,98,'2012-09-26 01:16:10',1),(1,4,98,'2012-09-26 01:16:10',1),(1,6,97,'2012-09-26 01:16:10',1),(1,4,97,'2012-09-26 01:16:10',1),(1,60,96,'2012-09-26 01:16:10',1),(1,61,95,'2012-09-26 01:16:10',1),(1,48,101,'2012-09-26 01:16:17',NULL),(1,57,101,'2012-09-26 01:16:17',NULL),(1,54,101,'2012-09-26 01:16:17',NULL),(1,58,101,'2012-09-26 01:16:17',NULL),(1,62,101,'2012-09-26 01:16:17',NULL),(1,39,101,'2012-09-26 01:16:17',NULL),(1,63,101,'2012-09-26 01:16:17',NULL),(1,59,101,'2012-09-26 01:16:17',NULL),(1,55,102,'2012-09-26 01:16:19',1),(1,53,102,'2012-09-26 01:16:19',1),(1,64,102,'2012-09-26 01:16:19',1),(1,65,102,'2012-09-26 01:16:19',1),(1,60,102,'2012-09-26 01:16:19',1),(1,61,102,'2012-09-26 01:16:19',1),(1,66,102,'2012-09-26 01:16:19',1),(1,67,102,'2012-09-26 01:16:19',1),(1,55,100,'2012-09-26 01:16:19',1),(1,53,100,'2012-09-26 01:16:19',1),(1,64,100,'2012-09-26 01:16:19',1),(1,65,100,'2012-09-26 01:16:19',1),(1,49,99,'2012-09-26 01:16:19',1),(1,68,99,'2012-09-26 01:16:19',1),(1,69,99,'2012-09-26 01:16:19',1),(1,70,99,'2012-09-26 01:16:19',1),(1,48,94,'2012-09-26 01:16:50',1),(1,57,94,'2012-09-26 01:16:50',1),(1,54,94,'2012-09-26 01:16:50',1),(1,58,94,'2012-09-26 01:16:50',1),(1,62,94,'2012-09-26 01:16:50',1),(1,39,94,'2012-09-26 01:16:50',1),(1,63,94,'2012-09-26 01:16:50',1),(1,59,94,'2012-09-26 01:16:50',1),(1,55,92,'2012-09-26 01:16:50',1),(1,53,92,'2012-09-26 01:16:50',1),(1,64,92,'2012-09-26 01:16:50',1),(1,65,92,'2012-09-26 01:16:50',1),(1,60,92,'2012-09-26 01:16:50',1),(1,61,92,'2012-09-26 01:16:50',1),(1,66,92,'2012-09-26 01:16:50',1),(1,67,92,'2012-09-26 01:16:50',1),(1,59,106,'2012-09-26 02:16:16',1),(1,65,106,'2012-09-26 02:16:16',1),(1,60,106,'2012-09-26 02:16:16',1),(1,61,106,'2012-09-26 02:16:16',1),(1,49,106,'2012-09-26 02:16:16',1),(1,68,106,'2012-09-26 02:16:16',1),(1,69,106,'2012-09-26 02:16:16',1),(1,70,106,'2012-09-26 02:16:16',1),(1,59,105,'2012-09-26 02:16:16',1),(1,65,105,'2012-09-26 02:16:16',1),(1,60,105,'2012-09-26 02:16:16',1),(1,61,105,'2012-09-26 02:16:16',1),(1,6,104,'2012-09-26 02:16:16',1),(1,4,104,'2012-09-26 02:16:16',1),(1,49,103,'2012-09-26 02:16:16',NULL),(1,68,103,'2012-09-26 02:16:16',NULL),(1,69,103,'2012-09-26 02:16:16',NULL),(1,70,103,'2012-09-26 02:16:16',NULL),(1,59,110,'2012-09-26 02:16:23',1),(1,65,110,'2012-09-26 02:16:23',1),(1,60,110,'2012-09-26 02:16:23',1),(1,61,110,'2012-09-26 02:16:23',1),(1,6,109,'2012-09-26 02:16:23',1),(1,4,109,'2012-09-26 02:16:23',1),(1,53,108,'2012-09-26 02:16:23',1),(1,59,114,'2012-09-26 02:16:31',1),(1,65,114,'2012-09-26 02:16:31',1),(1,60,114,'2012-09-26 02:16:31',1),(1,61,114,'2012-09-26 02:16:31',1),(1,6,113,'2012-09-26 02:16:31',1),(1,4,113,'2012-09-26 02:16:31',1),(1,4,112,'2012-09-26 02:16:31',1),(1,59,111,'2012-09-26 02:16:31',1),(1,65,111,'2012-09-26 02:16:31',1),(1,60,111,'2012-09-26 02:16:31',1),(1,61,111,'2012-09-26 02:16:31',1),(1,49,111,'2012-09-26 02:16:31',1),(1,68,111,'2012-09-26 02:16:31',1),(1,69,111,'2012-09-26 02:16:31',1),(1,70,111,'2012-09-26 02:16:31',1),(1,53,117,'2012-09-26 02:16:39',1),(1,6,117,'2012-09-26 02:16:39',1),(1,59,115,'2012-09-26 02:16:39',1),(1,65,115,'2012-09-26 02:16:39',1),(1,60,115,'2012-09-26 02:16:39',1),(1,61,115,'2012-09-26 02:16:39',1),(1,49,115,'2012-09-26 02:16:39',1),(1,68,115,'2012-09-26 02:16:39',1),(1,69,115,'2012-09-26 02:16:39',1),(1,70,115,'2012-09-26 02:16:39',1),(1,59,118,'2012-09-26 02:16:40',1),(1,53,118,'2012-09-26 02:16:40',1),(1,65,118,'2012-09-26 02:16:40',1),(1,60,118,'2012-09-26 02:16:40',1),(1,4,116,'2012-09-26 02:16:40',1),(1,48,119,'2012-09-26 02:16:46',1),(1,71,119,'2012-09-26 02:16:46',1),(1,57,119,'2012-09-26 02:16:46',1),(1,54,119,'2012-09-26 02:16:46',1),(1,58,119,'2012-09-26 02:16:46',1),(1,62,119,'2012-09-26 02:16:46',1),(1,39,119,'2012-09-26 02:16:46',1),(1,63,119,'2012-09-26 02:16:46',1),(1,71,107,'2012-09-26 02:46:24',1),(1,57,107,'2012-09-26 02:46:24',1),(1,54,107,'2012-09-26 02:46:24',1),(1,58,107,'2012-09-26 02:46:24',1),(1,62,107,'2012-09-26 02:46:24',1),(1,39,107,'2012-09-26 02:46:24',1),(1,63,107,'2012-09-26 02:46:24',1),(1,59,107,'2012-09-26 02:46:24',1),(1,53,107,'2012-09-26 02:46:24',1),(1,65,107,'2012-09-26 02:46:24',1),(1,60,107,'2012-09-26 02:46:24',1),(1,61,107,'2012-09-26 02:46:24',1),(1,49,107,'2012-09-26 02:46:24',1),(1,68,107,'2012-09-26 02:46:24',1),(1,69,107,'2012-09-26 02:46:24',1),(1,70,107,'2012-09-26 02:46:24',1),(1,71,120,'2012-09-26 02:46:47',1),(1,57,120,'2012-09-26 02:46:47',1),(1,54,120,'2012-09-26 02:46:47',1),(1,58,120,'2012-09-26 02:46:47',1),(1,62,120,'2012-09-26 02:46:47',1),(1,39,120,'2012-09-26 02:46:47',1),(1,63,120,'2012-09-26 02:46:47',1),(1,59,120,'2012-09-26 02:46:47',1),(1,53,120,'2012-09-26 02:46:47',1),(1,65,120,'2012-09-26 02:46:47',1),(1,60,120,'2012-09-26 02:46:47',1),(1,61,120,'2012-09-26 02:46:47',1),(1,49,120,'2012-09-26 02:46:47',1),(1,68,120,'2012-09-26 02:46:47',1),(1,69,120,'2012-09-26 02:46:47',1),(1,70,120,'2012-09-26 02:46:47',1),(1,52,122,'2012-09-26 03:16:16',NULL),(1,4,121,'2012-09-26 03:16:16',1),(1,71,127,'2012-09-26 03:16:24',NULL),(1,72,127,'2012-09-26 03:16:24',NULL),(1,73,127,'2012-09-26 03:16:24',NULL),(1,74,127,'2012-09-26 03:16:24',NULL),(1,75,127,'2012-09-26 03:16:24',NULL),(1,76,127,'2012-09-26 03:16:24',NULL),(1,66,127,'2012-09-26 03:16:24',NULL),(1,77,127,'2012-09-26 03:16:24',NULL),(1,67,126,'2012-09-26 03:16:24',NULL),(1,78,126,'2012-09-26 03:16:24',NULL),(1,56,126,'2012-09-26 03:16:24',NULL),(1,6,126,'2012-09-26 03:16:24',NULL),(1,4,133,'2012-09-26 03:16:40',1),(1,79,133,'2012-09-26 03:16:40',1),(1,4,137,'2012-09-26 03:16:48',1),(1,4,143,'2012-09-26 03:16:56',1),(1,79,143,'2012-09-26 03:16:56',1),(1,79,142,'2012-09-26 03:16:56',1),(1,76,123,'2012-09-26 03:46:17',1),(1,78,123,'2012-09-26 03:46:17',1),(1,78,128,'2012-09-26 03:46:25',NULL),(1,56,128,'2012-09-26 03:46:25',NULL),(1,76,128,'2012-09-26 03:46:25',NULL),(1,66,128,'2012-09-26 03:46:25',NULL),(1,77,128,'2012-09-26 03:46:25',NULL),(1,67,128,'2012-09-26 03:46:25',NULL),(1,6,128,'2012-09-26 03:46:25',NULL),(1,4,128,'2012-09-26 03:46:25',NULL),(1,6,124,'2012-09-26 04:16:18',NULL),(1,4,124,'2012-09-26 04:16:18',NULL),(1,79,131,'2012-09-26 04:16:35',1),(1,71,131,'2012-09-26 04:16:35',1),(1,72,131,'2012-09-26 04:16:35',1),(1,73,131,'2012-09-26 04:16:35',1),(1,74,131,'2012-09-26 04:16:35',1),(1,75,131,'2012-09-26 04:16:35',1),(1,55,131,'2012-09-26 04:16:35',1),(1,78,131,'2012-09-26 04:16:35',1),(1,52,129,'2012-09-26 04:16:35',1),(1,56,129,'2012-09-26 04:16:35',1),(1,79,135,'2012-09-26 04:16:43',1),(1,71,135,'2012-09-26 04:16:43',1),(1,72,135,'2012-09-26 04:16:43',1),(1,73,135,'2012-09-26 04:16:43',1),(1,74,135,'2012-09-26 04:16:43',1),(1,75,135,'2012-09-26 04:16:43',1),(1,55,135,'2012-09-26 04:16:43',1),(1,78,135,'2012-09-26 04:16:43',1),(1,6,138,'2012-09-26 04:16:51',1),(1,4,138,'2012-09-26 04:16:51',1),(1,79,140,'2012-09-26 04:46:55',1),(1,71,140,'2012-09-26 04:46:55',1),(1,72,140,'2012-09-26 04:46:55',1),(1,73,140,'2012-09-26 04:46:55',1),(1,74,140,'2012-09-26 04:46:55',1),(1,75,140,'2012-09-26 04:46:55',1),(1,55,140,'2012-09-26 04:46:55',1),(1,78,140,'2012-09-26 04:46:55',1),(1,79,125,'2012-09-26 05:16:30',1),(1,71,125,'2012-09-26 05:16:30',1),(1,72,125,'2012-09-26 05:16:30',1),(1,73,125,'2012-09-26 05:16:30',1),(1,74,130,'2012-09-26 05:16:37',1),(1,75,130,'2012-09-26 05:16:37',1),(1,55,130,'2012-09-26 05:16:37',1),(1,78,130,'2012-09-26 05:16:37',1),(1,75,134,'2012-09-26 05:16:45',1),(1,55,134,'2012-09-26 05:16:45',1),(1,76,134,'2012-09-26 05:16:45',1),(1,78,134,'2012-09-26 05:16:45',1),(1,75,139,'2012-09-26 05:16:54',1),(1,55,139,'2012-09-26 05:16:54',1),(1,76,139,'2012-09-26 05:16:54',1),(1,78,139,'2012-09-26 05:16:54',1),(1,75,144,'2012-09-26 05:17:01',1),(1,55,144,'2012-09-26 05:17:01',1),(1,76,144,'2012-09-26 05:17:01',1),(1,78,144,'2012-09-26 05:17:01',1),(1,71,145,'2012-09-26 05:17:10',1),(1,72,145,'2012-09-26 05:17:10',1),(1,73,145,'2012-09-26 05:17:10',1),(1,74,145,'2012-09-26 05:17:10',1),(1,75,145,'2012-09-26 05:17:10',1),(1,55,145,'2012-09-26 05:17:10',1),(1,78,145,'2012-09-26 05:17:10',1),(1,56,145,'2012-09-26 05:17:10',1),(1,52,217,'2012-09-26 11:21:53',NULL),(1,56,217,'2012-09-26 11:21:53',NULL),(1,71,217,'2012-09-26 11:21:53',NULL),(1,66,217,'2012-09-26 11:21:53',NULL),(1,66,149,'2012-09-27 00:46:18',1),(1,66,148,'2012-09-27 00:46:18',1),(1,80,147,'2012-09-27 00:46:23',1),(1,80,146,'2012-09-27 00:46:23',1),(1,80,153,'2012-09-27 00:46:26',1),(1,81,153,'2012-09-27 00:46:26',1),(1,6,152,'2012-09-27 00:46:26',1),(1,4,152,'2012-09-27 00:46:26',1),(1,4,151,'2012-09-27 00:46:26',1),(1,82,151,'2012-09-27 00:46:26',1),(1,80,150,'2012-09-27 00:46:26',1),(1,4,157,'2012-09-27 00:46:35',1),(1,82,157,'2012-09-27 00:46:35',1),(1,83,157,'2012-09-27 00:46:35',1),(1,80,157,'2012-09-27 00:46:35',1),(1,4,156,'2012-09-27 00:46:35',1),(1,82,156,'2012-09-27 00:46:35',1),(1,83,156,'2012-09-27 00:46:35',1),(1,80,156,'2012-09-27 00:46:35',1),(1,4,155,'2012-09-27 00:46:35',1),(1,82,155,'2012-09-27 00:46:35',1),(1,82,154,'2012-09-27 00:46:35',1),(1,83,154,'2012-09-27 00:46:35',1),(1,82,160,'2012-09-27 00:46:43',1),(1,83,160,'2012-09-27 00:46:43',1),(1,84,160,'2012-09-27 00:46:43',1),(1,80,160,'2012-09-27 00:46:43',1),(1,82,159,'2012-09-27 00:46:43',1),(1,83,159,'2012-09-27 00:46:43',1),(1,84,159,'2012-09-27 00:46:43',1),(1,80,159,'2012-09-27 00:46:43',1),(1,82,158,'2012-09-27 00:46:43',1),(1,83,158,'2012-09-27 00:46:43',1),(1,84,158,'2012-09-27 00:46:43',1),(1,80,158,'2012-09-27 00:46:43',1),(1,6,161,'2012-09-27 01:16:45',1),(1,4,161,'2012-09-27 01:16:45',1),(1,82,161,'2012-09-27 01:16:45',1),(1,83,161,'2012-09-27 01:16:45',1),(1,85,161,'2012-09-27 01:16:45',1),(1,84,161,'2012-09-27 01:16:45',1),(1,86,161,'2012-09-27 01:16:45',1),(1,80,161,'2012-09-27 01:16:45',1),(1,6,165,'2012-09-27 01:16:52',1),(1,4,165,'2012-09-27 01:16:52',1),(1,82,165,'2012-09-27 01:16:52',1),(1,83,165,'2012-09-27 01:16:52',1),(1,85,165,'2012-09-27 01:16:52',1),(1,84,165,'2012-09-27 01:16:52',1),(1,86,165,'2012-09-27 01:16:52',1),(1,80,165,'2012-09-27 01:16:52',1),(1,6,164,'2012-09-27 01:16:52',1),(1,4,164,'2012-09-27 01:16:52',1),(1,82,164,'2012-09-27 01:16:52',1),(1,83,164,'2012-09-27 01:16:52',1),(1,85,164,'2012-09-27 01:16:52',1),(1,84,164,'2012-09-27 01:16:52',1),(1,86,164,'2012-09-27 01:16:52',1),(1,80,164,'2012-09-27 01:16:52',1),(1,6,163,'2012-09-27 01:16:52',1),(1,4,163,'2012-09-27 01:16:52',1),(1,82,163,'2012-09-27 01:16:52',1),(1,83,163,'2012-09-27 01:16:52',1),(1,85,163,'2012-09-27 01:16:52',1),(1,84,163,'2012-09-27 01:16:52',1),(1,86,163,'2012-09-27 01:16:52',1),(1,80,163,'2012-09-27 01:16:52',1),(1,6,162,'2012-09-27 01:16:52',1),(1,4,162,'2012-09-27 01:16:52',1),(1,82,162,'2012-09-27 01:16:52',1),(1,83,162,'2012-09-27 01:16:52',1),(1,85,162,'2012-09-27 01:16:52',1),(1,84,162,'2012-09-27 01:16:52',1),(1,86,162,'2012-09-27 01:16:52',1),(1,80,162,'2012-09-27 01:16:52',1),(1,85,169,'2012-09-27 01:46:20',1),(1,84,169,'2012-09-27 01:46:20',1),(1,86,168,'2012-09-27 01:46:20',1),(1,87,168,'2012-09-27 01:46:20',1),(1,80,167,'2012-09-27 01:46:20',1),(1,80,166,'2012-09-27 01:46:20',1),(1,6,173,'2012-09-27 01:46:28',1),(1,4,173,'2012-09-27 01:46:28',1),(1,82,173,'2012-09-27 01:46:28',1),(1,83,173,'2012-09-27 01:46:28',1),(1,85,173,'2012-09-27 01:46:28',1),(1,84,173,'2012-09-27 01:46:28',1),(1,86,173,'2012-09-27 01:46:28',1),(1,87,173,'2012-09-27 01:46:28',1),(1,6,172,'2012-09-27 01:46:28',1),(1,4,172,'2012-09-27 01:46:28',1),(1,82,172,'2012-09-27 01:46:28',1),(1,83,172,'2012-09-27 01:46:28',1),(1,85,172,'2012-09-27 01:46:28',1),(1,84,172,'2012-09-27 01:46:28',1),(1,86,172,'2012-09-27 01:46:28',1),(1,87,172,'2012-09-27 01:46:28',1),(1,85,171,'2012-09-27 01:46:28',1),(1,84,171,'2012-09-27 01:46:28',1),(1,86,171,'2012-09-27 01:46:28',1),(1,87,171,'2012-09-27 01:46:28',1),(1,6,170,'2012-09-27 01:46:28',1),(1,4,170,'2012-09-27 01:46:28',1),(1,82,170,'2012-09-27 01:46:28',1),(1,83,170,'2012-09-27 01:46:28',1),(1,6,177,'2012-09-27 02:46:23',1),(1,4,177,'2012-09-27 02:46:23',1),(1,88,177,'2012-09-27 02:46:23',1),(1,89,177,'2012-09-27 02:46:23',1),(1,82,177,'2012-09-27 02:46:23',1),(1,83,177,'2012-09-27 02:46:23',1),(1,85,177,'2012-09-27 02:46:23',1),(1,84,177,'2012-09-27 02:46:23',1),(1,6,176,'2012-09-27 02:46:23',1),(1,4,176,'2012-09-27 02:46:23',1),(1,88,176,'2012-09-27 02:46:23',1),(1,89,176,'2012-09-27 02:46:23',1),(1,6,181,'2012-09-27 02:46:30',1),(1,4,181,'2012-09-27 02:46:30',1),(1,88,181,'2012-09-27 02:46:30',1),(1,89,181,'2012-09-27 02:46:30',1),(1,86,179,'2012-09-27 02:46:30',1),(1,86,183,'2012-09-27 02:46:37',1),(1,6,182,'2012-09-27 02:46:37',1),(1,4,182,'2012-09-27 02:46:37',1),(1,88,182,'2012-09-27 02:46:37',1),(1,89,182,'2012-09-27 02:46:37',1),(1,82,182,'2012-09-27 02:46:37',1),(1,83,182,'2012-09-27 02:46:37',1),(1,85,182,'2012-09-27 02:46:37',1),(1,84,182,'2012-09-27 02:46:37',1),(1,86,187,'2012-09-27 02:46:45',1),(1,6,186,'2012-09-27 02:46:45',1),(1,4,186,'2012-09-27 02:46:45',1),(1,88,186,'2012-09-27 02:46:45',1),(1,89,186,'2012-09-27 02:46:45',1),(1,82,186,'2012-09-27 02:46:45',1),(1,83,186,'2012-09-27 02:46:45',1),(1,85,186,'2012-09-27 02:46:45',1),(1,84,186,'2012-09-27 02:46:45',1),(1,6,190,'2012-09-27 02:46:54',1),(1,4,190,'2012-09-27 02:46:54',1),(1,88,190,'2012-09-27 02:46:54',1),(1,89,190,'2012-09-27 02:46:54',1),(1,82,190,'2012-09-27 02:46:54',1),(1,83,190,'2012-09-27 02:46:54',1),(1,85,190,'2012-09-27 02:46:54',1),(1,84,190,'2012-09-27 02:46:54',1),(1,6,175,'2012-09-27 03:16:24',1),(1,4,175,'2012-09-27 03:16:24',1),(1,82,174,'2012-09-27 03:16:24',NULL),(1,83,174,'2012-09-27 03:16:24',NULL),(1,85,174,'2012-09-27 03:16:24',NULL),(1,84,174,'2012-09-27 03:16:24',NULL),(1,6,180,'2012-09-27 03:16:31',1),(1,4,180,'2012-09-27 03:16:31',1),(1,90,185,'2012-09-27 03:16:38',1),(1,91,185,'2012-09-27 03:16:38',1),(1,6,185,'2012-09-27 03:16:38',1),(1,4,185,'2012-09-27 03:16:38',1),(1,6,184,'2012-09-27 03:16:38',1),(1,4,184,'2012-09-27 03:16:38',1),(1,6,188,'2012-09-27 03:16:46',1),(1,4,188,'2012-09-27 03:16:46',1),(1,6,194,'2012-09-27 03:46:18',1),(1,4,194,'2012-09-27 03:46:18',1),(1,91,193,'2012-09-27 03:46:18',1),(1,92,192,'2012-09-27 03:46:18',1),(1,6,200,'2012-09-27 03:46:34',1),(1,4,200,'2012-09-27 03:46:34',1),(1,6,204,'2012-09-27 03:46:43',1),(1,4,204,'2012-09-27 03:46:43',1),(1,6,208,'2012-09-27 03:46:50',1),(1,6,209,'2012-09-27 03:46:51',1),(1,4,209,'2012-09-27 03:46:51',1),(1,6,214,'2012-09-27 03:46:58',1),(1,4,214,'2012-09-27 03:46:58',1),(1,81,195,'2012-09-27 04:16:24',1),(1,92,195,'2012-09-27 04:16:24',1),(1,93,189,'2012-09-27 04:16:48',1),(1,90,189,'2012-09-27 04:16:48',1),(1,6,189,'2012-09-27 04:16:48',1),(1,4,189,'2012-09-27 04:16:48',1),(1,4,213,'2012-09-27 04:17:00',1),(1,20,178,'2012-09-27 04:46:35',1),(1,94,178,'2012-09-27 04:46:35',1),(1,95,178,'2012-09-27 04:46:35',1),(1,96,178,'2012-09-27 04:46:35',1),(1,97,178,'2012-09-27 04:46:35',1),(1,47,178,'2012-09-27 04:46:35',1),(1,98,178,'2012-09-27 04:46:35',1),(1,99,178,'2012-09-27 04:46:35',1),(1,22,178,'2012-09-27 04:46:35',1),(1,1,178,'2012-09-27 04:46:35',1),(1,33,178,'2012-09-27 04:46:35',1),(1,34,178,'2012-09-27 04:46:35',1),(1,100,178,'2012-09-27 04:46:35',1),(1,35,178,'2012-09-27 04:46:35',1),(1,36,178,'2012-09-27 04:46:35',1),(1,37,178,'2012-09-27 04:46:35',1),(1,16,132,'2012-09-27 04:50:17',NULL),(1,25,132,'2012-09-27 04:50:17',NULL),(1,27,132,'2012-09-27 04:50:17',NULL),(1,42,132,'2012-09-27 04:50:17',NULL),(1,3,132,'2012-09-27 04:50:17',NULL),(1,11,132,'2012-09-27 04:50:17',NULL),(1,18,132,'2012-09-27 04:50:17',NULL),(1,26,132,'2012-09-27 04:50:17',NULL),(1,40,132,'2012-09-27 04:50:17',NULL),(1,41,132,'2012-09-27 04:50:17',NULL),(1,43,132,'2012-09-27 04:50:17',NULL),(1,21,132,'2012-09-27 04:50:17',NULL),(1,44,132,'2012-09-27 04:50:17',NULL),(1,45,132,'2012-09-27 04:50:17',NULL),(1,12,132,'2012-09-27 04:50:17',NULL),(1,28,132,'2012-09-27 04:50:17',NULL),(1,17,141,'2012-09-27 04:50:19',1),(1,32,141,'2012-09-27 04:50:19',1),(1,23,141,'2012-09-27 04:50:19',1),(1,8,141,'2012-09-27 04:50:19',1),(1,24,141,'2012-09-27 04:50:19',1),(1,101,141,'2012-09-27 04:50:19',1),(1,13,141,'2012-09-27 04:50:19',1),(1,14,141,'2012-09-27 04:50:19',1),(1,15,141,'2012-09-27 04:50:19',1),(1,7,141,'2012-09-27 04:50:19',1),(1,38,141,'2012-09-27 04:50:19',1),(1,9,141,'2012-09-27 04:50:19',1),(1,10,141,'2012-09-27 04:50:19',1),(1,5,141,'2012-09-27 04:50:19',1),(1,2,141,'2012-09-27 04:50:19',1),(1,92,141,'2012-09-27 04:50:19',1),(1,46,136,'2012-09-27 04:50:19',NULL),(1,47,136,'2012-09-27 04:50:19',NULL),(1,98,136,'2012-09-27 04:50:19',NULL),(1,99,136,'2012-09-27 04:50:19',NULL),(1,22,136,'2012-09-27 04:50:19',NULL),(1,1,136,'2012-09-27 04:50:19',NULL),(1,33,136,'2012-09-27 04:50:19',NULL),(1,34,136,'2012-09-27 04:50:19',NULL),(1,100,136,'2012-09-27 04:50:19',NULL),(1,35,136,'2012-09-27 04:50:19',NULL),(1,36,136,'2012-09-27 04:50:19',NULL),(1,37,136,'2012-09-27 04:50:19',NULL),(1,29,136,'2012-09-27 04:50:19',NULL),(1,30,136,'2012-09-27 04:50:19',NULL),(1,31,136,'2012-09-27 04:50:19',NULL),(1,19,136,'2012-09-27 04:50:19',NULL),(1,15,199,'2012-09-27 05:16:33',NULL),(1,7,199,'2012-09-27 05:16:33',NULL),(1,38,199,'2012-09-27 05:16:33',NULL),(1,9,199,'2012-09-27 05:16:33',NULL),(1,10,199,'2012-09-27 05:16:33',NULL),(1,5,199,'2012-09-27 05:16:33',NULL),(1,2,199,'2012-09-27 05:16:33',NULL),(1,92,199,'2012-09-27 05:16:33',NULL),(1,102,197,'2012-09-27 05:16:36',NULL),(1,103,197,'2012-09-27 05:16:36',NULL),(1,104,197,'2012-09-27 05:16:36',NULL),(1,105,197,'2012-09-27 05:16:36',NULL),(1,103,196,'2012-09-27 05:16:36',1),(1,104,196,'2012-09-27 05:16:36',1),(1,105,196,'2012-09-27 05:16:36',1),(1,56,196,'2012-09-27 05:16:36',1),(1,29,198,'2012-09-27 05:16:38',1),(1,30,198,'2012-09-27 05:16:38',1),(1,31,198,'2012-09-27 05:16:38',1),(1,19,198,'2012-09-27 05:16:38',1),(1,106,198,'2012-09-27 05:16:38',1),(1,86,198,'2012-09-27 05:16:38',1),(1,107,198,'2012-09-27 05:16:38',1),(1,108,198,'2012-09-27 05:16:38',1),(1,15,202,'2012-09-27 05:16:39',1),(1,7,202,'2012-09-27 05:16:39',1),(1,38,202,'2012-09-27 05:16:39',1),(1,9,202,'2012-09-27 05:16:39',1),(1,10,202,'2012-09-27 05:16:39',1),(1,5,202,'2012-09-27 05:16:39',1),(1,2,202,'2012-09-27 05:16:39',1),(1,92,202,'2012-09-27 05:16:39',1),(1,25,203,'2012-09-27 05:16:42',1),(1,27,203,'2012-09-27 05:16:42',1),(1,42,203,'2012-09-27 05:16:42',1),(1,3,203,'2012-09-27 05:16:42',1),(1,11,203,'2012-09-27 05:16:42',1),(1,18,203,'2012-09-27 05:16:42',1),(1,26,203,'2012-09-27 05:16:42',1),(1,40,203,'2012-09-27 05:16:42',1),(1,41,203,'2012-09-27 05:16:42',1),(1,43,203,'2012-09-27 05:16:42',1),(1,21,203,'2012-09-27 05:16:42',1),(1,44,203,'2012-09-27 05:16:42',1),(1,45,203,'2012-09-27 05:16:42',1),(1,12,203,'2012-09-27 05:16:42',1),(1,28,203,'2012-09-27 05:16:42',1),(1,83,203,'2012-09-27 05:16:42',1),(1,95,207,'2012-09-27 05:16:47',NULL),(1,96,207,'2012-09-27 05:16:47',NULL),(1,97,207,'2012-09-27 05:16:47',NULL),(1,47,207,'2012-09-27 05:16:47',NULL),(1,98,207,'2012-09-27 05:16:47',NULL),(1,99,207,'2012-09-27 05:16:47',NULL),(1,22,207,'2012-09-27 05:16:47',NULL),(1,1,207,'2012-09-27 05:16:47',NULL),(1,33,207,'2012-09-27 05:16:47',NULL),(1,34,207,'2012-09-27 05:16:47',NULL),(1,100,207,'2012-09-27 05:16:47',NULL),(1,35,207,'2012-09-27 05:16:47',NULL),(1,36,207,'2012-09-27 05:16:47',NULL),(1,37,207,'2012-09-27 05:16:47',NULL),(1,80,207,'2012-09-27 05:16:47',NULL),(1,6,207,'2012-09-27 05:16:47',NULL),(1,29,206,'2012-09-27 05:16:47',1),(1,30,206,'2012-09-27 05:16:47',1),(1,31,206,'2012-09-27 05:16:47',1),(1,19,206,'2012-09-27 05:16:47',1),(1,106,206,'2012-09-27 05:16:47',1),(1,86,206,'2012-09-27 05:16:47',1),(1,107,206,'2012-09-27 05:16:47',1),(1,108,206,'2012-09-27 05:16:47',1),(1,18,205,'2012-09-27 05:16:47',1),(1,26,205,'2012-09-27 05:16:47',1),(1,40,205,'2012-09-27 05:16:47',1),(1,41,205,'2012-09-27 05:16:47',1),(1,43,210,'2012-09-27 05:16:54',1),(1,21,210,'2012-09-27 05:16:54',1),(1,44,210,'2012-09-27 05:16:54',1),(1,45,210,'2012-09-27 05:16:54',1),(1,12,215,'2012-09-27 05:17:02',1),(1,28,215,'2012-09-27 05:17:02',1),(1,83,215,'2012-09-27 05:17:02',1),(1,102,215,'2012-09-27 05:17:02',1),(1,94,191,'2012-09-27 05:17:02',1),(1,95,191,'2012-09-27 05:17:02',1),(1,96,191,'2012-09-27 05:17:02',1),(1,97,191,'2012-09-27 05:17:02',1),(1,47,191,'2012-09-27 05:17:02',1),(1,98,191,'2012-09-27 05:17:02',1),(1,99,191,'2012-09-27 05:17:02',1),(1,22,191,'2012-09-27 05:17:02',1),(1,1,191,'2012-09-27 05:17:02',1),(1,33,191,'2012-09-27 05:17:02',1),(1,34,191,'2012-09-27 05:17:02',1),(1,100,191,'2012-09-27 05:17:02',1),(1,35,191,'2012-09-27 05:17:02',1),(1,36,191,'2012-09-27 05:17:02',1),(1,37,191,'2012-09-27 05:17:02',1),(1,6,191,'2012-09-27 05:17:02',1),(1,29,216,'2012-09-27 05:17:09',1),(1,30,216,'2012-09-27 05:17:09',1),(1,31,216,'2012-09-27 05:17:09',1),(1,19,216,'2012-09-27 05:17:09',1),(1,106,216,'2012-09-27 05:17:09',1),(1,86,216,'2012-09-27 05:17:09',1),(1,107,216,'2012-09-27 05:17:09',1),(1,108,216,'2012-09-27 05:17:09',1),(1,27,201,'2012-09-27 05:46:41',1),(1,42,201,'2012-09-27 05:46:41',1),(1,3,201,'2012-09-27 05:46:41',1),(1,11,201,'2012-09-27 05:46:41',1),(1,15,211,'2012-09-27 05:46:56',1),(1,7,211,'2012-09-27 05:46:56',1),(1,38,211,'2012-09-27 05:46:56',1),(1,9,211,'2012-09-27 05:46:56',1),(1,10,211,'2012-09-27 05:46:56',1),(1,5,211,'2012-09-27 05:46:56',1),(1,2,211,'2012-09-27 05:46:56',1),(1,92,211,'2012-09-27 05:46:56',1),(1,95,212,'2012-09-27 05:47:03',1),(1,96,212,'2012-09-27 05:47:03',1),(1,97,212,'2012-09-27 05:47:03',1),(1,47,212,'2012-09-27 05:47:03',1),(1,98,212,'2012-09-27 05:47:03',1),(1,99,212,'2012-09-27 05:47:03',1),(1,22,212,'2012-09-27 05:47:03',1),(1,1,212,'2012-09-27 05:47:03',1),(1,33,212,'2012-09-27 05:47:03',1),(1,34,212,'2012-09-27 05:47:03',1),(1,100,212,'2012-09-27 05:47:03',1),(1,35,212,'2012-09-27 05:47:03',1),(1,36,212,'2012-09-27 05:47:03',1),(1,37,212,'2012-09-27 05:47:03',1),(1,80,212,'2012-09-27 05:47:03',1),(1,6,212,'2012-09-27 05:47:03',1),(1,57,363,'2012-09-27 11:51:25',NULL),(1,54,363,'2012-09-27 11:51:25',NULL),(1,58,363,'2012-09-27 11:51:25',NULL),(1,109,363,'2012-09-27 11:51:25',NULL),(1,62,363,'2012-09-27 11:51:25',NULL),(1,39,363,'2012-09-27 11:51:25',NULL),(1,63,363,'2012-09-27 11:51:25',NULL),(1,59,363,'2012-09-27 11:51:25',NULL),(1,54,360,'2012-09-27 11:51:25',1),(1,53,362,'2012-09-27 12:21:25',NULL),(1,61,362,'2012-09-27 12:21:25',NULL),(1,49,362,'2012-09-27 12:21:25',NULL),(1,68,362,'2012-09-27 12:21:25',NULL),(1,69,361,'2012-09-27 12:21:25',1),(1,70,361,'2012-09-27 12:21:25',1),(1,6,294,'2012-09-28 00:46:26',1),(1,4,294,'2012-09-28 00:46:26',1),(1,6,296,'2012-09-28 00:46:27',1),(1,4,296,'2012-09-28 00:46:27',1),(1,6,295,'2012-09-28 00:46:27',1),(1,4,295,'2012-09-28 00:46:27',1),(1,6,297,'2012-09-28 01:16:36',1),(1,4,297,'2012-09-28 01:16:36',1),(1,6,298,'2012-09-28 01:16:37',1),(1,4,298,'2012-09-28 01:16:37',1),(1,6,312,'2012-09-28 01:46:11',1),(1,4,312,'2012-09-28 01:46:11',1),(1,6,310,'2012-09-28 01:46:11',1),(1,6,311,'2012-09-28 01:46:12',1),(1,4,311,'2012-09-28 01:46:12',1),(1,4,309,'2012-09-28 01:46:12',1),(1,4,292,'2012-09-28 01:46:22',1),(1,110,291,'2012-09-28 01:46:22',1),(1,6,290,'2012-09-28 01:46:22',1),(1,6,289,'2012-09-28 01:46:22',1),(1,6,293,'2012-09-28 01:46:29',1),(1,6,318,'2012-09-28 02:46:18',1),(1,4,318,'2012-09-28 02:46:18',1),(1,6,323,'2012-09-28 02:46:24',1),(1,4,323,'2012-09-28 02:46:24',1),(1,4,322,'2012-09-28 02:46:24',1),(1,6,327,'2012-09-28 02:46:33',1),(1,4,327,'2012-09-28 02:46:33',1),(1,6,326,'2012-09-28 02:46:33',1),(1,6,330,'2012-09-28 02:46:40',1),(1,6,331,'2012-09-28 03:16:44',1),(1,4,331,'2012-09-28 03:16:44',1),(1,6,338,'2012-09-28 03:46:18',1),(1,4,338,'2012-09-28 03:46:18',1),(1,46,337,'2012-09-28 03:46:18',1),(1,111,337,'2012-09-28 03:46:18',1),(1,112,335,'2012-09-28 03:46:18',1),(1,113,304,'2012-09-28 03:46:56',1),(1,17,304,'2012-09-28 03:46:56',1),(1,114,304,'2012-09-28 03:46:56',1),(1,115,304,'2012-09-28 03:46:56',1),(1,87,304,'2012-09-28 03:46:56',1),(1,93,304,'2012-09-28 03:46:56',1),(1,116,304,'2012-09-28 03:46:56',1),(1,117,304,'2012-09-28 03:46:56',1),(1,6,343,'2012-09-28 04:16:36',1),(1,4,343,'2012-09-28 04:16:36',1),(1,6,347,'2012-09-28 04:16:43',1),(1,4,347,'2012-09-28 04:16:43',1),(1,6,352,'2012-09-28 04:16:53',1),(1,4,352,'2012-09-28 04:16:53',1),(1,6,357,'2012-09-28 04:17:05',1),(1,4,357,'2012-09-28 04:17:05',1),(1,6,305,'2012-09-28 04:47:01',1),(1,4,305,'2012-09-28 04:47:01',1),(1,118,305,'2012-09-28 04:47:01',1),(1,119,305,'2012-09-28 04:47:01',1),(1,120,305,'2012-09-28 04:47:01',1),(1,121,305,'2012-09-28 04:47:01',1),(1,122,305,'2012-09-28 04:47:01',1),(1,123,305,'2012-09-28 04:47:01',1),(1,6,307,'2012-09-28 04:47:02',1),(1,4,307,'2012-09-28 04:47:02',1),(1,118,307,'2012-09-28 04:47:02',1),(1,119,307,'2012-09-28 04:47:02',1),(1,120,307,'2012-09-28 04:47:02',1),(1,121,307,'2012-09-28 04:47:02',1),(1,122,307,'2012-09-28 04:47:02',1),(1,123,307,'2012-09-28 04:47:02',1),(1,124,336,'2012-09-28 05:16:22',1),(1,4,319,'2012-09-28 05:16:27',1),(1,87,319,'2012-09-28 05:16:27',1),(1,116,319,'2012-09-28 05:16:27',1),(1,117,319,'2012-09-28 05:16:27',1),(1,87,313,'2012-09-28 05:16:28',1),(1,116,313,'2012-09-28 05:16:28',1),(1,117,313,'2012-09-28 05:16:28',1),(1,4,313,'2012-09-28 05:16:28',1),(1,4,314,'2012-09-28 05:16:29',1),(1,125,314,'2012-09-28 05:16:29',1),(1,124,314,'2012-09-28 05:16:29',1),(1,87,314,'2012-09-28 05:16:29',1),(1,121,300,'2012-09-28 05:16:49',1),(1,122,300,'2012-09-28 05:16:49',1),(1,126,300,'2012-09-28 05:16:49',1),(1,127,300,'2012-09-28 05:16:49',1),(1,6,299,'2012-09-28 05:16:49',1),(1,4,299,'2012-09-28 05:16:49',1),(1,118,299,'2012-09-28 05:16:49',1),(1,119,299,'2012-09-28 05:16:49',1),(1,120,351,'2012-09-28 05:16:55',1),(1,125,302,'2012-09-28 05:16:57',1),(1,127,302,'2012-09-28 05:16:57',1),(1,128,302,'2012-09-28 05:16:57',1),(1,6,302,'2012-09-28 05:16:57',1),(1,127,301,'2012-09-28 05:16:57',1),(1,128,301,'2012-09-28 05:16:57',1),(1,6,301,'2012-09-28 05:16:57',1),(1,4,301,'2012-09-28 05:16:57',1),(1,46,303,'2012-09-28 05:17:01',1),(1,17,303,'2012-09-28 05:17:01',1),(1,114,303,'2012-09-28 05:17:01',1),(1,65,303,'2012-09-28 05:17:01',1),(1,123,356,'2012-09-28 05:17:07',1),(1,6,308,'2012-09-28 05:17:07',1),(1,4,308,'2012-09-28 05:17:07',1),(1,125,308,'2012-09-28 05:17:07',1),(1,118,308,'2012-09-28 05:17:07',1),(1,119,308,'2012-09-28 05:17:07',1),(1,120,308,'2012-09-28 05:17:07',1),(1,121,308,'2012-09-28 05:17:07',1),(1,122,308,'2012-09-28 05:17:07',1),(1,124,317,'2012-09-28 05:46:29',NULL),(1,87,317,'2012-09-28 05:46:29',NULL),(1,117,317,'2012-09-28 05:46:29',NULL),(1,4,317,'2012-09-28 05:46:29',NULL),(1,87,316,'2012-09-28 05:46:30',1),(1,129,316,'2012-09-28 05:46:30',1),(1,117,316,'2012-09-28 05:46:30',1),(1,130,316,'2012-09-28 05:46:30',1),(1,65,316,'2012-09-28 05:46:30',1),(1,131,316,'2012-09-28 05:46:30',1),(1,111,316,'2012-09-28 05:46:30',1),(1,6,316,'2012-09-28 05:46:30',1),(1,87,315,'2012-09-28 05:46:30',1),(1,129,315,'2012-09-28 05:46:30',1),(1,117,315,'2012-09-28 05:46:30',1),(1,130,315,'2012-09-28 05:46:30',1),(1,65,315,'2012-09-28 05:46:30',1),(1,131,315,'2012-09-28 05:46:30',1),(1,111,315,'2012-09-28 05:46:30',1),(1,6,315,'2012-09-28 05:46:30',1),(1,87,306,'2012-09-28 05:47:05',1),(1,129,306,'2012-09-28 05:47:05',1),(1,117,306,'2012-09-28 05:47:05',1),(1,130,306,'2012-09-28 05:47:05',1),(1,65,306,'2012-09-28 05:47:05',1),(1,131,306,'2012-09-28 05:47:05',1),(1,124,306,'2012-09-28 05:47:05',1),(1,111,306,'2012-09-28 05:47:05',1),(1,87,320,'2012-09-28 06:16:30',1),(1,129,320,'2012-09-28 06:16:30',1),(1,117,320,'2012-09-28 06:16:30',1),(1,130,320,'2012-09-28 06:16:30',1),(1,65,320,'2012-09-28 06:16:30',1),(1,110,320,'2012-09-28 06:16:30',1),(1,131,320,'2012-09-28 06:16:30',1),(1,111,320,'2012-09-28 06:16:30',1),(1,132,324,'2012-09-28 06:16:36',1),(1,131,324,'2012-09-28 06:16:36',1),(1,6,324,'2012-09-28 06:16:36',1),(1,4,324,'2012-09-28 06:16:36',1),(1,95,328,'2012-09-28 06:16:43',1),(1,111,328,'2012-09-28 06:16:43',1),(1,6,328,'2012-09-28 06:16:43',1),(1,4,328,'2012-09-28 06:16:43',1),(1,111,325,'2012-09-28 06:16:43',1),(1,115,325,'2012-09-28 06:16:43',1),(1,87,325,'2012-09-28 06:16:43',1),(1,129,325,'2012-09-28 06:16:43',1),(1,117,325,'2012-09-28 06:16:43',1),(1,130,325,'2012-09-28 06:16:43',1),(1,65,325,'2012-09-28 06:16:43',1),(1,110,325,'2012-09-28 06:16:43',1),(1,115,329,'2012-09-28 06:16:52',1),(1,87,329,'2012-09-28 06:16:52',1),(1,129,329,'2012-09-28 06:16:52',1),(1,117,329,'2012-09-28 06:16:52',1),(1,130,329,'2012-09-28 06:16:52',1),(1,65,329,'2012-09-28 06:16:52',1),(1,110,329,'2012-09-28 06:16:52',1),(1,132,329,'2012-09-28 06:16:52',1),(1,131,348,'2012-09-28 06:16:53',1),(1,124,348,'2012-09-28 06:16:53',1),(1,6,348,'2012-09-28 06:16:53',1),(1,4,348,'2012-09-28 06:16:53',1),(1,46,349,'2012-09-28 06:16:54',1),(1,128,349,'2012-09-28 06:16:54',1),(1,17,349,'2012-09-28 06:16:54',1),(1,114,349,'2012-09-28 06:16:54',1),(1,6,349,'2012-09-28 06:16:54',1),(1,4,349,'2012-09-28 06:16:54',1),(1,93,349,'2012-09-28 06:16:54',1),(1,116,349,'2012-09-28 06:16:54',1),(1,115,333,'2012-09-28 06:16:58',1),(1,87,333,'2012-09-28 06:16:58',1),(1,129,333,'2012-09-28 06:16:58',1),(1,117,333,'2012-09-28 06:16:58',1),(1,130,333,'2012-09-28 06:16:58',1),(1,65,333,'2012-09-28 06:16:58',1),(1,110,333,'2012-09-28 06:16:58',1),(1,132,333,'2012-09-28 06:16:58',1),(1,133,358,'2012-09-28 06:17:10',1),(1,125,358,'2012-09-28 06:17:10',1),(1,6,358,'2012-09-28 06:17:10',1),(1,4,358,'2012-09-28 06:17:10',1),(1,134,321,'2012-09-28 06:46:33',1),(1,135,321,'2012-09-28 06:46:33',1),(1,136,321,'2012-09-28 06:46:33',1),(1,137,321,'2012-09-28 06:46:33',1),(1,138,321,'2012-09-28 06:46:33',1),(1,139,321,'2012-09-28 06:46:33',1),(1,48,321,'2012-09-28 06:46:33',1),(1,79,321,'2012-09-28 06:46:33',1),(1,46,321,'2012-09-28 06:46:33',1),(1,128,321,'2012-09-28 06:46:33',1),(1,17,321,'2012-09-28 06:46:33',1),(1,114,321,'2012-09-28 06:46:33',1),(1,115,321,'2012-09-28 06:46:33',1),(1,74,321,'2012-09-28 06:46:33',1),(1,93,321,'2012-09-28 06:46:33',1),(1,116,321,'2012-09-28 06:46:33',1),(1,133,341,'2012-09-28 06:46:39',1),(1,125,341,'2012-09-28 06:46:39',1),(1,87,341,'2012-09-28 06:46:39',1),(1,129,341,'2012-09-28 06:46:39',1),(1,117,341,'2012-09-28 06:46:39',1),(1,130,341,'2012-09-28 06:46:39',1),(1,76,341,'2012-09-28 06:46:39',1),(1,67,341,'2012-09-28 06:46:39',1),(1,134,334,'2012-09-28 06:46:59',1),(1,135,334,'2012-09-28 06:46:59',1),(1,136,334,'2012-09-28 06:46:59',1),(1,137,334,'2012-09-28 06:46:59',1),(1,138,334,'2012-09-28 06:46:59',1),(1,139,334,'2012-09-28 06:46:59',1),(1,48,334,'2012-09-28 06:46:59',1),(1,79,334,'2012-09-28 06:46:59',1),(1,46,334,'2012-09-28 06:46:59',1),(1,128,334,'2012-09-28 06:46:59',1),(1,17,334,'2012-09-28 06:46:59',1),(1,114,334,'2012-09-28 06:46:59',1),(1,115,334,'2012-09-28 06:46:59',1),(1,74,334,'2012-09-28 06:46:59',1),(1,93,334,'2012-09-28 06:46:59',1),(1,116,334,'2012-09-28 06:46:59',1),(1,46,359,'2012-09-28 06:47:14',1),(1,128,359,'2012-09-28 06:47:14',1),(1,17,359,'2012-09-28 06:47:14',1),(1,114,359,'2012-09-28 06:47:14',1),(1,6,359,'2012-09-28 06:47:14',1),(1,4,359,'2012-09-28 06:47:14',1),(1,93,359,'2012-09-28 06:47:14',1),(1,116,359,'2012-09-28 06:47:14',1),(1,87,342,'2012-09-28 07:16:42',1),(1,93,342,'2012-09-28 07:16:42',1),(1,116,342,'2012-09-28 07:16:42',1),(1,129,342,'2012-09-28 07:16:42',1),(1,117,342,'2012-09-28 07:16:42',1),(1,75,342,'2012-09-28 07:16:42',1),(1,55,342,'2012-09-28 07:16:42',1),(1,112,342,'2012-09-28 07:16:42',1),(1,130,339,'2012-09-28 07:16:42',1),(1,65,339,'2012-09-28 07:16:42',1),(1,110,339,'2012-09-28 07:16:42',1),(1,76,339,'2012-09-28 07:16:42',1),(1,130,345,'2012-09-28 07:16:43',1),(1,65,345,'2012-09-28 07:16:43',1),(1,110,345,'2012-09-28 07:16:43',1),(1,76,345,'2012-09-28 07:16:43',1),(1,132,345,'2012-09-28 07:16:43',1),(1,67,345,'2012-09-28 07:16:43',1),(1,6,345,'2012-09-28 07:16:43',1),(1,4,345,'2012-09-28 07:16:43',1),(1,132,344,'2012-09-28 07:16:43',1),(1,131,344,'2012-09-28 07:16:43',1),(1,67,344,'2012-09-28 07:16:43',1),(1,6,344,'2012-09-28 07:16:43',1),(1,125,346,'2012-09-28 07:16:44',NULL),(1,140,346,'2012-09-28 07:16:44',NULL),(1,87,346,'2012-09-28 07:16:44',NULL),(1,129,346,'2012-09-28 07:16:44',NULL),(1,117,346,'2012-09-28 07:16:44',NULL),(1,75,346,'2012-09-28 07:16:44',NULL),(1,55,346,'2012-09-28 07:16:44',NULL),(1,112,346,'2012-09-28 07:16:44',NULL),(1,130,346,'2012-09-28 07:16:44',NULL),(1,65,346,'2012-09-28 07:16:44',NULL),(1,110,346,'2012-09-28 07:16:44',NULL),(1,76,346,'2012-09-28 07:16:44',NULL),(1,132,346,'2012-09-28 07:16:44',NULL),(1,67,346,'2012-09-28 07:16:44',NULL),(1,6,346,'2012-09-28 07:16:44',NULL),(1,4,346,'2012-09-28 07:16:44',NULL),(1,134,350,'2012-09-28 07:16:58',NULL),(1,135,350,'2012-09-28 07:16:58',NULL),(1,136,350,'2012-09-28 07:16:58',NULL),(1,137,350,'2012-09-28 07:16:58',NULL),(1,138,350,'2012-09-28 07:16:58',NULL),(1,139,350,'2012-09-28 07:16:58',NULL),(1,48,350,'2012-09-28 07:16:58',NULL),(1,79,350,'2012-09-28 07:16:58',NULL),(1,46,350,'2012-09-28 07:16:58',NULL),(1,128,350,'2012-09-28 07:16:58',NULL),(1,17,350,'2012-09-28 07:16:58',NULL),(1,114,350,'2012-09-28 07:16:58',NULL),(1,115,350,'2012-09-28 07:16:58',NULL),(1,74,350,'2012-09-28 07:16:58',NULL),(1,93,350,'2012-09-28 07:16:58',NULL),(1,116,350,'2012-09-28 07:16:58',NULL),(1,48,332,'2012-09-28 07:16:58',1),(1,79,332,'2012-09-28 07:16:58',1),(1,46,332,'2012-09-28 07:16:58',1),(1,128,332,'2012-09-28 07:16:58',1),(1,132,353,'2012-09-28 07:17:01',1),(1,131,353,'2012-09-28 07:17:01',1),(1,67,353,'2012-09-28 07:17:01',1),(1,6,353,'2012-09-28 07:17:01',1),(1,125,355,'2012-09-28 07:17:06',1),(1,140,355,'2012-09-28 07:17:06',1),(1,134,355,'2012-09-28 07:17:06',1),(1,135,355,'2012-09-28 07:17:06',1),(1,136,355,'2012-09-28 07:17:06',1),(1,137,355,'2012-09-28 07:17:06',1),(1,138,355,'2012-09-28 07:17:06',1),(1,139,355,'2012-09-28 07:17:06',1),(1,48,355,'2012-09-28 07:17:06',1),(1,79,355,'2012-09-28 07:17:06',1),(1,46,355,'2012-09-28 07:17:06',1),(1,128,355,'2012-09-28 07:17:06',1),(1,17,355,'2012-09-28 07:17:06',1),(1,114,355,'2012-09-28 07:17:06',1),(1,115,355,'2012-09-28 07:17:06',1),(1,74,355,'2012-09-28 07:17:06',1),(1,17,340,'2012-09-28 07:46:42',1),(1,114,340,'2012-09-28 07:46:42',1),(1,115,340,'2012-09-28 07:46:42',1),(1,74,340,'2012-09-28 07:46:42',1),(1,125,354,'2012-09-28 07:47:02',1),(1,140,354,'2012-09-28 07:47:02',1),(1,134,354,'2012-09-28 07:47:02',1),(1,135,354,'2012-09-28 07:47:02',1),(1,136,354,'2012-09-28 07:47:02',1),(1,137,354,'2012-09-28 07:47:02',1),(1,138,354,'2012-09-28 07:47:02',1),(1,139,354,'2012-09-28 07:47:02',1),(1,115,435,'2012-09-28 10:39:03',NULL),(1,74,435,'2012-09-28 10:39:03',NULL),(1,87,435,'2012-09-28 10:39:03',NULL),(1,129,435,'2012-09-28 10:39:03',NULL),(1,141,367,'2012-09-29 00:46:19',1),(1,142,366,'2012-09-29 00:46:19',1),(1,51,365,'2012-09-29 00:46:19',1),(1,86,364,'2012-09-29 00:46:19',1),(1,51,371,'2012-09-29 00:46:26',1),(1,142,371,'2012-09-29 00:46:26',1),(1,143,370,'2012-09-29 00:46:26',1),(1,86,370,'2012-09-29 00:46:26',1),(1,133,369,'2012-09-29 00:46:26',1),(1,143,369,'2012-09-29 00:46:26',1),(1,143,368,'2012-09-29 00:46:26',1),(1,51,373,'2012-09-29 00:46:33',1),(1,142,373,'2012-09-29 00:46:33',1),(1,51,372,'2012-09-29 00:46:33',1),(1,142,372,'2012-09-29 00:46:33',1),(1,141,375,'2012-09-29 01:16:35',1),(1,51,375,'2012-09-29 01:16:35',1),(1,144,375,'2012-09-29 01:16:35',1),(1,6,375,'2012-09-29 01:16:35',1),(1,141,374,'2012-09-29 01:16:35',1),(1,51,374,'2012-09-29 01:16:35',1),(1,145,374,'2012-09-29 01:16:35',1),(1,144,374,'2012-09-29 01:16:35',1),(1,133,378,'2012-09-29 01:16:44',1),(1,146,378,'2012-09-29 01:16:44',1),(1,147,378,'2012-09-29 01:16:44',1),(1,86,378,'2012-09-29 01:16:44',1),(1,147,387,'2012-09-29 01:46:14',1),(1,86,387,'2012-09-29 01:46:14',1),(1,147,386,'2012-09-29 01:46:14',1),(1,86,386,'2012-09-29 01:46:14',1),(1,148,389,'2012-09-29 01:46:20',1),(1,145,389,'2012-09-29 01:46:20',1),(1,142,389,'2012-09-29 01:46:20',1),(1,50,389,'2012-09-29 01:46:20',1),(1,147,388,'2012-09-29 01:46:20',1),(1,51,388,'2012-09-29 01:46:20',1),(1,148,388,'2012-09-29 01:46:20',1),(1,145,388,'2012-09-29 01:46:20',1),(1,143,379,'2012-09-29 01:46:45',1),(1,51,379,'2012-09-29 01:46:45',1),(1,148,379,'2012-09-29 01:46:45',1),(1,145,379,'2012-09-29 01:46:45',1),(1,144,379,'2012-09-29 01:46:45',1),(1,142,379,'2012-09-29 01:46:45',1),(1,50,379,'2012-09-29 01:46:45',1),(1,6,379,'2012-09-29 01:46:45',1),(1,51,377,'2012-09-29 01:46:45',1),(1,148,377,'2012-09-29 01:46:45',1),(1,145,377,'2012-09-29 01:46:45',1),(1,144,377,'2012-09-29 01:46:45',1),(1,51,376,'2012-09-29 01:46:45',1),(1,148,376,'2012-09-29 01:46:45',1),(1,145,376,'2012-09-29 01:46:45',1),(1,144,376,'2012-09-29 01:46:45',1),(1,149,395,'2012-09-29 02:46:18',1),(1,150,395,'2012-09-29 02:46:18',1),(1,151,395,'2012-09-29 02:46:18',1),(1,79,395,'2012-09-29 02:46:18',1),(1,152,395,'2012-09-29 02:46:18',1),(1,147,395,'2012-09-29 02:46:18',1),(1,153,395,'2012-09-29 02:46:18',1),(1,154,395,'2012-09-29 02:46:18',1),(1,152,394,'2012-09-29 02:46:18',1),(1,153,394,'2012-09-29 02:46:18',1),(1,143,394,'2012-09-29 02:46:18',1),(1,51,394,'2012-09-29 02:46:18',1),(1,151,393,'2012-09-29 02:46:18',1),(1,148,393,'2012-09-29 02:46:18',1),(1,149,390,'2012-09-29 02:46:23',NULL),(1,151,390,'2012-09-29 02:46:23',NULL),(1,79,390,'2012-09-29 02:46:23',NULL),(1,152,390,'2012-09-29 02:46:23',NULL),(1,147,390,'2012-09-29 02:46:23',NULL),(1,153,390,'2012-09-29 02:46:23',NULL),(1,154,390,'2012-09-29 02:46:23',NULL),(1,155,390,'2012-09-29 02:46:23',NULL),(1,156,398,'2012-09-29 02:46:24',1),(1,4,398,'2012-09-29 02:46:24',1),(1,51,399,'2012-09-29 02:46:26',1),(1,148,399,'2012-09-29 02:46:26',1),(1,86,399,'2012-09-29 02:46:26',1),(1,156,399,'2012-09-29 02:46:26',1),(1,149,391,'2012-09-29 02:46:30',1),(1,151,391,'2012-09-29 02:46:30',1),(1,79,391,'2012-09-29 02:46:30',1),(1,152,391,'2012-09-29 02:46:30',1),(1,147,391,'2012-09-29 02:46:30',1),(1,153,391,'2012-09-29 02:46:30',1),(1,154,391,'2012-09-29 02:46:30',1),(1,155,391,'2012-09-29 02:46:30',1),(1,149,400,'2012-09-29 02:46:32',1),(1,150,400,'2012-09-29 02:46:32',1),(1,151,400,'2012-09-29 02:46:32',1),(1,79,400,'2012-09-29 02:46:32',1),(1,152,400,'2012-09-29 02:46:32',1),(1,147,400,'2012-09-29 02:46:32',1),(1,153,400,'2012-09-29 02:46:32',1),(1,154,400,'2012-09-29 02:46:32',1),(1,79,403,'2012-09-29 02:46:33',1),(1,51,403,'2012-09-29 02:46:33',1),(1,148,403,'2012-09-29 02:46:33',1),(1,86,403,'2012-09-29 02:46:33',1),(1,157,402,'2012-09-29 02:46:33',1),(1,144,402,'2012-09-29 02:46:33',1),(1,79,404,'2012-09-29 02:46:40',1),(1,152,404,'2012-09-29 02:46:40',1),(1,147,404,'2012-09-29 02:46:40',1),(1,153,404,'2012-09-29 02:46:40',1),(1,154,404,'2012-09-29 02:46:40',1),(1,158,404,'2012-09-29 02:46:40',1),(1,159,404,'2012-09-29 02:46:40',1),(1,75,404,'2012-09-29 02:46:40',1),(1,143,407,'2012-09-29 02:46:41',1),(1,51,407,'2012-09-29 02:46:41',1),(1,148,407,'2012-09-29 02:46:41',1),(1,86,407,'2012-09-29 02:46:41',1),(1,142,406,'2012-09-29 02:46:41',1),(1,4,406,'2012-09-29 02:46:41',1),(1,149,383,'2012-09-29 02:46:53',1),(1,151,383,'2012-09-29 02:46:53',1),(1,152,383,'2012-09-29 02:46:53',1),(1,147,383,'2012-09-29 02:46:53',1),(1,153,383,'2012-09-29 02:46:53',1),(1,154,383,'2012-09-29 02:46:53',1),(1,155,383,'2012-09-29 02:46:53',1),(1,143,383,'2012-09-29 02:46:53',1),(1,149,382,'2012-09-29 02:46:53',1),(1,151,382,'2012-09-29 02:46:53',1),(1,152,382,'2012-09-29 02:46:53',1),(1,147,382,'2012-09-29 02:46:53',1),(1,153,382,'2012-09-29 02:46:53',1),(1,154,382,'2012-09-29 02:46:53',1),(1,155,382,'2012-09-29 02:46:53',1),(1,143,382,'2012-09-29 02:46:53',1),(1,149,381,'2012-09-29 02:46:53',1),(1,151,381,'2012-09-29 02:46:53',1),(1,79,381,'2012-09-29 02:46:53',1),(1,152,381,'2012-09-29 02:46:53',1),(1,147,381,'2012-09-29 02:46:53',1),(1,153,381,'2012-09-29 02:46:53',1),(1,154,381,'2012-09-29 02:46:53',1),(1,155,381,'2012-09-29 02:46:53',1),(1,149,380,'2012-09-29 02:46:53',1),(1,151,380,'2012-09-29 02:46:53',1),(1,154,380,'2012-09-29 02:46:53',1),(1,155,380,'2012-09-29 02:46:53',1),(1,148,380,'2012-09-29 02:46:53',1),(1,86,380,'2012-09-29 02:46:53',1),(1,156,380,'2012-09-29 02:46:53',1),(1,4,380,'2012-09-29 02:46:53',1),(1,160,392,'2012-09-29 03:16:19',NULL),(1,157,392,'2012-09-29 03:16:19',NULL),(1,144,392,'2012-09-29 03:16:19',NULL),(1,50,392,'2012-09-29 03:16:19',NULL),(1,79,408,'2012-09-29 03:16:50',1),(1,152,408,'2012-09-29 03:16:50',1),(1,147,408,'2012-09-29 03:16:50',1),(1,153,408,'2012-09-29 03:16:50',1),(1,154,408,'2012-09-29 03:16:50',1),(1,158,408,'2012-09-29 03:16:50',1),(1,51,408,'2012-09-29 03:16:50',1),(1,148,408,'2012-09-29 03:16:50',1),(1,151,385,'2012-09-29 03:46:18',1),(1,158,412,'2012-09-29 03:46:21',1),(1,51,412,'2012-09-29 03:46:21',1),(1,50,384,'2012-09-29 03:46:22',1),(1,161,418,'2012-09-29 03:46:33',1),(1,148,418,'2012-09-29 03:46:33',1),(1,6,401,'2012-09-29 03:46:35',1),(1,50,422,'2012-09-29 03:46:39',1),(1,4,422,'2012-09-29 03:46:39',1),(1,158,427,'2012-09-29 03:46:50',1),(1,51,427,'2012-09-29 03:46:50',1),(1,51,432,'2012-09-29 03:46:58',1),(1,6,432,'2012-09-29 03:46:58',1),(1,154,413,'2012-09-29 04:16:20',1),(1,162,413,'2012-09-29 04:16:20',1),(1,51,397,'2012-09-29 04:16:31',1),(1,4,410,'2012-09-29 04:46:23',1),(1,6,405,'2012-09-29 04:46:45',1),(1,6,411,'2012-09-29 05:16:24',1),(1,4,426,'2012-09-29 05:16:52',1),(1,20,431,'2012-09-29 05:17:01',1),(1,20,414,'2012-09-29 06:16:35',1),(1,79,414,'2012-09-29 06:16:35',1),(1,127,414,'2012-09-29 06:16:35',1),(1,15,414,'2012-09-29 06:16:35',1),(1,79,419,'2012-09-29 06:16:43',1),(1,152,419,'2012-09-29 06:16:43',1),(1,127,419,'2012-09-29 06:16:43',1),(1,159,419,'2012-09-29 06:16:43',1),(1,152,423,'2012-09-29 06:16:50',1),(1,127,423,'2012-09-29 06:16:50',1),(1,158,423,'2012-09-29 06:16:50',1),(1,163,423,'2012-09-29 06:16:50',1),(1,152,428,'2012-09-29 06:16:54',1),(1,153,428,'2012-09-29 06:16:54',1),(1,127,428,'2012-09-29 06:16:54',1),(1,158,428,'2012-09-29 06:16:54',1),(1,164,416,'2012-09-29 06:46:37',NULL),(1,79,416,'2012-09-29 06:46:37',NULL),(1,152,416,'2012-09-29 06:46:37',NULL),(1,153,416,'2012-09-29 06:46:37',NULL),(1,127,416,'2012-09-29 06:46:37',NULL),(1,158,416,'2012-09-29 06:46:37',NULL),(1,163,416,'2012-09-29 06:46:37',NULL),(1,148,416,'2012-09-29 06:46:37',NULL),(1,165,415,'2012-09-29 06:46:37',1),(1,166,415,'2012-09-29 06:46:37',1),(1,50,415,'2012-09-29 06:46:37',1),(1,6,415,'2012-09-29 06:46:37',1),(1,164,433,'2012-09-29 06:47:05',1),(1,152,433,'2012-09-29 06:47:05',1),(1,153,433,'2012-09-29 06:47:05',1),(1,127,433,'2012-09-29 06:47:05',1),(1,133,417,'2012-09-29 07:46:41',1),(1,164,417,'2012-09-29 07:46:41',1),(1,79,417,'2012-09-29 07:46:41',1),(1,152,417,'2012-09-29 07:46:41',1),(1,153,417,'2012-09-29 07:46:41',1),(1,127,417,'2012-09-29 07:46:41',1),(1,158,417,'2012-09-29 07:46:41',1),(1,165,417,'2012-09-29 07:46:41',1),(1,134,396,'2012-09-29 07:46:42',1),(1,124,396,'2012-09-29 07:46:42',1),(1,48,396,'2012-09-29 07:46:42',1),(1,79,396,'2012-09-29 07:46:42',1),(1,152,396,'2012-09-29 07:46:42',1),(1,153,396,'2012-09-29 07:46:42',1),(1,127,396,'2012-09-29 07:46:42',1),(1,167,396,'2012-09-29 07:46:42',1),(1,158,396,'2012-09-29 07:46:42',1),(1,165,396,'2012-09-29 07:46:42',1),(1,163,396,'2012-09-29 07:46:42',1),(1,39,396,'2012-09-29 07:46:42',1),(1,159,396,'2012-09-29 07:46:42',1),(1,114,396,'2012-09-29 07:46:42',1),(1,50,396,'2012-09-29 07:46:42',1),(1,6,396,'2012-09-29 07:46:42',1),(1,164,420,'2012-09-29 07:46:49',1),(1,79,420,'2012-09-29 07:46:49',1),(1,152,420,'2012-09-29 07:46:49',1),(1,153,420,'2012-09-29 07:46:49',1),(1,127,420,'2012-09-29 07:46:49',1),(1,167,420,'2012-09-29 07:46:49',1),(1,158,420,'2012-09-29 07:46:49',1),(1,165,420,'2012-09-29 07:46:49',1),(1,79,424,'2012-09-29 07:46:55',1),(1,152,424,'2012-09-29 07:46:55',1),(1,153,424,'2012-09-29 07:46:55',1),(1,127,424,'2012-09-29 07:46:55',1),(1,167,424,'2012-09-29 07:46:55',1),(1,158,424,'2012-09-29 07:46:55',1),(1,165,424,'2012-09-29 07:46:55',1),(1,163,424,'2012-09-29 07:46:55',1),(1,134,409,'2012-09-29 08:17:04',1),(1,124,409,'2012-09-29 08:17:04',1),(1,48,409,'2012-09-29 08:17:04',1),(1,164,409,'2012-09-29 08:17:04',1),(1,79,409,'2012-09-29 08:17:04',1),(1,152,409,'2012-09-29 08:17:04',1),(1,153,409,'2012-09-29 08:17:04',1),(1,127,409,'2012-09-29 08:17:04',1),(1,167,409,'2012-09-29 08:17:04',1),(1,158,409,'2012-09-29 08:17:04',1),(1,165,409,'2012-09-29 08:17:04',1),(1,163,409,'2012-09-29 08:17:04',1),(1,39,409,'2012-09-29 08:17:04',1),(1,159,409,'2012-09-29 08:17:04',1),(1,114,409,'2012-09-29 08:17:04',1),(1,50,409,'2012-09-29 08:17:04',1),(1,124,421,'2012-09-29 08:46:50',NULL),(1,48,421,'2012-09-29 08:46:50',NULL),(1,164,421,'2012-09-29 08:46:50',NULL),(1,79,421,'2012-09-29 08:46:50',NULL),(1,152,421,'2012-09-29 08:46:50',NULL),(1,153,421,'2012-09-29 08:46:50',NULL),(1,127,421,'2012-09-29 08:46:50',NULL),(1,167,421,'2012-09-29 08:46:50',NULL),(1,158,421,'2012-09-29 08:46:50',NULL),(1,165,421,'2012-09-29 08:46:50',NULL),(1,163,421,'2012-09-29 08:46:50',NULL),(1,148,421,'2012-09-29 08:46:50',NULL),(1,39,421,'2012-09-29 08:46:50',NULL),(1,159,421,'2012-09-29 08:46:50',NULL),(1,114,421,'2012-09-29 08:46:50',NULL),(1,166,421,'2012-09-29 08:46:50',NULL),(1,124,425,'2012-09-29 08:46:57',NULL),(1,48,425,'2012-09-29 08:46:57',NULL),(1,164,425,'2012-09-29 08:46:57',NULL),(1,79,425,'2012-09-29 08:46:57',NULL),(1,152,425,'2012-09-29 08:46:57',NULL),(1,153,425,'2012-09-29 08:46:57',NULL),(1,127,425,'2012-09-29 08:46:57',NULL),(1,167,425,'2012-09-29 08:46:57',NULL),(1,158,425,'2012-09-29 08:46:57',NULL),(1,165,425,'2012-09-29 08:46:57',NULL),(1,163,425,'2012-09-29 08:46:57',NULL),(1,148,425,'2012-09-29 08:46:57',NULL),(1,39,425,'2012-09-29 08:46:57',NULL),(1,159,425,'2012-09-29 08:46:57',NULL),(1,114,425,'2012-09-29 08:46:57',NULL),(1,166,425,'2012-09-29 08:46:57',NULL),(1,124,430,'2012-09-29 08:47:10',1),(1,48,430,'2012-09-29 08:47:10',1),(1,164,430,'2012-09-29 08:47:10',1),(1,79,430,'2012-09-29 08:47:10',1),(1,152,430,'2012-09-29 08:47:10',1),(1,153,430,'2012-09-29 08:47:10',1),(1,127,430,'2012-09-29 08:47:10',1),(1,167,430,'2012-09-29 08:47:10',1),(1,158,430,'2012-09-29 08:47:10',1),(1,165,430,'2012-09-29 08:47:10',1),(1,163,430,'2012-09-29 08:47:10',1),(1,148,430,'2012-09-29 08:47:10',1),(1,39,430,'2012-09-29 08:47:10',1),(1,159,430,'2012-09-29 08:47:10',1),(1,114,430,'2012-09-29 08:47:10',1),(1,166,430,'2012-09-29 08:47:10',1),(1,158,434,'2012-09-29 08:47:15',1),(1,165,434,'2012-09-29 08:47:15',1),(1,163,434,'2012-09-29 08:47:15',1),(1,148,434,'2012-09-29 08:47:15',1),(1,39,434,'2012-09-29 08:47:15',1),(1,159,434,'2012-09-29 08:47:15',1),(1,114,434,'2012-09-29 08:47:15',1),(1,166,434,'2012-09-29 08:47:15',1),(1,124,429,'2012-09-29 09:17:00',1),(1,48,429,'2012-09-29 09:17:00',1),(1,164,429,'2012-09-29 09:17:00',1),(1,79,429,'2012-09-29 09:17:00',1),(1,152,429,'2012-09-29 09:17:00',1),(1,153,429,'2012-09-29 09:17:00',1),(1,127,429,'2012-09-29 09:17:00',1),(1,167,429,'2012-09-29 09:17:00',1),(1,150,443,'2012-09-30 00:46:25',1),(1,124,443,'2012-09-30 00:46:25',1),(1,168,442,'2012-09-30 00:46:25',1),(1,6,442,'2012-09-30 00:46:25',1),(1,150,441,'2012-09-30 00:46:25',1),(1,124,441,'2012-09-30 00:46:25',1),(1,169,447,'2012-09-30 00:46:34',1),(1,83,447,'2012-09-30 00:46:34',1),(1,144,447,'2012-09-30 00:46:34',1),(1,73,447,'2012-09-30 00:46:34',1),(1,96,446,'2012-09-30 00:46:34',1),(1,134,446,'2012-09-30 00:46:34',1),(1,138,446,'2012-09-30 00:46:34',1),(1,3,446,'2012-09-30 00:46:34',1),(1,152,445,'2012-09-30 00:46:34',1),(1,153,445,'2012-09-30 00:46:34',1),(1,170,444,'2012-09-30 00:46:34',1),(1,41,444,'2012-09-30 00:46:34',1),(1,170,451,'2012-09-30 00:46:42',1),(1,41,451,'2012-09-30 00:46:42',1),(1,152,451,'2012-09-30 00:46:42',1),(1,153,451,'2012-09-30 00:46:42',1),(1,127,451,'2012-09-30 00:46:42',1),(1,44,451,'2012-09-30 00:46:42',1),(1,12,451,'2012-09-30 00:46:42',1),(1,167,451,'2012-09-30 00:46:42',1),(1,171,450,'2012-09-30 00:46:42',1),(1,128,450,'2012-09-30 00:46:42',1),(1,106,450,'2012-09-30 00:46:42',1),(1,172,450,'2012-09-30 00:46:42',1),(1,169,449,'2012-09-30 00:46:42',1),(1,83,449,'2012-09-30 00:46:42',1),(1,144,449,'2012-09-30 00:46:42',1),(1,73,449,'2012-09-30 00:46:42',1),(1,173,448,'2012-09-30 00:46:42',1),(1,174,448,'2012-09-30 00:46:42',1),(1,117,448,'2012-09-30 00:46:42',1),(1,156,448,'2012-09-30 00:46:42',1),(1,22,455,'2012-09-30 00:46:50',1),(1,165,455,'2012-09-30 00:46:50',1),(1,175,455,'2012-09-30 00:46:50',1),(1,54,455,'2012-09-30 00:46:50',1),(1,163,455,'2012-09-30 00:46:50',1),(1,176,455,'2012-09-30 00:46:50',1),(1,177,455,'2012-09-30 00:46:50',1),(1,178,455,'2012-09-30 00:46:50',1),(1,96,454,'2012-09-30 00:46:50',1),(1,134,454,'2012-09-30 00:46:50',1),(1,138,454,'2012-09-30 00:46:50',1),(1,3,454,'2012-09-30 00:46:50',1),(1,158,454,'2012-09-30 00:46:50',1),(1,179,454,'2012-09-30 00:46:50',1),(1,180,454,'2012-09-30 00:46:50',1),(1,161,454,'2012-09-30 00:46:50',1),(1,163,453,'2012-09-30 00:46:50',1),(1,176,453,'2012-09-30 00:46:50',1),(1,177,453,'2012-09-30 00:46:50',1),(1,178,453,'2012-09-30 00:46:50',1),(1,171,453,'2012-09-30 00:46:50',1),(1,128,453,'2012-09-30 00:46:50',1),(1,106,453,'2012-09-30 00:46:50',1),(1,172,453,'2012-09-30 00:46:50',1),(1,158,452,'2012-09-30 00:46:50',1),(1,179,452,'2012-09-30 00:46:50',1),(1,180,452,'2012-09-30 00:46:50',1),(1,161,452,'2012-09-30 00:46:50',1),(1,22,452,'2012-09-30 00:46:50',1),(1,165,452,'2012-09-30 00:46:50',1),(1,175,452,'2012-09-30 00:46:50',1),(1,54,452,'2012-09-30 00:46:50',1),(1,138,438,'2012-09-30 01:16:19',1),(1,48,437,'2012-09-30 01:16:19',1),(1,30,459,'2012-09-30 01:46:12',1),(1,171,459,'2012-09-30 01:46:12',1),(1,100,458,'2012-09-30 01:46:12',1),(1,181,458,'2012-09-30 01:46:12',1),(1,73,457,'2012-09-30 01:46:12',1),(1,128,456,'2012-09-30 01:46:12',1),(1,134,439,'2012-09-30 01:46:19',1),(1,3,436,'2012-09-30 01:46:19',1),(1,165,461,'2012-09-30 01:46:21',1),(1,175,461,'2012-09-30 01:46:21',1),(1,54,461,'2012-09-30 01:46:21',1),(1,163,461,'2012-09-30 01:46:21',1),(1,176,460,'2012-09-30 01:46:21',1),(1,177,460,'2012-09-30 01:46:21',1),(1,178,460,'2012-09-30 01:46:21',1),(1,182,460,'2012-09-30 01:46:21',1),(1,95,463,'2012-09-30 01:46:22',1),(1,125,463,'2012-09-30 01:46:22',1),(1,27,463,'2012-09-30 01:46:22',1),(1,150,463,'2012-09-30 01:46:22',1),(1,124,463,'2012-09-30 01:46:22',1),(1,48,463,'2012-09-30 01:46:22',1),(1,26,463,'2012-09-30 01:46:22',1),(1,170,463,'2012-09-30 01:46:22',1),(1,41,462,'2012-09-30 01:46:22',NULL),(1,152,462,'2012-09-30 01:46:22',NULL),(1,153,462,'2012-09-30 01:46:22',NULL),(1,143,462,'2012-09-30 01:46:22',NULL),(1,179,462,'2012-09-30 01:46:22',NULL),(1,180,462,'2012-09-30 01:46:22',NULL),(1,161,462,'2012-09-30 01:46:22',NULL),(1,22,462,'2012-09-30 01:46:22',NULL),(1,158,440,'2012-09-30 01:46:29',1),(1,176,467,'2012-09-30 02:46:16',1),(1,177,467,'2012-09-30 02:46:16',1),(1,178,467,'2012-09-30 02:46:16',1),(1,182,467,'2012-09-30 02:46:16',1),(1,100,467,'2012-09-30 02:46:16',1),(1,181,467,'2012-09-30 02:46:16',1),(1,30,467,'2012-09-30 02:46:16',1),(1,171,467,'2012-09-30 02:46:16',1),(1,26,466,'2012-09-30 02:46:16',1),(1,170,466,'2012-09-30 02:46:16',1),(1,41,466,'2012-09-30 02:46:16',1),(1,152,466,'2012-09-30 02:46:16',1),(1,181,465,'2012-09-30 02:46:16',1),(1,30,465,'2012-09-30 02:46:16',1),(1,171,470,'2012-09-30 02:46:22',1),(1,128,470,'2012-09-30 02:46:22',1),(1,153,471,'2012-09-30 02:46:24',1),(1,174,471,'2012-09-30 02:46:24',1),(1,117,471,'2012-09-30 02:46:24',1),(1,156,471,'2012-09-30 02:46:24',1),(1,4,469,'2012-09-30 02:46:24',1),(1,183,468,'2012-09-30 02:46:24',1),(1,113,468,'2012-09-30 02:46:24',1),(1,27,468,'2012-09-30 02:46:24',1),(1,184,468,'2012-09-30 02:46:24',1),(1,96,468,'2012-09-30 02:46:24',1),(1,134,468,'2012-09-30 02:46:24',1),(1,138,468,'2012-09-30 02:46:24',1),(1,3,468,'2012-09-30 02:46:24',1),(1,150,468,'2012-09-30 02:46:24',1),(1,124,468,'2012-09-30 02:46:24',1),(1,48,468,'2012-09-30 02:46:24',1),(1,26,468,'2012-09-30 02:46:24',1),(1,170,468,'2012-09-30 02:46:24',1),(1,41,468,'2012-09-30 02:46:24',1),(1,152,468,'2012-09-30 02:46:24',1),(1,153,468,'2012-09-30 02:46:24',1),(1,168,475,'2012-09-30 02:46:31',1),(1,185,475,'2012-09-30 02:46:31',1),(1,9,475,'2012-09-30 02:46:31',1),(1,6,475,'2012-09-30 02:46:31',1),(1,106,474,'2012-09-30 02:46:31',1),(1,172,474,'2012-09-30 02:46:31',1),(1,144,473,'2012-09-30 02:46:31',1),(1,128,472,'2012-09-30 02:46:31',1),(1,106,472,'2012-09-30 02:46:31',1),(1,172,472,'2012-09-30 02:46:31',1),(1,169,472,'2012-09-30 02:46:31',1),(1,83,472,'2012-09-30 02:46:31',1),(1,144,472,'2012-09-30 02:46:31',1),(1,73,472,'2012-09-30 02:46:31',1),(1,173,472,'2012-09-30 02:46:31',1),(1,174,476,'2012-09-30 02:46:39',1),(1,117,476,'2012-09-30 02:46:39',1),(1,156,476,'2012-09-30 02:46:39',1),(1,168,476,'2012-09-30 02:46:39',1),(1,185,476,'2012-09-30 02:46:39',1),(1,9,476,'2012-09-30 02:46:39',1),(1,6,476,'2012-09-30 02:46:39',1),(1,4,476,'2012-09-30 02:46:39',1),(1,177,479,'2012-09-30 02:46:42',1),(1,178,479,'2012-09-30 02:46:42',1),(1,182,479,'2012-09-30 02:46:42',1),(1,100,479,'2012-09-30 02:46:42',1),(1,169,478,'2012-09-30 02:46:42',1),(1,83,478,'2012-09-30 02:46:42',1),(1,73,477,'2012-09-30 02:46:42',1),(1,127,481,'2012-09-30 02:46:48',1),(1,44,481,'2012-09-30 02:46:48',1),(1,12,481,'2012-09-30 02:46:48',1),(1,28,481,'2012-09-30 02:46:48',1),(1,167,481,'2012-09-30 02:46:48',1),(1,186,481,'2012-09-30 02:46:48',1),(1,158,481,'2012-09-30 02:46:48',1),(1,143,481,'2012-09-30 02:46:48',1),(1,179,481,'2012-09-30 02:46:48',1),(1,180,481,'2012-09-30 02:46:48',1),(1,161,481,'2012-09-30 02:46:48',1),(1,22,481,'2012-09-30 02:46:48',1),(1,165,481,'2012-09-30 02:46:48',1),(1,175,481,'2012-09-30 02:46:48',1),(1,54,481,'2012-09-30 02:46:48',1),(1,163,481,'2012-09-30 02:46:48',1),(1,125,480,'2012-09-30 02:46:48',1),(1,183,480,'2012-09-30 02:46:48',1),(1,113,480,'2012-09-30 02:46:48',1),(1,27,480,'2012-09-30 02:46:48',1),(1,184,480,'2012-09-30 02:46:48',1),(1,96,480,'2012-09-30 02:46:48',1),(1,134,480,'2012-09-30 02:46:48',1),(1,138,480,'2012-09-30 02:46:48',1),(1,3,464,'2012-09-30 03:16:16',NULL),(1,150,464,'2012-09-30 03:16:16',NULL),(1,124,464,'2012-09-30 03:16:16',NULL),(1,48,464,'2012-09-30 03:16:16',NULL),(1,144,484,'2012-09-30 03:46:19',1),(1,73,484,'2012-09-30 03:46:19',1),(1,125,483,'2012-09-30 03:46:19',1),(1,173,482,'2012-09-30 03:46:19',1),(1,180,492,'2012-09-30 03:46:34',1),(1,161,492,'2012-09-30 03:46:34',1),(1,22,492,'2012-09-30 03:46:34',1),(1,165,492,'2012-09-30 03:46:34',1),(1,175,492,'2012-09-30 03:46:34',1),(1,54,492,'2012-09-30 03:46:34',1),(1,163,492,'2012-09-30 03:46:34',1),(1,176,492,'2012-09-30 03:46:34',1),(1,41,491,'2012-09-30 03:46:34',1),(1,152,491,'2012-09-30 03:46:34',1),(1,153,491,'2012-09-30 03:46:34',1),(1,127,491,'2012-09-30 03:46:34',1),(1,183,493,'2012-09-30 03:46:35',NULL),(1,113,493,'2012-09-30 03:46:35',NULL),(1,27,493,'2012-09-30 03:46:35',NULL),(1,184,493,'2012-09-30 03:46:35',NULL),(1,96,493,'2012-09-30 03:46:35',NULL),(1,134,493,'2012-09-30 03:46:35',NULL),(1,138,493,'2012-09-30 03:46:35',NULL),(1,3,493,'2012-09-30 03:46:35',NULL),(1,150,493,'2012-09-30 03:46:35',NULL),(1,124,493,'2012-09-30 03:46:35',NULL),(1,48,493,'2012-09-30 03:46:35',NULL),(1,26,493,'2012-09-30 03:46:35',NULL),(1,170,493,'2012-09-30 03:46:35',NULL),(1,41,493,'2012-09-30 03:46:35',NULL),(1,152,493,'2012-09-30 03:46:35',NULL),(1,153,493,'2012-09-30 03:46:35',NULL),(1,54,490,'2012-09-30 03:46:35',1),(1,163,490,'2012-09-30 03:46:35',1),(1,127,497,'2012-09-30 03:46:43',NULL),(1,44,497,'2012-09-30 03:46:43',NULL),(1,12,497,'2012-09-30 03:46:43',NULL),(1,28,497,'2012-09-30 03:46:43',NULL),(1,167,497,'2012-09-30 03:46:43',NULL),(1,186,497,'2012-09-30 03:46:43',NULL),(1,158,497,'2012-09-30 03:46:43',NULL),(1,143,497,'2012-09-30 03:46:43',NULL),(1,179,497,'2012-09-30 03:46:43',NULL),(1,180,497,'2012-09-30 03:46:43',NULL),(1,161,497,'2012-09-30 03:46:43',NULL),(1,22,497,'2012-09-30 03:46:43',NULL),(1,165,497,'2012-09-30 03:46:43',NULL),(1,175,497,'2012-09-30 03:46:43',NULL),(1,54,497,'2012-09-30 03:46:43',NULL),(1,163,497,'2012-09-30 03:46:43',NULL),(1,177,496,'2012-09-30 03:46:44',1),(1,178,496,'2012-09-30 03:46:44',1),(1,182,496,'2012-09-30 03:46:44',1),(1,100,496,'2012-09-30 03:46:44',1),(1,181,496,'2012-09-30 03:46:44',1),(1,30,496,'2012-09-30 03:46:44',1),(1,171,496,'2012-09-30 03:46:44',1),(1,128,496,'2012-09-30 03:46:44',1),(1,27,495,'2012-09-30 03:46:44',1),(1,184,495,'2012-09-30 03:46:44',1),(1,96,495,'2012-09-30 03:46:44',1),(1,134,495,'2012-09-30 03:46:44',1),(1,183,494,'2012-09-30 03:46:44',1),(1,144,494,'2012-09-30 03:46:44',1),(1,138,500,'2012-09-30 03:46:51',1),(1,3,500,'2012-09-30 03:46:51',1),(1,150,500,'2012-09-30 03:46:51',1),(1,180,500,'2012-09-30 03:46:51',1),(1,173,498,'2012-09-30 03:46:51',1),(1,176,502,'2012-09-30 03:46:57',1),(1,177,502,'2012-09-30 03:46:57',1),(1,178,502,'2012-09-30 03:46:57',1),(1,182,502,'2012-09-30 03:46:57',1),(1,100,502,'2012-09-30 03:46:57',1),(1,181,502,'2012-09-30 03:46:57',1),(1,30,502,'2012-09-30 03:46:57',1),(1,171,502,'2012-09-30 03:46:57',1),(1,128,502,'2012-09-30 03:46:57',1),(1,106,502,'2012-09-30 03:46:57',1),(1,172,502,'2012-09-30 03:46:57',1),(1,169,502,'2012-09-30 03:46:57',1),(1,83,502,'2012-09-30 03:46:57',1),(1,144,502,'2012-09-30 03:46:57',1),(1,73,502,'2012-09-30 03:46:57',1),(1,173,502,'2012-09-30 03:46:57',1),(1,161,505,'2012-09-30 03:46:58',1),(1,22,505,'2012-09-30 03:46:58',1),(1,165,505,'2012-09-30 03:46:58',1),(1,175,505,'2012-09-30 03:46:58',1),(1,176,503,'2012-09-30 03:46:58',1),(1,113,506,'2012-09-30 03:47:04',1),(1,27,506,'2012-09-30 03:47:04',1),(1,184,506,'2012-09-30 03:47:04',1),(1,96,506,'2012-09-30 03:47:04',1),(1,134,506,'2012-09-30 03:47:04',1),(1,138,506,'2012-09-30 03:47:04',1),(1,3,506,'2012-09-30 03:47:04',1),(1,150,506,'2012-09-30 03:47:04',1),(1,95,485,'2012-09-30 04:16:23',1),(1,173,485,'2012-09-30 04:16:23',1),(1,44,488,'2012-09-30 04:16:27',NULL),(1,12,488,'2012-09-30 04:16:27',NULL),(1,28,488,'2012-09-30 04:16:27',NULL),(1,167,488,'2012-09-30 04:16:27',NULL),(1,186,488,'2012-09-30 04:16:27',NULL),(1,158,488,'2012-09-30 04:16:27',NULL),(1,143,488,'2012-09-30 04:16:27',NULL),(1,179,488,'2012-09-30 04:16:27',NULL),(1,106,487,'2012-09-30 04:16:27',1),(1,172,487,'2012-09-30 04:16:27',1),(1,169,487,'2012-09-30 04:16:27',1),(1,83,487,'2012-09-30 04:16:27',1),(1,124,486,'2012-09-30 04:16:27',1),(1,48,486,'2012-09-30 04:16:27',1),(1,26,486,'2012-09-30 04:16:27',1),(1,170,486,'2012-09-30 04:16:27',1),(1,174,489,'2012-09-30 04:16:29',1),(1,117,489,'2012-09-30 04:16:29',1),(1,156,489,'2012-09-30 04:16:29',1),(1,168,489,'2012-09-30 04:16:29',1),(1,185,489,'2012-09-30 04:16:29',1),(1,9,489,'2012-09-30 04:16:29',1),(1,6,489,'2012-09-30 04:16:29',1),(1,4,489,'2012-09-30 04:16:29',1),(1,183,499,'2012-09-30 04:16:52',1),(1,27,499,'2012-09-30 04:16:52',1),(1,177,501,'2012-09-30 04:16:53',1),(1,178,501,'2012-09-30 04:16:53',1),(1,182,501,'2012-09-30 04:16:53',1),(1,100,501,'2012-09-30 04:16:53',1),(1,181,501,'2012-09-30 04:16:53',1),(1,30,501,'2012-09-30 04:16:53',1),(1,171,501,'2012-09-30 04:16:53',1),(1,128,501,'2012-09-30 04:16:53',1),(1,184,504,'2012-09-30 04:17:00',1),(1,96,504,'2012-09-30 04:17:00',1),(1,150,513,'2012-10-01 00:16:22',1),(1,124,513,'2012-10-01 00:16:22',1),(1,187,510,'2012-10-01 00:46:16',1),(1,164,509,'2012-10-01 00:46:16',1),(1,79,508,'2012-10-01 00:46:16',1),(1,170,507,'2012-10-01 00:46:16',1),(1,97,514,'2012-10-01 00:46:24',1),(1,3,514,'2012-10-01 00:46:24',1),(1,48,512,'2012-10-01 00:46:24',1),(1,26,512,'2012-10-01 00:46:24',1),(1,146,511,'2012-10-01 00:46:24',1),(1,36,518,'2012-10-01 00:46:34',1),(1,37,518,'2012-10-01 00:46:34',1),(1,30,518,'2012-10-01 00:46:34',1),(1,171,518,'2012-10-01 00:46:34',1),(1,62,517,'2012-10-01 00:46:34',1),(1,128,517,'2012-10-01 00:46:34',1),(1,39,517,'2012-10-01 00:46:34',1),(1,19,517,'2012-10-01 00:46:34',1),(1,144,516,'2012-10-01 00:46:34',1),(1,73,516,'2012-10-01 00:46:34',1),(1,188,515,'2012-10-01 00:46:34',1),(1,23,515,'2012-10-01 00:46:34',1),(1,16,522,'2012-10-01 00:46:41',1),(1,150,522,'2012-10-01 00:46:41',1),(1,124,522,'2012-10-01 00:46:41',1),(1,41,522,'2012-10-01 00:46:41',1),(1,152,522,'2012-10-01 00:46:41',1),(1,147,522,'2012-10-01 00:46:41',1),(1,153,522,'2012-10-01 00:46:41',1),(1,21,522,'2012-10-01 00:46:41',1),(1,83,521,'2012-10-01 00:46:41',1),(1,63,521,'2012-10-01 00:46:41',1),(1,189,521,'2012-10-01 00:46:41',1),(1,190,521,'2012-10-01 00:46:41',1),(1,191,520,'2012-10-01 00:46:41',1),(1,159,520,'2012-10-01 00:46:41',1),(1,114,520,'2012-10-01 00:46:41',1),(1,192,520,'2012-10-01 00:46:41',1),(1,106,519,'2012-10-01 00:46:41',1),(1,193,519,'2012-10-01 00:46:41',1),(1,172,519,'2012-10-01 00:46:41',1),(1,169,519,'2012-10-01 00:46:41',1),(1,22,524,'2012-10-01 00:46:47',1),(1,165,524,'2012-10-01 00:46:47',1),(1,175,524,'2012-10-01 00:46:47',1),(1,54,524,'2012-10-01 00:46:47',1),(1,163,524,'2012-10-01 00:46:47',1),(1,176,524,'2012-10-01 00:46:47',1),(1,58,524,'2012-10-01 00:46:47',1),(1,177,524,'2012-10-01 00:46:47',1),(1,98,526,'2012-10-01 00:46:49',1),(1,143,526,'2012-10-01 00:46:49',1),(1,194,526,'2012-10-01 00:46:49',1),(1,179,526,'2012-10-01 00:46:49',1),(1,180,526,'2012-10-01 00:46:49',1),(1,195,526,'2012-10-01 00:46:49',1),(1,161,526,'2012-10-01 00:46:49',1),(1,196,526,'2012-10-01 00:46:49',1),(1,127,525,'2012-10-01 00:46:49',1),(1,44,525,'2012-10-01 00:46:49',1),(1,12,525,'2012-10-01 00:46:49',1),(1,28,525,'2012-10-01 00:46:49',1),(1,167,525,'2012-10-01 00:46:49',1),(1,186,525,'2012-10-01 00:46:49',1),(1,47,525,'2012-10-01 00:46:49',1),(1,158,525,'2012-10-01 00:46:49',1),(1,72,523,'2012-10-01 00:46:49',NULL),(1,148,523,'2012-10-01 00:46:49',NULL),(1,1,523,'2012-10-01 00:46:49',NULL),(1,109,523,'2012-10-01 00:46:49',NULL),(1,178,523,'2012-10-01 00:46:49',NULL),(1,182,523,'2012-10-01 00:46:49',NULL),(1,100,523,'2012-10-01 00:46:49',NULL),(1,181,523,'2012-10-01 00:46:49',NULL),(1,16,530,'2012-10-01 01:46:15',1),(1,3,530,'2012-10-01 01:46:15',1),(1,150,529,'2012-10-01 01:46:15',1),(1,124,529,'2012-10-01 01:46:15',1),(1,48,528,'2012-10-01 01:46:15',1),(1,26,527,'2012-10-01 01:46:15',1),(1,147,534,'2012-10-01 01:46:21',1),(1,153,534,'2012-10-01 01:46:21',1),(1,21,534,'2012-10-01 01:46:21',1),(1,127,534,'2012-10-01 01:46:21',1),(1,44,534,'2012-10-01 01:46:21',1),(1,12,534,'2012-10-01 01:46:21',1),(1,28,534,'2012-10-01 01:46:21',1),(1,167,534,'2012-10-01 01:46:21',1),(1,97,533,'2012-10-01 01:46:21',1),(1,164,533,'2012-10-01 01:46:21',1),(1,187,533,'2012-10-01 01:46:21',1),(1,79,533,'2012-10-01 01:46:21',1),(1,170,533,'2012-10-01 01:46:21',1),(1,146,533,'2012-10-01 01:46:21',1),(1,41,533,'2012-10-01 01:46:21',1),(1,152,533,'2012-10-01 01:46:21',1),(1,143,532,'2012-10-01 01:46:21',1),(1,194,532,'2012-10-01 01:46:21',1),(1,179,532,'2012-10-01 01:46:21',1),(1,180,532,'2012-10-01 01:46:21',1),(1,186,531,'2012-10-01 01:46:21',1),(1,47,531,'2012-10-01 01:46:21',1),(1,158,531,'2012-10-01 01:46:21',1),(1,98,531,'2012-10-01 01:46:21',1),(1,177,543,'2012-10-01 02:16:29',NULL),(1,72,543,'2012-10-01 02:16:29',NULL),(1,148,543,'2012-10-01 02:16:29',NULL),(1,1,543,'2012-10-01 02:16:29',NULL),(1,109,543,'2012-10-01 02:16:29',NULL),(1,178,543,'2012-10-01 02:16:29',NULL),(1,182,543,'2012-10-01 02:16:29',NULL),(1,100,543,'2012-10-01 02:16:29',NULL),(1,196,538,'2012-10-01 02:46:17',1),(1,22,538,'2012-10-01 02:46:17',1),(1,165,538,'2012-10-01 02:46:17',1),(1,175,538,'2012-10-01 02:46:17',1),(1,54,538,'2012-10-01 02:46:17',1),(1,163,538,'2012-10-01 02:46:17',1),(1,176,538,'2012-10-01 02:46:17',1),(1,58,538,'2012-10-01 02:46:17',1),(1,189,537,'2012-10-01 02:46:17',1),(1,190,537,'2012-10-01 02:46:17',1),(1,191,537,'2012-10-01 02:46:17',1),(1,159,537,'2012-10-01 02:46:17',1),(1,117,536,'2012-10-01 02:46:17',1),(1,166,536,'2012-10-01 02:46:17',1),(1,14,541,'2012-10-01 02:46:23',1),(1,15,541,'2012-10-01 02:46:23',1),(1,88,539,'2012-10-01 02:46:23',1),(1,97,539,'2012-10-01 02:46:23',1),(1,3,539,'2012-10-01 02:46:23',1),(1,150,539,'2012-10-01 02:46:23',1),(1,124,539,'2012-10-01 02:46:23',1),(1,48,539,'2012-10-01 02:46:23',1),(1,26,539,'2012-10-01 02:46:23',1),(1,164,539,'2012-10-01 02:46:23',1),(1,187,539,'2012-10-01 02:46:23',1),(1,79,539,'2012-10-01 02:46:23',1),(1,170,539,'2012-10-01 02:46:23',1),(1,146,539,'2012-10-01 02:46:23',1),(1,41,539,'2012-10-01 02:46:23',1),(1,152,539,'2012-10-01 02:46:23',1),(1,147,539,'2012-10-01 02:46:23',1),(1,153,539,'2012-10-01 02:46:23',1),(1,168,540,'2012-10-01 02:46:24',1),(1,188,542,'2012-10-01 02:46:28',1),(1,23,542,'2012-10-01 02:46:28',1),(1,59,542,'2012-10-01 02:46:28',1),(1,84,542,'2012-10-01 02:46:28',1),(1,55,545,'2012-10-01 02:46:30',1),(1,112,545,'2012-10-01 02:46:30',1),(1,64,544,'2012-10-01 02:46:30',1),(1,86,546,'2012-10-01 02:46:37',1),(1,8,546,'2012-10-01 02:46:37',1),(1,87,546,'2012-10-01 02:46:37',1),(1,173,546,'2012-10-01 02:46:37',1),(1,53,549,'2012-10-01 02:46:38',1),(1,156,549,'2012-10-01 02:46:38',1),(1,110,548,'2012-10-01 02:46:38',1),(1,181,547,'2012-10-01 02:46:38',1),(1,36,547,'2012-10-01 02:46:38',1),(1,37,547,'2012-10-01 02:46:38',1),(1,30,547,'2012-10-01 02:46:38',1),(1,31,547,'2012-10-01 02:46:38',1),(1,171,547,'2012-10-01 02:46:38',1),(1,62,547,'2012-10-01 02:46:38',1),(1,128,547,'2012-10-01 02:46:38',1),(1,24,550,'2012-10-01 02:46:44',1),(1,101,550,'2012-10-01 02:46:44',1),(1,13,550,'2012-10-01 02:46:44',1),(1,174,550,'2012-10-01 02:46:44',1),(1,21,552,'2012-10-01 02:46:46',1),(1,127,552,'2012-10-01 02:46:46',1),(1,44,552,'2012-10-01 02:46:46',1),(1,12,552,'2012-10-01 02:46:46',1),(1,28,552,'2012-10-01 02:46:46',1),(1,167,552,'2012-10-01 02:46:46',1),(1,186,552,'2012-10-01 02:46:46',1),(1,47,552,'2012-10-01 02:46:46',1),(1,158,552,'2012-10-01 02:46:46',1),(1,98,552,'2012-10-01 02:46:46',1),(1,143,552,'2012-10-01 02:46:46',1),(1,194,552,'2012-10-01 02:46:46',1),(1,179,552,'2012-10-01 02:46:46',1),(1,180,552,'2012-10-01 02:46:46',1),(1,195,552,'2012-10-01 02:46:46',1),(1,161,552,'2012-10-01 02:46:46',1),(1,39,551,'2012-10-01 02:46:46',1),(1,19,551,'2012-10-01 02:46:46',1),(1,106,551,'2012-10-01 02:46:46',1),(1,193,551,'2012-10-01 02:46:46',1),(1,172,551,'2012-10-01 02:46:46',1),(1,169,551,'2012-10-01 02:46:46',1),(1,83,551,'2012-10-01 02:46:46',1),(1,63,551,'2012-10-01 02:46:46',1),(1,114,535,'2012-10-01 03:16:21',NULL),(1,192,535,'2012-10-01 03:16:21',NULL),(1,144,535,'2012-10-01 03:16:21',NULL),(1,73,535,'2012-10-01 03:16:21',NULL),(1,1,557,'2012-10-01 03:16:25',NULL),(1,109,557,'2012-10-01 03:16:25',NULL),(1,178,557,'2012-10-01 03:16:25',NULL),(1,182,557,'2012-10-01 03:16:25',NULL),(1,171,555,'2012-10-01 03:46:20',1),(1,62,555,'2012-10-01 03:46:20',1),(1,106,554,'2012-10-01 03:46:20',1),(1,19,553,'2012-10-01 03:46:20',1),(1,47,559,'2012-10-01 03:46:26',NULL),(1,158,559,'2012-10-01 03:46:26',NULL),(1,98,559,'2012-10-01 03:46:26',NULL),(1,143,559,'2012-10-01 03:46:26',NULL),(1,194,559,'2012-10-01 03:46:26',NULL),(1,179,559,'2012-10-01 03:46:26',NULL),(1,180,559,'2012-10-01 03:46:26',NULL),(1,195,559,'2012-10-01 03:46:26',NULL),(1,88,564,'2012-10-01 03:46:35',NULL),(1,97,564,'2012-10-01 03:46:35',NULL),(1,3,564,'2012-10-01 03:46:35',NULL),(1,150,564,'2012-10-01 03:46:35',NULL),(1,124,564,'2012-10-01 03:46:35',NULL),(1,48,564,'2012-10-01 03:46:35',NULL),(1,26,564,'2012-10-01 03:46:35',NULL),(1,164,564,'2012-10-01 03:46:35',NULL),(1,187,564,'2012-10-01 03:46:35',NULL),(1,197,564,'2012-10-01 03:46:35',NULL),(1,79,564,'2012-10-01 03:46:35',NULL),(1,170,564,'2012-10-01 03:46:35',NULL),(1,146,564,'2012-10-01 03:46:35',NULL),(1,41,564,'2012-10-01 03:46:35',NULL),(1,152,564,'2012-10-01 03:46:35',NULL),(1,147,564,'2012-10-01 03:46:35',NULL),(1,161,563,'2012-10-01 03:46:35',1),(1,196,563,'2012-10-01 03:46:35',1),(1,22,563,'2012-10-01 03:46:35',1),(1,165,563,'2012-10-01 03:46:35',1),(1,175,563,'2012-10-01 03:46:35',1),(1,54,563,'2012-10-01 03:46:35',1),(1,163,563,'2012-10-01 03:46:35',1),(1,176,563,'2012-10-01 03:46:35',1),(1,100,562,'2012-10-01 03:46:35',1),(1,181,562,'2012-10-01 03:46:35',1),(1,36,562,'2012-10-01 03:46:35',1),(1,37,562,'2012-10-01 03:46:35',1),(1,128,561,'2012-10-01 03:46:35',1),(1,39,561,'2012-10-01 03:46:35',1),(1,1,568,'2012-10-01 03:46:44',NULL),(1,109,568,'2012-10-01 03:46:44',NULL),(1,178,568,'2012-10-01 03:46:44',NULL),(1,182,568,'2012-10-01 03:46:44',NULL),(1,193,568,'2012-10-01 03:46:44',NULL),(1,172,568,'2012-10-01 03:46:44',NULL),(1,169,568,'2012-10-01 03:46:44',NULL),(1,83,568,'2012-10-01 03:46:44',NULL),(1,63,568,'2012-10-01 03:46:44',NULL),(1,189,568,'2012-10-01 03:46:44',NULL),(1,190,568,'2012-10-01 03:46:44',NULL),(1,191,568,'2012-10-01 03:46:44',NULL),(1,159,568,'2012-10-01 03:46:44',NULL),(1,114,568,'2012-10-01 03:46:44',NULL),(1,192,568,'2012-10-01 03:46:44',NULL),(1,144,568,'2012-10-01 03:46:44',NULL),(1,15,567,'2012-10-01 03:46:44',1),(1,55,567,'2012-10-01 03:46:44',1),(1,112,567,'2012-10-01 03:46:44',1),(1,53,567,'2012-10-01 03:46:44',1),(1,156,567,'2012-10-01 03:46:44',1),(1,168,567,'2012-10-01 03:46:44',1),(1,64,567,'2012-10-01 03:46:44',1),(1,110,567,'2012-10-01 03:46:44',1),(1,198,566,'2012-10-01 03:46:44',1),(1,199,566,'2012-10-01 03:46:44',1),(1,200,566,'2012-10-01 03:46:44',1),(1,201,566,'2012-10-01 03:46:44',1),(1,81,565,'2012-10-01 03:46:44',1),(1,69,565,'2012-10-01 03:46:44',1),(1,202,572,'2012-10-01 03:46:51',1),(1,203,572,'2012-10-01 03:46:51',1),(1,76,572,'2012-10-01 03:46:51',1),(1,185,572,'2012-10-01 03:46:51',1),(1,142,572,'2012-10-01 03:46:51',1),(1,132,572,'2012-10-01 03:46:51',1),(1,204,572,'2012-10-01 03:46:51',1),(1,9,572,'2012-10-01 03:46:51',1),(1,205,571,'2012-10-01 03:46:51',1),(1,206,571,'2012-10-01 03:46:51',1),(1,49,571,'2012-10-01 03:46:51',1),(1,207,571,'2012-10-01 03:46:51',1),(1,208,570,'2012-10-01 03:46:51',1),(1,209,570,'2012-10-01 03:46:51',1),(1,210,569,'2012-10-01 03:46:51',1),(1,211,576,'2012-10-01 03:47:01',1),(1,68,576,'2012-10-01 03:47:01',1),(1,212,576,'2012-10-01 03:47:01',1),(1,213,576,'2012-10-01 03:47:01',1),(1,214,575,'2012-10-01 03:47:01',1),(1,105,575,'2012-10-01 03:47:01',1),(1,90,574,'2012-10-01 03:47:01',1),(1,73,573,'2012-10-01 03:47:01',1),(1,188,573,'2012-10-01 03:47:01',1),(1,23,573,'2012-10-01 03:47:01',1),(1,59,573,'2012-10-01 03:47:01',1),(1,84,573,'2012-10-01 03:47:01',1),(1,86,573,'2012-10-01 03:47:01',1),(1,8,573,'2012-10-01 03:47:01',1),(1,87,573,'2012-10-01 03:47:01',1),(1,173,573,'2012-10-01 03:47:01',1),(1,24,573,'2012-10-01 03:47:01',1),(1,101,573,'2012-10-01 03:47:01',1),(1,13,573,'2012-10-01 03:47:01',1),(1,174,573,'2012-10-01 03:47:01',1),(1,117,573,'2012-10-01 03:47:01',1),(1,166,573,'2012-10-01 03:47:01',1),(1,14,573,'2012-10-01 03:47:01',1),(1,60,577,'2012-10-01 03:47:07',1),(1,215,577,'2012-10-01 03:47:07',1),(1,61,577,'2012-10-01 03:47:07',1),(1,216,577,'2012-10-01 03:47:07',1),(1,50,577,'2012-10-01 03:47:07',1),(1,217,577,'2012-10-01 03:47:07',1),(1,218,577,'2012-10-01 03:47:07',1),(1,219,577,'2012-10-01 03:47:07',1),(1,30,556,'2012-10-01 04:16:21',1),(1,31,556,'2012-10-01 04:16:21',1),(1,58,558,'2012-10-01 04:16:28',NULL),(1,177,558,'2012-10-01 04:16:28',NULL),(1,72,558,'2012-10-01 04:16:28',NULL),(1,148,558,'2012-10-01 04:16:28',NULL),(1,153,560,'2012-10-01 04:16:29',NULL),(1,21,560,'2012-10-01 04:16:29',NULL),(1,127,560,'2012-10-01 04:16:29',NULL),(1,44,560,'2012-10-01 04:16:29',NULL),(1,12,560,'2012-10-01 04:16:29',NULL),(1,28,560,'2012-10-01 04:16:29',NULL),(1,167,560,'2012-10-01 04:16:29',NULL),(1,186,560,'2012-10-01 04:16:29',NULL),(1,217,650,'2012-10-01 12:08:33',1),(1,218,650,'2012-10-01 12:08:33',1),(1,217,651,'2012-10-01 12:15:38',1),(1,218,651,'2012-10-01 12:15:38',1),(1,219,651,'2012-10-01 12:15:38',1),(1,198,651,'2012-10-01 12:15:38',1),(1,199,651,'2012-10-01 12:15:38',1),(1,200,651,'2012-10-01 12:15:38',1),(1,201,651,'2012-10-01 12:15:38',1),(1,205,651,'2012-10-01 12:15:38',1),(1,140,649,'2012-10-01 12:38:30',NULL),(1,42,649,'2012-10-01 12:38:30',NULL),(1,89,649,'2012-10-01 12:38:30',NULL),(1,220,649,'2012-10-01 12:38:30',NULL),(1,7,654,'2012-10-01 13:01:26',1),(1,215,654,'2012-10-01 13:01:26',1),(1,61,654,'2012-10-01 13:01:26',1),(1,216,654,'2012-10-01 13:01:26',1),(1,50,654,'2012-10-01 13:01:26',1),(1,217,654,'2012-10-01 13:01:26',1),(1,218,654,'2012-10-01 13:01:26',1),(1,219,654,'2012-10-01 13:01:26',1),(1,198,654,'2012-10-01 13:01:26',1),(1,199,654,'2012-10-01 13:01:26',1),(1,200,654,'2012-10-01 13:01:26',1),(1,201,654,'2012-10-01 13:01:26',1),(1,205,654,'2012-10-01 13:01:26',1),(1,221,654,'2012-10-01 13:01:26',1),(1,222,654,'2012-10-01 13:01:26',1),(1,223,654,'2012-10-01 13:01:26',1),(1,206,655,'2012-10-01 13:02:03',1),(1,49,655,'2012-10-01 13:02:03',1),(1,207,655,'2012-10-01 13:02:03',1),(1,81,655,'2012-10-01 13:02:03',1),(1,69,655,'2012-10-01 13:02:03',1),(1,208,655,'2012-10-01 13:02:03',1),(1,209,655,'2012-10-01 13:02:03',1),(1,78,655,'2012-10-01 13:02:03',1),(1,214,655,'2012-10-01 13:02:03',1),(1,105,655,'2012-10-01 13:02:03',1),(1,210,655,'2012-10-01 13:02:03',1),(1,90,655,'2012-10-01 13:02:03',1),(1,70,655,'2012-10-01 13:02:03',1),(1,56,655,'2012-10-01 13:02:03',1),(1,92,655,'2012-10-01 13:02:03',1),(1,224,655,'2012-10-01 13:02:03',1),(1,11,595,'2012-10-02 00:16:48',1),(1,18,595,'2012-10-02 00:16:48',1),(1,40,595,'2012-10-02 00:16:48',1),(1,225,595,'2012-10-02 00:16:48',1),(1,71,595,'2012-10-02 00:16:48',1),(1,45,595,'2012-10-02 00:16:48',1),(1,154,595,'2012-10-02 00:16:48',1),(1,46,595,'2012-10-02 00:16:48',1),(1,80,594,'2012-10-02 00:16:48',1),(1,226,594,'2012-10-02 00:16:48',1),(1,116,594,'2012-10-02 00:16:48',1),(1,129,594,'2012-10-02 00:16:48',1),(1,75,594,'2012-10-02 00:16:48',1),(1,130,594,'2012-10-02 00:16:48',1),(1,65,594,'2012-10-02 00:16:48',1),(1,108,594,'2012-10-02 00:16:48',1),(1,140,581,'2012-10-02 00:46:16',1),(1,91,579,'2012-10-02 00:46:16',1),(1,25,580,'2012-10-02 00:46:16',1),(1,227,578,'2012-10-02 00:46:21',1),(1,137,582,'2012-10-02 00:46:24',1),(1,210,583,'2012-10-02 00:46:27',1),(1,90,583,'2012-10-02 00:46:27',1),(1,70,584,'2012-10-02 00:46:27',1),(1,56,584,'2012-10-02 00:46:27',1),(1,92,585,'2012-10-02 00:46:27',1),(1,224,585,'2012-10-02 00:46:27',1),(1,221,587,'2012-10-02 00:46:32',1),(1,222,587,'2012-10-02 00:46:32',1),(1,223,586,'2012-10-02 00:46:32',1),(1,228,586,'2012-10-02 00:46:32',1),(1,229,589,'2012-10-02 00:46:32',1),(1,2,589,'2012-10-02 00:46:32',1),(1,230,589,'2012-10-02 00:46:32',1),(1,50,589,'2012-10-02 00:46:32',1),(1,7,588,'2012-10-02 00:46:32',1),(1,38,588,'2012-10-02 00:46:32',1),(1,61,588,'2012-10-02 00:46:32',1),(1,231,588,'2012-10-02 00:46:32',1),(1,200,592,'2012-10-02 00:46:41',1),(1,205,592,'2012-10-02 00:46:41',1),(1,77,592,'2012-10-02 00:46:41',1),(1,67,592,'2012-10-02 00:46:41',1),(1,207,591,'2012-10-02 00:46:41',1),(1,81,591,'2012-10-02 00:46:41',1),(1,214,591,'2012-10-02 00:46:41',1),(1,105,591,'2012-10-02 00:46:41',1),(1,218,590,'2012-10-02 00:46:41',1),(1,219,590,'2012-10-02 00:46:41',1),(1,198,590,'2012-10-02 00:46:41',1),(1,199,590,'2012-10-02 00:46:41',1),(1,25,593,'2012-10-02 00:46:41',1),(1,140,593,'2012-10-02 00:46:41',1),(1,227,593,'2012-10-02 00:46:41',1),(1,137,593,'2012-10-02 00:46:41',1),(1,42,593,'2012-10-02 00:46:41',1),(1,139,593,'2012-10-02 00:46:41',1),(1,89,593,'2012-10-02 00:46:41',1),(1,82,593,'2012-10-02 00:46:41',1),(1,232,596,'2012-10-02 00:46:49',1),(1,233,596,'2012-10-02 00:46:49',1),(1,57,596,'2012-10-02 00:46:49',1),(1,234,596,'2012-10-02 00:46:49',1),(1,235,596,'2012-10-02 00:46:49',1),(1,111,596,'2012-10-02 00:46:49',1),(1,99,596,'2012-10-02 00:46:49',1),(1,157,596,'2012-10-02 00:46:49',1),(1,33,597,'2012-10-02 00:46:52',1),(1,34,597,'2012-10-02 00:46:52',1),(1,35,597,'2012-10-02 00:46:52',1),(1,29,597,'2012-10-02 00:46:52',1),(1,236,597,'2012-10-02 00:46:52',1),(1,85,597,'2012-10-02 00:46:52',1),(1,32,597,'2012-10-02 00:46:52',1),(1,74,597,'2012-10-02 00:46:52',1),(1,227,600,'2012-10-02 01:46:12',1),(1,237,600,'2012-10-02 01:46:12',1),(1,141,598,'2012-10-02 01:46:12',1),(1,137,599,'2012-10-02 01:46:12',1),(1,25,601,'2012-10-02 01:46:12',1),(1,140,601,'2012-10-02 01:46:12',1),(1,233,603,'2012-10-02 01:46:22',1),(1,57,603,'2012-10-02 01:46:22',1),(1,234,603,'2012-10-02 01:46:22',1),(1,235,603,'2012-10-02 01:46:22',1),(1,46,602,'2012-10-02 01:46:22',1),(1,155,602,'2012-10-02 01:46:22',1),(1,232,602,'2012-10-02 01:46:22',1),(1,238,602,'2012-10-02 01:46:22',1),(1,42,605,'2012-10-02 01:46:22',1),(1,139,605,'2012-10-02 01:46:22',1),(1,89,605,'2012-10-02 01:46:22',1),(1,82,605,'2012-10-02 01:46:22',1),(1,11,605,'2012-10-02 01:46:22',1),(1,18,605,'2012-10-02 01:46:22',1),(1,220,605,'2012-10-02 01:46:22',1),(1,151,605,'2012-10-02 01:46:22',1),(1,40,604,'2012-10-02 01:46:22',NULL),(1,225,604,'2012-10-02 01:46:22',NULL),(1,239,604,'2012-10-02 01:46:22',NULL),(1,43,604,'2012-10-02 01:46:22',NULL),(1,71,604,'2012-10-02 01:46:22',NULL),(1,45,604,'2012-10-02 01:46:22',NULL),(1,154,604,'2012-10-02 01:46:22',NULL),(1,162,604,'2012-10-02 01:46:22',NULL),(1,103,615,'2012-10-02 02:16:32',1),(1,240,616,'2012-10-02 02:16:32',1),(1,7,616,'2012-10-02 02:16:32',1),(1,4,617,'2012-10-02 02:16:32',1),(1,226,617,'2012-10-02 02:16:32',1),(1,116,617,'2012-10-02 02:16:32',1),(1,129,617,'2012-10-02 02:16:32',1),(1,75,607,'2012-10-02 02:46:16',1),(1,130,607,'2012-10-02 02:46:16',1),(1,239,609,'2012-10-02 02:46:16',1),(1,43,609,'2012-10-02 02:46:16',1),(1,71,609,'2012-10-02 02:46:16',1),(1,45,609,'2012-10-02 02:46:16',1),(1,154,609,'2012-10-02 02:46:16',1),(1,162,609,'2012-10-02 02:46:16',1),(1,46,609,'2012-10-02 02:46:16',1),(1,155,609,'2012-10-02 02:46:16',1),(1,29,608,'2012-10-02 02:46:16',1),(1,236,608,'2012-10-02 02:46:16',1),(1,85,608,'2012-10-02 02:46:16',1),(1,17,608,'2012-10-02 02:46:16',1),(1,102,611,'2012-10-02 02:46:26',1),(1,32,613,'2012-10-02 02:46:26',1),(1,74,613,'2012-10-02 02:46:26',1),(1,80,613,'2012-10-02 02:46:26',1),(1,6,613,'2012-10-02 02:46:26',1),(1,65,612,'2012-10-02 02:46:26',1),(1,108,612,'2012-10-02 02:46:26',1),(1,25,610,'2012-10-02 02:46:26',1),(1,140,610,'2012-10-02 02:46:26',1),(1,227,610,'2012-10-02 02:46:26',1),(1,237,610,'2012-10-02 02:46:26',1),(1,141,610,'2012-10-02 02:46:26',1),(1,137,610,'2012-10-02 02:46:26',1),(1,42,610,'2012-10-02 02:46:26',1),(1,139,610,'2012-10-02 02:46:26',1),(1,89,610,'2012-10-02 02:46:26',1),(1,82,610,'2012-10-02 02:46:26',1),(1,11,610,'2012-10-02 02:46:26',1),(1,18,610,'2012-10-02 02:46:26',1),(1,220,610,'2012-10-02 02:46:26',1),(1,151,610,'2012-10-02 02:46:26',1),(1,40,610,'2012-10-02 02:46:26',1),(1,225,610,'2012-10-02 02:46:26',1),(1,232,614,'2012-10-02 02:46:36',1),(1,238,614,'2012-10-02 02:46:36',1),(1,233,614,'2012-10-02 02:46:36',1),(1,57,614,'2012-10-02 02:46:36',1),(1,234,614,'2012-10-02 02:46:36',1),(1,235,614,'2012-10-02 02:46:36',1),(1,111,614,'2012-10-02 02:46:36',1),(1,99,614,'2012-10-02 02:46:36',1),(1,131,618,'2012-10-02 02:46:41',1),(1,218,618,'2012-10-02 02:46:41',1),(1,219,618,'2012-10-02 02:46:41',1),(1,198,618,'2012-10-02 02:46:41',1),(1,199,618,'2012-10-02 02:46:41',1),(1,200,618,'2012-10-02 02:46:41',1),(1,66,618,'2012-10-02 02:46:41',1),(1,205,618,'2012-10-02 02:46:41',1),(1,92,619,'2012-10-02 02:46:43',1),(1,70,620,'2012-10-02 02:46:43',1),(1,56,620,'2012-10-02 02:46:43',1),(1,214,621,'2012-10-02 02:46:43',1),(1,105,621,'2012-10-02 02:46:43',1),(1,210,621,'2012-10-02 02:46:43',1),(1,90,621,'2012-10-02 02:46:43',1),(1,77,622,'2012-10-02 02:46:50',1),(1,241,622,'2012-10-02 02:46:50',1),(1,67,622,'2012-10-02 02:46:50',1),(1,49,622,'2012-10-02 02:46:50',1),(1,207,622,'2012-10-02 02:46:50',1),(1,81,622,'2012-10-02 02:46:50',1),(1,52,622,'2012-10-02 02:46:50',1),(1,78,622,'2012-10-02 02:46:50',1),(1,4,623,'2012-10-02 02:46:50',1),(1,226,623,'2012-10-02 02:46:50',1),(1,116,623,'2012-10-02 02:46:50',1),(1,129,623,'2012-10-02 02:46:50',1),(1,240,623,'2012-10-02 02:46:50',1),(1,7,623,'2012-10-02 02:46:50',1),(1,103,623,'2012-10-02 02:46:50',1),(1,38,623,'2012-10-02 02:46:50',1),(1,61,623,'2012-10-02 02:46:50',1),(1,5,623,'2012-10-02 02:46:50',1),(1,231,623,'2012-10-02 02:46:50',1),(1,229,623,'2012-10-02 02:46:50',1),(1,2,623,'2012-10-02 02:46:50',1),(1,230,623,'2012-10-02 02:46:50',1),(1,216,623,'2012-10-02 02:46:50',1),(1,50,623,'2012-10-02 02:46:50',1),(1,157,606,'2012-10-02 03:16:18',NULL),(1,33,606,'2012-10-02 03:16:18',NULL),(1,34,606,'2012-10-02 03:16:18',NULL),(1,35,606,'2012-10-02 03:16:18',NULL),(1,35,625,'2012-10-02 03:46:20',1),(1,228,626,'2012-10-02 03:46:20',1),(1,91,626,'2012-10-02 03:46:20',1),(1,34,624,'2012-10-02 03:46:20',1),(1,99,630,'2012-10-02 03:46:30',NULL),(1,29,630,'2012-10-02 03:46:30',NULL),(1,236,630,'2012-10-02 03:46:30',NULL),(1,85,630,'2012-10-02 03:46:30',NULL),(1,17,630,'2012-10-02 03:46:30',NULL),(1,32,630,'2012-10-02 03:46:30',NULL),(1,115,630,'2012-10-02 03:46:30',NULL),(1,74,630,'2012-10-02 03:46:30',NULL),(1,207,628,'2012-10-02 03:46:30',1),(1,81,628,'2012-10-02 03:46:30',1),(1,52,628,'2012-10-02 03:46:30',1),(1,209,628,'2012-10-02 03:46:30',1),(1,77,629,'2012-10-02 03:46:30',1),(1,241,629,'2012-10-02 03:46:30',1),(1,67,629,'2012-10-02 03:46:30',1),(1,49,629,'2012-10-02 03:46:30',1),(1,130,634,'2012-10-02 03:46:36',1),(1,65,634,'2012-10-02 03:46:36',1),(1,108,634,'2012-10-02 03:46:36',1),(1,240,634,'2012-10-02 03:46:36',1),(1,7,634,'2012-10-02 03:46:36',1),(1,102,634,'2012-10-02 03:46:36',1),(1,103,634,'2012-10-02 03:46:36',1),(1,38,634,'2012-10-02 03:46:36',1),(1,231,632,'2012-10-02 03:46:36',1),(1,229,632,'2012-10-02 03:46:36',1),(1,78,633,'2012-10-02 03:46:36',1),(1,214,633,'2012-10-02 03:46:36',1),(1,105,633,'2012-10-02 03:46:36',1),(1,210,633,'2012-10-02 03:46:36',1),(1,25,635,'2012-10-02 03:46:36',1),(1,140,635,'2012-10-02 03:46:36',1),(1,227,635,'2012-10-02 03:46:36',1),(1,237,635,'2012-10-02 03:46:36',1),(1,141,635,'2012-10-02 03:46:36',1),(1,137,635,'2012-10-02 03:46:36',1),(1,42,635,'2012-10-02 03:46:36',1),(1,139,635,'2012-10-02 03:46:36',1),(1,89,635,'2012-10-02 03:46:36',1),(1,82,635,'2012-10-02 03:46:36',1),(1,11,635,'2012-10-02 03:46:36',1),(1,18,635,'2012-10-02 03:46:36',1),(1,220,635,'2012-10-02 03:46:36',1),(1,151,635,'2012-10-02 03:46:36',1),(1,40,635,'2012-10-02 03:46:36',1),(1,225,635,'2012-10-02 03:46:36',1),(1,2,636,'2012-10-02 03:46:47',1),(1,230,636,'2012-10-02 03:46:47',1),(1,90,637,'2012-10-02 03:46:47',1),(1,70,637,'2012-10-02 03:46:47',1),(1,56,637,'2012-10-02 03:46:47',1),(1,92,637,'2012-10-02 03:46:47',1),(1,239,639,'2012-10-02 03:46:47',1),(1,43,639,'2012-10-02 03:46:47',1),(1,71,639,'2012-10-02 03:46:47',1),(1,45,639,'2012-10-02 03:46:47',1),(1,154,639,'2012-10-02 03:46:47',1),(1,162,639,'2012-10-02 03:46:47',1),(1,46,639,'2012-10-02 03:46:47',1),(1,155,639,'2012-10-02 03:46:47',1),(1,232,639,'2012-10-02 03:46:47',1),(1,238,639,'2012-10-02 03:46:47',1),(1,233,639,'2012-10-02 03:46:47',1),(1,57,639,'2012-10-02 03:46:47',1),(1,234,639,'2012-10-02 03:46:47',1),(1,51,639,'2012-10-02 03:46:47',1),(1,235,639,'2012-10-02 03:46:47',1),(1,111,639,'2012-10-02 03:46:47',1),(1,61,638,'2012-10-02 03:46:47',1),(1,5,638,'2012-10-02 03:46:47',1),(1,231,638,'2012-10-02 03:46:47',1),(1,229,638,'2012-10-02 03:46:47',1),(1,2,638,'2012-10-02 03:46:47',1),(1,230,638,'2012-10-02 03:46:47',1),(1,216,638,'2012-10-02 03:46:47',1),(1,50,638,'2012-10-02 03:46:47',1),(1,2,640,'2012-10-02 03:46:54',1),(1,216,641,'2012-10-02 03:46:54',1),(1,50,641,'2012-10-02 03:46:54',1),(1,131,643,'2012-10-02 03:46:54',1),(1,218,643,'2012-10-02 03:46:54',1),(1,219,643,'2012-10-02 03:46:54',1),(1,198,643,'2012-10-02 03:46:54',1),(1,199,643,'2012-10-02 03:46:54',1),(1,200,643,'2012-10-02 03:46:54',1),(1,66,643,'2012-10-02 03:46:54',1),(1,205,643,'2012-10-02 03:46:54',1),(1,224,642,'2012-10-02 03:46:54',1),(1,221,642,'2012-10-02 03:46:54',1),(1,222,642,'2012-10-02 03:46:54',1),(1,223,642,'2012-10-02 03:46:54',1),(1,231,644,'2012-10-02 03:47:02',1),(1,229,644,'2012-10-02 03:47:02',1),(1,2,644,'2012-10-02 03:47:02',1),(1,230,644,'2012-10-02 03:47:02',1),(1,78,644,'2012-10-02 03:47:02',1),(1,214,644,'2012-10-02 03:47:02',1),(1,105,644,'2012-10-02 03:47:02',1),(1,210,644,'2012-10-02 03:47:02',1),(1,90,644,'2012-10-02 03:47:02',1),(1,70,644,'2012-10-02 03:47:02',1),(1,56,644,'2012-10-02 03:47:02',1),(1,92,644,'2012-10-02 03:47:02',1),(1,224,644,'2012-10-02 03:47:02',1),(1,221,644,'2012-10-02 03:47:02',1),(1,222,644,'2012-10-02 03:47:02',1),(1,223,644,'2012-10-02 03:47:02',1),(1,230,645,'2012-10-02 03:47:02',1),(1,157,646,'2012-10-02 03:47:02',1),(1,33,646,'2012-10-02 03:47:02',1),(1,157,647,'2012-10-02 03:47:02',1),(1,33,647,'2012-10-02 03:47:02',1),(1,34,647,'2012-10-02 03:47:02',1),(1,35,647,'2012-10-02 03:47:02',1),(1,90,648,'2012-10-02 03:47:08',1),(1,70,648,'2012-10-02 03:47:08',1),(1,56,648,'2012-10-02 03:47:08',1),(1,92,648,'2012-10-02 03:47:08',1),(1,224,648,'2012-10-02 03:47:08',1),(1,221,648,'2012-10-02 03:47:08',1),(1,222,648,'2012-10-02 03:47:08',1),(1,223,648,'2012-10-02 03:47:08',1),(1,61,627,'2012-10-02 04:16:23',NULL),(1,5,627,'2012-10-02 04:16:23',NULL),(1,80,631,'2012-10-02 04:16:31',1),(1,6,631,'2012-10-02 04:16:31',1),(1,4,631,'2012-10-02 04:16:31',1),(1,226,631,'2012-10-02 04:16:31',1),(1,116,631,'2012-10-02 04:16:31',1),(1,129,631,'2012-10-02 04:16:31',1),(1,107,631,'2012-10-02 04:16:31',1),(1,75,631,'2012-10-02 04:16:31',1),(1,176,656,'2012-10-03 00:46:17',1),(1,5,658,'2012-10-03 00:46:17',1),(1,4,659,'2012-10-03 00:46:17',1),(1,4,657,'2012-10-03 00:46:17',1),(1,6,660,'2012-10-03 00:46:28',1),(1,6,661,'2012-10-03 00:46:28',1),(1,4,661,'2012-10-03 00:46:28',1),(1,6,662,'2012-10-03 00:46:28',1),(1,4,662,'2012-10-03 00:46:28',1),(1,6,663,'2012-10-03 00:46:28',1),(1,4,663,'2012-10-03 00:46:28',1),(1,176,665,'2012-10-03 00:46:32',1),(1,6,665,'2012-10-03 00:46:32',1),(1,176,664,'2012-10-03 00:46:36',1),(1,6,664,'2012-10-03 00:46:36',1),(1,4,676,'2012-10-03 01:46:14',1),(1,6,678,'2012-10-03 01:46:14',1),(1,4,678,'2012-10-03 01:46:14',1),(1,6,677,'2012-10-03 01:46:14',1),(1,6,679,'2012-10-03 01:46:14',1),(1,4,679,'2012-10-03 01:46:14',1),(1,6,685,'2012-10-03 02:46:19',1),(1,4,685,'2012-10-03 02:46:19',1),(1,86,689,'2012-10-03 02:46:26',1),(1,6,690,'2012-10-03 02:46:26',1),(1,4,690,'2012-10-03 02:46:26',1),(1,5,693,'2012-10-03 02:46:34',1),(1,6,694,'2012-10-03 02:46:37',1),(1,4,694,'2012-10-03 02:46:37',1),(1,5,697,'2012-10-03 02:46:42',1),(1,6,698,'2012-10-03 02:46:43',1),(1,4,698,'2012-10-03 02:46:43',1),(1,6,705,'2012-10-03 03:46:19',1),(1,4,705,'2012-10-03 03:46:19',1),(1,6,704,'2012-10-03 03:46:19',1),(1,4,704,'2012-10-03 03:46:19',1),(1,166,702,'2012-10-03 03:46:19',1),(1,6,710,'2012-10-03 03:46:35',1),(1,4,710,'2012-10-03 03:46:35',1),(1,6,714,'2012-10-03 03:46:42',1),(1,4,714,'2012-10-03 03:46:42',1),(1,166,703,'2012-10-03 04:16:21',1),(1,58,686,'2012-10-03 04:16:24',1),(1,166,686,'2012-10-03 04:16:24',1),(1,168,686,'2012-10-03 04:16:24',1),(1,67,686,'2012-10-03 04:16:24',1),(1,166,680,'2012-10-03 04:16:33',1),(1,168,680,'2012-10-03 04:16:33',1),(1,67,680,'2012-10-03 04:16:33',1),(1,6,680,'2012-10-03 04:16:33',1),(1,166,681,'2012-10-03 04:16:35',1),(1,168,681,'2012-10-03 04:16:35',1),(1,67,681,'2012-10-03 04:16:35',1),(1,6,681,'2012-10-03 04:16:35',1),(1,166,667,'2012-10-03 04:16:40',1),(1,168,667,'2012-10-03 04:16:40',1),(1,6,667,'2012-10-03 04:16:40',1),(1,4,667,'2012-10-03 04:16:40',1),(1,166,666,'2012-10-03 04:16:46',1),(1,168,666,'2012-10-03 04:16:46',1),(1,6,666,'2012-10-03 04:16:46',1),(1,4,666,'2012-10-03 04:16:46',1),(1,166,669,'2012-10-03 04:16:51',1),(1,168,669,'2012-10-03 04:16:51',1),(1,67,669,'2012-10-03 04:16:51',1),(1,6,669,'2012-10-03 04:16:51',1),(1,166,668,'2012-10-03 04:16:51',1),(1,168,668,'2012-10-03 04:16:51',1),(1,67,668,'2012-10-03 04:16:51',1),(1,6,668,'2012-10-03 04:16:51',1),(1,166,670,'2012-10-03 04:16:52',1),(1,168,670,'2012-10-03 04:16:52',1),(1,67,670,'2012-10-03 04:16:52',1),(1,6,670,'2012-10-03 04:16:52',1),(1,168,718,'2012-10-03 04:16:54',1),(1,6,719,'2012-10-03 04:16:56',1),(1,4,719,'2012-10-03 04:16:56',1),(1,6,724,'2012-10-03 04:17:06',1),(1,4,724,'2012-10-03 04:17:06',1),(1,4,723,'2012-10-03 04:17:06',1),(1,58,684,'2012-10-03 05:16:27',NULL),(1,166,684,'2012-10-03 05:16:27',NULL),(1,168,684,'2012-10-03 05:16:27',NULL),(1,67,684,'2012-10-03 05:16:27',NULL),(1,58,691,'2012-10-03 05:16:39',1),(1,166,691,'2012-10-03 05:16:39',1),(1,168,691,'2012-10-03 05:16:39',1),(1,67,691,'2012-10-03 05:16:39',1),(1,58,695,'2012-10-03 05:16:42',1),(1,166,695,'2012-10-03 05:16:42',1),(1,168,695,'2012-10-03 05:16:42',1),(1,67,695,'2012-10-03 05:16:42',1),(1,58,707,'2012-10-03 05:46:34',1),(1,166,707,'2012-10-03 05:46:34',1),(1,168,707,'2012-10-03 05:46:34',1),(1,67,707,'2012-10-03 05:46:34',1),(1,58,699,'2012-10-03 05:46:53',1),(1,166,699,'2012-10-03 05:46:53',1),(1,168,699,'2012-10-03 05:46:53',1),(1,67,699,'2012-10-03 05:46:53',1),(1,58,706,'2012-10-03 06:16:35',1),(1,166,706,'2012-10-03 06:16:35',1),(1,168,706,'2012-10-03 06:16:35',1),(1,67,706,'2012-10-03 06:16:35',1),(1,58,711,'2012-10-03 06:16:42',1),(1,166,711,'2012-10-03 06:16:42',1),(1,168,711,'2012-10-03 06:16:42',1),(1,67,711,'2012-10-03 06:16:42',1),(1,58,715,'2012-10-03 06:16:52',1),(1,166,715,'2012-10-03 06:16:52',1),(1,168,715,'2012-10-03 06:16:52',1),(1,67,715,'2012-10-03 06:16:52',1),(1,58,720,'2012-10-03 06:17:02',1),(1,166,720,'2012-10-03 06:17:02',1),(1,168,720,'2012-10-03 06:17:02',1),(1,67,720,'2012-10-03 06:17:02',1),(1,58,725,'2012-10-03 06:17:11',1),(1,166,725,'2012-10-03 06:17:11',1),(1,168,725,'2012-10-03 06:17:11',1),(1,67,725,'2012-10-03 06:17:11',1),(1,220,687,'2012-10-03 16:46:55',1),(1,225,687,'2012-10-03 16:46:55',1),(1,45,687,'2012-10-03 16:46:55',1),(1,154,687,'2012-10-03 16:46:55',1),(1,111,687,'2012-10-03 16:46:55',1),(1,100,687,'2012-10-03 16:46:55',1),(1,193,687,'2012-10-03 16:46:55',1),(1,17,687,'2012-10-03 16:46:55',1),(1,220,682,'2012-10-03 16:47:07',NULL),(1,225,682,'2012-10-03 16:47:07',NULL),(1,45,682,'2012-10-03 16:47:07',NULL),(1,154,682,'2012-10-03 16:47:07',NULL),(1,111,682,'2012-10-03 16:47:07',NULL),(1,100,682,'2012-10-03 16:47:07',NULL),(1,193,682,'2012-10-03 16:47:07',NULL),(1,17,682,'2012-10-03 16:47:07',NULL),(1,220,692,'2012-10-03 16:47:11',1),(1,225,692,'2012-10-03 16:47:11',1),(1,45,692,'2012-10-03 16:47:11',1),(1,154,692,'2012-10-03 16:47:11',1),(1,111,692,'2012-10-03 16:47:11',1),(1,100,692,'2012-10-03 16:47:11',1),(1,193,692,'2012-10-03 16:47:11',1),(1,17,692,'2012-10-03 16:47:11',1),(1,220,696,'2012-10-03 16:47:25',1),(1,225,696,'2012-10-03 16:47:25',1),(1,45,696,'2012-10-03 16:47:25',1),(1,154,696,'2012-10-03 16:47:25',1),(1,111,696,'2012-10-03 16:47:25',1),(1,100,696,'2012-10-03 16:47:25',1),(1,193,696,'2012-10-03 16:47:25',1),(1,17,696,'2012-10-03 16:47:25',1),(1,225,671,'2012-10-03 16:47:25',1),(1,45,671,'2012-10-03 16:47:25',1),(1,154,671,'2012-10-03 16:47:25',1),(1,111,671,'2012-10-03 16:47:25',1),(1,100,671,'2012-10-03 16:47:25',1),(1,17,671,'2012-10-03 16:47:25',1),(1,78,671,'2012-10-03 16:47:25',1),(1,56,671,'2012-10-03 16:47:25',1),(1,225,672,'2012-10-03 16:47:28',1),(1,45,672,'2012-10-03 16:47:28',1),(1,154,672,'2012-10-03 16:47:28',1),(1,111,672,'2012-10-03 16:47:28',1),(1,100,672,'2012-10-03 16:47:28',1),(1,17,672,'2012-10-03 16:47:28',1),(1,78,672,'2012-10-03 16:47:28',1),(1,56,672,'2012-10-03 16:47:28',1),(1,220,673,'2012-10-03 16:47:28',1),(1,225,673,'2012-10-03 16:47:28',1),(1,45,673,'2012-10-03 16:47:28',1),(1,154,673,'2012-10-03 16:47:28',1),(1,111,673,'2012-10-03 16:47:28',1),(1,100,673,'2012-10-03 16:47:28',1),(1,193,673,'2012-10-03 16:47:28',1),(1,17,673,'2012-10-03 16:47:28',1),(1,220,675,'2012-10-03 16:47:41',1),(1,225,675,'2012-10-03 16:47:41',1),(1,45,675,'2012-10-03 16:47:41',1),(1,154,675,'2012-10-03 16:47:41',1),(1,111,675,'2012-10-03 16:47:41',1),(1,100,675,'2012-10-03 16:47:41',1),(1,193,675,'2012-10-03 16:47:41',1),(1,17,675,'2012-10-03 16:47:41',1),(1,220,674,'2012-10-03 16:47:41',1),(1,225,674,'2012-10-03 16:47:41',1),(1,45,674,'2012-10-03 16:47:41',1),(1,154,674,'2012-10-03 16:47:41',1),(1,111,674,'2012-10-03 16:47:41',1),(1,100,674,'2012-10-03 16:47:41',1),(1,193,674,'2012-10-03 16:47:41',1),(1,17,674,'2012-10-03 16:47:41',1),(1,220,683,'2012-10-03 17:16:59',1),(1,225,683,'2012-10-03 17:16:59',1),(1,45,683,'2012-10-03 17:16:59',1),(1,154,683,'2012-10-03 17:16:59',1),(1,111,683,'2012-10-03 17:16:59',1),(1,100,683,'2012-10-03 17:16:59',1),(1,193,683,'2012-10-03 17:16:59',1),(1,17,683,'2012-10-03 17:16:59',1),(1,220,716,'2012-10-03 17:17:26',1),(1,225,716,'2012-10-03 17:17:26',1),(1,45,716,'2012-10-03 17:17:26',1),(1,154,716,'2012-10-03 17:17:26',1),(1,111,716,'2012-10-03 17:17:26',1),(1,100,716,'2012-10-03 17:17:26',1),(1,193,716,'2012-10-03 17:17:26',1),(1,17,716,'2012-10-03 17:17:26',1),(1,220,700,'2012-10-03 17:17:32',1),(1,225,700,'2012-10-03 17:17:32',1),(1,45,700,'2012-10-03 17:17:32',1),(1,154,700,'2012-10-03 17:17:32',1),(1,111,700,'2012-10-03 17:17:32',1),(1,100,700,'2012-10-03 17:17:32',1),(1,193,700,'2012-10-03 17:17:32',1),(1,17,700,'2012-10-03 17:17:32',1),(1,100,709,'2012-10-03 19:17:12',1),(1,181,709,'2012-10-03 19:17:12',1),(1,17,709,'2012-10-03 19:17:12',1),(1,156,709,'2012-10-03 19:17:12',1),(1,65,709,'2012-10-03 19:17:12',1),(1,66,709,'2012-10-03 19:17:12',1),(1,206,709,'2012-10-03 19:17:12',1),(1,78,709,'2012-10-03 19:17:12',1),(1,100,708,'2012-10-03 19:47:18',1),(1,181,708,'2012-10-03 19:47:18',1),(1,17,708,'2012-10-03 19:47:18',1),(1,156,708,'2012-10-03 19:47:18',1),(1,65,708,'2012-10-03 19:47:18',1),(1,66,708,'2012-10-03 19:47:18',1),(1,206,708,'2012-10-03 19:47:18',1),(1,78,708,'2012-10-03 19:47:18',1),(1,100,712,'2012-10-03 19:47:20',1),(1,181,712,'2012-10-03 19:47:20',1),(1,17,712,'2012-10-03 19:47:20',1),(1,156,712,'2012-10-03 19:47:20',1),(1,65,712,'2012-10-03 19:47:20',1),(1,66,712,'2012-10-03 19:47:20',1),(1,206,712,'2012-10-03 19:47:20',1),(1,78,712,'2012-10-03 19:47:20',1),(1,100,721,'2012-10-03 20:47:52',1),(1,181,721,'2012-10-03 20:47:52',1),(1,17,721,'2012-10-03 20:47:52',1),(1,156,721,'2012-10-03 20:47:52',1),(1,65,721,'2012-10-03 20:47:52',1),(1,66,721,'2012-10-03 20:47:52',1),(1,206,721,'2012-10-03 20:47:52',1),(1,78,721,'2012-10-03 20:47:52',1),(1,100,726,'2012-10-03 20:47:52',1),(1,181,726,'2012-10-03 20:47:52',1),(1,106,726,'2012-10-03 20:47:52',1),(1,172,726,'2012-10-03 20:47:52',1),(1,17,726,'2012-10-03 20:47:52',1),(1,156,726,'2012-10-03 20:47:52',1),(1,65,726,'2012-10-03 20:47:52',1),(1,66,726,'2012-10-03 20:47:52',1),(1,4,688,'2012-10-03 22:47:26',1),(1,147,688,'2012-10-03 22:47:26',1),(1,44,688,'2012-10-03 22:47:26',1),(1,186,688,'2012-10-03 22:47:26',1),(1,47,688,'2012-10-03 22:47:26',1),(1,158,688,'2012-10-03 22:47:26',1),(1,98,688,'2012-10-03 22:47:26',1),(1,143,688,'2012-10-03 22:47:26',1),(1,194,688,'2012-10-03 22:47:26',1),(1,179,688,'2012-10-03 22:47:26',1),(1,180,688,'2012-10-03 22:47:26',1),(1,195,688,'2012-10-03 22:47:26',1),(1,161,688,'2012-10-03 22:47:26',1),(1,100,688,'2012-10-03 22:47:26',1),(1,181,688,'2012-10-03 22:47:26',1),(1,106,688,'2012-10-03 22:47:26',1),(1,171,729,'2012-10-04 00:46:15',1),(1,111,728,'2012-10-04 00:46:16',1),(1,4,727,'2012-10-04 00:46:16',1),(1,167,730,'2012-10-04 00:46:16',1),(1,41,733,'2012-10-04 00:46:27',1),(1,21,733,'2012-10-04 00:46:27',1),(1,178,732,'2012-10-04 00:46:27',1),(1,236,732,'2012-10-04 00:46:27',1),(1,171,731,'2012-10-04 00:46:27',1),(1,242,734,'2012-10-04 00:46:27',1),(1,213,734,'2012-10-04 00:46:27',1),(1,41,735,'2012-10-04 00:46:34',1),(1,21,735,'2012-10-04 00:46:34',1),(1,127,736,'2012-10-04 00:46:34',1),(1,28,736,'2012-10-04 00:46:34',1),(1,188,737,'2012-10-04 00:46:34',1),(1,242,737,'2012-10-04 00:46:34',1),(1,213,737,'2012-10-04 00:46:34',1),(1,4,737,'2012-10-04 00:46:34',1),(1,188,738,'2012-10-04 00:46:34',1),(1,242,738,'2012-10-04 00:46:34',1),(1,213,738,'2012-10-04 00:46:34',1),(1,4,738,'2012-10-04 00:46:34',1),(1,188,739,'2012-10-04 00:46:41',1),(1,242,739,'2012-10-04 00:46:41',1),(1,213,739,'2012-10-04 00:46:41',1),(1,4,739,'2012-10-04 00:46:41',1),(1,188,740,'2012-10-04 00:46:42',1),(1,242,740,'2012-10-04 00:46:42',1),(1,213,740,'2012-10-04 00:46:42',1),(1,4,740,'2012-10-04 00:46:42',1),(1,127,741,'2012-10-04 00:46:42',1),(1,28,741,'2012-10-04 00:46:42',1),(1,167,741,'2012-10-04 00:46:42',1),(1,111,741,'2012-10-04 00:46:42',1),(1,21,742,'2012-10-04 00:46:42',1),(1,127,742,'2012-10-04 00:46:42',1),(1,28,742,'2012-10-04 00:46:42',1),(1,167,742,'2012-10-04 00:46:42',1),(1,111,742,'2012-10-04 00:46:42',1),(1,178,742,'2012-10-04 00:46:42',1),(1,236,742,'2012-10-04 00:46:42',1),(1,171,742,'2012-10-04 00:46:42',1),(1,21,743,'2012-10-04 00:46:49',1),(1,127,743,'2012-10-04 00:46:49',1),(1,28,743,'2012-10-04 00:46:49',1),(1,167,743,'2012-10-04 00:46:49',1),(1,111,743,'2012-10-04 00:46:49',1),(1,178,743,'2012-10-04 00:46:49',1),(1,236,743,'2012-10-04 00:46:49',1),(1,171,743,'2012-10-04 00:46:49',1),(1,41,745,'2012-10-04 00:46:51',1),(1,21,745,'2012-10-04 00:46:51',1),(1,127,745,'2012-10-04 00:46:51',1),(1,28,745,'2012-10-04 00:46:51',1),(1,167,745,'2012-10-04 00:46:51',1),(1,111,745,'2012-10-04 00:46:51',1),(1,178,745,'2012-10-04 00:46:51',1),(1,236,745,'2012-10-04 00:46:51',1),(1,21,746,'2012-10-04 00:46:51',1),(1,127,746,'2012-10-04 00:46:51',1),(1,28,746,'2012-10-04 00:46:51',1),(1,167,746,'2012-10-04 00:46:51',1),(1,111,746,'2012-10-04 00:46:51',1),(1,178,746,'2012-10-04 00:46:51',1),(1,236,746,'2012-10-04 00:46:51',1),(1,171,746,'2012-10-04 00:46:51',1),(1,21,744,'2012-10-04 00:46:51',1),(1,127,744,'2012-10-04 00:46:51',1),(1,28,744,'2012-10-04 00:46:51',1),(1,167,744,'2012-10-04 00:46:51',1),(1,111,744,'2012-10-04 00:46:51',1),(1,178,744,'2012-10-04 00:46:51',1),(1,236,744,'2012-10-04 00:46:51',1),(1,171,744,'2012-10-04 00:46:51',1),(1,127,747,'2012-10-04 01:46:13',1),(1,7,749,'2012-10-04 01:46:13',1),(1,213,749,'2012-10-04 01:46:13',1),(1,12,748,'2012-10-04 01:46:13',1),(1,4,750,'2012-10-04 01:46:13',1),(1,21,750,'2012-10-04 01:46:13',1),(1,4,753,'2012-10-04 01:46:19',1),(1,21,753,'2012-10-04 01:46:19',1),(1,127,753,'2012-10-04 01:46:19',1),(1,12,753,'2012-10-04 01:46:19',1),(1,28,753,'2012-10-04 01:46:19',1),(1,167,753,'2012-10-04 01:46:19',1),(1,111,753,'2012-10-04 01:46:19',1),(1,178,753,'2012-10-04 01:46:19',1),(1,236,751,'2012-10-04 01:46:20',1),(1,171,751,'2012-10-04 01:46:20',1),(1,93,751,'2012-10-04 01:46:20',1),(1,242,751,'2012-10-04 01:46:20',1),(1,236,752,'2012-10-04 01:46:20',1),(1,171,752,'2012-10-04 01:46:20',1),(1,93,752,'2012-10-04 01:46:20',1),(1,242,752,'2012-10-04 01:46:20',1),(1,4,754,'2012-10-04 01:46:20',1),(1,21,754,'2012-10-04 01:46:20',1),(1,127,754,'2012-10-04 01:46:20',1),(1,12,754,'2012-10-04 01:46:20',1),(1,28,754,'2012-10-04 01:46:20',1),(1,167,754,'2012-10-04 01:46:20',1),(1,111,754,'2012-10-04 01:46:20',1),(1,178,754,'2012-10-04 01:46:20',1),(1,11,760,'2012-10-04 02:46:24',1),(1,21,764,'2012-10-04 02:46:33',1),(1,21,768,'2012-10-04 02:46:42',1),(1,204,756,'2012-10-04 03:16:18',1),(1,11,756,'2012-10-04 03:16:18',1),(1,21,773,'2012-10-04 03:46:18',1),(1,41,774,'2012-10-04 04:16:19',1),(1,127,758,'2012-10-04 04:16:21',1),(1,12,758,'2012-10-04 04:16:21',1),(1,28,758,'2012-10-04 04:16:21',1),(1,167,758,'2012-10-04 04:16:21',1),(1,111,758,'2012-10-04 04:16:21',1),(1,178,758,'2012-10-04 04:16:21',1),(1,236,758,'2012-10-04 04:16:21',1),(1,171,758,'2012-10-04 04:16:21',1),(1,159,757,'2012-10-04 04:16:21',1),(1,188,757,'2012-10-04 04:16:21',1),(1,93,757,'2012-10-04 04:16:21',1),(1,242,757,'2012-10-04 04:16:21',1),(1,7,761,'2012-10-04 04:16:29',1),(1,49,761,'2012-10-04 04:16:29',1),(1,159,762,'2012-10-04 04:16:29',1),(1,188,762,'2012-10-04 04:16:29',1),(1,93,762,'2012-10-04 04:16:29',1),(1,242,762,'2012-10-04 04:16:29',1),(1,127,763,'2012-10-04 04:16:37',1),(1,12,763,'2012-10-04 04:16:37',1),(1,28,763,'2012-10-04 04:16:37',1),(1,167,763,'2012-10-04 04:16:37',1),(1,111,763,'2012-10-04 04:16:37',1),(1,178,763,'2012-10-04 04:16:37',1),(1,236,763,'2012-10-04 04:16:37',1),(1,171,763,'2012-10-04 04:16:37',1),(1,188,765,'2012-10-04 04:16:37',1),(1,93,765,'2012-10-04 04:16:37',1),(1,171,766,'2012-10-04 04:16:40',1),(1,188,766,'2012-10-04 04:16:40',1),(1,93,766,'2012-10-04 04:16:40',1),(1,242,766,'2012-10-04 04:16:40',1),(1,171,786,'2012-10-04 04:16:44',1),(1,7,786,'2012-10-04 04:16:44',1),(1,49,786,'2012-10-04 04:16:44',1),(1,213,786,'2012-10-04 04:16:44',1),(1,236,785,'2012-10-04 04:16:44',1),(1,213,785,'2012-10-04 04:16:44',1),(1,11,787,'2012-10-04 04:16:44',1),(1,127,787,'2012-10-04 04:16:44',1),(1,12,787,'2012-10-04 04:16:44',1),(1,28,787,'2012-10-04 04:16:44',1),(1,167,787,'2012-10-04 04:16:44',1),(1,111,787,'2012-10-04 04:16:44',1),(1,178,787,'2012-10-04 04:16:44',1),(1,236,787,'2012-10-04 04:16:44',1),(1,11,767,'2012-10-04 04:16:47',1),(1,41,767,'2012-10-04 04:16:47',1),(1,127,767,'2012-10-04 04:16:47',1),(1,12,767,'2012-10-04 04:16:47',1),(1,28,767,'2012-10-04 04:16:47',1),(1,167,767,'2012-10-04 04:16:47',1),(1,111,767,'2012-10-04 04:16:47',1),(1,178,767,'2012-10-04 04:16:47',1),(1,7,769,'2012-10-04 04:16:48',1),(1,49,769,'2012-10-04 04:16:48',1),(1,171,770,'2012-10-04 04:16:50',1),(1,188,770,'2012-10-04 04:16:50',1),(1,93,770,'2012-10-04 04:16:50',1),(1,242,770,'2012-10-04 04:16:50',1),(1,213,794,'2012-10-04 04:17:00',1),(1,213,796,'2012-10-04 04:17:00',1),(1,236,796,'2012-10-04 04:17:00',1),(1,159,796,'2012-10-04 04:17:00',1),(1,7,796,'2012-10-04 04:17:00',1),(1,236,795,'2012-10-04 04:17:03',1),(1,213,795,'2012-10-04 04:17:03',1),(1,11,797,'2012-10-04 04:17:04',1),(1,41,797,'2012-10-04 04:17:04',1),(1,127,797,'2012-10-04 04:17:04',1),(1,12,797,'2012-10-04 04:17:04',1),(1,28,797,'2012-10-04 04:17:04',1),(1,167,797,'2012-10-04 04:17:04',1),(1,111,797,'2012-10-04 04:17:04',1),(1,178,797,'2012-10-04 04:17:04',1),(1,11,775,'2012-10-04 04:46:21',1),(1,168,775,'2012-10-04 04:46:21',1),(1,213,789,'2012-10-04 04:46:54',1),(1,41,713,'2012-10-04 04:47:39',1),(1,127,713,'2012-10-04 04:47:39',1),(1,12,713,'2012-10-04 04:47:39',1),(1,28,713,'2012-10-04 04:47:39',1),(1,167,713,'2012-10-04 04:47:39',1),(1,111,713,'2012-10-04 04:47:39',1),(1,178,713,'2012-10-04 04:47:39',1),(1,236,713,'2012-10-04 04:47:39',1),(1,171,713,'2012-10-04 04:47:39',1),(1,159,713,'2012-10-04 04:47:39',1),(1,188,713,'2012-10-04 04:47:39',1),(1,93,713,'2012-10-04 04:47:39',1),(1,242,713,'2012-10-04 04:47:39',1),(1,7,713,'2012-10-04 04:47:39',1),(1,49,713,'2012-10-04 04:47:39',1),(1,213,713,'2012-10-04 04:47:39',1),(1,41,701,'2012-10-04 04:47:59',1),(1,127,701,'2012-10-04 04:47:59',1),(1,12,701,'2012-10-04 04:47:59',1),(1,28,701,'2012-10-04 04:47:59',1),(1,167,701,'2012-10-04 04:47:59',1),(1,111,701,'2012-10-04 04:47:59',1),(1,178,701,'2012-10-04 04:47:59',1),(1,236,701,'2012-10-04 04:47:59',1),(1,171,701,'2012-10-04 04:47:59',1),(1,159,701,'2012-10-04 04:47:59',1),(1,188,701,'2012-10-04 04:47:59',1),(1,93,701,'2012-10-04 04:47:59',1),(1,242,701,'2012-10-04 04:47:59',1),(1,7,701,'2012-10-04 04:47:59',1),(1,49,701,'2012-10-04 04:47:59',1),(1,213,701,'2012-10-04 04:47:59',1),(1,62,776,'2012-10-04 05:16:22',1),(1,213,776,'2012-10-04 05:16:22',1),(1,242,781,'2012-10-04 05:16:37',1),(1,7,781,'2012-10-04 05:16:37',1),(1,127,771,'2012-10-04 05:16:58',1),(1,12,771,'2012-10-04 05:16:58',1),(1,28,771,'2012-10-04 05:16:58',1),(1,167,771,'2012-10-04 05:16:58',1),(1,111,771,'2012-10-04 05:16:58',1),(1,178,771,'2012-10-04 05:16:58',1),(1,236,771,'2012-10-04 05:16:58',1),(1,171,771,'2012-10-04 05:16:58',1),(1,41,717,'2012-10-04 05:17:53',1),(1,127,717,'2012-10-04 05:17:53',1),(1,12,717,'2012-10-04 05:17:53',1),(1,28,717,'2012-10-04 05:17:53',1),(1,167,717,'2012-10-04 05:17:53',1),(1,111,717,'2012-10-04 05:17:53',1),(1,178,717,'2012-10-04 05:17:53',1),(1,236,717,'2012-10-04 05:17:53',1),(1,171,717,'2012-10-04 05:17:53',1),(1,159,717,'2012-10-04 05:17:53',1),(1,188,717,'2012-10-04 05:17:53',1),(1,93,717,'2012-10-04 05:17:53',1),(1,168,717,'2012-10-04 05:17:53',1),(1,242,717,'2012-10-04 05:17:53',1),(1,7,717,'2012-10-04 05:17:53',1),(1,49,717,'2012-10-04 05:17:53',1),(1,41,778,'2012-10-04 05:46:31',1),(1,62,778,'2012-10-04 05:46:31',1),(1,213,778,'2012-10-04 05:46:31',1),(1,6,778,'2012-10-04 05:46:31',1),(1,12,779,'2012-10-04 05:46:31',1),(1,28,779,'2012-10-04 05:46:31',1),(1,167,779,'2012-10-04 05:46:31',1),(1,111,779,'2012-10-04 05:46:31',1),(1,178,779,'2012-10-04 05:46:31',1),(1,236,779,'2012-10-04 05:46:31',1),(1,171,779,'2012-10-04 05:46:31',1),(1,193,779,'2012-10-04 05:46:31',1),(1,111,777,'2012-10-04 05:46:31',1),(1,178,777,'2012-10-04 05:46:31',1),(1,236,777,'2012-10-04 05:46:31',1),(1,171,777,'2012-10-04 05:46:31',1),(1,41,782,'2012-10-04 05:46:40',1),(1,12,782,'2012-10-04 05:46:40',1),(1,28,782,'2012-10-04 05:46:40',1),(1,167,782,'2012-10-04 05:46:40',1),(1,146,791,'2012-10-04 05:46:57',1),(1,41,791,'2012-10-04 05:46:57',1),(1,12,791,'2012-10-04 05:46:57',1),(1,28,791,'2012-10-04 05:46:57',1),(1,62,790,'2012-10-04 05:46:57',1),(1,213,790,'2012-10-04 05:46:57',1),(1,159,755,'2012-10-04 06:16:26',NULL),(1,188,755,'2012-10-04 06:16:26',NULL),(1,93,755,'2012-10-04 06:16:26',NULL),(1,168,755,'2012-10-04 06:16:26',NULL),(1,41,780,'2012-10-04 06:16:32',1),(1,12,780,'2012-10-04 06:16:32',1),(1,28,780,'2012-10-04 06:16:32',1),(1,111,780,'2012-10-04 06:16:32',1),(1,178,780,'2012-10-04 06:16:32',1),(1,236,780,'2012-10-04 06:16:32',1),(1,171,780,'2012-10-04 06:16:32',1),(1,6,780,'2012-10-04 06:16:32',1),(1,41,783,'2012-10-04 06:46:45',1),(1,12,783,'2012-10-04 06:46:45',1),(1,28,783,'2012-10-04 06:46:45',1),(1,111,783,'2012-10-04 06:46:45',1),(1,178,783,'2012-10-04 06:46:45',1),(1,236,783,'2012-10-04 06:46:45',1),(1,171,783,'2012-10-04 06:46:45',1),(1,6,783,'2012-10-04 06:46:45',1),(1,147,722,'2012-10-04 07:48:16',1),(1,44,722,'2012-10-04 07:48:16',1),(1,186,722,'2012-10-04 07:48:16',1),(1,47,722,'2012-10-04 07:48:16',1),(1,158,722,'2012-10-04 07:48:16',1),(1,98,722,'2012-10-04 07:48:16',1),(1,143,722,'2012-10-04 07:48:16',1),(1,194,722,'2012-10-04 07:48:16',1),(1,179,722,'2012-10-04 07:48:16',1),(1,180,722,'2012-10-04 07:48:16',1),(1,195,722,'2012-10-04 07:48:16',1),(1,161,722,'2012-10-04 07:48:16',1),(1,100,722,'2012-10-04 07:48:16',1),(1,181,722,'2012-10-04 07:48:16',1),(1,106,722,'2012-10-04 07:48:16',1),(1,6,722,'2012-10-04 07:48:16',1),(1,44,792,'2012-10-04 08:17:04',1),(1,186,792,'2012-10-04 08:17:04',1),(1,47,792,'2012-10-04 08:17:04',1),(1,158,792,'2012-10-04 08:17:04',1),(1,98,792,'2012-10-04 08:17:04',1),(1,143,792,'2012-10-04 08:17:04',1),(1,194,792,'2012-10-04 08:17:04',1),(1,179,792,'2012-10-04 08:17:04',1),(1,137,759,'2012-10-04 15:16:56',1),(1,138,759,'2012-10-04 15:16:56',1),(1,42,759,'2012-10-04 15:16:56',1),(1,3,759,'2012-10-04 15:16:56',1),(1,139,759,'2012-10-04 15:16:56',1),(1,89,759,'2012-10-04 15:16:56',1),(1,82,759,'2012-10-04 15:16:56',1),(1,18,759,'2012-10-04 15:16:56',1),(1,151,759,'2012-10-04 15:16:56',1),(1,40,759,'2012-10-04 15:16:56',1),(1,239,759,'2012-10-04 15:16:56',1),(1,43,759,'2012-10-04 15:16:56',1),(1,71,759,'2012-10-04 15:16:56',1),(1,162,759,'2012-10-04 15:16:56',1),(1,46,759,'2012-10-04 15:16:56',1),(1,155,759,'2012-10-04 15:16:56',1),(1,33,784,'2012-10-04 15:17:04',1),(1,34,784,'2012-10-04 15:17:04',1),(1,182,784,'2012-10-04 15:17:04',1),(1,35,784,'2012-10-04 15:17:04',1),(1,36,784,'2012-10-04 15:17:04',1),(1,29,784,'2012-10-04 15:17:04',1),(1,30,784,'2012-10-04 15:17:04',1),(1,243,784,'2012-10-04 15:17:04',1),(1,31,784,'2012-10-04 15:17:04',1),(1,145,784,'2012-10-04 15:17:04',1),(1,128,784,'2012-10-04 15:17:04',1),(1,39,784,'2012-10-04 15:17:04',1),(1,19,784,'2012-10-04 15:17:04',1),(1,169,784,'2012-10-04 15:17:04',1),(1,83,784,'2012-10-04 15:17:04',1),(1,63,784,'2012-10-04 15:17:04',1),(1,189,788,'2012-10-04 15:17:12',1),(1,190,788,'2012-10-04 15:17:12',1),(1,85,788,'2012-10-04 15:17:12',1),(1,191,788,'2012-10-04 15:17:12',1),(1,114,788,'2012-10-04 15:17:12',1),(1,192,788,'2012-10-04 15:17:12',1),(1,144,788,'2012-10-04 15:17:12',1),(1,73,788,'2012-10-04 15:17:12',1),(1,23,788,'2012-10-04 15:17:12',1),(1,84,788,'2012-10-04 15:17:12',1),(1,86,788,'2012-10-04 15:17:12',1),(1,115,788,'2012-10-04 15:17:12',1),(1,74,788,'2012-10-04 15:17:12',1),(1,173,788,'2012-10-04 15:17:12',1),(1,24,788,'2012-10-04 15:17:12',1),(1,80,788,'2012-10-04 15:17:12',1),(1,232,772,'2012-10-04 15:17:23',1),(1,238,772,'2012-10-04 15:17:23',1),(1,233,772,'2012-10-04 15:17:23',1),(1,57,772,'2012-10-04 15:17:23',1),(1,51,772,'2012-10-04 15:17:23',1),(1,235,772,'2012-10-04 15:17:23',1),(1,99,772,'2012-10-04 15:17:23',1),(1,157,772,'2012-10-04 15:17:23',1),(1,54,772,'2012-10-04 15:17:23',1),(1,163,772,'2012-10-04 15:17:23',1),(1,176,772,'2012-10-04 15:17:23',1),(1,58,772,'2012-10-04 15:17:23',1),(1,177,772,'2012-10-04 15:17:23',1),(1,72,772,'2012-10-04 15:17:23',1),(1,148,772,'2012-10-04 15:17:23',1),(1,1,772,'2012-10-04 15:17:23',1),(1,101,793,'2012-10-04 15:17:26',1),(1,226,793,'2012-10-04 15:17:26',1),(1,116,793,'2012-10-04 15:17:26',1),(1,129,793,'2012-10-04 15:17:26',1),(1,13,793,'2012-10-04 15:17:26',1),(1,174,793,'2012-10-04 15:17:26',1),(1,117,793,'2012-10-04 15:17:26',1),(1,166,793,'2012-10-04 15:17:26',1),(1,107,793,'2012-10-04 15:17:26',1),(1,14,793,'2012-10-04 15:17:26',1),(1,15,793,'2012-10-04 15:17:26',1),(1,55,793,'2012-10-04 15:17:26',1),(1,112,793,'2012-10-04 15:17:26',1),(1,53,793,'2012-10-04 15:17:26',1),(1,130,793,'2012-10-04 15:17:26',1),(1,64,793,'2012-10-04 15:17:26',1),(1,146,801,'2012-10-05 00:46:18',1),(1,7,800,'2012-10-05 00:46:18',1),(1,7,799,'2012-10-05 00:46:23',1),(1,159,798,'2012-10-05 01:16:23',1),(1,7,802,'2012-10-05 01:16:27',1),(1,159,818,'2012-10-05 01:46:12',1),(1,175,819,'2012-10-05 02:16:13',1),(1,22,803,'2012-10-05 02:16:30',1),(1,165,803,'2012-10-05 02:16:30',1),(1,136,804,'2012-10-05 02:16:30',1),(1,152,804,'2012-10-05 02:16:30',1),(1,22,805,'2012-10-05 02:16:30',1),(1,165,805,'2012-10-05 02:16:30',1),(1,51,825,'2012-10-05 02:46:25',1),(1,235,825,'2012-10-05 02:46:25',1),(1,99,825,'2012-10-05 02:46:25',1),(1,157,825,'2012-10-05 02:46:25',1),(1,54,825,'2012-10-05 02:46:25',1),(1,238,825,'2012-10-05 02:46:25',1),(1,233,825,'2012-10-05 02:46:25',1),(1,57,825,'2012-10-05 02:46:25',1),(1,51,813,'2012-10-05 02:46:52',1),(1,235,813,'2012-10-05 02:46:52',1),(1,99,813,'2012-10-05 02:46:52',1),(1,157,813,'2012-10-05 02:46:52',1),(1,54,813,'2012-10-05 02:46:52',1),(1,238,813,'2012-10-05 02:46:52',1),(1,233,813,'2012-10-05 02:46:52',1),(1,57,813,'2012-10-05 02:46:52',1),(1,51,814,'2012-10-05 02:46:54',1),(1,235,814,'2012-10-05 02:46:54',1),(1,99,814,'2012-10-05 02:46:54',1),(1,157,814,'2012-10-05 02:46:54',1),(1,54,814,'2012-10-05 02:46:54',1),(1,238,814,'2012-10-05 02:46:54',1),(1,233,814,'2012-10-05 02:46:54',1),(1,57,814,'2012-10-05 02:46:54',1),(1,51,815,'2012-10-05 02:46:54',1),(1,235,815,'2012-10-05 02:46:54',1),(1,99,815,'2012-10-05 02:46:54',1),(1,157,815,'2012-10-05 02:46:54',1),(1,54,815,'2012-10-05 02:46:54',1),(1,238,815,'2012-10-05 02:46:54',1),(1,233,815,'2012-10-05 02:46:54',1),(1,57,815,'2012-10-05 02:46:54',1),(1,51,817,'2012-10-05 02:47:00',1),(1,235,817,'2012-10-05 02:47:00',1),(1,99,817,'2012-10-05 02:47:00',1),(1,157,817,'2012-10-05 02:47:00',1),(1,54,817,'2012-10-05 02:47:00',1),(1,238,817,'2012-10-05 02:47:00',1),(1,233,817,'2012-10-05 02:47:00',1),(1,57,817,'2012-10-05 02:47:00',1),(1,51,816,'2012-10-05 02:47:00',1),(1,235,816,'2012-10-05 02:47:00',1),(1,99,816,'2012-10-05 02:47:00',1),(1,157,816,'2012-10-05 02:47:00',1),(1,54,816,'2012-10-05 02:47:00',1),(1,238,816,'2012-10-05 02:47:00',1),(1,233,816,'2012-10-05 02:47:00',1),(1,57,816,'2012-10-05 02:47:00',1),(1,235,820,'2012-10-05 03:16:15',1),(1,99,820,'2012-10-05 03:16:15',1),(1,235,821,'2012-10-05 03:16:15',1),(1,99,821,'2012-10-05 03:16:15',1),(1,238,827,'2012-10-05 03:16:18',1),(1,233,827,'2012-10-05 03:16:18',1),(1,57,828,'2012-10-05 03:16:20',1),(1,157,828,'2012-10-05 03:16:20',1),(1,54,828,'2012-10-05 03:16:20',1),(1,79,828,'2012-10-05 03:16:20',1),(1,51,829,'2012-10-05 03:16:20',1),(1,235,829,'2012-10-05 03:16:20',1),(1,99,829,'2012-10-05 03:16:20',1),(1,157,829,'2012-10-05 03:16:20',1),(1,54,829,'2012-10-05 03:16:20',1),(1,238,829,'2012-10-05 03:16:20',1),(1,233,829,'2012-10-05 03:16:20',1),(1,57,829,'2012-10-05 03:16:20',1),(1,57,823,'2012-10-05 03:16:24',1),(1,157,823,'2012-10-05 03:16:24',1),(1,54,823,'2012-10-05 03:16:24',1),(1,79,823,'2012-10-05 03:16:24',1),(1,57,822,'2012-10-05 03:16:24',1),(1,54,822,'2012-10-05 03:16:24',1),(1,79,822,'2012-10-05 03:16:24',1),(1,232,822,'2012-10-05 03:16:24',1),(1,51,824,'2012-10-05 03:16:24',1),(1,235,824,'2012-10-05 03:16:24',1),(1,99,824,'2012-10-05 03:16:24',1),(1,157,824,'2012-10-05 03:16:24',1),(1,54,824,'2012-10-05 03:16:24',1),(1,238,824,'2012-10-05 03:16:24',1),(1,233,824,'2012-10-05 03:16:24',1),(1,57,824,'2012-10-05 03:16:24',1),(1,57,831,'2012-10-05 03:16:28',1),(1,232,832,'2012-10-05 03:16:31',1),(1,238,832,'2012-10-05 03:16:31',1),(1,235,833,'2012-10-05 03:16:33',1),(1,232,833,'2012-10-05 03:16:33',1),(1,238,833,'2012-10-05 03:16:33',1),(1,233,833,'2012-10-05 03:16:33',1),(1,51,834,'2012-10-05 03:16:36',1),(1,235,834,'2012-10-05 03:16:36',1),(1,99,834,'2012-10-05 03:16:36',1),(1,157,834,'2012-10-05 03:16:36',1),(1,54,834,'2012-10-05 03:16:36',1),(1,232,834,'2012-10-05 03:16:36',1),(1,238,834,'2012-10-05 03:16:36',1),(1,233,834,'2012-10-05 03:16:36',1),(1,233,835,'2012-10-05 03:16:38',1),(1,235,836,'2012-10-05 03:16:41',1),(1,238,836,'2012-10-05 03:16:41',1),(1,54,806,'2012-10-05 03:16:43',1),(1,238,806,'2012-10-05 03:16:43',1),(1,232,807,'2012-10-05 03:16:43',1),(1,233,807,'2012-10-05 03:16:43',1),(1,157,839,'2012-10-05 03:16:48',1),(1,51,808,'2012-10-05 03:16:50',1),(1,235,808,'2012-10-05 03:16:50',1),(1,99,808,'2012-10-05 03:16:50',1),(1,157,808,'2012-10-05 03:16:50',1),(1,51,809,'2012-10-05 03:16:53',1),(1,235,809,'2012-10-05 03:16:53',1),(1,99,809,'2012-10-05 03:16:53',1),(1,157,809,'2012-10-05 03:16:53',1),(1,54,810,'2012-10-05 03:16:56',1),(1,232,810,'2012-10-05 03:16:56',1),(1,238,810,'2012-10-05 03:16:56',1),(1,233,810,'2012-10-05 03:16:56',1),(1,54,811,'2012-10-05 03:16:58',1),(1,232,811,'2012-10-05 03:16:58',1),(1,238,811,'2012-10-05 03:16:58',1),(1,233,811,'2012-10-05 03:16:58',1),(1,57,812,'2012-10-05 03:17:01',1),(1,54,812,'2012-10-05 03:17:01',1),(1,79,812,'2012-10-05 03:17:01',1),(1,232,812,'2012-10-05 03:17:01',1),(1,233,845,'2012-10-05 03:46:18',1),(1,196,846,'2012-10-05 03:46:18',1),(1,232,846,'2012-10-05 03:46:18',1),(1,232,844,'2012-10-05 03:46:18',1),(1,235,847,'2012-10-05 03:46:21',1),(1,233,847,'2012-10-05 03:46:21',1),(1,235,840,'2012-10-05 03:46:50',1),(1,238,840,'2012-10-05 03:46:50',1),(1,232,860,'2012-10-05 03:46:59',1),(1,232,865,'2012-10-05 03:47:07',1),(1,57,826,'2012-10-05 04:16:20',NULL),(1,157,826,'2012-10-05 04:16:20',NULL),(1,54,826,'2012-10-05 04:16:20',NULL),(1,79,826,'2012-10-05 04:16:20',NULL),(1,196,852,'2012-10-05 04:16:38',1),(1,159,852,'2012-10-05 04:16:38',1),(1,232,837,'2012-10-05 04:16:43',1),(1,238,837,'2012-10-05 04:16:43',1),(1,196,837,'2012-10-05 04:16:43',1),(1,159,837,'2012-10-05 04:16:43',1),(1,238,856,'2012-10-05 04:16:49',1),(1,196,856,'2012-10-05 04:16:49',1),(1,238,841,'2012-10-05 04:16:52',1),(1,233,841,'2012-10-05 04:16:52',1),(1,196,841,'2012-10-05 04:16:52',1),(1,159,841,'2012-10-05 04:16:52',1),(1,134,861,'2012-10-05 04:16:58',1),(1,6,861,'2012-10-05 04:16:58',1),(1,156,866,'2012-10-05 04:17:07',1),(1,136,866,'2012-10-05 04:17:07',1),(1,238,849,'2012-10-05 04:46:36',1),(1,233,849,'2012-10-05 04:46:36',1),(1,196,849,'2012-10-05 04:46:36',1),(1,159,849,'2012-10-05 04:46:36',1),(1,136,848,'2012-10-05 04:46:36',1),(1,51,848,'2012-10-05 04:46:36',1),(1,156,848,'2012-10-05 04:46:36',1),(1,6,848,'2012-10-05 04:46:36',1),(1,79,853,'2012-10-05 04:46:40',1),(1,57,853,'2012-10-05 04:46:40',1),(1,157,853,'2012-10-05 04:46:40',1),(1,54,853,'2012-10-05 04:46:40',1),(1,51,857,'2012-10-05 04:46:51',1),(1,156,857,'2012-10-05 04:46:51',1),(1,167,857,'2012-10-05 04:46:51',1),(1,6,857,'2012-10-05 04:46:51',1),(1,79,838,'2012-10-05 04:46:51',1),(1,167,838,'2012-10-05 04:46:51',1),(1,238,838,'2012-10-05 04:46:51',1),(1,233,838,'2012-10-05 04:46:51',1),(1,57,838,'2012-10-05 04:46:51',1),(1,51,838,'2012-10-05 04:46:51',1),(1,196,838,'2012-10-05 04:46:51',1),(1,157,838,'2012-10-05 04:46:51',1),(1,79,842,'2012-10-05 04:47:00',1),(1,167,842,'2012-10-05 04:47:00',1),(1,238,842,'2012-10-05 04:47:00',1),(1,233,842,'2012-10-05 04:47:00',1),(1,57,842,'2012-10-05 04:47:00',1),(1,51,842,'2012-10-05 04:47:00',1),(1,196,842,'2012-10-05 04:47:00',1),(1,157,842,'2012-10-05 04:47:00',1),(1,54,862,'2012-10-05 04:47:02',1),(1,159,862,'2012-10-05 04:47:02',1),(1,156,862,'2012-10-05 04:47:02',1),(1,6,862,'2012-10-05 04:47:02',1),(1,54,867,'2012-10-05 04:47:11',1),(1,159,867,'2012-10-05 04:47:11',1),(1,156,867,'2012-10-05 04:47:11',1),(1,6,867,'2012-10-05 04:47:11',1),(1,20,851,'2012-10-05 05:16:34',1),(1,79,851,'2012-10-05 05:16:34',1),(1,167,851,'2012-10-05 05:16:34',1),(1,238,851,'2012-10-05 05:16:34',1),(1,233,851,'2012-10-05 05:16:34',1),(1,57,851,'2012-10-05 05:16:34',1),(1,51,851,'2012-10-05 05:16:34',1),(1,196,851,'2012-10-05 05:16:34',1),(1,156,850,'2012-10-05 05:16:37',1),(1,79,850,'2012-10-05 05:16:37',1),(1,167,850,'2012-10-05 05:16:37',1),(1,238,850,'2012-10-05 05:16:37',1),(1,233,850,'2012-10-05 05:16:37',1),(1,57,850,'2012-10-05 05:16:37',1),(1,51,850,'2012-10-05 05:16:37',1),(1,196,850,'2012-10-05 05:16:37',1),(1,134,854,'2012-10-05 05:46:42',1),(1,79,854,'2012-10-05 05:46:42',1),(1,167,854,'2012-10-05 05:46:42',1),(1,238,854,'2012-10-05 05:46:42',1),(1,233,854,'2012-10-05 05:46:42',1),(1,57,854,'2012-10-05 05:46:42',1),(1,51,854,'2012-10-05 05:46:42',1),(1,196,854,'2012-10-05 05:46:42',1),(1,134,858,'2012-10-05 05:46:55',1),(1,79,858,'2012-10-05 05:46:55',1),(1,167,858,'2012-10-05 05:46:55',1),(1,238,858,'2012-10-05 05:46:55',1),(1,233,858,'2012-10-05 05:46:55',1),(1,57,858,'2012-10-05 05:46:55',1),(1,51,858,'2012-10-05 05:46:55',1),(1,196,858,'2012-10-05 05:46:55',1),(1,51,863,'2012-10-05 06:17:07',1),(1,196,863,'2012-10-05 06:17:07',1),(1,134,863,'2012-10-05 06:17:07',1),(1,79,863,'2012-10-05 06:17:07',1),(1,167,863,'2012-10-05 06:17:07',1),(1,238,863,'2012-10-05 06:17:07',1),(1,233,863,'2012-10-05 06:17:07',1),(1,57,863,'2012-10-05 06:17:07',1),(1,51,868,'2012-10-05 06:17:17',1),(1,196,868,'2012-10-05 06:17:17',1),(1,134,868,'2012-10-05 06:17:17',1),(1,79,868,'2012-10-05 06:17:17',1),(1,167,868,'2012-10-05 06:17:17',1),(1,232,868,'2012-10-05 06:17:17',1),(1,238,868,'2012-10-05 06:17:17',1),(1,233,868,'2012-10-05 06:17:17',1),(1,102,879,'2012-10-06 08:47:05',1),(1,204,879,'2012-10-06 08:47:05',1),(1,228,879,'2012-10-06 08:47:05',1),(1,91,879,'2012-10-06 08:47:05',1),(1,102,880,'2012-10-06 08:47:05',1),(1,204,880,'2012-10-06 08:47:05',1),(1,228,880,'2012-10-06 08:47:05',1),(1,91,880,'2012-10-06 08:47:05',1),(1,93,830,'2012-10-06 08:47:36',1),(1,75,830,'2012-10-06 08:47:36',1),(1,156,830,'2012-10-06 08:47:36',1),(1,168,830,'2012-10-06 08:47:36',1),(1,65,830,'2012-10-06 08:47:36',1),(1,242,830,'2012-10-06 08:47:36',1),(1,110,830,'2012-10-06 08:47:36',1),(1,202,830,'2012-10-06 08:47:36',1),(1,203,830,'2012-10-06 08:47:36',1),(1,76,830,'2012-10-06 08:47:36',1),(1,185,830,'2012-10-06 08:47:36',1),(1,108,830,'2012-10-06 08:47:36',1),(1,142,830,'2012-10-06 08:47:36',1),(1,240,830,'2012-10-06 08:47:36',1),(1,7,830,'2012-10-06 08:47:36',1),(1,132,830,'2012-10-06 08:47:36',1),(1,207,891,'2012-10-06 09:16:31',1),(1,212,891,'2012-10-06 09:16:31',1),(1,144,900,'2012-10-06 09:16:34',1),(1,73,900,'2012-10-06 09:16:34',1),(1,23,900,'2012-10-06 09:16:34',1),(1,84,900,'2012-10-06 09:16:34',1),(1,86,900,'2012-10-06 09:16:34',1),(1,115,900,'2012-10-06 09:16:34',1),(1,74,900,'2012-10-06 09:16:34',1),(1,173,900,'2012-10-06 09:16:34',1),(1,91,889,'2012-10-06 09:16:38',1),(1,207,892,'2012-10-06 09:16:38',1),(1,212,892,'2012-10-06 09:16:38',1),(1,207,871,'2012-10-06 09:16:41',1),(1,228,890,'2012-10-06 09:16:42',1),(1,144,895,'2012-10-06 09:16:46',1),(1,73,895,'2012-10-06 09:16:46',1),(1,23,895,'2012-10-06 09:16:46',1),(1,84,895,'2012-10-06 09:16:46',1),(1,86,895,'2012-10-06 09:16:46',1),(1,115,895,'2012-10-06 09:16:46',1),(1,74,895,'2012-10-06 09:16:46',1),(1,173,895,'2012-10-06 09:16:46',1),(1,207,898,'2012-10-06 09:16:46',1),(1,212,898,'2012-10-06 09:16:46',1),(1,102,896,'2012-10-06 09:16:52',1),(1,204,896,'2012-10-06 09:16:52',1),(1,216,896,'2012-10-06 09:16:52',1),(1,200,896,'2012-10-06 09:16:52',1),(1,66,896,'2012-10-06 09:16:52',1),(1,241,896,'2012-10-06 09:16:52',1),(1,206,896,'2012-10-06 09:16:52',1),(1,49,896,'2012-10-06 09:16:52',1),(1,20,901,'2012-10-06 09:16:52',1),(1,94,901,'2012-10-06 09:16:52',1),(1,160,901,'2012-10-06 09:16:52',1),(1,16,901,'2012-10-06 09:16:52',1),(1,244,901,'2012-10-06 09:16:52',1),(1,25,901,'2012-10-06 09:16:52',1),(1,27,901,'2012-10-06 09:16:52',1),(1,184,901,'2012-10-06 09:16:52',1),(1,140,901,'2012-10-06 09:16:52',1),(1,136,901,'2012-10-06 09:16:52',1),(1,11,901,'2012-10-06 09:16:52',1),(1,220,901,'2012-10-06 09:16:52',1),(1,225,901,'2012-10-06 09:16:52',1),(1,146,901,'2012-10-06 09:16:52',1),(1,152,901,'2012-10-06 09:16:52',1),(1,45,901,'2012-10-06 09:16:52',1),(1,228,902,'2012-10-06 09:16:52',1),(1,91,869,'2012-10-06 09:16:54',1),(1,207,870,'2012-10-06 09:16:55',1),(1,91,872,'2012-10-06 09:16:55',1),(1,228,873,'2012-10-06 09:17:00',1),(1,212,874,'2012-10-06 09:17:00',1),(1,228,874,'2012-10-06 09:17:00',1),(1,144,905,'2012-10-06 09:17:00',1),(1,73,905,'2012-10-06 09:17:00',1),(1,23,905,'2012-10-06 09:17:00',1),(1,84,905,'2012-10-06 09:17:00',1),(1,86,905,'2012-10-06 09:17:00',1),(1,115,905,'2012-10-06 09:17:00',1),(1,74,905,'2012-10-06 09:17:00',1),(1,173,905,'2012-10-06 09:17:00',1),(1,91,906,'2012-10-06 09:17:02',1),(1,212,875,'2012-10-06 09:17:06',1),(1,228,875,'2012-10-06 09:17:06',1),(1,212,876,'2012-10-06 09:17:06',1),(1,228,876,'2012-10-06 09:17:06',1),(1,207,877,'2012-10-06 09:17:09',1),(1,212,877,'2012-10-06 09:17:09',1),(1,207,878,'2012-10-06 09:17:12',1),(1,212,878,'2012-10-06 09:17:12',1),(1,144,909,'2012-10-06 09:17:12',1),(1,73,909,'2012-10-06 09:17:12',1),(1,23,909,'2012-10-06 09:17:12',1),(1,84,909,'2012-10-06 09:17:12',1),(1,86,909,'2012-10-06 09:17:12',1),(1,115,909,'2012-10-06 09:17:12',1),(1,74,909,'2012-10-06 09:17:12',1),(1,173,909,'2012-10-06 09:17:12',1),(1,91,910,'2012-10-06 09:17:18',1),(1,207,882,'2012-10-06 09:17:23',1),(1,212,882,'2012-10-06 09:17:23',1),(1,228,882,'2012-10-06 09:17:23',1),(1,91,882,'2012-10-06 09:17:23',1),(1,93,914,'2012-10-06 09:17:29',1),(1,75,914,'2012-10-06 09:17:29',1),(1,156,914,'2012-10-06 09:17:29',1),(1,168,914,'2012-10-06 09:17:29',1),(1,65,914,'2012-10-06 09:17:29',1),(1,242,914,'2012-10-06 09:17:29',1),(1,110,914,'2012-10-06 09:17:29',1),(1,202,914,'2012-10-06 09:17:29',1),(1,203,914,'2012-10-06 09:17:29',1),(1,76,914,'2012-10-06 09:17:29',1),(1,185,914,'2012-10-06 09:17:29',1),(1,108,914,'2012-10-06 09:17:29',1),(1,142,914,'2012-10-06 09:17:29',1),(1,240,914,'2012-10-06 09:17:29',1),(1,7,914,'2012-10-06 09:17:29',1),(1,132,914,'2012-10-06 09:17:29',1),(1,102,884,'2012-10-06 09:17:32',1),(1,204,884,'2012-10-06 09:17:32',1),(1,216,884,'2012-10-06 09:17:32',1),(1,200,884,'2012-10-06 09:17:32',1),(1,66,884,'2012-10-06 09:17:32',1),(1,241,884,'2012-10-06 09:17:32',1),(1,206,884,'2012-10-06 09:17:32',1),(1,49,884,'2012-10-06 09:17:32',1),(1,102,885,'2012-10-06 09:17:32',1),(1,204,885,'2012-10-06 09:17:32',1),(1,216,885,'2012-10-06 09:17:32',1),(1,200,885,'2012-10-06 09:17:32',1),(1,66,885,'2012-10-06 09:17:32',1),(1,241,885,'2012-10-06 09:17:32',1),(1,206,885,'2012-10-06 09:17:32',1),(1,49,885,'2012-10-06 09:17:32',1),(1,102,886,'2012-10-06 09:17:36',1),(1,204,886,'2012-10-06 09:17:36',1),(1,216,886,'2012-10-06 09:17:36',1),(1,200,886,'2012-10-06 09:17:36',1),(1,66,886,'2012-10-06 09:17:36',1),(1,241,886,'2012-10-06 09:17:36',1),(1,206,886,'2012-10-06 09:17:36',1),(1,49,886,'2012-10-06 09:17:36',1),(1,117,888,'2012-10-06 09:17:40',1),(1,166,888,'2012-10-06 09:17:40',1),(1,107,888,'2012-10-06 09:17:40',1),(1,14,888,'2012-10-06 09:17:40',1),(1,15,888,'2012-10-06 09:17:40',1),(1,55,888,'2012-10-06 09:17:40',1),(1,112,888,'2012-10-06 09:17:40',1),(1,53,888,'2012-10-06 09:17:40',1),(1,102,887,'2012-10-06 09:17:40',1),(1,204,887,'2012-10-06 09:17:40',1),(1,216,887,'2012-10-06 09:17:40',1),(1,200,887,'2012-10-06 09:17:40',1),(1,66,887,'2012-10-06 09:17:40',1),(1,241,887,'2012-10-06 09:17:40',1),(1,206,887,'2012-10-06 09:17:40',1),(1,49,887,'2012-10-06 09:17:40',1),(1,154,855,'2012-10-06 09:17:51',1),(1,232,855,'2012-10-06 09:17:51',1),(1,233,855,'2012-10-06 09:17:51',1),(1,57,855,'2012-10-06 09:17:51',1),(1,234,855,'2012-10-06 09:17:51',1),(1,51,855,'2012-10-06 09:17:51',1),(1,235,855,'2012-10-06 09:17:51',1),(1,99,855,'2012-10-06 09:17:51',1),(1,196,855,'2012-10-06 09:17:51',1),(1,157,855,'2012-10-06 09:17:51',1),(1,175,855,'2012-10-06 09:17:51',1),(1,54,855,'2012-10-06 09:17:51',1),(1,83,855,'2012-10-06 09:17:51',1),(1,159,855,'2012-10-06 09:17:51',1),(1,8,855,'2012-10-06 09:17:51',1),(1,87,855,'2012-10-06 09:17:51',1),(1,93,859,'2012-10-06 09:18:07',1),(1,75,859,'2012-10-06 09:18:07',1),(1,156,859,'2012-10-06 09:18:07',1),(1,168,859,'2012-10-06 09:18:07',1),(1,65,859,'2012-10-06 09:18:07',1),(1,242,859,'2012-10-06 09:18:07',1),(1,110,859,'2012-10-06 09:18:07',1),(1,202,859,'2012-10-06 09:18:07',1),(1,203,859,'2012-10-06 09:18:07',1),(1,76,859,'2012-10-06 09:18:07',1),(1,185,859,'2012-10-06 09:18:07',1),(1,108,859,'2012-10-06 09:18:07',1),(1,142,859,'2012-10-06 09:18:07',1),(1,240,859,'2012-10-06 09:18:07',1),(1,7,859,'2012-10-06 09:18:07',1),(1,132,859,'2012-10-06 09:18:07',1),(1,20,843,'2012-10-06 09:18:13',1),(1,94,843,'2012-10-06 09:18:13',1),(1,160,843,'2012-10-06 09:18:13',1),(1,16,843,'2012-10-06 09:18:13',1),(1,244,843,'2012-10-06 09:18:13',1),(1,25,843,'2012-10-06 09:18:13',1),(1,27,843,'2012-10-06 09:18:13',1),(1,184,843,'2012-10-06 09:18:13',1),(1,140,843,'2012-10-06 09:18:13',1),(1,136,843,'2012-10-06 09:18:13',1),(1,11,843,'2012-10-06 09:18:13',1),(1,220,843,'2012-10-06 09:18:13',1),(1,225,843,'2012-10-06 09:18:13',1),(1,146,843,'2012-10-06 09:18:13',1),(1,152,843,'2012-10-06 09:18:13',1),(1,45,843,'2012-10-06 09:18:13',1),(1,117,864,'2012-10-06 09:18:18',1),(1,166,864,'2012-10-06 09:18:18',1),(1,107,864,'2012-10-06 09:18:18',1),(1,14,864,'2012-10-06 09:18:18',1),(1,15,864,'2012-10-06 09:18:18',1),(1,55,864,'2012-10-06 09:18:18',1),(1,112,864,'2012-10-06 09:18:18',1),(1,53,864,'2012-10-06 09:18:18',1),(1,102,864,'2012-10-06 09:18:18',1),(1,204,864,'2012-10-06 09:18:18',1),(1,216,864,'2012-10-06 09:18:18',1),(1,200,864,'2012-10-06 09:18:18',1),(1,66,864,'2012-10-06 09:18:18',1),(1,241,864,'2012-10-06 09:18:18',1),(1,206,864,'2012-10-06 09:18:18',1),(1,49,864,'2012-10-06 09:18:18',1),(1,102,899,'2012-10-06 09:46:34',1),(1,204,899,'2012-10-06 09:46:34',1),(1,216,899,'2012-10-06 09:46:34',1),(1,200,899,'2012-10-06 09:46:34',1),(1,228,915,'2012-10-06 09:46:34',1),(1,91,916,'2012-10-06 09:46:39',1),(1,173,918,'2012-10-06 09:46:41',1),(1,228,918,'2012-10-06 09:46:41',1),(1,8,917,'2012-10-06 09:46:41',1),(1,74,917,'2012-10-06 09:46:41',1),(1,115,893,'2012-10-06 09:46:43',1),(1,8,893,'2012-10-06 09:46:43',1),(1,74,893,'2012-10-06 09:46:43',1),(1,87,893,'2012-10-06 09:46:43',1),(1,102,894,'2012-10-06 09:46:45',1),(1,204,894,'2012-10-06 09:46:45',1),(1,216,894,'2012-10-06 09:46:45',1),(1,200,894,'2012-10-06 09:46:45',1),(1,146,919,'2012-10-06 09:46:47',1),(1,152,919,'2012-10-06 09:46:47',1),(1,45,919,'2012-10-06 09:46:47',1),(1,154,919,'2012-10-06 09:46:47',1),(1,232,920,'2012-10-06 09:46:49',1),(1,233,920,'2012-10-06 09:46:49',1),(1,57,920,'2012-10-06 09:46:49',1),(1,234,920,'2012-10-06 09:46:49',1),(1,148,921,'2012-10-06 09:46:53',1),(1,1,921,'2012-10-06 09:46:53',1),(1,189,921,'2012-10-06 09:46:53',1),(1,190,921,'2012-10-06 09:46:53',1),(1,85,921,'2012-10-06 09:46:53',1),(1,191,921,'2012-10-06 09:46:53',1),(1,114,921,'2012-10-06 09:46:53',1),(1,192,921,'2012-10-06 09:46:53',1),(1,207,903,'2012-10-06 09:46:59',1),(1,212,903,'2012-10-06 09:46:59',1),(1,93,922,'2012-10-06 09:46:59',1),(1,75,922,'2012-10-06 09:46:59',1),(1,156,922,'2012-10-06 09:46:59',1),(1,168,922,'2012-10-06 09:46:59',1),(1,65,922,'2012-10-06 09:46:59',1),(1,242,922,'2012-10-06 09:46:59',1),(1,110,922,'2012-10-06 09:46:59',1),(1,202,922,'2012-10-06 09:46:59',1),(1,94,904,'2012-10-06 09:47:02',1),(1,160,904,'2012-10-06 09:47:02',1),(1,16,904,'2012-10-06 09:47:02',1),(1,244,904,'2012-10-06 09:47:02',1),(1,102,923,'2012-10-06 09:47:03',1),(1,204,923,'2012-10-06 09:47:03',1),(1,51,924,'2012-10-06 09:47:03',1),(1,235,924,'2012-10-06 09:47:03',1),(1,99,924,'2012-10-06 09:47:03',1),(1,115,924,'2012-10-06 09:47:03',1),(1,203,925,'2012-10-06 09:47:06',1),(1,76,925,'2012-10-06 09:47:06',1),(1,185,925,'2012-10-06 09:47:06',1),(1,108,925,'2012-10-06 09:47:06',1),(1,142,925,'2012-10-06 09:47:06',1),(1,240,925,'2012-10-06 09:47:06',1),(1,7,925,'2012-10-06 09:47:06',1),(1,132,925,'2012-10-06 09:47:06',1),(1,207,907,'2012-10-06 09:47:11',1),(1,212,907,'2012-10-06 09:47:11',1),(1,25,908,'2012-10-06 09:47:14',1),(1,27,908,'2012-10-06 09:47:14',1),(1,184,908,'2012-10-06 09:47:14',1),(1,140,908,'2012-10-06 09:47:14',1),(1,20,926,'2012-10-06 09:47:14',1),(1,94,926,'2012-10-06 09:47:14',1),(1,160,926,'2012-10-06 09:47:14',1),(1,16,926,'2012-10-06 09:47:14',1),(1,244,926,'2012-10-06 09:47:14',1),(1,25,926,'2012-10-06 09:47:14',1),(1,27,926,'2012-10-06 09:47:14',1),(1,184,926,'2012-10-06 09:47:14',1),(1,140,926,'2012-10-06 09:47:14',1),(1,136,926,'2012-10-06 09:47:14',1),(1,11,926,'2012-10-06 09:47:14',1),(1,220,926,'2012-10-06 09:47:14',1),(1,225,926,'2012-10-06 09:47:14',1),(1,146,926,'2012-10-06 09:47:14',1),(1,152,926,'2012-10-06 09:47:14',1),(1,45,926,'2012-10-06 09:47:14',1),(1,216,927,'2012-10-06 09:47:16',1),(1,200,927,'2012-10-06 09:47:16',1),(1,20,928,'2012-10-06 09:47:16',1),(1,25,928,'2012-10-06 09:47:16',1),(1,27,928,'2012-10-06 09:47:16',1),(1,184,928,'2012-10-06 09:47:16',1),(1,154,929,'2012-10-06 09:47:16',1),(1,232,929,'2012-10-06 09:47:16',1),(1,233,929,'2012-10-06 09:47:16',1),(1,57,929,'2012-10-06 09:47:16',1),(1,234,929,'2012-10-06 09:47:16',1),(1,51,929,'2012-10-06 09:47:16',1),(1,235,929,'2012-10-06 09:47:16',1),(1,99,929,'2012-10-06 09:47:16',1),(1,117,930,'2012-10-06 09:47:19',1),(1,166,930,'2012-10-06 09:47:19',1),(1,107,930,'2012-10-06 09:47:19',1),(1,14,930,'2012-10-06 09:47:19',1),(1,15,930,'2012-10-06 09:47:19',1),(1,55,930,'2012-10-06 09:47:19',1),(1,112,930,'2012-10-06 09:47:19',1),(1,53,930,'2012-10-06 09:47:19',1),(1,102,930,'2012-10-06 09:47:19',1),(1,204,930,'2012-10-06 09:47:19',1),(1,216,930,'2012-10-06 09:47:19',1),(1,200,930,'2012-10-06 09:47:19',1),(1,66,930,'2012-10-06 09:47:19',1),(1,241,930,'2012-10-06 09:47:19',1),(1,206,930,'2012-10-06 09:47:19',1),(1,49,930,'2012-10-06 09:47:19',1),(1,207,911,'2012-10-06 09:47:22',1),(1,212,911,'2012-10-06 09:47:22',1),(1,102,881,'2012-10-06 09:47:24',1),(1,204,881,'2012-10-06 09:47:24',1),(1,216,881,'2012-10-06 09:47:24',1),(1,200,881,'2012-10-06 09:47:24',1),(1,136,912,'2012-10-06 09:47:24',1),(1,11,912,'2012-10-06 09:47:24',1),(1,220,912,'2012-10-06 09:47:24',1),(1,225,912,'2012-10-06 09:47:24',1),(1,23,913,'2012-10-06 09:47:29',1),(1,84,913,'2012-10-06 09:47:29',1),(1,86,913,'2012-10-06 09:47:29',1),(1,115,913,'2012-10-06 09:47:29',1),(1,8,913,'2012-10-06 09:47:29',1),(1,74,913,'2012-10-06 09:47:29',1),(1,87,913,'2012-10-06 09:47:29',1),(1,173,913,'2012-10-06 09:47:29',1),(1,66,883,'2012-10-06 09:47:30',1),(1,241,883,'2012-10-06 09:47:30',1),(1,206,883,'2012-10-06 09:47:30',1),(1,49,883,'2012-10-06 09:47:30',1),(1,228,931,'2012-10-06 09:47:30',1),(1,20,932,'2012-10-06 09:47:34',1),(1,94,932,'2012-10-06 09:47:34',1),(1,140,933,'2012-10-06 09:47:36',1),(1,117,933,'2012-10-06 09:47:36',1),(1,166,933,'2012-10-06 09:47:36',1),(1,107,933,'2012-10-06 09:47:36',1),(1,154,935,'2012-10-06 09:47:39',1),(1,232,935,'2012-10-06 09:47:39',1),(1,233,935,'2012-10-06 09:47:39',1),(1,57,935,'2012-10-06 09:47:39',1),(1,234,935,'2012-10-06 09:47:39',1),(1,51,935,'2012-10-06 09:47:39',1),(1,235,935,'2012-10-06 09:47:39',1),(1,99,935,'2012-10-06 09:47:39',1),(1,196,935,'2012-10-06 09:47:39',1),(1,157,935,'2012-10-06 09:47:39',1),(1,175,935,'2012-10-06 09:47:39',1),(1,54,935,'2012-10-06 09:47:39',1),(1,83,935,'2012-10-06 09:47:39',1),(1,159,935,'2012-10-06 09:47:39',1),(1,144,935,'2012-10-06 09:47:39',1),(1,73,935,'2012-10-06 09:47:39',1),(1,87,936,'2012-10-06 09:47:39',1),(1,160,937,'2012-10-06 09:47:39',1),(1,16,937,'2012-10-06 09:47:39',1),(1,14,938,'2012-10-06 09:47:43',1),(1,15,938,'2012-10-06 09:47:43',1),(1,55,938,'2012-10-06 09:47:43',1),(1,112,938,'2012-10-06 09:47:43',1),(1,117,939,'2012-10-06 09:47:43',1),(1,166,939,'2012-10-06 09:47:43',1),(1,107,939,'2012-10-06 09:47:43',1),(1,14,939,'2012-10-06 09:47:43',1),(1,15,939,'2012-10-06 09:47:43',1),(1,55,939,'2012-10-06 09:47:43',1),(1,112,939,'2012-10-06 09:47:43',1),(1,53,939,'2012-10-06 09:47:43',1),(1,196,934,'2012-10-06 10:17:39',1),(1,157,934,'2012-10-06 10:17:39',1),(1,175,934,'2012-10-06 10:17:39',1),(1,54,934,'2012-10-06 10:17:39',1),(1,83,934,'2012-10-06 10:17:39',1),(1,159,934,'2012-10-06 10:17:39',1),(1,144,934,'2012-10-06 10:17:39',1),(1,73,934,'2012-10-06 10:17:39',1),(1,66,897,'2012-10-06 10:46:37',NULL),(1,241,897,'2012-10-06 10:46:37',NULL),(1,206,897,'2012-10-06 10:46:37',NULL),(1,49,897,'2012-10-06 10:46:37',NULL),(1,188,970,'2012-10-07 07:16:33',1),(1,204,970,'2012-10-07 07:16:33',1),(1,200,970,'2012-10-07 07:16:33',1),(1,49,970,'2012-10-07 07:16:33',1),(1,241,960,'2012-10-07 07:16:35',1),(1,49,961,'2012-10-07 07:16:35',1),(1,212,942,'2012-10-07 07:16:37',1),(1,124,972,'2012-10-07 07:16:40',1),(1,18,972,'2012-10-07 07:16:40',1),(1,48,972,'2012-10-07 07:16:40',1),(1,245,972,'2012-10-07 07:16:40',1),(1,220,972,'2012-10-07 07:16:40',1),(1,26,972,'2012-10-07 07:16:40',1),(1,151,972,'2012-10-07 07:16:40',1),(1,164,972,'2012-10-07 07:16:40',1),(1,225,972,'2012-10-07 07:16:40',1),(1,12,972,'2012-10-07 07:16:40',1),(1,235,972,'2012-10-07 07:16:40',1),(1,99,972,'2012-10-07 07:16:40',1),(1,180,972,'2012-10-07 07:16:40',1),(1,22,972,'2012-10-07 07:16:40',1),(1,29,972,'2012-10-07 07:16:40',1),(1,62,972,'2012-10-07 07:16:40',1),(1,207,940,'2012-10-07 07:16:42',1),(1,4,941,'2012-10-07 07:16:48',1),(1,11,964,'2012-10-07 07:16:48',1),(1,112,964,'2012-10-07 07:16:48',1),(1,142,964,'2012-10-07 07:16:48',1),(1,132,964,'2012-10-07 07:16:48',1),(1,212,943,'2012-10-07 07:16:48',1),(1,6,945,'2012-10-07 07:16:51',1),(1,4,945,'2012-10-07 07:16:51',1),(1,82,965,'2012-10-07 07:16:51',1),(1,11,965,'2012-10-07 07:16:51',1),(1,112,965,'2012-10-07 07:16:51',1),(1,142,965,'2012-10-07 07:16:51',1),(1,206,944,'2012-10-07 07:16:53',1),(1,212,977,'2012-10-07 07:16:56',1),(1,204,946,'2012-10-07 07:16:56',1),(1,200,946,'2012-10-07 07:16:56',1),(1,207,948,'2012-10-07 07:17:01',1),(1,212,948,'2012-10-07 07:17:01',1),(1,49,947,'2012-10-07 07:17:01',1),(1,207,947,'2012-10-07 07:17:01',1),(1,132,949,'2012-10-07 07:17:04',1),(1,206,949,'2012-10-07 07:17:04',1),(1,241,950,'2012-10-07 07:17:12',1),(1,206,950,'2012-10-07 07:17:12',1),(1,49,950,'2012-10-07 07:17:12',1),(1,207,950,'2012-10-07 07:17:12',1),(1,206,951,'2012-10-07 07:17:12',1),(1,49,951,'2012-10-07 07:17:12',1),(1,207,951,'2012-10-07 07:17:12',1),(1,212,951,'2012-10-07 07:17:12',1),(1,206,952,'2012-10-07 07:17:14',1),(1,49,952,'2012-10-07 07:17:14',1),(1,207,952,'2012-10-07 07:17:14',1),(1,6,952,'2012-10-07 07:17:14',1),(1,82,953,'2012-10-07 07:17:14',1),(1,11,953,'2012-10-07 07:17:14',1),(1,112,953,'2012-10-07 07:17:14',1),(1,49,953,'2012-10-07 07:17:14',1),(1,172,985,'2012-10-07 07:17:19',1),(1,63,985,'2012-10-07 07:17:19',1),(1,190,985,'2012-10-07 07:17:19',1),(1,85,985,'2012-10-07 07:17:19',1),(1,32,985,'2012-10-07 07:17:19',1),(1,114,985,'2012-10-07 07:17:19',1),(1,192,985,'2012-10-07 07:17:19',1),(1,59,985,'2012-10-07 07:17:19',1),(1,115,985,'2012-10-07 07:17:19',1),(1,87,985,'2012-10-07 07:17:19',1),(1,166,985,'2012-10-07 07:17:19',1),(1,14,985,'2012-10-07 07:17:19',1),(1,15,985,'2012-10-07 07:17:19',1),(1,55,985,'2012-10-07 07:17:19',1),(1,53,985,'2012-10-07 07:17:19',1),(1,76,985,'2012-10-07 07:17:19',1),(1,132,954,'2012-10-07 07:17:22',1),(1,204,954,'2012-10-07 07:17:22',1),(1,200,954,'2012-10-07 07:17:22',1),(1,241,954,'2012-10-07 07:17:22',1),(1,112,956,'2012-10-07 07:17:26',1),(1,185,956,'2012-10-07 07:17:26',1),(1,108,956,'2012-10-07 07:17:26',1),(1,142,956,'2012-10-07 07:17:26',1),(1,7,956,'2012-10-07 07:17:26',1),(1,132,956,'2012-10-07 07:17:26',1),(1,204,956,'2012-10-07 07:17:26',1),(1,200,956,'2012-10-07 07:17:26',1),(1,185,955,'2012-10-07 07:17:26',1),(1,108,955,'2012-10-07 07:17:26',1),(1,142,955,'2012-10-07 07:17:26',1),(1,7,955,'2012-10-07 07:17:26',1),(1,132,955,'2012-10-07 07:17:26',1),(1,204,955,'2012-10-07 07:17:26',1),(1,200,955,'2012-10-07 07:17:26',1),(1,241,955,'2012-10-07 07:17:26',1),(1,185,957,'2012-10-07 07:17:26',1),(1,108,957,'2012-10-07 07:17:26',1),(1,142,957,'2012-10-07 07:17:26',1),(1,7,957,'2012-10-07 07:17:26',1),(1,132,957,'2012-10-07 07:17:26',1),(1,204,957,'2012-10-07 07:17:26',1),(1,200,957,'2012-10-07 07:17:26',1),(1,241,957,'2012-10-07 07:17:26',1),(1,108,958,'2012-10-07 07:17:26',1),(1,142,958,'2012-10-07 07:17:26',1),(1,7,958,'2012-10-07 07:17:26',1),(1,132,958,'2012-10-07 07:17:26',1),(1,204,958,'2012-10-07 07:17:26',1),(1,200,958,'2012-10-07 07:17:26',1),(1,241,958,'2012-10-07 07:17:26',1),(1,206,958,'2012-10-07 07:17:26',1),(1,108,959,'2012-10-07 07:17:28',1),(1,142,959,'2012-10-07 07:17:28',1),(1,7,959,'2012-10-07 07:17:28',1),(1,132,959,'2012-10-07 07:17:28',1),(1,204,959,'2012-10-07 07:17:28',1),(1,200,959,'2012-10-07 07:17:28',1),(1,241,959,'2012-10-07 07:17:28',1),(1,206,959,'2012-10-07 07:17:28',1),(1,108,969,'2012-10-07 07:46:31',1),(1,204,969,'2012-10-07 07:46:31',1),(1,132,988,'2012-10-07 07:46:31',1),(1,212,988,'2012-10-07 07:46:31',1),(1,59,971,'2012-10-07 07:46:34',1),(1,115,971,'2012-10-07 07:46:34',1),(1,87,971,'2012-10-07 07:46:34',1),(1,117,971,'2012-10-07 07:46:34',1),(1,166,971,'2012-10-07 07:46:34',1),(1,14,971,'2012-10-07 07:46:34',1),(1,15,971,'2012-10-07 07:46:34',1),(1,55,971,'2012-10-07 07:46:34',1),(1,207,986,'2012-10-07 07:46:34',1),(1,200,987,'2012-10-07 07:46:34',1),(1,204,962,'2012-10-07 07:46:36',1),(1,200,962,'2012-10-07 07:46:36',1),(1,241,963,'2012-10-07 07:46:36',1),(1,207,963,'2012-10-07 07:46:36',1),(1,59,967,'2012-10-07 07:46:42',1),(1,115,967,'2012-10-07 07:46:42',1),(1,87,967,'2012-10-07 07:46:42',1),(1,117,967,'2012-10-07 07:46:42',1),(1,166,967,'2012-10-07 07:46:42',1),(1,14,967,'2012-10-07 07:46:42',1),(1,15,967,'2012-10-07 07:46:42',1),(1,55,967,'2012-10-07 07:46:42',1),(1,82,974,'2012-10-07 07:46:44',1),(1,132,974,'2012-10-07 07:46:44',1),(1,49,973,'2012-10-07 07:46:44',1),(1,136,975,'2012-10-07 07:46:51',1),(1,82,975,'2012-10-07 07:46:51',1),(1,132,975,'2012-10-07 07:46:51',1),(1,206,975,'2012-10-07 07:46:51',1),(1,172,966,'2012-10-07 07:46:55',1),(1,63,966,'2012-10-07 07:46:55',1),(1,190,966,'2012-10-07 07:46:55',1),(1,85,966,'2012-10-07 07:46:55',1),(1,17,966,'2012-10-07 07:46:55',1),(1,32,966,'2012-10-07 07:46:55',1),(1,114,966,'2012-10-07 07:46:55',1),(1,192,966,'2012-10-07 07:46:55',1),(1,53,994,'2012-10-07 07:46:55',1),(1,76,994,'2012-10-07 07:46:55',1),(1,171,976,'2012-10-07 07:46:56',1),(1,172,976,'2012-10-07 07:46:56',1),(1,63,976,'2012-10-07 07:46:56',1),(1,190,976,'2012-10-07 07:46:56',1),(1,85,976,'2012-10-07 07:46:56',1),(1,17,976,'2012-10-07 07:46:56',1),(1,32,976,'2012-10-07 07:46:56',1),(1,114,976,'2012-10-07 07:46:56',1),(1,106,978,'2012-10-07 07:46:58',1),(1,241,978,'2012-10-07 07:46:58',1),(1,18,997,'2012-10-07 07:47:02',1),(1,48,997,'2012-10-07 07:47:02',1),(1,245,997,'2012-10-07 07:47:02',1),(1,220,997,'2012-10-07 07:47:02',1),(1,26,997,'2012-10-07 07:47:02',1),(1,151,997,'2012-10-07 07:47:02',1),(1,164,997,'2012-10-07 07:47:02',1),(1,225,997,'2012-10-07 07:47:02',1),(1,12,997,'2012-10-07 07:47:02',1),(1,235,997,'2012-10-07 07:47:02',1),(1,99,997,'2012-10-07 07:47:02',1),(1,180,997,'2012-10-07 07:47:02',1),(1,22,997,'2012-10-07 07:47:02',1),(1,29,997,'2012-10-07 07:47:02',1),(1,62,997,'2012-10-07 07:47:02',1),(1,106,997,'2012-10-07 07:47:02',1),(1,55,998,'2012-10-07 07:47:08',1),(1,53,998,'2012-10-07 07:47:08',1),(1,122,979,'2012-10-07 07:47:08',1),(1,188,979,'2012-10-07 07:47:08',1),(1,7,979,'2012-10-07 07:47:08',1),(1,132,979,'2012-10-07 07:47:08',1),(1,192,980,'2012-10-07 07:47:09',1),(1,59,980,'2012-10-07 07:47:09',1),(1,115,980,'2012-10-07 07:47:09',1),(1,87,980,'2012-10-07 07:47:09',1),(1,117,980,'2012-10-07 07:47:09',1),(1,166,980,'2012-10-07 07:47:09',1),(1,14,980,'2012-10-07 07:47:09',1),(1,15,980,'2012-10-07 07:47:09',1),(1,172,1001,'2012-10-07 07:47:11',1),(1,63,1001,'2012-10-07 07:47:11',1),(1,190,1001,'2012-10-07 07:47:11',1),(1,85,1001,'2012-10-07 07:47:11',1),(1,32,1001,'2012-10-07 07:47:11',1),(1,114,1001,'2012-10-07 07:47:11',1),(1,192,1001,'2012-10-07 07:47:11',1),(1,59,1001,'2012-10-07 07:47:11',1),(1,115,1001,'2012-10-07 07:47:11',1),(1,87,1001,'2012-10-07 07:47:11',1),(1,166,1001,'2012-10-07 07:47:11',1),(1,14,1001,'2012-10-07 07:47:11',1),(1,15,1001,'2012-10-07 07:47:11',1),(1,55,1001,'2012-10-07 07:47:11',1),(1,53,1001,'2012-10-07 07:47:11',1),(1,76,1001,'2012-10-07 07:47:11',1),(1,212,981,'2012-10-07 07:47:11',1),(1,108,982,'2012-10-07 07:47:13',1),(1,204,982,'2012-10-07 07:47:13',1),(1,191,983,'2012-10-07 07:47:14',1),(1,185,983,'2012-10-07 07:47:14',1),(1,204,983,'2012-10-07 07:47:14',1),(1,200,983,'2012-10-07 07:47:14',1),(1,171,984,'2012-10-07 07:47:21',1),(1,172,984,'2012-10-07 07:47:21',1),(1,63,984,'2012-10-07 07:47:21',1),(1,190,984,'2012-10-07 07:47:21',1),(1,85,984,'2012-10-07 07:47:21',1),(1,17,984,'2012-10-07 07:47:21',1),(1,32,984,'2012-10-07 07:47:21',1),(1,114,984,'2012-10-07 07:47:21',1),(1,206,1002,'2012-10-07 07:47:24',1),(1,53,1003,'2012-10-07 07:47:24',1),(1,76,1003,'2012-10-07 07:47:24',1),(1,97,1006,'2012-10-07 07:47:31',1),(1,18,1006,'2012-10-07 07:47:31',1),(1,48,1006,'2012-10-07 07:47:31',1),(1,245,1006,'2012-10-07 07:47:31',1),(1,220,1006,'2012-10-07 07:47:31',1),(1,26,1006,'2012-10-07 07:47:31',1),(1,151,1006,'2012-10-07 07:47:31',1),(1,164,1006,'2012-10-07 07:47:31',1),(1,225,1006,'2012-10-07 07:47:31',1),(1,12,1006,'2012-10-07 07:47:31',1),(1,235,1006,'2012-10-07 07:47:31',1),(1,99,1006,'2012-10-07 07:47:31',1),(1,180,1006,'2012-10-07 07:47:31',1),(1,22,1006,'2012-10-07 07:47:31',1),(1,29,1006,'2012-10-07 07:47:31',1),(1,62,1006,'2012-10-07 07:47:31',1),(1,7,1007,'2012-10-07 07:47:31',1),(1,108,1008,'2012-10-07 07:47:32',1),(1,7,1008,'2012-10-07 07:47:32',1),(1,206,989,'2012-10-07 08:16:33',1),(1,207,989,'2012-10-07 08:16:33',1),(1,184,968,'2012-10-07 08:16:33',NULL),(1,11,968,'2012-10-07 08:16:33',NULL),(1,112,968,'2012-10-07 08:16:33',NULL),(1,142,968,'2012-10-07 08:16:33',NULL),(1,97,992,'2012-10-07 08:16:42',1),(1,18,992,'2012-10-07 08:16:42',1),(1,48,992,'2012-10-07 08:16:42',1),(1,245,992,'2012-10-07 08:16:42',1),(1,220,992,'2012-10-07 08:16:42',1),(1,26,992,'2012-10-07 08:16:42',1),(1,151,992,'2012-10-07 08:16:42',1),(1,164,992,'2012-10-07 08:16:42',1),(1,108,991,'2012-10-07 08:16:48',1),(1,7,991,'2012-10-07 08:16:48',1),(1,132,991,'2012-10-07 08:16:48',1),(1,212,991,'2012-10-07 08:16:48',1),(1,55,990,'2012-10-07 08:16:48',1),(1,53,990,'2012-10-07 08:16:48',1),(1,203,990,'2012-10-07 08:16:48',1),(1,76,990,'2012-10-07 08:16:48',1),(1,192,993,'2012-10-07 08:16:50',1),(1,59,993,'2012-10-07 08:16:50',1),(1,115,993,'2012-10-07 08:16:50',1),(1,87,993,'2012-10-07 08:16:50',1),(1,117,993,'2012-10-07 08:16:50',1),(1,166,993,'2012-10-07 08:16:50',1),(1,14,993,'2012-10-07 08:16:50',1),(1,15,993,'2012-10-07 08:16:50',1),(1,114,995,'2012-10-07 08:16:58',1),(1,185,995,'2012-10-07 08:16:58',1),(1,204,995,'2012-10-07 08:16:58',1),(1,200,995,'2012-10-07 08:16:58',1),(1,225,996,'2012-10-07 08:17:03',1),(1,12,996,'2012-10-07 08:17:03',1),(1,235,996,'2012-10-07 08:17:03',1),(1,99,996,'2012-10-07 08:17:03',1),(1,180,996,'2012-10-07 08:17:03',1),(1,22,996,'2012-10-07 08:17:03',1),(1,29,996,'2012-10-07 08:17:03',1),(1,62,996,'2012-10-07 08:17:03',1),(1,164,999,'2012-10-07 08:17:09',1),(1,225,999,'2012-10-07 08:17:09',1),(1,12,999,'2012-10-07 08:17:09',1),(1,235,999,'2012-10-07 08:17:09',1),(1,171,1000,'2012-10-07 08:17:11',1),(1,172,1000,'2012-10-07 08:17:11',1),(1,63,1000,'2012-10-07 08:17:11',1),(1,190,1000,'2012-10-07 08:17:11',1),(1,85,1000,'2012-10-07 08:17:11',1),(1,17,1000,'2012-10-07 08:17:11',1),(1,191,1000,'2012-10-07 08:17:11',1),(1,32,1000,'2012-10-07 08:17:11',1),(1,85,1004,'2012-10-07 08:17:25',1),(1,17,1004,'2012-10-07 08:17:25',1),(1,191,1004,'2012-10-07 08:17:25',1),(1,32,1004,'2012-10-07 08:17:25',1),(1,99,1009,'2012-10-07 08:17:35',1),(1,180,1009,'2012-10-07 08:17:35',1),(1,22,1009,'2012-10-07 08:17:35',1),(1,29,1009,'2012-10-07 08:17:35',1),(1,97,1010,'2012-10-07 08:17:37',1),(1,82,1010,'2012-10-07 08:17:37',1),(1,18,1010,'2012-10-07 08:17:37',1),(1,48,1010,'2012-10-07 08:17:37',1),(1,245,1010,'2012-10-07 08:17:37',1),(1,220,1010,'2012-10-07 08:17:37',1),(1,26,1010,'2012-10-07 08:17:37',1),(1,151,1010,'2012-10-07 08:17:37',1),(1,164,1005,'2012-10-07 08:47:28',1),(1,225,1005,'2012-10-07 08:47:28',1),(1,12,1005,'2012-10-07 08:47:28',1),(1,235,1005,'2012-10-07 08:47:28',1),(1,171,1005,'2012-10-07 08:47:28',1),(1,172,1005,'2012-10-07 08:47:28',1),(1,63,1005,'2012-10-07 08:47:28',1),(1,190,1005,'2012-10-07 08:47:28',1),(1,214,1013,'2012-10-08 00:46:17',1),(1,67,1014,'2012-10-08 00:46:22',1),(1,210,1011,'2012-10-08 01:16:21',1),(1,210,1012,'2012-10-08 01:16:22',1),(1,210,1015,'2012-10-08 01:16:25',1),(1,67,1032,'2012-10-08 01:46:11',1),(1,118,1031,'2012-10-08 02:16:12',1),(1,77,1017,'2012-10-08 02:16:26',1),(1,67,1017,'2012-10-08 02:16:26',1),(1,67,1044,'2012-10-08 02:46:26',1),(1,67,1016,'2012-10-08 02:46:28',1),(1,205,1016,'2012-10-08 02:46:28',1),(1,205,1018,'2012-10-08 02:46:32',1),(1,77,1018,'2012-10-08 02:46:32',1),(1,67,1048,'2012-10-08 02:46:32',1),(1,221,1026,'2012-10-08 02:46:49',1),(1,222,1026,'2012-10-08 02:46:49',1),(1,202,1026,'2012-10-08 02:46:49',1),(1,213,1026,'2012-10-08 02:46:49',1),(1,78,1026,'2012-10-08 02:46:49',1),(1,70,1026,'2012-10-08 02:46:49',1),(1,56,1026,'2012-10-08 02:46:49',1),(1,224,1026,'2012-10-08 02:46:49',1),(1,56,1027,'2012-10-08 02:46:54',1),(1,224,1027,'2012-10-08 02:46:54',1),(1,221,1027,'2012-10-08 02:46:54',1),(1,222,1027,'2012-10-08 02:46:54',1),(1,118,1027,'2012-10-08 02:46:54',1),(1,202,1027,'2012-10-08 02:46:54',1),(1,77,1027,'2012-10-08 02:46:54',1),(1,213,1027,'2012-10-08 02:46:54',1),(1,56,1029,'2012-10-08 02:46:54',1),(1,224,1029,'2012-10-08 02:46:54',1),(1,221,1029,'2012-10-08 02:46:54',1),(1,222,1029,'2012-10-08 02:46:54',1),(1,205,1029,'2012-10-08 02:46:54',1),(1,77,1029,'2012-10-08 02:46:54',1),(1,213,1029,'2012-10-08 02:46:54',1),(1,214,1029,'2012-10-08 02:46:54',1),(1,78,1033,'2012-10-08 03:16:15',1),(1,214,1033,'2012-10-08 03:16:15',1),(1,78,1040,'2012-10-08 03:16:18',1),(1,70,1040,'2012-10-08 03:16:18',1),(1,205,1041,'2012-10-08 03:16:19',1),(1,213,1041,'2012-10-08 03:16:19',1),(1,56,1041,'2012-10-08 03:16:19',1),(1,224,1041,'2012-10-08 03:16:19',1),(1,70,1042,'2012-10-08 03:16:20',1),(1,56,1042,'2012-10-08 03:16:20',1),(1,224,1042,'2012-10-08 03:16:20',1),(1,222,1042,'2012-10-08 03:16:20',1),(1,205,1042,'2012-10-08 03:16:20',1),(1,77,1042,'2012-10-08 03:16:20',1),(1,67,1042,'2012-10-08 03:16:20',1),(1,213,1042,'2012-10-08 03:16:20',1),(1,70,1037,'2012-10-08 03:16:26',1),(1,56,1037,'2012-10-08 03:16:26',1),(1,224,1037,'2012-10-08 03:16:26',1),(1,222,1037,'2012-10-08 03:16:26',1),(1,205,1037,'2012-10-08 03:16:26',1),(1,77,1037,'2012-10-08 03:16:26',1),(1,67,1037,'2012-10-08 03:16:26',1),(1,213,1037,'2012-10-08 03:16:26',1),(1,70,1038,'2012-10-08 03:16:28',1),(1,56,1038,'2012-10-08 03:16:28',1),(1,224,1038,'2012-10-08 03:16:28',1),(1,222,1038,'2012-10-08 03:16:28',1),(1,205,1038,'2012-10-08 03:16:28',1),(1,77,1038,'2012-10-08 03:16:28',1),(1,67,1038,'2012-10-08 03:16:28',1),(1,213,1038,'2012-10-08 03:16:28',1),(1,213,1045,'2012-10-08 03:16:31',1),(1,214,1045,'2012-10-08 03:16:31',1),(1,224,1047,'2012-10-08 03:16:35',1),(1,222,1047,'2012-10-08 03:16:35',1),(1,205,1047,'2012-10-08 03:16:35',1),(1,77,1047,'2012-10-08 03:16:35',1),(1,67,1047,'2012-10-08 03:16:35',1),(1,213,1047,'2012-10-08 03:16:35',1),(1,70,1047,'2012-10-08 03:16:35',1),(1,56,1047,'2012-10-08 03:16:35',1),(1,78,1019,'2012-10-08 03:16:40',1),(1,70,1019,'2012-10-08 03:16:40',1),(1,78,1020,'2012-10-08 03:16:40',1),(1,70,1020,'2012-10-08 03:16:40',1),(1,213,1021,'2012-10-08 03:16:40',1),(1,56,1021,'2012-10-08 03:16:40',1),(1,224,1021,'2012-10-08 03:16:40',1),(1,221,1021,'2012-10-08 03:16:40',1),(1,67,1022,'2012-10-08 03:16:47',1),(1,213,1022,'2012-10-08 03:16:47',1),(1,56,1022,'2012-10-08 03:16:47',1),(1,224,1022,'2012-10-08 03:16:47',1),(1,70,1051,'2012-10-08 03:16:47',1),(1,56,1051,'2012-10-08 03:16:47',1),(1,224,1051,'2012-10-08 03:16:47',1),(1,222,1051,'2012-10-08 03:16:47',1),(1,135,1051,'2012-10-08 03:16:47',1),(1,205,1051,'2012-10-08 03:16:47',1),(1,77,1051,'2012-10-08 03:16:47',1),(1,67,1051,'2012-10-08 03:16:47',1),(1,214,1052,'2012-10-08 03:16:47',1),(1,213,1024,'2012-10-08 03:16:55',1),(1,56,1024,'2012-10-08 03:16:55',1),(1,224,1024,'2012-10-08 03:16:55',1),(1,221,1024,'2012-10-08 03:16:55',1),(1,56,1028,'2012-10-08 03:16:59',1),(1,224,1028,'2012-10-08 03:16:59',1),(1,221,1028,'2012-10-08 03:16:59',1),(1,222,1028,'2012-10-08 03:16:59',1),(1,205,1028,'2012-10-08 03:16:59',1),(1,77,1028,'2012-10-08 03:16:59',1),(1,67,1028,'2012-10-08 03:16:59',1),(1,213,1028,'2012-10-08 03:16:59',1),(1,56,1030,'2012-10-08 03:17:01',1),(1,224,1030,'2012-10-08 03:17:01',1),(1,222,1030,'2012-10-08 03:17:01',1),(1,205,1030,'2012-10-08 03:17:01',1),(1,77,1030,'2012-10-08 03:17:01',1),(1,213,1030,'2012-10-08 03:17:01',1),(1,78,1030,'2012-10-08 03:17:01',1),(1,214,1030,'2012-10-08 03:17:01',1),(1,104,1034,'2012-10-08 03:46:16',1),(1,213,1034,'2012-10-08 03:46:16',1),(1,78,1058,'2012-10-08 03:46:17',1),(1,81,1057,'2012-10-08 03:46:17',1),(1,104,1049,'2012-10-08 03:46:38',1),(1,213,1049,'2012-10-08 03:46:38',1),(1,104,1069,'2012-10-08 03:46:41',1),(1,202,1069,'2012-10-08 03:46:41',1),(1,104,1070,'2012-10-08 03:46:44',1),(1,81,1070,'2012-10-08 03:46:44',1),(1,94,1070,'2012-10-08 03:46:44',1),(1,202,1070,'2012-10-08 03:46:44',1),(1,213,1071,'2012-10-08 03:46:45',1),(1,160,1071,'2012-10-08 03:46:45',1),(1,133,1071,'2012-10-08 03:46:45',1),(1,25,1071,'2012-10-08 03:46:45',1),(1,183,1071,'2012-10-08 03:46:45',1),(1,134,1071,'2012-10-08 03:46:45',1),(1,246,1071,'2012-10-08 03:46:45',1),(1,199,1071,'2012-10-08 03:46:45',1),(1,78,1073,'2012-10-08 03:46:53',1),(1,67,1023,'2012-10-08 03:46:56',1),(1,104,1023,'2012-10-08 03:46:56',1),(1,213,1023,'2012-10-08 03:46:56',1),(1,81,1023,'2012-10-08 03:46:56',1),(1,224,1055,'2012-10-08 03:46:59',1),(1,222,1055,'2012-10-08 03:46:59',1),(1,77,1055,'2012-10-08 03:46:59',1),(1,67,1055,'2012-10-08 03:46:59',1),(1,213,1055,'2012-10-08 03:46:59',1),(1,214,1055,'2012-10-08 03:46:59',1),(1,70,1055,'2012-10-08 03:46:59',1),(1,56,1055,'2012-10-08 03:46:59',1),(1,78,1078,'2012-10-08 03:47:02',1),(1,81,1079,'2012-10-08 03:47:04',1),(1,104,1079,'2012-10-08 03:47:04',1),(1,213,1081,'2012-10-08 03:47:08',1),(1,160,1081,'2012-10-08 03:47:08',1),(1,133,1081,'2012-10-08 03:47:08',1),(1,25,1081,'2012-10-08 03:47:08',1),(1,183,1081,'2012-10-08 03:47:08',1),(1,134,1081,'2012-10-08 03:47:08',1),(1,246,1081,'2012-10-08 03:47:08',1),(1,199,1081,'2012-10-08 03:47:08',1),(1,104,1059,'2012-10-08 04:16:21',1),(1,81,1059,'2012-10-08 04:16:21',1),(1,221,1035,'2012-10-08 04:16:28',1),(1,222,1035,'2012-10-08 04:16:28',1),(1,6,1035,'2012-10-08 04:16:28',1),(1,4,1035,'2012-10-08 04:16:28',1),(1,104,1036,'2012-10-08 04:16:28',1),(1,213,1036,'2012-10-08 04:16:28',1),(1,81,1036,'2012-10-08 04:16:28',1),(1,69,1036,'2012-10-08 04:16:28',1),(1,93,1063,'2012-10-08 04:16:28',1),(1,75,1063,'2012-10-08 04:16:28',1),(1,156,1063,'2012-10-08 04:16:28',1),(1,168,1063,'2012-10-08 04:16:28',1),(1,65,1063,'2012-10-08 04:16:28',1),(1,242,1063,'2012-10-08 04:16:28',1),(1,110,1063,'2012-10-08 04:16:28',1),(1,201,1063,'2012-10-08 04:16:28',1),(1,25,1043,'2012-10-08 04:16:31',1),(1,183,1043,'2012-10-08 04:16:31',1),(1,134,1043,'2012-10-08 04:16:31',1),(1,246,1043,'2012-10-08 04:16:31',1),(1,136,1043,'2012-10-08 04:16:31',1),(1,93,1043,'2012-10-08 04:16:31',1),(1,75,1043,'2012-10-08 04:16:31',1),(1,156,1043,'2012-10-08 04:16:31',1),(1,168,1043,'2012-10-08 04:16:31',1),(1,65,1043,'2012-10-08 04:16:31',1),(1,242,1043,'2012-10-08 04:16:31',1),(1,110,1043,'2012-10-08 04:16:31',1),(1,202,1043,'2012-10-08 04:16:31',1),(1,199,1043,'2012-10-08 04:16:31',1),(1,201,1043,'2012-10-08 04:16:31',1),(1,78,1043,'2012-10-08 04:16:31',1),(1,52,1064,'2012-10-08 04:16:31',1),(1,214,1064,'2012-10-08 04:16:31',1),(1,70,1064,'2012-10-08 04:16:31',1),(1,56,1064,'2012-10-08 04:16:31',1),(1,224,1064,'2012-10-08 04:16:31',1),(1,222,1064,'2012-10-08 04:16:31',1),(1,205,1064,'2012-10-08 04:16:31',1),(1,77,1064,'2012-10-08 04:16:31',1),(1,104,1046,'2012-10-08 04:16:34',1),(1,213,1046,'2012-10-08 04:16:34',1),(1,81,1046,'2012-10-08 04:16:34',1),(1,69,1046,'2012-10-08 04:16:34',1),(1,205,1067,'2012-10-08 04:16:39',1),(1,77,1067,'2012-10-08 04:16:39',1),(1,52,1067,'2012-10-08 04:16:39',1),(1,78,1067,'2012-10-08 04:16:39',1),(1,214,1067,'2012-10-08 04:16:39',1),(1,70,1067,'2012-10-08 04:16:39',1),(1,56,1067,'2012-10-08 04:16:39',1),(1,224,1067,'2012-10-08 04:16:39',1),(1,6,1065,'2012-10-08 04:16:39',1),(1,4,1065,'2012-10-08 04:16:39',1),(1,205,1050,'2012-10-08 04:16:42',1),(1,77,1050,'2012-10-08 04:16:42',1),(1,52,1050,'2012-10-08 04:16:42',1),(1,78,1050,'2012-10-08 04:16:42',1),(1,221,1053,'2012-10-08 04:16:49',1),(1,213,1053,'2012-10-08 04:16:49',1),(1,221,1025,'2012-10-08 04:16:58',1),(1,6,1025,'2012-10-08 04:16:58',1),(1,4,1025,'2012-10-08 04:16:58',1),(1,78,1025,'2012-10-08 04:16:58',1),(1,25,1056,'2012-10-08 04:17:01',1),(1,183,1056,'2012-10-08 04:17:01',1),(1,134,1056,'2012-10-08 04:17:01',1),(1,246,1056,'2012-10-08 04:17:01',1),(1,136,1056,'2012-10-08 04:17:01',1),(1,93,1056,'2012-10-08 04:17:01',1),(1,75,1056,'2012-10-08 04:17:01',1),(1,156,1056,'2012-10-08 04:17:01',1),(1,168,1056,'2012-10-08 04:17:01',1),(1,65,1056,'2012-10-08 04:17:01',1),(1,242,1056,'2012-10-08 04:17:01',1),(1,110,1056,'2012-10-08 04:17:01',1),(1,202,1056,'2012-10-08 04:17:01',1),(1,199,1056,'2012-10-08 04:17:01',1),(1,201,1056,'2012-10-08 04:17:01',1),(1,213,1056,'2012-10-08 04:17:01',1),(1,221,1080,'2012-10-08 04:17:05',1),(1,222,1080,'2012-10-08 04:17:05',1),(1,6,1080,'2012-10-08 04:17:05',1),(1,4,1080,'2012-10-08 04:17:05',1),(1,221,1060,'2012-10-08 04:46:27',1),(1,222,1060,'2012-10-08 04:46:27',1),(1,160,1061,'2012-10-08 04:46:27',1),(1,149,1061,'2012-10-08 04:46:27',1),(1,13,1061,'2012-10-08 04:46:27',1),(1,77,1061,'2012-10-08 04:46:27',1),(1,81,1066,'2012-10-08 04:46:40',1),(1,69,1066,'2012-10-08 04:46:40',1),(1,52,1066,'2012-10-08 04:46:40',1),(1,78,1066,'2012-10-08 04:46:40',1),(1,25,1068,'2012-10-08 04:46:43',1),(1,183,1068,'2012-10-08 04:46:43',1),(1,134,1068,'2012-10-08 04:46:43',1),(1,246,1068,'2012-10-08 04:46:43',1),(1,136,1068,'2012-10-08 04:46:43',1),(1,97,1068,'2012-10-08 04:46:43',1),(1,93,1068,'2012-10-08 04:46:43',1),(1,75,1068,'2012-10-08 04:46:43',1),(1,156,1068,'2012-10-08 04:46:43',1),(1,168,1068,'2012-10-08 04:46:43',1),(1,65,1068,'2012-10-08 04:46:43',1),(1,242,1068,'2012-10-08 04:46:43',1),(1,110,1068,'2012-10-08 04:46:43',1),(1,202,1068,'2012-10-08 04:46:43',1),(1,199,1068,'2012-10-08 04:46:43',1),(1,201,1068,'2012-10-08 04:46:43',1),(1,241,1072,'2012-10-08 04:46:50',1),(1,104,1072,'2012-10-08 04:46:50',1),(1,49,1072,'2012-10-08 04:46:50',1),(1,211,1072,'2012-10-08 04:46:50',1),(1,213,1072,'2012-10-08 04:46:50',1),(1,81,1072,'2012-10-08 04:46:50',1),(1,69,1072,'2012-10-08 04:46:50',1),(1,52,1072,'2012-10-08 04:46:50',1),(1,78,1072,'2012-10-08 04:46:50',1),(1,214,1072,'2012-10-08 04:46:50',1),(1,105,1072,'2012-10-08 04:46:50',1),(1,70,1072,'2012-10-08 04:46:50',1),(1,56,1072,'2012-10-08 04:46:50',1),(1,224,1072,'2012-10-08 04:46:50',1),(1,6,1072,'2012-10-08 04:46:50',1),(1,4,1072,'2012-10-08 04:46:50',1),(1,214,1054,'2012-10-08 04:46:53',1),(1,70,1054,'2012-10-08 04:46:53',1),(1,56,1054,'2012-10-08 04:46:53',1),(1,224,1054,'2012-10-08 04:46:53',1),(1,214,1075,'2012-10-08 04:46:57',1),(1,105,1075,'2012-10-08 04:46:57',1),(1,70,1075,'2012-10-08 04:46:57',1),(1,56,1075,'2012-10-08 04:46:57',1),(1,224,1074,'2012-10-08 04:46:57',1),(1,6,1074,'2012-10-08 04:46:57',1),(1,25,1077,'2012-10-08 04:47:04',1),(1,183,1077,'2012-10-08 04:47:04',1),(1,134,1077,'2012-10-08 04:47:04',1),(1,246,1077,'2012-10-08 04:47:04',1),(1,136,1077,'2012-10-08 04:47:04',1),(1,97,1077,'2012-10-08 04:47:04',1),(1,93,1077,'2012-10-08 04:47:04',1),(1,75,1077,'2012-10-08 04:47:04',1),(1,156,1077,'2012-10-08 04:47:04',1),(1,168,1077,'2012-10-08 04:47:04',1),(1,65,1077,'2012-10-08 04:47:04',1),(1,242,1077,'2012-10-08 04:47:04',1),(1,110,1077,'2012-10-08 04:47:04',1),(1,202,1077,'2012-10-08 04:47:04',1),(1,199,1077,'2012-10-08 04:47:04',1),(1,201,1077,'2012-10-08 04:47:04',1),(1,104,1062,'2012-10-08 05:16:28',1),(1,49,1062,'2012-10-08 05:16:28',1),(1,211,1062,'2012-10-08 05:16:28',1),(1,213,1062,'2012-10-08 05:16:28',1),(1,96,1076,'2012-10-08 05:17:01',1),(1,173,1076,'2012-10-08 05:17:01',1),(1,24,1076,'2012-10-08 05:17:01',1),(1,80,1076,'2012-10-08 05:17:01',1),(1,101,1076,'2012-10-08 05:17:01',1),(1,226,1076,'2012-10-08 05:17:01',1),(1,116,1076,'2012-10-08 05:17:01',1),(1,129,1076,'2012-10-08 05:17:01',1),(1,90,1039,'2012-10-08 05:46:25',NULL),(1,92,1039,'2012-10-08 05:46:25',NULL),(1,221,1039,'2012-10-08 05:46:25',NULL),(1,222,1039,'2012-10-08 05:46:25',NULL),(1,6,1082,'2012-10-09 00:46:17',1),(1,134,1083,'2012-10-09 00:46:17',1),(1,134,1084,'2012-10-09 00:46:17',1),(1,4,1085,'2012-10-09 00:46:17',1),(1,4,1087,'2012-10-09 00:46:24',1),(1,134,1087,'2012-10-09 00:46:24',1),(1,4,1088,'2012-10-09 00:46:24',1),(1,134,1088,'2012-10-09 00:46:24',1),(1,6,1086,'2012-10-09 00:46:24',1),(1,4,1089,'2012-10-09 00:46:24',1),(1,134,1089,'2012-10-09 00:46:24',1),(1,6,1091,'2012-10-09 00:46:35',1),(1,4,1091,'2012-10-09 00:46:35',1),(1,6,1090,'2012-10-09 00:46:35',1),(1,134,1090,'2012-10-09 00:46:35',1),(1,134,1102,'2012-10-09 01:46:14',1),(1,134,1103,'2012-10-09 01:46:14',1),(1,6,1105,'2012-10-09 01:46:14',1),(1,4,1105,'2012-10-09 01:46:14',1),(1,6,1104,'2012-10-09 01:46:14',1),(1,4,1104,'2012-10-09 01:46:14',1),(1,160,1106,'2012-10-09 01:46:21',1),(1,133,1106,'2012-10-09 01:46:21',1),(1,183,1106,'2012-10-09 01:46:21',1),(1,134,1106,'2012-10-09 01:46:21',1),(1,6,1108,'2012-10-09 01:46:21',1),(1,4,1108,'2012-10-09 01:46:21',1),(1,247,1108,'2012-10-09 01:46:21',1),(1,94,1108,'2012-10-09 01:46:21',1),(1,160,1108,'2012-10-09 01:46:21',1),(1,133,1108,'2012-10-09 01:46:21',1),(1,183,1108,'2012-10-09 01:46:21',1),(1,134,1108,'2012-10-09 01:46:21',1),(1,247,1092,'2012-10-09 01:46:38',1),(1,94,1092,'2012-10-09 01:46:38',1),(1,160,1092,'2012-10-09 01:46:38',1),(1,133,1092,'2012-10-09 01:46:38',1),(1,6,1093,'2012-10-09 01:46:38',1),(1,4,1093,'2012-10-09 01:46:38',1),(1,247,1093,'2012-10-09 01:46:38',1),(1,94,1093,'2012-10-09 01:46:38',1),(1,6,1095,'2012-10-09 01:46:43',1),(1,4,1095,'2012-10-09 01:46:43',1),(1,247,1095,'2012-10-09 01:46:43',1),(1,94,1095,'2012-10-09 01:46:43',1),(1,160,1096,'2012-10-09 01:46:45',1),(1,133,1096,'2012-10-09 01:46:45',1),(1,183,1096,'2012-10-09 01:46:45',1),(1,134,1096,'2012-10-09 01:46:45',1),(1,6,1097,'2012-10-09 01:46:45',1),(1,4,1097,'2012-10-09 01:46:45',1),(1,247,1097,'2012-10-09 01:46:45',1),(1,94,1097,'2012-10-09 01:46:45',1),(1,160,1097,'2012-10-09 01:46:45',1),(1,133,1097,'2012-10-09 01:46:45',1),(1,183,1097,'2012-10-09 01:46:45',1),(1,135,1097,'2012-10-09 01:46:45',1),(1,6,1098,'2012-10-09 01:46:52',1),(1,4,1098,'2012-10-09 01:46:52',1),(1,247,1098,'2012-10-09 01:46:52',1),(1,94,1098,'2012-10-09 01:46:52',1),(1,160,1098,'2012-10-09 01:46:52',1),(1,133,1098,'2012-10-09 01:46:52',1),(1,183,1098,'2012-10-09 01:46:52',1),(1,134,1098,'2012-10-09 01:46:52',1),(1,6,1101,'2012-10-09 01:46:55',1),(1,4,1101,'2012-10-09 01:46:55',1),(1,247,1101,'2012-10-09 01:46:55',1),(1,94,1101,'2012-10-09 01:46:55',1),(1,160,1101,'2012-10-09 01:46:55',1),(1,133,1101,'2012-10-09 01:46:55',1),(1,183,1101,'2012-10-09 01:46:55',1),(1,134,1101,'2012-10-09 01:46:55',1),(1,6,1100,'2012-10-09 01:46:55',1),(1,4,1100,'2012-10-09 01:46:55',1),(1,247,1100,'2012-10-09 01:46:55',1),(1,94,1100,'2012-10-09 01:46:55',1),(1,160,1100,'2012-10-09 01:46:55',1),(1,133,1100,'2012-10-09 01:46:55',1),(1,183,1100,'2012-10-09 01:46:55',1),(1,134,1100,'2012-10-09 01:46:55',1),(1,6,1099,'2012-10-09 01:46:55',1),(1,4,1099,'2012-10-09 01:46:55',1),(1,247,1099,'2012-10-09 01:46:55',1),(1,94,1099,'2012-10-09 01:46:55',1),(1,160,1099,'2012-10-09 01:46:55',1),(1,133,1099,'2012-10-09 01:46:55',1),(1,183,1099,'2012-10-09 01:46:55',1),(1,134,1099,'2012-10-09 01:46:55',1),(1,216,1107,'2012-10-09 02:16:22',1),(1,223,1107,'2012-10-09 02:16:22',1),(1,228,1107,'2012-10-09 02:16:22',1),(1,6,1107,'2012-10-09 02:16:22',1),(1,102,1109,'2012-10-09 02:16:22',1),(1,216,1109,'2012-10-09 02:16:22',1),(1,214,1109,'2012-10-09 02:16:22',1),(1,105,1109,'2012-10-09 02:16:22',1),(1,223,1109,'2012-10-09 02:16:22',1),(1,228,1109,'2012-10-09 02:16:22',1),(1,6,1109,'2012-10-09 02:16:22',1),(1,4,1109,'2012-10-09 02:16:22',1),(1,216,1094,'2012-10-09 02:16:44',1),(1,223,1094,'2012-10-09 02:16:44',1),(1,228,1094,'2012-10-09 02:16:44',1),(1,6,1094,'2012-10-09 02:16:44',1),(1,6,1111,'2012-10-09 02:46:16',1),(1,4,1111,'2012-10-09 02:46:16',1),(1,64,1115,'2012-10-09 02:46:23',1),(1,6,1116,'2012-10-09 02:46:25',1),(1,4,1116,'2012-10-09 02:46:25',1),(1,6,1119,'2012-10-09 02:46:31',1),(1,6,1120,'2012-10-09 02:46:32',1),(1,4,1120,'2012-10-09 02:46:32',1),(1,6,1124,'2012-10-09 02:46:39',1),(1,4,1124,'2012-10-09 02:46:39',1),(1,4,1123,'2012-10-09 02:46:39',1),(1,64,1112,'2012-10-09 03:16:18',1),(1,228,1112,'2012-10-09 03:16:18',1),(1,6,1112,'2012-10-09 03:16:18',1),(1,4,1112,'2012-10-09 03:16:18',1),(1,64,1110,'2012-10-09 04:16:21',NULL),(1,102,1110,'2012-10-09 04:16:21',NULL),(1,6,1110,'2012-10-09 04:16:21',NULL),(1,4,1110,'2012-10-09 04:16:21',NULL),(1,41,1129,'2012-10-09 04:46:20',1),(1,6,1130,'2012-10-09 04:46:20',1),(1,4,1130,'2012-10-09 04:46:20',1),(1,228,1128,'2012-10-09 04:46:20',1),(1,6,1131,'2012-10-09 04:46:20',1),(1,4,1131,'2012-10-09 04:46:20',1),(1,102,1117,'2012-10-09 04:46:32',1),(1,43,1117,'2012-10-09 04:46:32',1),(1,6,1117,'2012-10-09 04:46:32',1),(1,4,1117,'2012-10-09 04:46:32',1),(1,6,1136,'2012-10-09 04:46:36',1),(1,4,1136,'2012-10-09 04:46:36',1),(1,124,1140,'2012-10-09 04:46:46',1),(1,41,1140,'2012-10-09 04:46:46',1),(1,102,1144,'2012-10-09 04:46:53',1),(1,228,1113,'2012-10-09 05:16:24',1),(1,124,1113,'2012-10-09 05:16:24',1),(1,41,1113,'2012-10-09 05:16:24',1),(1,43,1113,'2012-10-09 05:16:24',1),(1,102,1113,'2012-10-09 05:16:24',1),(1,78,1113,'2012-10-09 05:16:24',1),(1,6,1113,'2012-10-09 05:16:24',1),(1,4,1113,'2012-10-09 05:16:24',1),(1,41,1118,'2012-10-09 05:16:37',1),(1,43,1118,'2012-10-09 05:16:37',1),(1,64,1118,'2012-10-09 05:16:37',1),(1,102,1118,'2012-10-09 05:16:37',1),(1,78,1118,'2012-10-09 05:16:37',1),(1,228,1118,'2012-10-09 05:16:37',1),(1,6,1118,'2012-10-09 05:16:37',1),(1,4,1118,'2012-10-09 05:16:37',1),(1,41,1122,'2012-10-09 05:16:47',1),(1,43,1122,'2012-10-09 05:16:47',1),(1,64,1122,'2012-10-09 05:16:47',1),(1,102,1122,'2012-10-09 05:16:47',1),(1,78,1122,'2012-10-09 05:16:47',1),(1,228,1122,'2012-10-09 05:16:47',1),(1,6,1122,'2012-10-09 05:16:47',1),(1,4,1122,'2012-10-09 05:16:47',1),(1,41,1126,'2012-10-09 05:16:53',1),(1,43,1126,'2012-10-09 05:16:53',1),(1,64,1126,'2012-10-09 05:16:53',1),(1,102,1126,'2012-10-09 05:16:53',1),(1,78,1126,'2012-10-09 05:16:53',1),(1,228,1126,'2012-10-09 05:16:53',1),(1,6,1126,'2012-10-09 05:16:53',1),(1,4,1126,'2012-10-09 05:16:53',1),(1,64,1149,'2012-10-09 05:17:04',1),(1,228,1135,'2012-10-09 05:46:34',1),(1,124,1135,'2012-10-09 05:46:34',1),(1,41,1135,'2012-10-09 05:46:34',1),(1,43,1135,'2012-10-09 05:46:34',1),(1,64,1135,'2012-10-09 05:46:34',1),(1,102,1135,'2012-10-09 05:46:34',1),(1,78,1135,'2012-10-09 05:46:34',1),(1,6,1135,'2012-10-09 05:46:34',1),(1,40,1150,'2012-10-09 05:47:05',1),(1,4,1150,'2012-10-09 05:47:05',1),(1,124,1134,'2012-10-09 06:16:33',1),(1,40,1134,'2012-10-09 06:16:33',1),(1,41,1134,'2012-10-09 06:16:33',1),(1,43,1134,'2012-10-09 06:16:33',1),(1,64,1134,'2012-10-09 06:16:33',1),(1,102,1134,'2012-10-09 06:16:33',1),(1,78,1134,'2012-10-09 06:16:33',1),(1,228,1134,'2012-10-09 06:16:33',1),(1,228,1138,'2012-10-09 06:46:41',1),(1,124,1138,'2012-10-09 06:46:41',1),(1,40,1138,'2012-10-09 06:46:41',1),(1,41,1138,'2012-10-09 06:46:41',1),(1,239,1138,'2012-10-09 06:46:41',1),(1,43,1138,'2012-10-09 06:46:41',1),(1,64,1138,'2012-10-09 06:46:41',1),(1,102,1138,'2012-10-09 06:46:41',1),(1,228,1142,'2012-10-09 06:46:52',1),(1,124,1142,'2012-10-09 06:46:52',1),(1,40,1142,'2012-10-09 06:46:52',1),(1,170,1142,'2012-10-09 06:46:52',1),(1,41,1142,'2012-10-09 06:46:52',1),(1,239,1142,'2012-10-09 06:46:52',1),(1,43,1142,'2012-10-09 06:46:52',1),(1,64,1142,'2012-10-09 06:46:52',1),(1,102,1145,'2012-10-09 06:46:59',1),(1,6,1145,'2012-10-09 06:46:59',1),(1,228,1121,'2012-10-09 07:16:45',1),(1,124,1121,'2012-10-09 07:16:45',1),(1,40,1121,'2012-10-09 07:16:45',1),(1,170,1121,'2012-10-09 07:16:45',1),(1,41,1125,'2012-10-09 07:16:54',1),(1,239,1125,'2012-10-09 07:16:54',1),(1,43,1125,'2012-10-09 07:16:54',1),(1,64,1125,'2012-10-09 07:16:54',1),(1,228,1147,'2012-10-09 07:17:01',1),(1,124,1147,'2012-10-09 07:17:01',1),(1,40,1147,'2012-10-09 07:17:01',1),(1,170,1147,'2012-10-09 07:17:01',1),(1,41,1147,'2012-10-09 07:17:01',1),(1,239,1147,'2012-10-09 07:17:01',1),(1,43,1147,'2012-10-09 07:17:01',1),(1,64,1147,'2012-10-09 07:17:01',1),(1,228,1152,'2012-10-09 07:17:16',1),(1,124,1152,'2012-10-09 07:17:16',1),(1,40,1152,'2012-10-09 07:17:16',1),(1,170,1152,'2012-10-09 07:17:16',1),(1,41,1152,'2012-10-09 07:17:16',1),(1,239,1152,'2012-10-09 07:17:16',1),(1,43,1152,'2012-10-09 07:17:16',1),(1,64,1152,'2012-10-09 07:17:16',1),(1,228,1133,'2012-10-09 07:46:36',1),(1,124,1133,'2012-10-09 07:46:36',1),(1,40,1133,'2012-10-09 07:46:36',1),(1,170,1133,'2012-10-09 07:46:36',1),(1,41,1132,'2012-10-09 07:46:36',1),(1,239,1132,'2012-10-09 07:46:36',1),(1,43,1132,'2012-10-09 07:46:36',1),(1,64,1132,'2012-10-09 07:46:36',1),(1,228,1137,'2012-10-09 07:46:43',1),(1,124,1137,'2012-10-09 07:46:43',1),(1,40,1137,'2012-10-09 07:46:43',1),(1,170,1137,'2012-10-09 07:46:43',1),(1,228,1141,'2012-10-09 07:46:55',1),(1,124,1141,'2012-10-09 07:46:55',1),(1,40,1141,'2012-10-09 07:46:55',1),(1,170,1141,'2012-10-09 07:46:55',1),(1,41,1146,'2012-10-09 07:47:01',1),(1,239,1146,'2012-10-09 07:47:01',1),(1,43,1146,'2012-10-09 07:47:01',1),(1,64,1146,'2012-10-09 07:47:01',1),(1,228,1151,'2012-10-09 07:47:10',1),(1,124,1151,'2012-10-09 07:47:10',1),(1,40,1151,'2012-10-09 07:47:10',1),(1,170,1151,'2012-10-09 07:47:10',1),(1,96,1114,'2012-10-09 10:46:43',1),(1,124,1114,'2012-10-09 10:46:43',1),(1,187,1114,'2012-10-09 10:46:43',1),(1,197,1114,'2012-10-09 10:46:43',1),(1,126,1114,'2012-10-09 10:46:43',1),(1,40,1114,'2012-10-09 10:46:43',1),(1,170,1114,'2012-10-09 10:46:43',1),(1,41,1114,'2012-10-09 10:46:43',1),(1,239,1114,'2012-10-09 10:46:43',1),(1,43,1114,'2012-10-09 10:46:43',1),(1,167,1114,'2012-10-09 10:46:43',1),(1,83,1114,'2012-10-09 10:46:43',1),(1,23,1114,'2012-10-09 10:46:43',1),(1,86,1114,'2012-10-09 10:46:43',1),(1,64,1114,'2012-10-09 10:46:43',1),(1,102,1114,'2012-10-09 10:46:43',1),(1,96,1127,'2012-10-09 10:47:07',1),(1,124,1127,'2012-10-09 10:47:07',1),(1,187,1127,'2012-10-09 10:47:07',1),(1,197,1127,'2012-10-09 10:47:07',1),(1,126,1127,'2012-10-09 10:47:07',1),(1,40,1127,'2012-10-09 10:47:07',1),(1,170,1127,'2012-10-09 10:47:07',1),(1,41,1127,'2012-10-09 10:47:07',1),(1,239,1127,'2012-10-09 10:47:07',1),(1,43,1127,'2012-10-09 10:47:07',1),(1,167,1127,'2012-10-09 10:47:07',1),(1,83,1127,'2012-10-09 10:47:07',1),(1,23,1127,'2012-10-09 10:47:07',1),(1,86,1127,'2012-10-09 10:47:07',1),(1,64,1127,'2012-10-09 10:47:07',1),(1,102,1127,'2012-10-09 10:47:07',1),(1,88,1139,'2012-10-09 11:16:52',1),(1,96,1139,'2012-10-09 11:16:52',1),(1,124,1139,'2012-10-09 11:16:52',1),(1,187,1139,'2012-10-09 11:16:52',1),(1,197,1139,'2012-10-09 11:16:52',1),(1,126,1139,'2012-10-09 11:16:52',1),(1,40,1139,'2012-10-09 11:16:52',1),(1,170,1139,'2012-10-09 11:16:52',1),(1,41,1139,'2012-10-09 11:16:52',1),(1,239,1139,'2012-10-09 11:16:52',1),(1,43,1139,'2012-10-09 11:16:52',1),(1,167,1139,'2012-10-09 11:16:52',1),(1,83,1139,'2012-10-09 11:16:52',1),(1,23,1139,'2012-10-09 11:16:52',1),(1,86,1139,'2012-10-09 11:16:52',1),(1,64,1139,'2012-10-09 11:16:52',1),(1,88,1143,'2012-10-09 11:47:04',1),(1,96,1143,'2012-10-09 11:47:04',1),(1,124,1143,'2012-10-09 11:47:04',1),(1,187,1143,'2012-10-09 11:47:04',1),(1,197,1143,'2012-10-09 11:47:04',1),(1,126,1143,'2012-10-09 11:47:04',1),(1,40,1143,'2012-10-09 11:47:04',1),(1,170,1143,'2012-10-09 11:47:04',1),(1,41,1143,'2012-10-09 11:47:04',1),(1,239,1143,'2012-10-09 11:47:04',1),(1,43,1143,'2012-10-09 11:47:04',1),(1,167,1143,'2012-10-09 11:47:04',1),(1,30,1143,'2012-10-09 11:47:04',1),(1,243,1143,'2012-10-09 11:47:04',1),(1,31,1143,'2012-10-09 11:47:04',1),(1,145,1143,'2012-10-09 11:47:04',1),(1,88,1148,'2012-10-09 11:47:21',1),(1,96,1148,'2012-10-09 11:47:21',1),(1,124,1148,'2012-10-09 11:47:21',1),(1,187,1148,'2012-10-09 11:47:21',1),(1,197,1148,'2012-10-09 11:47:21',1),(1,126,1148,'2012-10-09 11:47:21',1),(1,40,1148,'2012-10-09 11:47:21',1),(1,170,1148,'2012-10-09 11:47:21',1),(1,41,1148,'2012-10-09 11:47:21',1),(1,239,1148,'2012-10-09 11:47:21',1),(1,43,1148,'2012-10-09 11:47:21',1),(1,167,1148,'2012-10-09 11:47:21',1),(1,30,1148,'2012-10-09 11:47:21',1),(1,243,1148,'2012-10-09 11:47:21',1),(1,31,1148,'2012-10-09 11:47:21',1),(1,145,1148,'2012-10-09 11:47:21',1),(1,6,1153,'2012-10-10 00:46:17',1),(1,6,1154,'2012-10-10 01:16:19',1),(1,6,1156,'2012-10-10 01:16:19',1),(1,248,1155,'2012-10-10 01:16:19',1),(1,6,1157,'2012-10-10 01:16:25',1),(1,6,1175,'2012-10-10 01:46:11',1),(1,4,1175,'2012-10-10 01:46:11',1),(1,6,1173,'2012-10-10 01:46:11',1),(1,6,1174,'2012-10-10 01:46:11',1),(1,6,1176,'2012-10-10 01:46:11',1),(1,4,1176,'2012-10-10 01:46:11',1),(1,6,1158,'2012-10-10 01:46:27',1),(1,4,1158,'2012-10-10 01:46:27',1),(1,6,1159,'2012-10-10 01:46:27',1),(1,4,1159,'2012-10-10 01:46:27',1),(1,6,1160,'2012-10-10 01:46:28',1),(1,4,1160,'2012-10-10 01:46:28',1),(1,6,1162,'2012-10-10 01:46:34',1),(1,4,1162,'2012-10-10 01:46:34',1),(1,6,1161,'2012-10-10 01:46:34',1),(1,4,1161,'2012-10-10 01:46:34',1),(1,6,1182,'2012-10-10 02:46:20',1),(1,4,1182,'2012-10-10 02:46:20',1),(1,99,1186,'2012-10-10 02:46:29',1),(1,6,1187,'2012-10-10 02:46:29',1),(1,4,1187,'2012-10-10 02:46:29',1),(1,249,1190,'2012-10-10 02:46:39',1),(1,6,1191,'2012-10-10 02:46:39',1),(1,4,1191,'2012-10-10 02:46:39',1),(1,6,1163,'2012-10-10 02:46:41',1),(1,4,1163,'2012-10-10 02:46:41',1),(1,244,1163,'2012-10-10 02:46:41',1),(1,99,1163,'2012-10-10 02:46:41',1),(1,244,1194,'2012-10-10 02:46:47',1),(1,6,1195,'2012-10-10 02:46:49',1),(1,4,1195,'2012-10-10 02:46:49',1),(1,6,1201,'2012-10-10 03:46:18',1),(1,4,1201,'2012-10-10 03:46:18',1),(1,6,1202,'2012-10-10 03:46:18',1),(1,4,1202,'2012-10-10 03:46:18',1),(1,6,1207,'2012-10-10 03:46:34',1),(1,4,1207,'2012-10-10 03:46:34',1),(1,6,1199,'2012-10-10 04:16:24',1),(1,244,1200,'2012-10-10 04:16:24',1),(1,6,1211,'2012-10-10 04:16:45',1),(1,4,1211,'2012-10-10 04:16:45',1),(1,4,1215,'2012-10-10 04:16:53',1),(1,6,1216,'2012-10-10 04:16:53',1),(1,4,1216,'2012-10-10 04:16:53',1),(1,4,1220,'2012-10-10 04:17:00',1),(1,6,1221,'2012-10-10 04:17:00',1),(1,4,1221,'2012-10-10 04:17:00',1),(1,56,1164,'2012-10-10 04:46:43',1),(1,6,1164,'2012-10-10 04:46:43',1),(1,4,1164,'2012-10-10 04:46:43',1),(1,102,1164,'2012-10-10 04:46:43',1),(1,56,1166,'2012-10-10 04:46:51',1),(1,6,1166,'2012-10-10 04:46:51',1),(1,4,1166,'2012-10-10 04:46:51',1),(1,102,1166,'2012-10-10 04:46:51',1),(1,56,1165,'2012-10-10 04:46:51',1),(1,6,1165,'2012-10-10 04:46:51',1),(1,4,1165,'2012-10-10 04:46:51',1),(1,102,1165,'2012-10-10 04:46:51',1),(1,56,1167,'2012-10-10 04:46:51',1),(1,6,1167,'2012-10-10 04:46:51',1),(1,4,1167,'2012-10-10 04:46:51',1),(1,102,1167,'2012-10-10 04:46:51',1),(1,20,1185,'2012-10-10 05:16:36',1),(1,247,1185,'2012-10-10 05:16:36',1),(1,94,1185,'2012-10-10 05:16:36',1),(1,160,1185,'2012-10-10 05:16:36',1),(1,133,1185,'2012-10-10 05:16:36',1),(1,183,1185,'2012-10-10 05:16:36',1),(1,227,1185,'2012-10-10 05:16:36',1),(1,237,1185,'2012-10-10 05:16:36',1),(1,134,1185,'2012-10-10 05:16:36',1),(1,135,1185,'2012-10-10 05:16:36',1),(1,11,1185,'2012-10-10 05:16:36',1),(1,122,1185,'2012-10-10 05:16:36',1),(1,170,1185,'2012-10-10 05:16:36',1),(1,248,1185,'2012-10-10 05:16:36',1),(1,6,1185,'2012-10-10 05:16:36',1),(1,4,1185,'2012-10-10 05:16:36',1),(1,247,1198,'2012-10-10 05:17:04',1),(1,94,1198,'2012-10-10 05:17:04',1),(1,160,1198,'2012-10-10 05:17:04',1),(1,133,1198,'2012-10-10 05:17:04',1),(1,183,1198,'2012-10-10 05:17:04',1),(1,96,1198,'2012-10-10 05:17:04',1),(1,227,1198,'2012-10-10 05:17:04',1),(1,237,1198,'2012-10-10 05:17:04',1),(1,134,1198,'2012-10-10 05:17:04',1),(1,135,1198,'2012-10-10 05:17:04',1),(1,11,1198,'2012-10-10 05:17:04',1),(1,122,1198,'2012-10-10 05:17:04',1),(1,170,1198,'2012-10-10 05:17:04',1),(1,248,1198,'2012-10-10 05:17:04',1),(1,56,1198,'2012-10-10 05:17:04',1),(1,6,1198,'2012-10-10 05:17:04',1),(1,94,1210,'2012-10-10 05:46:41',1),(1,160,1210,'2012-10-10 05:46:41',1),(1,133,1210,'2012-10-10 05:46:41',1),(1,183,1210,'2012-10-10 05:46:41',1),(1,96,1210,'2012-10-10 05:46:41',1),(1,227,1210,'2012-10-10 05:46:41',1),(1,237,1210,'2012-10-10 05:46:41',1),(1,134,1210,'2012-10-10 05:46:41',1),(1,135,1210,'2012-10-10 05:46:41',1),(1,11,1210,'2012-10-10 05:46:41',1),(1,122,1210,'2012-10-10 05:46:41',1),(1,170,1210,'2012-10-10 05:46:41',1),(1,248,1210,'2012-10-10 05:46:41',1),(1,56,1210,'2012-10-10 05:46:41',1),(1,6,1210,'2012-10-10 05:46:41',1),(1,4,1210,'2012-10-10 05:46:41',1),(1,94,1214,'2012-10-10 05:46:51',1),(1,160,1214,'2012-10-10 05:46:51',1),(1,133,1214,'2012-10-10 05:46:51',1),(1,183,1214,'2012-10-10 05:46:51',1),(1,96,1214,'2012-10-10 05:46:51',1),(1,227,1214,'2012-10-10 05:46:51',1),(1,237,1214,'2012-10-10 05:46:51',1),(1,134,1214,'2012-10-10 05:46:51',1),(1,135,1214,'2012-10-10 05:46:51',1),(1,11,1214,'2012-10-10 05:46:51',1),(1,122,1214,'2012-10-10 05:46:51',1),(1,170,1214,'2012-10-10 05:46:51',1),(1,99,1214,'2012-10-10 05:46:51',1),(1,248,1214,'2012-10-10 05:46:51',1),(1,56,1214,'2012-10-10 05:46:51',1),(1,6,1214,'2012-10-10 05:46:51',1),(1,160,1184,'2012-10-10 06:16:29',1),(1,133,1184,'2012-10-10 06:16:29',1),(1,183,1184,'2012-10-10 06:16:29',1),(1,96,1184,'2012-10-10 06:16:29',1),(1,227,1184,'2012-10-10 06:16:29',1),(1,237,1184,'2012-10-10 06:16:29',1),(1,134,1184,'2012-10-10 06:16:29',1),(1,135,1184,'2012-10-10 06:16:29',1),(1,160,1179,'2012-10-10 06:16:37',1),(1,133,1179,'2012-10-10 06:16:37',1),(1,183,1179,'2012-10-10 06:16:37',1),(1,96,1179,'2012-10-10 06:16:37',1),(1,227,1179,'2012-10-10 06:16:37',1),(1,237,1179,'2012-10-10 06:16:37',1),(1,134,1179,'2012-10-10 06:16:37',1),(1,135,1179,'2012-10-10 06:16:37',1),(1,11,1180,'2012-10-10 06:16:38',1),(1,122,1180,'2012-10-10 06:16:38',1),(1,170,1180,'2012-10-10 06:16:38',1),(1,99,1180,'2012-10-10 06:16:38',1),(1,248,1180,'2012-10-10 06:16:38',1),(1,56,1180,'2012-10-10 06:16:38',1),(1,6,1180,'2012-10-10 06:16:38',1),(1,4,1180,'2012-10-10 06:16:38',1),(1,11,1189,'2012-10-10 06:16:41',1),(1,122,1189,'2012-10-10 06:16:41',1),(1,170,1189,'2012-10-10 06:16:41',1),(1,99,1189,'2012-10-10 06:16:41',1),(1,248,1189,'2012-10-10 06:16:41',1),(1,56,1189,'2012-10-10 06:16:41',1),(1,6,1189,'2012-10-10 06:16:41',1),(1,4,1189,'2012-10-10 06:16:41',1),(1,160,1193,'2012-10-10 06:16:51',1),(1,133,1193,'2012-10-10 06:16:51',1),(1,244,1193,'2012-10-10 06:16:51',1),(1,183,1193,'2012-10-10 06:16:51',1),(1,96,1193,'2012-10-10 06:16:51',1),(1,227,1193,'2012-10-10 06:16:51',1),(1,237,1193,'2012-10-10 06:16:51',1),(1,134,1193,'2012-10-10 06:16:51',1),(1,160,1168,'2012-10-10 06:16:58',1),(1,133,1168,'2012-10-10 06:16:58',1),(1,183,1168,'2012-10-10 06:16:58',1),(1,96,1168,'2012-10-10 06:16:58',1),(1,227,1168,'2012-10-10 06:16:58',1),(1,237,1168,'2012-10-10 06:16:58',1),(1,134,1168,'2012-10-10 06:16:58',1),(1,135,1168,'2012-10-10 06:16:58',1),(1,11,1169,'2012-10-10 06:17:00',1),(1,122,1169,'2012-10-10 06:17:00',1),(1,170,1169,'2012-10-10 06:17:00',1),(1,99,1169,'2012-10-10 06:17:00',1),(1,248,1169,'2012-10-10 06:17:00',1),(1,56,1169,'2012-10-10 06:17:00',1),(1,6,1169,'2012-10-10 06:17:00',1),(1,4,1169,'2012-10-10 06:17:00',1),(1,11,1170,'2012-10-10 06:17:03',1),(1,122,1170,'2012-10-10 06:17:03',1),(1,170,1170,'2012-10-10 06:17:03',1),(1,99,1170,'2012-10-10 06:17:03',1),(1,248,1170,'2012-10-10 06:17:03',1),(1,56,1170,'2012-10-10 06:17:03',1),(1,6,1170,'2012-10-10 06:17:03',1),(1,4,1170,'2012-10-10 06:17:03',1),(1,160,1172,'2012-10-10 06:17:06',1),(1,133,1172,'2012-10-10 06:17:06',1),(1,183,1172,'2012-10-10 06:17:06',1),(1,96,1172,'2012-10-10 06:17:06',1),(1,227,1172,'2012-10-10 06:17:06',1),(1,237,1172,'2012-10-10 06:17:06',1),(1,134,1172,'2012-10-10 06:17:06',1),(1,135,1172,'2012-10-10 06:17:06',1),(1,11,1171,'2012-10-10 06:17:06',1),(1,122,1171,'2012-10-10 06:17:06',1),(1,170,1171,'2012-10-10 06:17:06',1),(1,99,1171,'2012-10-10 06:17:06',1),(1,248,1171,'2012-10-10 06:17:06',1),(1,56,1171,'2012-10-10 06:17:06',1),(1,6,1171,'2012-10-10 06:17:06',1),(1,4,1171,'2012-10-10 06:17:06',1),(1,94,1219,'2012-10-10 06:17:07',1),(1,160,1219,'2012-10-10 06:17:07',1),(1,133,1219,'2012-10-10 06:17:07',1),(1,183,1219,'2012-10-10 06:17:07',1),(1,96,1219,'2012-10-10 06:17:07',1),(1,227,1219,'2012-10-10 06:17:07',1),(1,237,1219,'2012-10-10 06:17:07',1),(1,134,1219,'2012-10-10 06:17:07',1),(1,135,1219,'2012-10-10 06:17:07',1),(1,11,1219,'2012-10-10 06:17:07',1),(1,122,1219,'2012-10-10 06:17:07',1),(1,170,1219,'2012-10-10 06:17:07',1),(1,99,1219,'2012-10-10 06:17:07',1),(1,248,1219,'2012-10-10 06:17:07',1),(1,56,1219,'2012-10-10 06:17:07',1),(1,6,1219,'2012-10-10 06:17:07',1),(1,160,1205,'2012-10-10 06:46:34',1),(1,133,1205,'2012-10-10 06:46:34',1),(1,244,1205,'2012-10-10 06:46:34',1),(1,183,1205,'2012-10-10 06:46:34',1),(1,96,1205,'2012-10-10 06:46:34',1),(1,227,1205,'2012-10-10 06:46:34',1),(1,237,1205,'2012-10-10 06:46:34',1),(1,134,1205,'2012-10-10 06:46:34',1),(1,11,1206,'2012-10-10 06:46:37',1),(1,122,1206,'2012-10-10 06:46:37',1),(1,170,1206,'2012-10-10 06:46:37',1),(1,99,1206,'2012-10-10 06:46:37',1),(1,248,1206,'2012-10-10 06:46:37',1),(1,56,1206,'2012-10-10 06:46:37',1),(1,6,1206,'2012-10-10 06:46:37',1),(1,4,1206,'2012-10-10 06:46:37',1),(1,133,1209,'2012-10-10 06:46:44',1),(1,244,1209,'2012-10-10 06:46:44',1),(1,183,1209,'2012-10-10 06:46:44',1),(1,96,1209,'2012-10-10 06:46:44',1),(1,227,1209,'2012-10-10 06:46:44',1),(1,237,1209,'2012-10-10 06:46:44',1),(1,134,1209,'2012-10-10 06:46:44',1),(1,102,1209,'2012-10-10 06:46:44',1),(1,160,1213,'2012-10-10 06:46:53',1),(1,133,1213,'2012-10-10 06:46:53',1),(1,244,1213,'2012-10-10 06:46:53',1),(1,183,1213,'2012-10-10 06:46:53',1),(1,96,1213,'2012-10-10 06:46:53',1),(1,227,1213,'2012-10-10 06:46:53',1),(1,237,1213,'2012-10-10 06:46:53',1),(1,134,1213,'2012-10-10 06:46:53',1),(1,11,1197,'2012-10-10 06:47:02',1),(1,122,1197,'2012-10-10 06:47:02',1),(1,170,1197,'2012-10-10 06:47:02',1),(1,99,1197,'2012-10-10 06:47:02',1),(1,248,1197,'2012-10-10 06:47:02',1),(1,56,1197,'2012-10-10 06:47:02',1),(1,6,1197,'2012-10-10 06:47:02',1),(1,4,1197,'2012-10-10 06:47:02',1),(1,122,1183,'2012-10-10 07:16:37',1),(1,170,1183,'2012-10-10 07:16:37',1),(1,99,1183,'2012-10-10 07:16:37',1),(1,248,1183,'2012-10-10 07:16:37',1),(1,102,1177,'2012-10-10 07:16:38',1),(1,56,1177,'2012-10-10 07:16:38',1),(1,6,1177,'2012-10-10 07:16:38',1),(1,4,1177,'2012-10-10 07:16:38',1),(1,122,1178,'2012-10-10 07:16:38',1),(1,170,1178,'2012-10-10 07:16:38',1),(1,99,1178,'2012-10-10 07:16:38',1),(1,248,1178,'2012-10-10 07:16:38',1),(1,170,1188,'2012-10-10 07:16:44',1),(1,99,1188,'2012-10-10 07:16:44',1),(1,248,1188,'2012-10-10 07:16:44',1),(1,4,1188,'2012-10-10 07:16:44',1),(1,134,1192,'2012-10-10 07:16:48',1),(1,170,1192,'2012-10-10 07:16:48',1),(1,99,1192,'2012-10-10 07:16:48',1),(1,248,1192,'2012-10-10 07:16:48',1),(1,170,1196,'2012-10-10 07:17:02',1),(1,99,1196,'2012-10-10 07:17:02',1),(1,248,1196,'2012-10-10 07:17:02',1),(1,4,1196,'2012-10-10 07:17:02',1),(1,20,1218,'2012-10-10 07:17:02',1),(1,160,1218,'2012-10-10 07:17:02',1),(1,133,1218,'2012-10-10 07:17:02',1),(1,244,1218,'2012-10-10 07:17:02',1),(1,183,1218,'2012-10-10 07:17:02',1),(1,96,1218,'2012-10-10 07:17:02',1),(1,227,1218,'2012-10-10 07:17:02',1),(1,237,1218,'2012-10-10 07:17:02',1),(1,134,1223,'2012-10-10 07:17:14',1),(1,11,1223,'2012-10-10 07:17:14',1),(1,122,1223,'2012-10-10 07:17:14',1),(1,170,1223,'2012-10-10 07:17:14',1),(1,99,1223,'2012-10-10 07:17:14',1),(1,248,1223,'2012-10-10 07:17:14',1),(1,56,1223,'2012-10-10 07:17:14',1),(1,6,1223,'2012-10-10 07:17:14',1),(1,249,1204,'2012-10-10 07:46:37',1),(1,160,1204,'2012-10-10 07:46:37',1),(1,133,1204,'2012-10-10 07:46:37',1),(1,244,1204,'2012-10-10 07:46:37',1),(1,183,1203,'2012-10-10 07:46:37',1),(1,96,1203,'2012-10-10 07:46:37',1),(1,227,1203,'2012-10-10 07:46:37',1),(1,237,1203,'2012-10-10 07:46:37',1),(1,96,1208,'2012-10-10 07:46:46',1),(1,227,1208,'2012-10-10 07:46:46',1),(1,237,1208,'2012-10-10 07:46:46',1),(1,170,1208,'2012-10-10 07:46:46',1),(1,160,1212,'2012-10-10 07:46:56',1),(1,133,1212,'2012-10-10 07:46:56',1),(1,244,1212,'2012-10-10 07:46:56',1),(1,4,1212,'2012-10-10 07:46:56',1),(1,249,1217,'2012-10-10 07:47:01',1),(1,133,1217,'2012-10-10 07:47:01',1),(1,244,1217,'2012-10-10 07:47:01',1),(1,4,1217,'2012-10-10 07:47:01',1),(1,249,1222,'2012-10-10 07:47:10',1),(1,133,1222,'2012-10-10 07:47:10',1),(1,244,1222,'2012-10-10 07:47:10',1),(1,227,1222,'2012-10-10 07:47:10',1),(1,135,1181,'2012-10-10 08:16:36',NULL),(1,102,1181,'2012-10-10 08:16:36',NULL),(1,56,1181,'2012-10-10 08:16:36',NULL),(1,6,1181,'2012-10-10 08:16:36',NULL),(1,228,1295,'2012-10-10 11:07:07',1),(1,110,1303,'2012-10-10 11:37:08',1),(1,30,1307,'2012-10-10 12:46:07',1),(1,96,1312,'2012-10-10 12:46:21',1),(1,30,1312,'2012-10-10 12:46:21',1),(1,96,1304,'2012-10-10 13:16:09',1),(1,30,1305,'2012-10-10 13:16:09',1),(1,30,1306,'2012-10-10 13:16:09',1),(1,30,1309,'2012-10-10 13:16:19',1),(1,30,1308,'2012-10-10 13:16:19',1),(1,30,1314,'2012-10-10 13:16:25',1),(1,96,1310,'2012-10-10 13:46:20',1),(1,96,1315,'2012-10-10 13:46:26',1),(1,30,1313,'2012-10-10 13:46:26',1),(1,30,1316,'2012-10-10 13:46:33',1),(1,96,1319,'2012-10-10 13:46:34',1),(1,30,1319,'2012-10-10 13:46:34',1),(1,96,1318,'2012-10-10 13:46:34',1),(1,30,1318,'2012-10-10 13:46:34',1),(1,96,1320,'2012-10-10 13:46:40',1),(1,96,1321,'2012-10-10 13:46:41',1),(1,192,1317,'2012-10-10 14:16:36',1),(1,250,1311,'2012-10-10 15:16:19',NULL),(1,185,1311,'2012-10-10 15:16:19',NULL),(1,77,1311,'2012-10-10 15:16:19',NULL),(1,96,1311,'2012-10-10 15:16:19',NULL),(1,199,1322,'2012-10-10 16:03:39',1),(1,126,1224,'2012-10-11 00:46:15',1),(1,4,1227,'2012-10-11 00:46:15',1),(1,247,1226,'2012-10-11 00:46:15',1),(1,4,1225,'2012-10-11 00:46:20',1),(1,214,1228,'2012-10-11 00:46:23',1),(1,87,1229,'2012-10-11 00:46:26',1),(1,6,1229,'2012-10-11 00:46:26',1),(1,214,1230,'2012-10-11 00:46:26',1),(1,4,1230,'2012-10-11 00:46:26',1),(1,214,1231,'2012-10-11 00:46:26',1),(1,6,1231,'2012-10-11 00:46:26',1),(1,214,1233,'2012-10-11 00:46:32',1),(1,6,1233,'2012-10-11 00:46:32',1),(1,87,1232,'2012-10-11 00:46:35',1),(1,4,1232,'2012-10-11 00:46:35',1),(1,124,1234,'2012-10-11 00:46:36',1),(1,47,1234,'2012-10-11 00:46:36',1),(1,194,1234,'2012-10-11 00:46:36',1),(1,17,1234,'2012-10-11 00:46:36',1),(1,43,1235,'2012-10-11 00:46:36',1),(1,47,1235,'2012-10-11 00:46:36',1),(1,194,1235,'2012-10-11 00:46:36',1),(1,17,1235,'2012-10-11 00:46:36',1),(1,47,1236,'2012-10-11 00:46:38',1),(1,194,1236,'2012-10-11 00:46:38',1),(1,17,1236,'2012-10-11 00:46:38',1),(1,87,1236,'2012-10-11 00:46:38',1),(1,194,1238,'2012-10-11 00:46:39',1),(1,172,1238,'2012-10-11 00:46:39',1),(1,17,1238,'2012-10-11 00:46:39',1),(1,87,1238,'2012-10-11 00:46:39',1),(1,247,1237,'2012-10-11 00:46:39',1),(1,194,1237,'2012-10-11 00:46:39',1),(1,172,1237,'2012-10-11 00:46:39',1),(1,17,1237,'2012-10-11 00:46:39',1),(1,126,1239,'2012-10-11 00:46:39',1),(1,43,1239,'2012-10-11 00:46:39',1),(1,47,1239,'2012-10-11 00:46:39',1),(1,194,1239,'2012-10-11 00:46:39',1),(1,17,1239,'2012-10-11 00:46:39',1),(1,87,1239,'2012-10-11 00:46:39',1),(1,214,1239,'2012-10-11 00:46:39',1),(1,6,1239,'2012-10-11 00:46:39',1),(1,126,1243,'2012-10-11 00:46:50',1),(1,43,1243,'2012-10-11 00:46:50',1),(1,194,1243,'2012-10-11 00:46:50',1),(1,172,1243,'2012-10-11 00:46:50',1),(1,17,1243,'2012-10-11 00:46:50',1),(1,32,1243,'2012-10-11 00:46:50',1),(1,87,1243,'2012-10-11 00:46:50',1),(1,209,1243,'2012-10-11 00:46:50',1),(1,124,1242,'2012-10-11 00:46:50',1),(1,126,1242,'2012-10-11 00:46:50',1),(1,194,1242,'2012-10-11 00:46:50',1),(1,172,1242,'2012-10-11 00:46:50',1),(1,17,1242,'2012-10-11 00:46:50',1),(1,32,1242,'2012-10-11 00:46:50',1),(1,87,1242,'2012-10-11 00:46:50',1),(1,209,1242,'2012-10-11 00:46:50',1),(1,124,1240,'2012-10-11 00:46:50',1),(1,43,1240,'2012-10-11 00:46:50',1),(1,186,1240,'2012-10-11 00:46:50',1),(1,194,1240,'2012-10-11 00:46:50',1),(1,172,1240,'2012-10-11 00:46:50',1),(1,17,1240,'2012-10-11 00:46:50',1),(1,87,1240,'2012-10-11 00:46:50',1),(1,209,1240,'2012-10-11 00:46:50',1),(1,194,1241,'2012-10-11 00:46:50',1),(1,172,1241,'2012-10-11 00:46:50',1),(1,17,1241,'2012-10-11 00:46:50',1),(1,32,1241,'2012-10-11 00:46:50',1),(1,87,1241,'2012-10-11 00:46:50',1),(1,209,1241,'2012-10-11 00:46:50',1),(1,6,1241,'2012-10-11 00:46:50',1),(1,4,1241,'2012-10-11 00:46:50',1),(1,223,1246,'2012-10-11 01:46:12',1),(1,6,1246,'2012-10-11 01:46:12',1),(1,83,1247,'2012-10-11 01:46:12',1),(1,4,1247,'2012-10-11 01:46:12',1),(1,105,1244,'2012-10-11 01:46:17',1),(1,4,1245,'2012-10-11 01:46:17',1),(1,114,1248,'2012-10-11 01:46:20',1),(1,188,1248,'2012-10-11 01:46:20',1),(1,230,1248,'2012-10-11 01:46:20',1),(1,218,1248,'2012-10-11 01:46:20',1),(1,47,1250,'2012-10-11 01:46:20',NULL),(1,114,1250,'2012-10-11 01:46:20',NULL),(1,188,1250,'2012-10-11 01:46:20',NULL),(1,230,1250,'2012-10-11 01:46:20',NULL),(1,218,1250,'2012-10-11 01:46:20',NULL),(1,209,1250,'2012-10-11 01:46:20',NULL),(1,78,1250,'2012-10-11 01:46:20',NULL),(1,214,1250,'2012-10-11 01:46:20',NULL),(1,78,1249,'2012-10-11 01:46:20',1),(1,214,1249,'2012-10-11 01:46:20',1),(1,223,1249,'2012-10-11 01:46:20',1),(1,6,1249,'2012-10-11 01:46:20',1),(1,47,1251,'2012-10-11 01:46:20',1),(1,114,1251,'2012-10-11 01:46:20',1),(1,230,1251,'2012-10-11 01:46:20',1),(1,218,1251,'2012-10-11 01:46:20',1),(1,209,1251,'2012-10-11 01:46:20',1),(1,78,1251,'2012-10-11 01:46:20',1),(1,214,1251,'2012-10-11 01:46:20',1),(1,105,1251,'2012-10-11 01:46:20',1),(1,85,1253,'2012-10-11 02:46:16',1),(1,6,1253,'2012-10-11 02:46:16',1),(1,249,1254,'2012-10-11 02:46:16',1),(1,18,1254,'2012-10-11 02:46:16',1),(1,43,1254,'2012-10-11 02:46:16',1),(1,83,1254,'2012-10-11 02:46:16',1),(1,4,1257,'2012-10-11 02:46:22',1),(1,140,1259,'2012-10-11 02:46:22',1),(1,136,1259,'2012-10-11 02:46:22',1),(1,124,1259,'2012-10-11 02:46:22',1),(1,18,1259,'2012-10-11 02:46:22',1),(1,140,1258,'2012-10-11 02:46:22',1),(1,82,1258,'2012-10-11 02:46:22',1),(1,124,1262,'2012-10-11 02:46:31',1),(1,43,1262,'2012-10-11 02:46:31',1),(1,124,1261,'2012-10-11 02:46:31',1),(1,124,1263,'2012-10-11 02:46:33',1),(1,18,1263,'2012-10-11 02:46:33',1),(1,47,1263,'2012-10-11 02:46:33',1),(1,4,1263,'2012-10-11 02:46:33',1),(1,136,1265,'2012-10-11 02:46:39',1),(1,43,1267,'2012-10-11 02:46:41',1),(1,47,1267,'2012-10-11 02:46:41',1),(1,83,1267,'2012-10-11 02:46:41',1),(1,4,1267,'2012-10-11 02:46:41',1),(1,83,1266,'2012-10-11 02:46:41',1),(1,4,1266,'2012-10-11 02:46:41',1),(1,53,1255,'2012-10-11 03:16:16',1),(1,136,1255,'2012-10-11 03:16:16',1),(1,18,1255,'2012-10-11 03:16:16',1),(1,43,1255,'2012-10-11 03:16:16',1),(1,47,1255,'2012-10-11 03:16:16',1),(1,251,1255,'2012-10-11 03:16:16',1),(1,83,1255,'2012-10-11 03:16:16',1),(1,4,1255,'2012-10-11 03:16:16',1),(1,249,1256,'2012-10-11 03:16:23',1),(1,140,1256,'2012-10-11 03:16:23',1),(1,124,1256,'2012-10-11 03:16:23',1),(1,18,1256,'2012-10-11 03:16:23',1),(1,47,1256,'2012-10-11 03:16:23',1),(1,158,1256,'2012-10-11 03:16:23',1),(1,51,1256,'2012-10-11 03:16:23',1),(1,161,1256,'2012-10-11 03:16:23',1),(1,30,1256,'2012-10-11 03:16:23',1),(1,243,1256,'2012-10-11 03:16:23',1),(1,251,1256,'2012-10-11 03:16:23',1),(1,83,1256,'2012-10-11 03:16:23',1),(1,192,1256,'2012-10-11 03:16:23',1),(1,53,1256,'2012-10-11 03:16:23',1),(1,130,1256,'2012-10-11 03:16:23',1),(1,76,1256,'2012-10-11 03:16:23',1),(1,76,1260,'2012-10-11 03:16:32',1),(1,47,1260,'2012-10-11 03:16:32',1),(1,158,1260,'2012-10-11 03:16:32',1),(1,51,1260,'2012-10-11 03:16:32',1),(1,161,1260,'2012-10-11 03:16:32',1),(1,30,1260,'2012-10-11 03:16:32',1),(1,243,1260,'2012-10-11 03:16:32',1),(1,251,1260,'2012-10-11 03:16:32',1),(1,76,1264,'2012-10-11 03:16:41',1),(1,47,1264,'2012-10-11 03:16:41',1),(1,158,1264,'2012-10-11 03:16:41',1),(1,51,1264,'2012-10-11 03:16:41',1),(1,161,1264,'2012-10-11 03:16:41',1),(1,30,1264,'2012-10-11 03:16:41',1),(1,243,1264,'2012-10-11 03:16:41',1),(1,251,1264,'2012-10-11 03:16:41',1),(1,82,1252,'2012-10-11 03:46:17',NULL),(1,98,1252,'2012-10-11 03:46:17',NULL),(1,85,1252,'2012-10-11 03:46:17',NULL),(1,6,1252,'2012-10-11 03:46:17',NULL),(1,4,1270,'2012-10-11 03:46:18',1),(1,217,1272,'2012-10-11 03:46:19',1),(1,4,1272,'2012-10-11 03:46:19',1),(1,82,1274,'2012-10-11 03:46:27',1),(1,98,1274,'2012-10-11 03:46:27',1),(1,85,1274,'2012-10-11 03:46:27',1),(1,6,1274,'2012-10-11 03:46:27',1),(1,249,1278,'2012-10-11 03:46:35',1),(1,124,1278,'2012-10-11 03:46:35',1),(1,47,1281,'2012-10-11 03:46:36',1),(1,158,1281,'2012-10-11 03:46:36',1),(1,51,1281,'2012-10-11 03:46:36',1),(1,161,1281,'2012-10-11 03:46:36',1),(1,22,1281,'2012-10-11 03:46:36',1),(1,30,1281,'2012-10-11 03:46:36',1),(1,243,1281,'2012-10-11 03:46:36',1),(1,251,1281,'2012-10-11 03:46:36',1),(1,83,1281,'2012-10-11 03:46:36',1),(1,192,1281,'2012-10-11 03:46:36',1),(1,73,1281,'2012-10-11 03:46:36',1),(1,53,1281,'2012-10-11 03:46:36',1),(1,130,1281,'2012-10-11 03:46:36',1),(1,76,1281,'2012-10-11 03:46:36',1),(1,50,1281,'2012-10-11 03:46:36',1),(1,66,1281,'2012-10-11 03:46:36',1),(1,4,1282,'2012-10-11 03:46:43',1),(1,124,1282,'2012-10-11 03:46:43',1),(1,18,1283,'2012-10-11 03:46:43',1),(1,245,1283,'2012-10-11 03:46:43',1),(1,178,1283,'2012-10-11 03:46:43',1),(1,31,1283,'2012-10-11 03:46:43',1),(1,47,1269,'2012-10-11 03:46:53',1),(1,158,1269,'2012-10-11 03:46:53',1),(1,51,1269,'2012-10-11 03:46:53',1),(1,161,1269,'2012-10-11 03:46:53',1),(1,22,1269,'2012-10-11 03:46:53',1),(1,30,1269,'2012-10-11 03:46:53',1),(1,243,1269,'2012-10-11 03:46:53',1),(1,251,1269,'2012-10-11 03:46:53',1),(1,83,1269,'2012-10-11 03:46:53',1),(1,192,1269,'2012-10-11 03:46:53',1),(1,73,1269,'2012-10-11 03:46:53',1),(1,53,1269,'2012-10-11 03:46:53',1),(1,130,1269,'2012-10-11 03:46:53',1),(1,76,1269,'2012-10-11 03:46:53',1),(1,50,1269,'2012-10-11 03:46:53',1),(1,66,1269,'2012-10-11 03:46:53',1),(1,4,1291,'2012-10-11 03:46:57',1),(1,6,1293,'2012-10-11 03:46:57',1),(1,124,1293,'2012-10-11 03:46:57',1),(1,98,1293,'2012-10-11 03:46:57',1),(1,85,1293,'2012-10-11 03:46:57',1),(1,245,1292,'2012-10-11 03:46:57',1),(1,178,1292,'2012-10-11 03:46:57',1),(1,64,1271,'2012-10-11 04:16:19',1),(1,217,1273,'2012-10-11 04:16:21',1),(1,4,1273,'2012-10-11 04:16:21',1),(1,85,1284,'2012-10-11 04:16:44',1),(1,249,1284,'2012-10-11 04:16:44',1),(1,88,1284,'2012-10-11 04:16:44',1),(1,82,1284,'2012-10-11 04:16:44',1),(1,124,1284,'2012-10-11 04:16:44',1),(1,245,1284,'2012-10-11 04:16:44',1),(1,47,1284,'2012-10-11 04:16:44',1),(1,98,1284,'2012-10-11 04:16:44',1),(1,158,1285,'2012-10-11 04:16:46',1),(1,51,1285,'2012-10-11 04:16:46',1),(1,161,1285,'2012-10-11 04:16:46',1),(1,22,1285,'2012-10-11 04:16:46',1),(1,30,1285,'2012-10-11 04:16:46',1),(1,243,1285,'2012-10-11 04:16:46',1),(1,31,1285,'2012-10-11 04:16:46',1),(1,251,1285,'2012-10-11 04:16:46',1),(1,83,1285,'2012-10-11 04:16:46',1),(1,192,1285,'2012-10-11 04:16:46',1),(1,73,1285,'2012-10-11 04:16:46',1),(1,53,1285,'2012-10-11 04:16:46',1),(1,130,1285,'2012-10-11 04:16:46',1),(1,76,1285,'2012-10-11 04:16:46',1),(1,50,1285,'2012-10-11 04:16:46',1),(1,66,1285,'2012-10-11 04:16:46',1),(1,6,1286,'2012-10-11 04:16:48',1),(1,85,1268,'2012-10-11 04:16:52',1),(1,192,1268,'2012-10-11 04:16:52',1),(1,73,1268,'2012-10-11 04:16:52',1),(1,53,1268,'2012-10-11 04:16:52',1),(1,130,1268,'2012-10-11 04:16:52',1),(1,76,1268,'2012-10-11 04:16:52',1),(1,50,1268,'2012-10-11 04:16:52',1),(1,66,1268,'2012-10-11 04:16:52',1),(1,64,1287,'2012-10-11 04:16:52',1),(1,6,1287,'2012-10-11 04:16:52',1),(1,82,1290,'2012-10-11 04:16:57',1),(1,18,1290,'2012-10-11 04:16:57',1),(1,245,1290,'2012-10-11 04:16:57',1),(1,43,1290,'2012-10-11 04:16:57',1),(1,47,1290,'2012-10-11 04:16:57',1),(1,158,1290,'2012-10-11 04:16:57',1),(1,98,1290,'2012-10-11 04:16:57',1),(1,51,1290,'2012-10-11 04:16:57',1),(1,161,1290,'2012-10-11 04:16:57',1),(1,22,1290,'2012-10-11 04:16:57',1),(1,178,1290,'2012-10-11 04:16:57',1),(1,30,1290,'2012-10-11 04:16:57',1),(1,243,1290,'2012-10-11 04:16:57',1),(1,31,1290,'2012-10-11 04:16:57',1),(1,251,1290,'2012-10-11 04:16:57',1),(1,83,1290,'2012-10-11 04:16:57',1),(1,6,1294,'2012-10-11 04:17:04',1),(1,247,1294,'2012-10-11 04:17:04',1),(1,124,1294,'2012-10-11 04:17:04',1),(1,245,1294,'2012-10-11 04:17:04',1),(1,43,1294,'2012-10-11 04:17:04',1),(1,47,1294,'2012-10-11 04:17:04',1),(1,98,1294,'2012-10-11 04:17:04',1),(1,85,1294,'2012-10-11 04:17:04',1),(1,247,1275,'2012-10-11 04:46:30',1),(1,217,1275,'2012-10-11 04:46:30',1),(1,209,1275,'2012-10-11 04:46:30',1),(1,6,1275,'2012-10-11 04:46:30',1),(1,98,1276,'2012-10-11 04:46:30',1),(1,51,1276,'2012-10-11 04:46:30',1),(1,161,1276,'2012-10-11 04:46:30',1),(1,22,1276,'2012-10-11 04:46:30',1),(1,178,1276,'2012-10-11 04:46:30',1),(1,30,1276,'2012-10-11 04:46:30',1),(1,243,1276,'2012-10-11 04:46:30',1),(1,31,1276,'2012-10-11 04:46:30',1),(1,34,1280,'2012-10-11 04:46:36',1),(1,85,1280,'2012-10-11 04:46:36',1),(1,192,1280,'2012-10-11 04:46:36',1),(1,73,1280,'2012-10-11 04:46:36',1),(1,53,1280,'2012-10-11 04:46:36',1),(1,130,1280,'2012-10-11 04:46:36',1),(1,76,1280,'2012-10-11 04:46:36',1),(1,50,1280,'2012-10-11 04:46:36',1),(1,251,1279,'2012-10-11 04:46:37',1),(1,83,1279,'2012-10-11 04:46:37',1),(1,64,1279,'2012-10-11 04:46:37',1),(1,4,1279,'2012-10-11 04:46:37',1),(1,251,1288,'2012-10-11 04:46:53',1),(1,83,1288,'2012-10-11 04:46:53',1),(1,93,1288,'2012-10-11 04:46:53',1),(1,64,1288,'2012-10-11 04:46:53',1),(1,88,1277,'2012-10-11 05:16:32',1),(1,82,1277,'2012-10-11 05:16:32',1),(1,124,1277,'2012-10-11 05:16:32',1),(1,18,1277,'2012-10-11 05:16:32',1),(1,245,1277,'2012-10-11 05:16:32',1),(1,43,1277,'2012-10-11 05:16:32',1),(1,47,1277,'2012-10-11 05:16:32',1),(1,158,1277,'2012-10-11 05:16:32',1),(1,34,1289,'2012-10-11 05:16:58',1),(1,251,1289,'2012-10-11 05:16:58',1),(1,83,1289,'2012-10-11 05:16:58',1),(1,85,1289,'2012-10-11 05:16:58',1),(1,192,1289,'2012-10-11 05:16:58',1),(1,73,1289,'2012-10-11 05:16:58',1),(1,93,1289,'2012-10-11 05:16:58',1),(1,53,1289,'2012-10-11 05:16:58',1),(1,110,1323,'2012-10-12 00:46:16',1),(1,65,1324,'2012-10-12 00:46:16',1),(1,202,1325,'2012-10-12 00:46:16',1),(1,242,1326,'2012-10-12 00:46:16',1),(1,6,1328,'2012-10-12 00:46:23',1),(1,4,1328,'2012-10-12 00:46:23',1),(1,65,1327,'2012-10-12 00:46:27',1),(1,6,1329,'2012-10-12 00:46:27',1),(1,4,1329,'2012-10-12 00:46:27',1),(1,6,1330,'2012-10-12 00:46:27',1),(1,4,1330,'2012-10-12 00:46:27',1),(1,6,1331,'2012-10-12 00:46:32',1),(1,4,1331,'2012-10-12 00:46:32',1),(1,6,1332,'2012-10-12 00:46:34',1),(1,4,1332,'2012-10-12 00:46:34',1),(1,65,1333,'2012-10-12 00:46:34',1),(1,242,1333,'2012-10-12 00:46:34',1),(1,110,1333,'2012-10-12 00:46:34',1),(1,202,1333,'2012-10-12 00:46:34',1),(1,203,1334,'2012-10-12 00:46:34',1),(1,5,1334,'2012-10-12 00:46:34',1),(1,201,1334,'2012-10-12 00:46:34',1),(1,77,1334,'2012-10-12 00:46:34',1),(1,203,1335,'2012-10-12 00:46:39',1),(1,5,1335,'2012-10-12 00:46:39',1),(1,201,1335,'2012-10-12 00:46:39',1),(1,77,1335,'2012-10-12 00:46:39',1),(1,203,1337,'2012-10-12 00:46:40',1),(1,5,1337,'2012-10-12 00:46:40',1),(1,201,1337,'2012-10-12 00:46:40',1),(1,77,1337,'2012-10-12 00:46:40',1),(1,65,1338,'2012-10-12 00:46:40',1),(1,242,1338,'2012-10-12 00:46:40',1),(1,110,1338,'2012-10-12 00:46:40',1),(1,202,1338,'2012-10-12 00:46:40',1),(1,203,1338,'2012-10-12 00:46:40',1),(1,5,1338,'2012-10-12 00:46:40',1),(1,201,1338,'2012-10-12 00:46:40',1),(1,77,1338,'2012-10-12 00:46:40',1),(1,65,1336,'2012-10-12 00:46:40',1),(1,242,1336,'2012-10-12 00:46:40',1),(1,110,1336,'2012-10-12 00:46:40',1),(1,202,1336,'2012-10-12 00:46:40',1),(1,65,1342,'2012-10-12 00:46:47',1),(1,242,1342,'2012-10-12 00:46:47',1),(1,110,1342,'2012-10-12 00:46:47',1),(1,202,1342,'2012-10-12 00:46:47',1),(1,203,1342,'2012-10-12 00:46:47',1),(1,5,1342,'2012-10-12 00:46:47',1),(1,201,1342,'2012-10-12 00:46:47',1),(1,77,1342,'2012-10-12 00:46:47',1),(1,65,1339,'2012-10-12 00:46:47',1),(1,242,1339,'2012-10-12 00:46:47',1),(1,110,1339,'2012-10-12 00:46:47',1),(1,202,1339,'2012-10-12 00:46:47',1),(1,203,1339,'2012-10-12 00:46:47',1),(1,5,1339,'2012-10-12 00:46:47',1),(1,201,1339,'2012-10-12 00:46:47',1),(1,77,1339,'2012-10-12 00:46:47',1),(1,65,1340,'2012-10-12 00:46:47',1),(1,242,1340,'2012-10-12 00:46:47',1),(1,110,1340,'2012-10-12 00:46:47',1),(1,202,1340,'2012-10-12 00:46:47',1),(1,203,1340,'2012-10-12 00:46:47',1),(1,5,1340,'2012-10-12 00:46:47',1),(1,201,1340,'2012-10-12 00:46:47',1),(1,77,1340,'2012-10-12 00:46:47',1),(1,65,1341,'2012-10-12 00:46:47',1),(1,242,1341,'2012-10-12 00:46:47',1),(1,110,1341,'2012-10-12 00:46:47',1),(1,202,1341,'2012-10-12 00:46:47',1),(1,203,1341,'2012-10-12 00:46:47',1),(1,5,1341,'2012-10-12 00:46:47',1),(1,201,1341,'2012-10-12 00:46:47',1),(1,77,1341,'2012-10-12 00:46:47',1),(1,65,1350,'2012-10-12 01:16:19',1),(1,242,1350,'2012-10-12 01:16:19',1),(1,110,1350,'2012-10-12 01:16:19',1),(1,202,1350,'2012-10-12 01:16:19',1),(1,203,1350,'2012-10-12 01:16:19',1),(1,5,1350,'2012-10-12 01:16:19',1),(1,201,1350,'2012-10-12 01:16:19',1),(1,77,1350,'2012-10-12 01:16:19',1),(1,203,1344,'2012-10-12 01:46:11',1),(1,6,1345,'2012-10-12 01:46:11',1),(1,4,1345,'2012-10-12 01:46:11',1),(1,5,1343,'2012-10-12 01:46:11',1),(1,6,1346,'2012-10-12 01:46:11',1),(1,4,1346,'2012-10-12 01:46:11',1),(1,65,1347,'2012-10-12 01:46:21',1),(1,242,1347,'2012-10-12 01:46:21',1),(1,110,1347,'2012-10-12 01:46:21',1),(1,202,1347,'2012-10-12 01:46:21',1),(1,203,1348,'2012-10-12 01:46:21',1),(1,5,1348,'2012-10-12 01:46:21',1),(1,201,1348,'2012-10-12 01:46:21',1),(1,77,1348,'2012-10-12 01:46:21',1),(1,65,1349,'2012-10-12 01:46:21',NULL),(1,242,1349,'2012-10-12 01:46:21',NULL),(1,110,1349,'2012-10-12 01:46:21',NULL),(1,202,1349,'2012-10-12 01:46:21',NULL),(1,203,1349,'2012-10-12 01:46:21',NULL),(1,5,1349,'2012-10-12 01:46:21',NULL),(1,201,1349,'2012-10-12 01:46:21',NULL),(1,77,1349,'2012-10-12 01:46:21',NULL),(1,6,1352,'2012-10-12 02:46:15',1),(1,4,1352,'2012-10-12 02:46:15',1),(1,203,1353,'2012-10-12 02:46:15',1),(1,5,1353,'2012-10-12 02:46:15',1),(1,201,1353,'2012-10-12 02:46:15',1),(1,77,1353,'2012-10-12 02:46:15',1),(1,65,1354,'2012-10-12 02:46:15',1),(1,242,1354,'2012-10-12 02:46:15',1),(1,110,1354,'2012-10-12 02:46:15',1),(1,202,1354,'2012-10-12 02:46:15',1),(1,203,1354,'2012-10-12 02:46:15',1),(1,5,1354,'2012-10-12 02:46:15',1),(1,201,1354,'2012-10-12 02:46:15',1),(1,77,1354,'2012-10-12 02:46:15',1),(1,6,1357,'2012-10-12 02:46:23',1),(1,4,1357,'2012-10-12 02:46:23',1),(1,6,1356,'2012-10-12 02:46:24',1),(1,203,1358,'2012-10-12 02:46:24',1),(1,5,1358,'2012-10-12 02:46:24',1),(1,201,1358,'2012-10-12 02:46:24',1),(1,77,1358,'2012-10-12 02:46:24',1),(1,65,1359,'2012-10-12 02:46:30',1),(1,242,1359,'2012-10-12 02:46:30',1),(1,110,1359,'2012-10-12 02:46:30',1),(1,202,1359,'2012-10-12 02:46:30',1),(1,203,1359,'2012-10-12 02:46:30',1),(1,5,1359,'2012-10-12 02:46:30',1),(1,201,1359,'2012-10-12 02:46:30',1),(1,77,1359,'2012-10-12 02:46:30',1),(1,4,1360,'2012-10-12 02:46:31',1),(1,6,1361,'2012-10-12 02:46:31',1),(1,4,1361,'2012-10-12 02:46:31',1),(1,203,1362,'2012-10-12 02:46:31',1),(1,5,1362,'2012-10-12 02:46:31',1),(1,201,1362,'2012-10-12 02:46:31',1),(1,77,1362,'2012-10-12 02:46:31',1),(1,65,1363,'2012-10-12 02:46:37',1),(1,242,1363,'2012-10-12 02:46:37',1),(1,110,1363,'2012-10-12 02:46:37',1),(1,202,1363,'2012-10-12 02:46:37',1),(1,203,1363,'2012-10-12 02:46:37',1),(1,5,1363,'2012-10-12 02:46:37',1),(1,201,1363,'2012-10-12 02:46:37',1),(1,77,1363,'2012-10-12 02:46:37',1),(1,4,1364,'2012-10-12 02:46:41',1),(1,6,1365,'2012-10-12 02:46:41',1),(1,4,1365,'2012-10-12 02:46:41',1),(1,65,1367,'2012-10-12 02:46:44',1),(1,242,1367,'2012-10-12 02:46:44',1),(1,110,1367,'2012-10-12 02:46:44',1),(1,202,1367,'2012-10-12 02:46:44',1),(1,203,1367,'2012-10-12 02:46:44',1),(1,5,1367,'2012-10-12 02:46:44',1),(1,201,1367,'2012-10-12 02:46:44',1),(1,77,1367,'2012-10-12 02:46:44',1),(1,203,1366,'2012-10-12 03:16:43',1),(1,5,1366,'2012-10-12 03:16:43',1),(1,201,1366,'2012-10-12 03:16:43',1),(1,77,1366,'2012-10-12 03:16:43',1),(1,65,1351,'2012-10-12 03:46:17',NULL),(1,242,1351,'2012-10-12 03:46:17',NULL),(1,110,1351,'2012-10-12 03:46:17',NULL),(1,202,1351,'2012-10-12 03:46:17',NULL),(1,6,1371,'2012-10-12 03:46:18',1),(1,4,1371,'2012-10-12 03:46:18',1),(1,6,1372,'2012-10-12 03:46:19',1),(1,4,1372,'2012-10-12 03:46:19',1),(1,203,1374,'2012-10-12 03:46:27',1),(1,5,1374,'2012-10-12 03:46:27',1),(1,201,1374,'2012-10-12 03:46:27',1),(1,77,1374,'2012-10-12 03:46:27',1),(1,6,1377,'2012-10-12 03:46:33',1),(1,4,1377,'2012-10-12 03:46:33',1),(1,6,1370,'2012-10-12 04:16:20',1),(1,4,1369,'2012-10-12 04:16:20',1),(1,65,1373,'2012-10-12 04:16:28',1),(1,242,1373,'2012-10-12 04:16:28',1),(1,110,1373,'2012-10-12 04:16:28',1),(1,202,1373,'2012-10-12 04:16:28',1),(1,203,1378,'2012-10-12 04:16:35',1),(1,5,1378,'2012-10-12 04:16:35',1),(1,201,1378,'2012-10-12 04:16:35',1),(1,77,1378,'2012-10-12 04:16:35',1),(1,6,1381,'2012-10-12 04:16:41',1),(1,4,1381,'2012-10-12 04:16:41',1),(1,65,1382,'2012-10-12 04:16:44',1),(1,242,1382,'2012-10-12 04:16:44',1),(1,110,1382,'2012-10-12 04:16:44',1),(1,202,1382,'2012-10-12 04:16:44',1),(1,203,1387,'2012-10-12 04:16:50',1),(1,5,1387,'2012-10-12 04:16:50',1),(1,201,1387,'2012-10-12 04:16:50',1),(1,77,1387,'2012-10-12 04:16:50',1),(1,201,1385,'2012-10-12 04:16:50',1),(1,6,1386,'2012-10-12 04:16:50',1),(1,4,1386,'2012-10-12 04:16:50',1),(1,203,1391,'2012-10-12 04:16:56',1),(1,5,1391,'2012-10-12 04:16:56',1),(1,77,1390,'2012-10-12 04:16:56',1),(1,65,1392,'2012-10-12 04:16:56',1),(1,242,1392,'2012-10-12 04:16:56',1),(1,110,1392,'2012-10-12 04:16:56',1),(1,202,1392,'2012-10-12 04:16:56',1),(1,65,1375,'2012-10-12 04:46:28',1),(1,242,1375,'2012-10-12 04:46:28',1),(1,110,1375,'2012-10-12 04:46:28',1),(1,202,1375,'2012-10-12 04:46:28',1),(1,203,1375,'2012-10-12 04:46:28',1),(1,5,1375,'2012-10-12 04:46:28',1),(1,201,1375,'2012-10-12 04:46:28',1),(1,77,1375,'2012-10-12 04:46:28',1),(1,65,1376,'2012-10-12 04:46:29',1),(1,242,1376,'2012-10-12 04:46:29',1),(1,110,1376,'2012-10-12 04:46:29',1),(1,202,1376,'2012-10-12 04:46:29',1),(1,203,1376,'2012-10-12 04:46:29',1),(1,5,1376,'2012-10-12 04:46:29',1),(1,201,1376,'2012-10-12 04:46:29',1),(1,77,1376,'2012-10-12 04:46:29',1),(1,95,1383,'2012-10-12 04:46:45',1),(1,25,1383,'2012-10-12 04:46:45',1),(1,164,1383,'2012-10-12 04:46:45',1),(1,12,1383,'2012-10-12 04:46:45',1),(1,235,1383,'2012-10-12 04:46:45',1),(1,148,1383,'2012-10-12 04:46:45',1),(1,142,1383,'2012-10-12 04:46:45',1),(1,199,1383,'2012-10-12 04:46:45',1),(1,95,1393,'2012-10-12 04:47:05',1),(1,25,1393,'2012-10-12 04:47:05',1),(1,164,1393,'2012-10-12 04:47:05',1),(1,12,1393,'2012-10-12 04:47:05',1),(1,235,1393,'2012-10-12 04:47:05',1),(1,148,1393,'2012-10-12 04:47:05',1),(1,142,1393,'2012-10-12 04:47:05',1),(1,199,1393,'2012-10-12 04:47:05',1),(1,209,1355,'2012-10-12 05:16:33',1),(1,95,1355,'2012-10-12 05:16:33',1),(1,25,1355,'2012-10-12 05:16:33',1),(1,164,1355,'2012-10-12 05:16:33',1),(1,12,1355,'2012-10-12 05:16:33',1),(1,235,1355,'2012-10-12 05:16:33',1),(1,148,1355,'2012-10-12 05:16:33',1),(1,23,1355,'2012-10-12 05:16:33',1),(1,250,1355,'2012-10-12 05:16:33',1),(1,174,1355,'2012-10-12 05:16:33',1),(1,107,1355,'2012-10-12 05:16:33',1),(1,15,1355,'2012-10-12 05:16:33',1),(1,55,1355,'2012-10-12 05:16:33',1),(1,112,1355,'2012-10-12 05:16:33',1),(1,185,1355,'2012-10-12 05:16:33',1),(1,142,1355,'2012-10-12 05:16:33',1),(1,23,1379,'2012-10-12 05:16:36',1),(1,250,1379,'2012-10-12 05:16:36',1),(1,174,1379,'2012-10-12 05:16:36',1),(1,107,1379,'2012-10-12 05:16:36',1),(1,15,1379,'2012-10-12 05:16:36',1),(1,55,1379,'2012-10-12 05:16:36',1),(1,112,1379,'2012-10-12 05:16:36',1),(1,185,1379,'2012-10-12 05:16:36',1),(1,209,1368,'2012-10-12 05:16:51',1),(1,95,1368,'2012-10-12 05:16:51',1),(1,25,1368,'2012-10-12 05:16:51',1),(1,164,1368,'2012-10-12 05:16:51',1),(1,12,1368,'2012-10-12 05:16:51',1),(1,235,1368,'2012-10-12 05:16:51',1),(1,148,1368,'2012-10-12 05:16:51',1),(1,23,1368,'2012-10-12 05:16:51',1),(1,250,1368,'2012-10-12 05:16:51',1),(1,174,1368,'2012-10-12 05:16:51',1),(1,107,1368,'2012-10-12 05:16:51',1),(1,15,1368,'2012-10-12 05:16:51',1),(1,55,1368,'2012-10-12 05:16:51',1),(1,112,1368,'2012-10-12 05:16:51',1),(1,185,1368,'2012-10-12 05:16:51',1),(1,142,1368,'2012-10-12 05:16:51',1),(1,65,1388,'2012-10-12 05:16:55',1),(1,242,1388,'2012-10-12 05:16:55',1),(1,110,1388,'2012-10-12 05:16:55',1),(1,202,1388,'2012-10-12 05:16:55',1),(1,203,1388,'2012-10-12 05:16:55',1),(1,5,1388,'2012-10-12 05:16:55',1),(1,201,1388,'2012-10-12 05:16:55',1),(1,77,1388,'2012-10-12 05:16:55',1),(1,209,1380,'2012-10-12 05:46:37',1),(1,95,1380,'2012-10-12 05:46:37',1),(1,25,1380,'2012-10-12 05:46:37',1),(1,164,1380,'2012-10-12 05:46:37',1),(1,12,1380,'2012-10-12 05:46:37',1),(1,235,1380,'2012-10-12 05:46:37',1),(1,148,1380,'2012-10-12 05:46:37',1),(1,23,1380,'2012-10-12 05:46:37',1),(1,250,1380,'2012-10-12 05:46:37',1),(1,174,1380,'2012-10-12 05:46:37',1),(1,107,1380,'2012-10-12 05:46:37',1),(1,15,1380,'2012-10-12 05:46:37',1),(1,55,1380,'2012-10-12 05:46:37',1),(1,112,1380,'2012-10-12 05:46:37',1),(1,65,1380,'2012-10-12 05:46:37',1),(1,242,1380,'2012-10-12 05:46:37',1),(1,209,1384,'2012-10-12 05:46:47',1),(1,95,1384,'2012-10-12 05:46:47',1),(1,25,1384,'2012-10-12 05:46:47',1),(1,164,1384,'2012-10-12 05:46:47',1),(1,12,1384,'2012-10-12 05:46:47',1),(1,235,1384,'2012-10-12 05:46:47',1),(1,148,1384,'2012-10-12 05:46:47',1),(1,23,1384,'2012-10-12 05:46:47',1),(1,250,1384,'2012-10-12 05:46:47',1),(1,174,1384,'2012-10-12 05:46:47',1),(1,107,1384,'2012-10-12 05:46:47',1),(1,15,1384,'2012-10-12 05:46:47',1),(1,55,1384,'2012-10-12 05:46:47',1),(1,112,1384,'2012-10-12 05:46:47',1),(1,65,1384,'2012-10-12 05:46:47',1),(1,242,1384,'2012-10-12 05:46:47',1),(1,209,1389,'2012-10-12 06:17:01',1),(1,95,1389,'2012-10-12 06:17:01',1),(1,25,1389,'2012-10-12 06:17:01',1),(1,164,1389,'2012-10-12 06:17:01',1),(1,12,1389,'2012-10-12 06:17:01',1),(1,235,1389,'2012-10-12 06:17:01',1),(1,148,1389,'2012-10-12 06:17:01',1),(1,23,1389,'2012-10-12 06:17:01',1),(1,250,1389,'2012-10-12 06:17:01',1),(1,174,1389,'2012-10-12 06:17:01',1),(1,107,1389,'2012-10-12 06:17:01',1),(1,15,1389,'2012-10-12 06:17:01',1),(1,55,1389,'2012-10-12 06:17:01',1),(1,112,1389,'2012-10-12 06:17:01',1),(1,65,1389,'2012-10-12 06:17:01',1),(1,242,1389,'2012-10-12 06:17:01',1),(1,143,1394,'2012-10-13 00:46:17',1),(1,143,1395,'2012-10-13 00:46:17',1),(1,143,1396,'2012-10-13 00:46:17',1),(1,143,1397,'2012-10-13 01:16:19',1),(1,143,1398,'2012-10-13 01:16:25',1),(1,143,1414,'2012-10-13 01:46:13',1),(1,143,1415,'2012-10-13 01:46:13',1),(1,143,1427,'2012-10-13 02:46:27',1),(1,151,1431,'2012-10-13 02:46:36',1),(1,151,1435,'2012-10-13 02:46:40',1),(1,151,1441,'2012-10-13 03:46:17',1),(1,151,1440,'2012-10-13 03:46:17',1),(1,151,1456,'2012-10-13 03:46:48',1),(1,151,1461,'2012-10-13 03:47:00',1),(1,149,1416,'2012-10-13 08:46:29',1),(1,48,1416,'2012-10-13 08:46:29',1),(1,162,1399,'2012-10-13 08:46:50',1),(1,171,1399,'2012-10-13 08:46:50',1),(1,162,1400,'2012-10-13 08:46:52',1),(1,171,1400,'2012-10-13 08:46:52',1),(1,162,1401,'2012-10-13 08:46:57',1),(1,171,1401,'2012-10-13 08:46:57',1),(1,162,1402,'2012-10-13 08:46:57',1),(1,171,1402,'2012-10-13 08:46:57',1),(1,162,1403,'2012-10-13 08:46:57',1),(1,171,1403,'2012-10-13 08:46:57',1),(1,149,1404,'2012-10-13 08:46:59',1),(1,89,1404,'2012-10-13 08:46:59',1),(1,48,1404,'2012-10-13 08:46:59',1),(1,193,1404,'2012-10-13 08:46:59',1),(1,149,1405,'2012-10-13 08:46:59',1),(1,89,1405,'2012-10-13 08:46:59',1),(1,48,1405,'2012-10-13 08:46:59',1),(1,171,1405,'2012-10-13 08:46:59',1),(1,1,1417,'2012-10-13 09:16:30',1),(1,9,1417,'2012-10-13 09:16:30',1),(1,237,1423,'2012-10-13 09:16:33',1),(1,162,1423,'2012-10-13 09:16:33',1),(1,160,1425,'2012-10-13 09:16:35',1),(1,237,1425,'2012-10-13 09:16:35',1),(1,149,1425,'2012-10-13 09:16:35',1),(1,89,1425,'2012-10-13 09:16:35',1),(1,48,1425,'2012-10-13 09:16:35',1),(1,162,1425,'2012-10-13 09:16:35',1),(1,111,1425,'2012-10-13 09:16:35',1),(1,171,1425,'2012-10-13 09:16:35',1),(1,193,1428,'2012-10-13 09:16:47',1),(1,59,1428,'2012-10-13 09:16:47',1),(1,237,1432,'2012-10-13 09:16:54',1),(1,162,1432,'2012-10-13 09:16:54',1),(1,193,1452,'2012-10-13 09:17:06',1),(1,159,1452,'2012-10-13 09:17:06',1),(1,149,1407,'2012-10-13 09:17:14',1),(1,89,1407,'2012-10-13 09:17:14',1),(1,48,1407,'2012-10-13 09:17:14',1),(1,171,1407,'2012-10-13 09:17:14',1),(1,149,1408,'2012-10-13 09:17:14',1),(1,89,1408,'2012-10-13 09:17:14',1),(1,48,1408,'2012-10-13 09:17:14',1),(1,171,1408,'2012-10-13 09:17:14',1),(1,237,1409,'2012-10-13 09:17:14',1),(1,149,1409,'2012-10-13 09:17:14',1),(1,89,1409,'2012-10-13 09:17:14',1),(1,48,1409,'2012-10-13 09:17:14',1),(1,162,1409,'2012-10-13 09:17:14',1),(1,171,1409,'2012-10-13 09:17:14',1),(1,193,1409,'2012-10-13 09:17:14',1),(1,59,1409,'2012-10-13 09:17:14',1),(1,160,1410,'2012-10-13 09:17:16',1),(1,237,1410,'2012-10-13 09:17:16',1),(1,149,1410,'2012-10-13 09:17:16',1),(1,89,1410,'2012-10-13 09:17:16',1),(1,48,1410,'2012-10-13 09:17:16',1),(1,162,1410,'2012-10-13 09:17:16',1),(1,111,1410,'2012-10-13 09:17:16',1),(1,171,1410,'2012-10-13 09:17:16',1),(1,193,1462,'2012-10-13 09:17:21',1),(1,159,1462,'2012-10-13 09:17:21',1),(1,1,1442,'2012-10-13 09:46:34',1),(1,9,1442,'2012-10-13 09:46:34',1),(1,95,1424,'2012-10-13 09:46:37',1),(1,11,1424,'2012-10-13 09:46:37',1),(1,151,1424,'2012-10-13 09:46:37',1),(1,1,1424,'2012-10-13 09:46:37',1),(1,95,1418,'2012-10-13 09:46:45',1),(1,11,1418,'2012-10-13 09:46:45',1),(1,1,1418,'2012-10-13 09:46:45',1),(1,9,1418,'2012-10-13 09:46:45',1),(1,1,1436,'2012-10-13 09:47:06',1),(1,9,1436,'2012-10-13 09:47:06',1),(1,44,1443,'2012-10-13 10:46:38',1),(1,63,1443,'2012-10-13 10:46:38',1),(1,20,1419,'2012-10-13 10:46:48',1),(1,44,1419,'2012-10-13 10:46:48',1),(1,63,1419,'2012-10-13 10:46:48',1),(1,115,1419,'2012-10-13 10:46:48',1),(1,227,1429,'2012-10-13 10:46:50',1),(1,63,1429,'2012-10-13 10:46:50',1),(1,115,1429,'2012-10-13 10:46:50',1),(1,209,1429,'2012-10-13 10:46:50',1),(1,125,1448,'2012-10-13 10:46:53',1),(1,238,1448,'2012-10-13 10:46:53',1),(1,133,1433,'2012-10-13 10:47:00',1),(1,227,1433,'2012-10-13 10:47:00',1),(1,63,1433,'2012-10-13 10:47:00',1),(1,115,1433,'2012-10-13 10:47:00',1),(1,20,1406,'2012-10-13 10:47:12',1),(1,44,1406,'2012-10-13 10:47:12',1),(1,63,1406,'2012-10-13 10:47:12',1),(1,115,1406,'2012-10-13 10:47:12',1),(1,133,1437,'2012-10-13 10:47:15',1),(1,227,1437,'2012-10-13 10:47:15',1),(1,63,1437,'2012-10-13 10:47:15',1),(1,115,1437,'2012-10-13 10:47:15',1),(1,63,1457,'2012-10-13 10:47:16',1),(1,115,1457,'2012-10-13 10:47:16',1),(1,133,1444,'2012-10-13 11:16:43',1),(1,227,1444,'2012-10-13 11:16:43',1),(1,63,1444,'2012-10-13 11:16:43',1),(1,115,1444,'2012-10-13 11:16:43',1),(1,20,1422,'2012-10-13 11:46:41',NULL),(1,125,1422,'2012-10-13 11:46:41',NULL),(1,44,1422,'2012-10-13 11:46:41',NULL),(1,238,1422,'2012-10-13 11:46:41',NULL),(1,133,1445,'2012-10-13 11:46:44',1),(1,227,1445,'2012-10-13 11:46:44',1),(1,63,1445,'2012-10-13 11:46:44',1),(1,115,1445,'2012-10-13 11:46:44',1),(1,20,1420,'2012-10-13 11:46:50',NULL),(1,25,1420,'2012-10-13 11:46:50',NULL),(1,125,1420,'2012-10-13 11:46:50',NULL),(1,120,1420,'2012-10-13 11:46:50',NULL),(1,123,1420,'2012-10-13 11:46:50',NULL),(1,44,1420,'2012-10-13 11:46:50',NULL),(1,238,1420,'2012-10-13 11:46:50',NULL),(1,143,1420,'2012-10-13 11:46:50',NULL),(1,20,1421,'2012-10-13 11:46:50',1),(1,25,1421,'2012-10-13 11:46:50',1),(1,125,1421,'2012-10-13 11:46:50',1),(1,120,1421,'2012-10-13 11:46:50',1),(1,123,1421,'2012-10-13 11:46:50',1),(1,44,1421,'2012-10-13 11:46:50',1),(1,238,1421,'2012-10-13 11:46:50',1),(1,143,1421,'2012-10-13 11:46:50',1),(1,160,1426,'2012-10-13 11:46:50',1),(1,237,1426,'2012-10-13 11:46:50',1),(1,149,1426,'2012-10-13 11:46:50',1),(1,89,1426,'2012-10-13 11:46:50',1),(1,48,1426,'2012-10-13 11:46:50',1),(1,162,1426,'2012-10-13 11:46:50',1),(1,111,1426,'2012-10-13 11:46:50',1),(1,179,1426,'2012-10-13 11:46:50',1),(1,177,1426,'2012-10-13 11:46:50',1),(1,171,1426,'2012-10-13 11:46:50',1),(1,193,1426,'2012-10-13 11:46:50',1),(1,63,1426,'2012-10-13 11:46:50',1),(1,159,1426,'2012-10-13 11:46:50',1),(1,59,1426,'2012-10-13 11:46:50',1),(1,115,1426,'2012-10-13 11:46:50',1),(1,207,1426,'2012-10-13 11:46:50',1),(1,133,1449,'2012-10-13 11:46:58',1),(1,227,1449,'2012-10-13 11:46:58',1),(1,63,1449,'2012-10-13 11:46:58',1),(1,115,1449,'2012-10-13 11:46:58',1),(1,20,1430,'2012-10-13 11:47:02',1),(1,25,1430,'2012-10-13 11:47:02',1),(1,125,1430,'2012-10-13 11:47:02',1),(1,120,1430,'2012-10-13 11:47:02',1),(1,123,1430,'2012-10-13 11:47:02',1),(1,44,1430,'2012-10-13 11:47:02',1),(1,238,1430,'2012-10-13 11:47:02',1),(1,143,1430,'2012-10-13 11:47:02',1),(1,20,1453,'2012-10-13 11:47:08',1),(1,125,1453,'2012-10-13 11:47:08',1),(1,44,1453,'2012-10-13 11:47:08',1),(1,238,1453,'2012-10-13 11:47:08',1),(1,20,1434,'2012-10-13 11:47:08',1),(1,25,1434,'2012-10-13 11:47:08',1),(1,125,1434,'2012-10-13 11:47:08',1),(1,120,1434,'2012-10-13 11:47:08',1),(1,123,1434,'2012-10-13 11:47:08',1),(1,44,1434,'2012-10-13 11:47:08',1),(1,238,1434,'2012-10-13 11:47:08',1),(1,143,1434,'2012-10-13 11:47:08',1),(1,179,1458,'2012-10-13 11:47:20',1),(1,207,1458,'2012-10-13 11:47:20',1),(1,68,1458,'2012-10-13 11:47:20',1),(1,212,1458,'2012-10-13 11:47:20',1),(1,20,1411,'2012-10-13 11:47:24',1),(1,25,1411,'2012-10-13 11:47:24',1),(1,125,1411,'2012-10-13 11:47:24',1),(1,120,1411,'2012-10-13 11:47:24',1),(1,123,1411,'2012-10-13 11:47:24',1),(1,44,1411,'2012-10-13 11:47:24',1),(1,238,1411,'2012-10-13 11:47:24',1),(1,143,1411,'2012-10-13 11:47:24',1),(1,20,1412,'2012-10-13 11:47:24',1),(1,25,1412,'2012-10-13 11:47:24',1),(1,125,1412,'2012-10-13 11:47:24',1),(1,120,1412,'2012-10-13 11:47:24',1),(1,123,1412,'2012-10-13 11:47:24',1),(1,44,1412,'2012-10-13 11:47:24',1),(1,238,1412,'2012-10-13 11:47:24',1),(1,143,1412,'2012-10-13 11:47:24',1),(1,20,1413,'2012-10-13 11:47:26',1),(1,25,1413,'2012-10-13 11:47:26',1),(1,125,1413,'2012-10-13 11:47:26',1),(1,120,1413,'2012-10-13 11:47:26',1),(1,123,1413,'2012-10-13 11:47:26',1),(1,44,1413,'2012-10-13 11:47:26',1),(1,238,1413,'2012-10-13 11:47:26',1),(1,143,1413,'2012-10-13 11:47:26',1),(1,179,1463,'2012-10-13 11:47:30',1),(1,207,1463,'2012-10-13 11:47:30',1),(1,68,1463,'2012-10-13 11:47:30',1),(1,212,1463,'2012-10-13 11:47:30',1),(1,160,1451,'2012-10-13 12:17:03',1),(1,237,1451,'2012-10-13 12:17:03',1),(1,149,1451,'2012-10-13 12:17:03',1),(1,89,1451,'2012-10-13 12:17:03',1),(1,48,1451,'2012-10-13 12:17:03',1),(1,162,1451,'2012-10-13 12:17:03',1),(1,111,1451,'2012-10-13 12:17:03',1),(1,179,1451,'2012-10-13 12:17:03',1),(1,165,1451,'2012-10-13 12:17:03',1),(1,177,1451,'2012-10-13 12:17:03',1),(1,171,1451,'2012-10-13 12:17:03',1),(1,193,1451,'2012-10-13 12:17:03',1),(1,63,1451,'2012-10-13 12:17:03',1),(1,159,1451,'2012-10-13 12:17:03',1),(1,59,1451,'2012-10-13 12:17:03',1),(1,115,1451,'2012-10-13 12:17:03',1),(1,20,1438,'2012-10-13 12:17:18',1),(1,25,1438,'2012-10-13 12:17:18',1),(1,125,1438,'2012-10-13 12:17:18',1),(1,120,1438,'2012-10-13 12:17:18',1),(1,123,1438,'2012-10-13 12:17:18',1),(1,44,1438,'2012-10-13 12:17:18',1),(1,238,1438,'2012-10-13 12:17:18',1),(1,143,1438,'2012-10-13 12:17:18',1),(1,160,1439,'2012-10-13 12:17:30',1),(1,237,1439,'2012-10-13 12:17:30',1),(1,149,1439,'2012-10-13 12:17:30',1),(1,89,1439,'2012-10-13 12:17:30',1),(1,48,1439,'2012-10-13 12:17:30',1),(1,162,1439,'2012-10-13 12:17:30',1),(1,111,1439,'2012-10-13 12:17:30',1),(1,179,1439,'2012-10-13 12:17:30',1),(1,177,1439,'2012-10-13 12:17:30',1),(1,171,1439,'2012-10-13 12:17:30',1),(1,193,1439,'2012-10-13 12:17:30',1),(1,63,1439,'2012-10-13 12:17:30',1),(1,159,1439,'2012-10-13 12:17:30',1),(1,59,1439,'2012-10-13 12:17:30',1),(1,115,1439,'2012-10-13 12:17:30',1),(1,207,1439,'2012-10-13 12:17:30',1),(1,20,1446,'2012-10-13 12:46:48',1),(1,25,1446,'2012-10-13 12:46:48',1),(1,125,1446,'2012-10-13 12:46:48',1),(1,120,1446,'2012-10-13 12:46:48',1),(1,123,1446,'2012-10-13 12:46:48',1),(1,44,1446,'2012-10-13 12:46:48',1),(1,238,1446,'2012-10-13 12:46:48',1),(1,143,1446,'2012-10-13 12:46:48',1),(1,20,1447,'2012-10-13 12:46:52',1),(1,25,1447,'2012-10-13 12:46:52',1),(1,125,1447,'2012-10-13 12:46:52',1),(1,120,1447,'2012-10-13 12:46:52',1),(1,123,1447,'2012-10-13 12:46:52',1),(1,44,1447,'2012-10-13 12:46:52',1),(1,238,1447,'2012-10-13 12:46:52',1),(1,143,1447,'2012-10-13 12:46:52',1),(1,140,1454,'2012-10-13 12:47:14',1),(1,237,1454,'2012-10-13 12:47:14',1),(1,149,1454,'2012-10-13 12:47:14',1),(1,89,1454,'2012-10-13 12:47:14',1),(1,48,1454,'2012-10-13 12:47:14',1),(1,162,1454,'2012-10-13 12:47:14',1),(1,111,1454,'2012-10-13 12:47:14',1),(1,179,1454,'2012-10-13 12:47:14',1),(1,160,1455,'2012-10-13 12:47:17',1),(1,237,1455,'2012-10-13 12:47:17',1),(1,149,1455,'2012-10-13 12:47:17',1),(1,89,1455,'2012-10-13 12:47:17',1),(1,48,1455,'2012-10-13 12:47:17',1),(1,162,1455,'2012-10-13 12:47:17',1),(1,111,1455,'2012-10-13 12:47:17',1),(1,179,1455,'2012-10-13 12:47:17',1),(1,165,1455,'2012-10-13 12:47:17',1),(1,177,1455,'2012-10-13 12:47:17',1),(1,171,1455,'2012-10-13 12:47:17',1),(1,193,1455,'2012-10-13 12:47:17',1),(1,63,1455,'2012-10-13 12:47:17',1),(1,159,1455,'2012-10-13 12:47:17',1),(1,59,1455,'2012-10-13 12:47:17',1),(1,115,1455,'2012-10-13 12:47:17',1),(1,160,1460,'2012-10-13 12:47:29',1),(1,140,1460,'2012-10-13 12:47:29',1),(1,237,1460,'2012-10-13 12:47:29',1),(1,149,1460,'2012-10-13 12:47:29',1),(1,89,1460,'2012-10-13 12:47:29',1),(1,48,1460,'2012-10-13 12:47:29',1),(1,162,1460,'2012-10-13 12:47:29',1),(1,111,1460,'2012-10-13 12:47:29',1),(1,179,1460,'2012-10-13 12:47:29',1),(1,165,1460,'2012-10-13 12:47:29',1),(1,177,1460,'2012-10-13 12:47:29',1),(1,171,1460,'2012-10-13 12:47:29',1),(1,193,1460,'2012-10-13 12:47:29',1),(1,63,1460,'2012-10-13 12:47:29',1),(1,159,1460,'2012-10-13 12:47:29',1),(1,59,1460,'2012-10-13 12:47:29',1),(1,20,1450,'2012-10-13 13:17:02',1),(1,25,1450,'2012-10-13 13:17:02',1),(1,125,1450,'2012-10-13 13:17:02',1),(1,120,1450,'2012-10-13 13:17:02',1),(1,123,1450,'2012-10-13 13:17:02',1),(1,44,1450,'2012-10-13 13:17:02',1),(1,238,1450,'2012-10-13 13:17:02',1),(1,143,1450,'2012-10-13 13:17:02',1),(1,165,1459,'2012-10-13 13:17:30',1),(1,177,1459,'2012-10-13 13:17:30',1),(1,171,1459,'2012-10-13 13:17:30',1),(1,193,1459,'2012-10-13 13:17:30',1),(1,63,1459,'2012-10-13 13:17:30',1),(1,159,1459,'2012-10-13 13:17:30',1),(1,59,1459,'2012-10-13 13:17:30',1),(1,103,1459,'2012-10-13 13:17:30',1),(1,237,1464,'2012-10-13 13:17:34',1),(1,149,1464,'2012-10-13 13:17:34',1),(1,89,1464,'2012-10-13 13:17:34',1),(1,48,1464,'2012-10-13 13:17:34',1),(1,162,1464,'2012-10-13 13:17:34',1),(1,111,1464,'2012-10-13 13:17:34',1),(1,179,1464,'2012-10-13 13:17:34',1),(1,204,1464,'2012-10-13 13:17:34',1),(1,207,1468,'2012-10-14 00:46:16',1),(1,112,1465,'2012-10-14 00:46:17',1),(1,96,1466,'2012-10-14 00:46:17',1),(1,96,1467,'2012-10-14 00:46:17',1),(1,48,1469,'2012-10-14 00:46:23',1),(1,65,1470,'2012-10-14 00:46:24',1),(1,242,1470,'2012-10-14 00:46:24',1),(1,48,1471,'2012-10-14 00:46:24',1),(1,112,1471,'2012-10-14 00:46:24',1),(1,48,1472,'2012-10-14 00:46:24',1),(1,112,1472,'2012-10-14 00:46:24',1),(1,183,1473,'2012-10-14 00:46:30',1),(1,113,1473,'2012-10-14 00:46:30',1),(1,96,1474,'2012-10-14 00:46:35',1),(1,135,1474,'2012-10-14 00:46:35',1),(1,183,1475,'2012-10-14 00:46:35',1),(1,113,1475,'2012-10-14 00:46:35',1),(1,96,1475,'2012-10-14 00:46:35',1),(1,135,1475,'2012-10-14 00:46:35',1),(1,89,1476,'2012-10-14 00:46:35',1),(1,120,1476,'2012-10-14 00:46:35',1),(1,121,1476,'2012-10-14 00:46:35',1),(1,123,1476,'2012-10-14 00:46:35',1),(1,89,1477,'2012-10-14 00:46:37',1),(1,120,1477,'2012-10-14 00:46:37',1),(1,121,1477,'2012-10-14 00:46:37',1),(1,123,1477,'2012-10-14 00:46:37',1),(1,183,1479,'2012-10-14 00:46:41',1),(1,113,1479,'2012-10-14 00:46:41',1),(1,96,1479,'2012-10-14 00:46:41',1),(1,135,1479,'2012-10-14 00:46:41',1),(1,89,1478,'2012-10-14 00:46:41',1),(1,120,1478,'2012-10-14 00:46:41',1),(1,121,1478,'2012-10-14 00:46:41',1),(1,123,1478,'2012-10-14 00:46:41',1),(1,183,1480,'2012-10-14 00:46:41',1),(1,113,1480,'2012-10-14 00:46:41',1),(1,135,1480,'2012-10-14 00:46:41',1),(1,89,1480,'2012-10-14 00:46:41',1),(1,120,1480,'2012-10-14 00:46:41',1),(1,121,1480,'2012-10-14 00:46:41',1),(1,123,1480,'2012-10-14 00:46:41',1),(1,48,1480,'2012-10-14 00:46:41',1),(1,183,1481,'2012-10-14 00:46:47',1),(1,113,1481,'2012-10-14 00:46:47',1),(1,135,1481,'2012-10-14 00:46:47',1),(1,89,1481,'2012-10-14 00:46:47',1),(1,120,1481,'2012-10-14 00:46:47',1),(1,121,1481,'2012-10-14 00:46:47',1),(1,123,1481,'2012-10-14 00:46:47',1),(1,48,1481,'2012-10-14 00:46:47',1),(1,183,1482,'2012-10-14 00:46:47',1),(1,113,1482,'2012-10-14 00:46:47',1),(1,96,1482,'2012-10-14 00:46:47',1),(1,135,1482,'2012-10-14 00:46:47',1),(1,89,1482,'2012-10-14 00:46:47',1),(1,120,1482,'2012-10-14 00:46:47',1),(1,121,1482,'2012-10-14 00:46:47',1),(1,123,1482,'2012-10-14 00:46:47',1),(1,183,1483,'2012-10-14 00:46:47',1),(1,113,1483,'2012-10-14 00:46:47',1),(1,135,1483,'2012-10-14 00:46:47',1),(1,89,1483,'2012-10-14 00:46:47',1),(1,120,1483,'2012-10-14 00:46:47',1),(1,121,1483,'2012-10-14 00:46:47',1),(1,123,1483,'2012-10-14 00:46:47',1),(1,48,1483,'2012-10-14 00:46:47',1),(1,183,1484,'2012-10-14 00:46:47',1),(1,113,1484,'2012-10-14 00:46:47',1),(1,96,1484,'2012-10-14 00:46:47',1),(1,135,1484,'2012-10-14 00:46:47',1),(1,89,1484,'2012-10-14 00:46:47',1),(1,120,1484,'2012-10-14 00:46:47',1),(1,121,1484,'2012-10-14 00:46:47',1),(1,123,1484,'2012-10-14 00:46:47',1),(1,96,1492,'2012-10-14 01:16:18',1),(1,135,1492,'2012-10-14 01:16:18',1),(1,89,1492,'2012-10-14 01:16:18',1),(1,120,1492,'2012-10-14 01:16:18',1),(1,121,1492,'2012-10-14 01:16:18',1),(1,123,1492,'2012-10-14 01:16:18',1),(1,48,1492,'2012-10-14 01:16:18',1),(1,126,1492,'2012-10-14 01:16:18',1),(1,14,1487,'2012-10-14 01:46:12',1),(1,112,1487,'2012-10-14 01:46:12',1),(1,168,1485,'2012-10-14 01:46:12',1),(1,174,1488,'2012-10-14 01:46:12',1),(1,107,1488,'2012-10-14 01:46:12',1),(1,65,1486,'2012-10-14 01:46:12',1),(1,32,1489,'2012-10-14 01:46:22',1),(1,86,1489,'2012-10-14 01:46:22',1),(1,115,1489,'2012-10-14 01:46:22',1),(1,8,1489,'2012-10-14 01:46:22',1),(1,12,1491,'2012-10-14 01:46:22',NULL),(1,186,1491,'2012-10-14 01:46:22',NULL),(1,155,1491,'2012-10-14 01:46:22',NULL),(1,143,1491,'2012-10-14 01:46:22',NULL),(1,235,1491,'2012-10-14 01:46:22',NULL),(1,194,1491,'2012-10-14 01:46:22',NULL),(1,111,1491,'2012-10-14 01:46:22',NULL),(1,179,1491,'2012-10-14 01:46:22',NULL),(1,62,1490,'2012-10-14 01:46:22',1),(1,106,1490,'2012-10-14 01:46:22',1),(1,172,1490,'2012-10-14 01:46:22',1),(1,17,1490,'2012-10-14 01:46:22',1),(1,230,1494,'2012-10-14 02:46:16',1),(1,216,1494,'2012-10-14 02:46:16',1),(1,9,1495,'2012-10-14 02:46:16',1),(1,60,1495,'2012-10-14 02:46:16',1),(1,215,1495,'2012-10-14 02:46:16',1),(1,5,1495,'2012-10-14 02:46:16',1),(1,106,1496,'2012-10-14 02:46:16',1),(1,172,1496,'2012-10-14 02:46:16',1),(1,190,1496,'2012-10-14 02:46:16',1),(1,17,1496,'2012-10-14 02:46:16',1),(1,191,1496,'2012-10-14 02:46:16',1),(1,32,1496,'2012-10-14 02:46:16',1),(1,114,1496,'2012-10-14 02:46:16',1),(1,144,1496,'2012-10-14 02:46:16',1),(1,218,1498,'2012-10-14 02:46:24',1),(1,94,1497,'2012-10-14 02:46:24',1),(1,95,1497,'2012-10-14 02:46:24',1),(1,183,1497,'2012-10-14 02:46:24',1),(1,113,1497,'2012-10-14 02:46:24',1),(1,140,1497,'2012-10-14 02:46:24',1),(1,96,1497,'2012-10-14 02:46:24',1),(1,134,1497,'2012-10-14 02:46:24',1),(1,135,1497,'2012-10-14 02:46:24',1),(1,149,1497,'2012-10-14 02:46:24',1),(1,118,1497,'2012-10-14 02:46:24',1),(1,89,1497,'2012-10-14 02:46:24',1),(1,120,1497,'2012-10-14 02:46:24',1),(1,121,1497,'2012-10-14 02:46:24',1),(1,11,1497,'2012-10-14 02:46:24',1),(1,123,1497,'2012-10-14 02:46:24',1),(1,48,1497,'2012-10-14 02:46:24',1),(1,193,1499,'2012-10-14 02:46:24',1),(1,110,1499,'2012-10-14 02:46:24',1),(1,94,1500,'2012-10-14 02:46:24',1),(1,95,1500,'2012-10-14 02:46:24',1),(1,183,1500,'2012-10-14 02:46:24',1),(1,113,1500,'2012-10-14 02:46:24',1),(1,6,1502,'2012-10-14 02:46:33',1),(1,188,1501,'2012-10-14 02:46:33',1),(1,23,1501,'2012-10-14 02:46:33',1),(1,59,1501,'2012-10-14 02:46:33',1),(1,86,1501,'2012-10-14 02:46:33',1),(1,115,1501,'2012-10-14 02:46:33',1),(1,8,1501,'2012-10-14 02:46:33',1),(1,74,1501,'2012-10-14 02:46:33',1),(1,87,1501,'2012-10-14 02:46:33',1),(1,121,1503,'2012-10-14 02:46:33',1),(1,11,1503,'2012-10-14 02:46:33',1),(1,140,1504,'2012-10-14 02:46:33',1),(1,96,1504,'2012-10-14 02:46:33',1),(1,134,1504,'2012-10-14 02:46:33',1),(1,135,1504,'2012-10-14 02:46:33',1),(1,6,1505,'2012-10-14 02:46:44',1),(1,226,1505,'2012-10-14 02:46:44',1),(1,174,1505,'2012-10-14 02:46:44',1),(1,117,1505,'2012-10-14 02:46:44',1),(1,166,1505,'2012-10-14 02:46:44',1),(1,107,1505,'2012-10-14 02:46:44',1),(1,14,1505,'2012-10-14 02:46:44',1),(1,75,1505,'2012-10-14 02:46:44',1),(1,226,1506,'2012-10-14 02:46:44',1),(1,123,1507,'2012-10-14 02:46:44',1),(1,48,1507,'2012-10-14 02:46:44',1),(1,149,1508,'2012-10-14 02:46:44',1),(1,118,1508,'2012-10-14 02:46:44',1),(1,89,1508,'2012-10-14 02:46:44',1),(1,120,1508,'2012-10-14 02:46:44',1),(1,55,1509,'2012-10-14 02:46:49',1),(1,112,1509,'2012-10-14 02:46:49',1),(1,168,1509,'2012-10-14 02:46:49',1),(1,65,1509,'2012-10-14 02:46:49',1),(1,242,1509,'2012-10-14 02:46:49',1),(1,202,1509,'2012-10-14 02:46:49',1),(1,203,1509,'2012-10-14 02:46:49',1),(1,108,1509,'2012-10-14 02:46:49',1),(1,151,1510,'2012-10-14 02:46:49',1),(1,164,1510,'2012-10-14 02:46:49',1),(1,126,1510,'2012-10-14 02:46:49',1),(1,239,1510,'2012-10-14 02:46:49',1),(1,12,1510,'2012-10-14 02:46:49',1),(1,186,1510,'2012-10-14 02:46:49',1),(1,155,1510,'2012-10-14 02:46:49',1),(1,143,1510,'2012-10-14 02:46:49',1),(1,235,1510,'2012-10-14 02:46:49',1),(1,194,1510,'2012-10-14 02:46:49',1),(1,111,1510,'2012-10-14 02:46:49',1),(1,179,1510,'2012-10-14 02:46:49',1),(1,165,1510,'2012-10-14 02:46:49',1),(1,177,1510,'2012-10-14 02:46:49',1),(1,1,1510,'2012-10-14 02:46:49',1),(1,62,1510,'2012-10-14 02:46:49',1),(1,70,1514,'2012-10-14 03:46:17',1),(1,91,1514,'2012-10-14 03:46:17',1),(1,38,1512,'2012-10-14 03:46:17',1),(1,171,1513,'2012-10-14 03:46:17',1),(1,105,1513,'2012-10-14 03:46:17',1),(1,230,1511,'2012-10-14 03:46:17',1),(1,142,1493,'2012-10-14 03:46:20',NULL),(1,103,1493,'2012-10-14 03:46:20',NULL),(1,204,1493,'2012-10-14 03:46:20',NULL),(1,38,1493,'2012-10-14 03:46:20',NULL),(1,252,1515,'2012-10-14 03:46:29',1),(1,142,1515,'2012-10-14 03:46:29',1),(1,103,1515,'2012-10-14 03:46:29',1),(1,204,1515,'2012-10-14 03:46:29',1),(1,62,1517,'2012-10-14 03:46:29',NULL),(1,106,1517,'2012-10-14 03:46:29',NULL),(1,193,1517,'2012-10-14 03:46:29',NULL),(1,172,1517,'2012-10-14 03:46:29',NULL),(1,190,1517,'2012-10-14 03:46:29',NULL),(1,17,1517,'2012-10-14 03:46:29',NULL),(1,191,1517,'2012-10-14 03:46:29',NULL),(1,32,1517,'2012-10-14 03:46:29',NULL),(1,199,1516,'2012-10-14 03:46:29',1),(1,200,1516,'2012-10-14 03:46:29',1),(1,201,1516,'2012-10-14 03:46:29',1),(1,210,1516,'2012-10-14 03:46:29',1),(1,166,1519,'2012-10-14 03:46:33',1),(1,142,1519,'2012-10-14 03:46:33',1),(1,74,1520,'2012-10-14 03:46:36',1),(1,87,1520,'2012-10-14 03:46:36',1),(1,6,1520,'2012-10-14 03:46:36',1),(1,250,1520,'2012-10-14 03:46:36',1),(1,74,1521,'2012-10-14 03:46:36',1),(1,87,1521,'2012-10-14 03:46:36',1),(1,6,1521,'2012-10-14 03:46:36',1),(1,250,1521,'2012-10-14 03:46:36',1),(1,226,1521,'2012-10-14 03:46:36',1),(1,174,1521,'2012-10-14 03:46:36',1),(1,117,1521,'2012-10-14 03:46:36',1),(1,166,1521,'2012-10-14 03:46:36',1),(1,94,1522,'2012-10-14 03:46:36',1),(1,95,1522,'2012-10-14 03:46:36',1),(1,183,1522,'2012-10-14 03:46:36',1),(1,113,1522,'2012-10-14 03:46:36',1),(1,140,1522,'2012-10-14 03:46:36',1),(1,96,1522,'2012-10-14 03:46:36',1),(1,134,1522,'2012-10-14 03:46:36',1),(1,135,1522,'2012-10-14 03:46:36',1),(1,149,1522,'2012-10-14 03:46:36',1),(1,118,1522,'2012-10-14 03:46:36',1),(1,89,1522,'2012-10-14 03:46:36',1),(1,120,1522,'2012-10-14 03:46:36',1),(1,121,1522,'2012-10-14 03:46:36',1),(1,11,1522,'2012-10-14 03:46:36',1),(1,123,1522,'2012-10-14 03:46:36',1),(1,48,1522,'2012-10-14 03:46:36',1),(1,107,1525,'2012-10-14 03:46:41',NULL),(1,14,1525,'2012-10-14 03:46:41',NULL),(1,75,1525,'2012-10-14 03:46:41',NULL),(1,55,1525,'2012-10-14 03:46:41',NULL),(1,112,1525,'2012-10-14 03:46:41',NULL),(1,168,1525,'2012-10-14 03:46:41',NULL),(1,65,1525,'2012-10-14 03:46:41',NULL),(1,242,1525,'2012-10-14 03:46:41',NULL),(1,226,1524,'2012-10-14 03:46:41',1),(1,174,1524,'2012-10-14 03:46:41',1),(1,117,1524,'2012-10-14 03:46:41',1),(1,166,1524,'2012-10-14 03:46:41',1),(1,103,1523,'2012-10-14 03:46:41',1),(1,204,1523,'2012-10-14 03:46:41',1),(1,151,1526,'2012-10-14 03:46:41',1),(1,164,1526,'2012-10-14 03:46:41',1),(1,126,1526,'2012-10-14 03:46:41',1),(1,239,1526,'2012-10-14 03:46:41',1),(1,12,1526,'2012-10-14 03:46:41',1),(1,46,1526,'2012-10-14 03:46:41',1),(1,186,1526,'2012-10-14 03:46:41',1),(1,155,1526,'2012-10-14 03:46:41',1),(1,143,1526,'2012-10-14 03:46:41',1),(1,235,1526,'2012-10-14 03:46:41',1),(1,194,1526,'2012-10-14 03:46:41',1),(1,111,1526,'2012-10-14 03:46:41',1),(1,179,1526,'2012-10-14 03:46:41',1),(1,165,1526,'2012-10-14 03:46:41',1),(1,177,1526,'2012-10-14 03:46:41',1),(1,1,1526,'2012-10-14 03:46:41',1),(1,214,1527,'2012-10-14 03:46:52',1),(1,252,1529,'2012-10-14 03:46:52',1),(1,226,1529,'2012-10-14 03:46:52',1),(1,174,1529,'2012-10-14 03:46:52',1),(1,117,1529,'2012-10-14 03:46:52',1),(1,110,1530,'2012-10-14 03:46:52',1),(1,202,1530,'2012-10-14 03:46:52',1),(1,203,1530,'2012-10-14 03:46:52',1),(1,185,1530,'2012-10-14 03:46:52',1),(1,108,1530,'2012-10-14 03:46:52',1),(1,9,1530,'2012-10-14 03:46:52',1),(1,60,1530,'2012-10-14 03:46:52',1),(1,5,1530,'2012-10-14 03:46:52',1),(1,38,1528,'2012-10-14 03:46:52',1),(1,205,1528,'2012-10-14 03:46:52',1),(1,151,1531,'2012-10-14 03:47:02',1),(1,164,1531,'2012-10-14 03:47:02',1),(1,126,1531,'2012-10-14 03:47:02',1),(1,239,1531,'2012-10-14 03:47:02',1),(1,12,1531,'2012-10-14 03:47:02',1),(1,46,1531,'2012-10-14 03:47:02',1),(1,186,1531,'2012-10-14 03:47:02',1),(1,155,1531,'2012-10-14 03:47:02',1),(1,143,1531,'2012-10-14 03:47:02',1),(1,235,1531,'2012-10-14 03:47:02',1),(1,194,1531,'2012-10-14 03:47:02',1),(1,111,1531,'2012-10-14 03:47:02',1),(1,179,1531,'2012-10-14 03:47:02',1),(1,165,1531,'2012-10-14 03:47:02',1),(1,177,1531,'2012-10-14 03:47:02',1),(1,1,1531,'2012-10-14 03:47:02',1),(1,69,1532,'2012-10-14 03:47:02',1),(1,107,1533,'2012-10-14 03:47:02',1),(1,14,1533,'2012-10-14 03:47:02',1),(1,107,1535,'2012-10-14 03:47:08',1),(1,14,1535,'2012-10-14 03:47:08',1),(1,75,1535,'2012-10-14 03:47:08',1),(1,55,1535,'2012-10-14 03:47:08',1),(1,112,1535,'2012-10-14 03:47:08',1),(1,168,1535,'2012-10-14 03:47:08',1),(1,65,1535,'2012-10-14 03:47:08',1),(1,242,1535,'2012-10-14 03:47:08',1),(1,114,1518,'2012-10-14 04:16:37',1),(1,144,1518,'2012-10-14 04:16:37',1),(1,188,1518,'2012-10-14 04:16:37',1),(1,23,1518,'2012-10-14 04:16:37',1),(1,59,1518,'2012-10-14 04:16:37',1),(1,86,1518,'2012-10-14 04:16:37',1),(1,115,1518,'2012-10-14 04:16:37',1),(1,8,1518,'2012-10-14 04:16:37',1),(1,94,1534,'2012-10-14 04:17:07',1),(1,95,1534,'2012-10-14 04:17:07',1),(1,183,1534,'2012-10-14 04:17:07',1),(1,113,1534,'2012-10-14 04:17:07',1),(1,4,1536,'2012-10-15 00:46:17',1),(1,6,1537,'2012-10-15 00:46:17',1),(1,6,1539,'2012-10-15 00:46:17',1),(1,4,1538,'2012-10-15 00:46:17',1),(1,6,1540,'2012-10-15 00:46:25',1),(1,6,1541,'2012-10-15 00:46:25',1),(1,4,1541,'2012-10-15 00:46:25',1),(1,6,1542,'2012-10-15 00:46:29',1),(1,4,1542,'2012-10-15 00:46:29',1),(1,6,1543,'2012-10-15 00:46:29',1),(1,4,1543,'2012-10-15 00:46:29',1),(1,6,1544,'2012-10-15 00:46:31',1),(1,4,1544,'2012-10-15 00:46:31',1),(1,6,1545,'2012-10-15 00:46:31',1),(1,4,1545,'2012-10-15 00:46:31',1),(1,4,1556,'2012-10-15 01:46:13',1),(1,6,1558,'2012-10-15 01:46:13',1),(1,4,1558,'2012-10-15 01:46:13',1),(1,6,1559,'2012-10-15 01:46:13',1),(1,4,1559,'2012-10-15 01:46:13',1),(1,6,1557,'2012-10-15 01:46:13',1),(1,6,1565,'2012-10-15 02:46:15',1),(1,4,1565,'2012-10-15 02:46:15',1),(1,6,1569,'2012-10-15 02:46:24',1),(1,6,1570,'2012-10-15 02:46:24',1),(1,4,1570,'2012-10-15 02:46:24',1),(1,6,1574,'2012-10-15 02:46:31',1),(1,4,1574,'2012-10-15 02:46:31',1),(1,4,1573,'2012-10-15 02:46:31',1),(1,4,1577,'2012-10-15 02:46:39',1),(1,6,1578,'2012-10-15 02:46:43',1),(1,4,1578,'2012-10-15 02:46:43',1),(1,6,1585,'2012-10-15 03:46:20',1),(1,4,1585,'2012-10-15 03:46:20',1),(1,6,1584,'2012-10-15 03:46:20',1),(1,4,1584,'2012-10-15 03:46:20',1),(1,4,1582,'2012-10-15 04:16:19',1),(1,6,1583,'2012-10-15 04:16:21',1),(1,6,1590,'2012-10-15 04:16:36',1),(1,4,1590,'2012-10-15 04:16:36',1),(1,6,1594,'2012-10-15 04:16:43',1),(1,4,1594,'2012-10-15 04:16:43',1),(1,4,1598,'2012-10-15 04:16:55',1),(1,6,1599,'2012-10-15 04:16:55',1),(1,4,1599,'2012-10-15 04:16:55',1),(1,6,1604,'2012-10-15 04:17:00',1),(1,4,1604,'2012-10-15 04:17:00',1),(1,4,1603,'2012-10-15 04:17:00',1),(1,72,1546,'2012-10-15 10:16:56',1),(1,189,1546,'2012-10-15 10:16:56',1),(1,173,1546,'2012-10-15 10:16:56',1),(1,24,1546,'2012-10-15 10:16:56',1),(1,227,1547,'2012-10-15 10:16:58',1),(1,194,1547,'2012-10-15 10:16:58',1),(1,22,1547,'2012-10-15 10:16:58',1),(1,5,1547,'2012-10-15 10:16:58',1),(1,1,1560,'2012-10-15 10:46:53',1),(1,182,1560,'2012-10-15 10:46:53',1),(1,100,1560,'2012-10-15 10:46:53',1),(1,206,1560,'2012-10-15 10:46:53',1),(1,163,1561,'2012-10-15 10:46:54',1),(1,1,1561,'2012-10-15 10:46:54',1),(1,182,1561,'2012-10-15 10:46:54',1),(1,100,1561,'2012-10-15 10:46:54',1),(1,36,1548,'2012-10-15 10:47:08',1),(1,29,1548,'2012-10-15 10:47:08',1),(1,5,1548,'2012-10-15 10:47:08',1),(1,224,1548,'2012-10-15 10:47:08',1),(1,1,1550,'2012-10-15 10:47:08',1),(1,182,1550,'2012-10-15 10:47:08',1),(1,100,1550,'2012-10-15 10:47:08',1),(1,206,1550,'2012-10-15 10:47:08',1),(1,195,1549,'2012-10-15 10:47:08',1),(1,36,1549,'2012-10-15 10:47:08',1),(1,5,1549,'2012-10-15 10:47:08',1),(1,224,1549,'2012-10-15 10:47:08',1),(1,163,1564,'2012-10-15 11:46:40',NULL),(1,1,1564,'2012-10-15 11:46:40',NULL),(1,182,1564,'2012-10-15 11:46:40',NULL),(1,100,1564,'2012-10-15 11:46:40',NULL),(1,163,1566,'2012-10-15 12:16:42',1),(1,1,1566,'2012-10-15 12:16:42',1),(1,182,1566,'2012-10-15 12:16:42',1),(1,100,1566,'2012-10-15 12:16:42',1),(1,124,1568,'2012-10-15 14:46:56',1),(1,18,1568,'2012-10-15 14:46:56',1),(1,164,1568,'2012-10-15 14:46:56',1),(1,225,1568,'2012-10-15 14:46:56',1),(1,186,1568,'2012-10-15 14:46:56',1),(1,155,1568,'2012-10-15 14:46:56',1),(1,47,1568,'2012-10-15 14:46:56',1),(1,238,1568,'2012-10-15 14:46:56',1),(1,51,1568,'2012-10-15 14:46:56',1),(1,235,1568,'2012-10-15 14:46:56',1),(1,178,1568,'2012-10-15 14:46:56',1),(1,34,1568,'2012-10-15 14:46:56',1),(1,30,1568,'2012-10-15 14:46:56',1),(1,243,1568,'2012-10-15 14:46:56',1),(1,251,1568,'2012-10-15 14:46:56',1),(1,62,1568,'2012-10-15 14:46:56',1),(1,34,1571,'2012-10-15 14:47:07',1),(1,30,1571,'2012-10-15 14:47:07',1),(1,243,1571,'2012-10-15 14:47:07',1),(1,62,1571,'2012-10-15 14:47:07',1),(1,155,1575,'2012-10-15 14:47:14',1),(1,238,1575,'2012-10-15 14:47:14',1),(1,51,1575,'2012-10-15 14:47:14',1),(1,178,1575,'2012-10-15 14:47:14',1),(1,124,1551,'2012-10-15 14:47:21',1),(1,18,1551,'2012-10-15 14:47:21',1),(1,164,1551,'2012-10-15 14:47:21',1),(1,225,1551,'2012-10-15 14:47:21',1),(1,186,1551,'2012-10-15 14:47:21',1),(1,155,1551,'2012-10-15 14:47:21',1),(1,238,1551,'2012-10-15 14:47:21',1),(1,51,1551,'2012-10-15 14:47:21',1),(1,164,1554,'2012-10-15 14:47:25',1),(1,225,1554,'2012-10-15 14:47:25',1),(1,186,1554,'2012-10-15 14:47:25',1),(1,155,1554,'2012-10-15 14:47:25',1),(1,47,1554,'2012-10-15 14:47:25',1),(1,238,1554,'2012-10-15 14:47:25',1),(1,51,1554,'2012-10-15 14:47:25',1),(1,235,1554,'2012-10-15 14:47:25',1),(1,123,1587,'2012-10-15 15:17:07',1),(1,145,1587,'2012-10-15 15:17:07',1),(1,251,1587,'2012-10-15 15:17:07',1),(1,62,1587,'2012-10-15 15:17:07',1),(1,89,1586,'2012-10-15 15:17:07',1),(1,11,1586,'2012-10-15 15:17:07',1),(1,124,1586,'2012-10-15 15:17:07',1),(1,18,1586,'2012-10-15 15:17:07',1),(1,95,1562,'2012-10-15 15:17:09',1),(1,164,1562,'2012-10-15 15:17:09',1),(1,225,1562,'2012-10-15 15:17:09',1),(1,186,1562,'2012-10-15 15:17:09',1),(1,238,1562,'2012-10-15 15:17:09',1),(1,51,1562,'2012-10-15 15:17:09',1),(1,235,1562,'2012-10-15 15:17:09',1),(1,177,1562,'2012-10-15 15:17:09',1),(1,225,1563,'2012-10-15 15:17:12',1),(1,186,1563,'2012-10-15 15:17:12',1),(1,238,1563,'2012-10-15 15:17:12',1),(1,51,1563,'2012-10-15 15:17:12',1),(1,235,1563,'2012-10-15 15:17:12',1),(1,177,1563,'2012-10-15 15:17:12',1),(1,178,1563,'2012-10-15 15:17:12',1),(1,34,1563,'2012-10-15 15:17:12',1),(1,238,1591,'2012-10-15 15:17:17',1),(1,51,1591,'2012-10-15 15:17:17',1),(1,235,1591,'2012-10-15 15:17:17',1),(1,177,1591,'2012-10-15 15:17:17',1),(1,151,1595,'2012-10-15 15:17:19',1),(1,186,1595,'2012-10-15 15:17:19',1),(1,31,1595,'2012-10-15 15:17:19',1),(1,236,1595,'2012-10-15 15:17:19',1),(1,178,1579,'2012-10-15 15:17:23',1),(1,34,1579,'2012-10-15 15:17:23',1),(1,30,1579,'2012-10-15 15:17:23',1),(1,243,1579,'2012-10-15 15:17:23',1),(1,151,1552,'2012-10-15 15:17:26',1),(1,164,1552,'2012-10-15 15:17:26',1),(1,225,1552,'2012-10-15 15:17:26',1),(1,186,1552,'2012-10-15 15:17:26',1),(1,178,1552,'2012-10-15 15:17:26',1),(1,34,1552,'2012-10-15 15:17:26',1),(1,30,1552,'2012-10-15 15:17:26',1),(1,243,1552,'2012-10-15 15:17:26',1),(1,151,1553,'2012-10-15 15:17:26',1),(1,164,1553,'2012-10-15 15:17:26',1),(1,225,1553,'2012-10-15 15:17:26',1),(1,186,1553,'2012-10-15 15:17:26',1),(1,178,1553,'2012-10-15 15:17:26',1),(1,34,1553,'2012-10-15 15:17:26',1),(1,30,1553,'2012-10-15 15:17:26',1),(1,243,1553,'2012-10-15 15:17:26',1),(1,151,1600,'2012-10-15 15:17:27',1),(1,164,1600,'2012-10-15 15:17:27',1),(1,225,1600,'2012-10-15 15:17:27',1),(1,186,1600,'2012-10-15 15:17:27',1),(1,225,1555,'2012-10-15 15:17:29',1),(1,186,1555,'2012-10-15 15:17:29',1),(1,155,1555,'2012-10-15 15:17:29',1),(1,47,1555,'2012-10-15 15:17:29',1),(1,238,1555,'2012-10-15 15:17:29',1),(1,51,1555,'2012-10-15 15:17:29',1),(1,235,1555,'2012-10-15 15:17:29',1),(1,202,1555,'2012-10-15 15:17:29',1),(1,51,1605,'2012-10-15 15:17:33',1),(1,34,1605,'2012-10-15 15:17:33',1),(1,243,1605,'2012-10-15 15:17:33',1),(1,31,1605,'2012-10-15 15:17:33',1),(1,121,1567,'2012-10-15 15:46:46',1),(1,123,1567,'2012-10-15 15:46:46',1),(1,51,1567,'2012-10-15 15:46:46',1),(1,178,1567,'2012-10-15 15:46:46',1),(1,34,1567,'2012-10-15 15:46:46',1),(1,31,1567,'2012-10-15 15:46:46',1),(1,236,1567,'2012-10-15 15:46:46',1),(1,145,1567,'2012-10-15 15:46:46',1),(1,123,1572,'2012-10-15 15:47:13',1),(1,51,1572,'2012-10-15 15:47:13',1),(1,178,1572,'2012-10-15 15:47:13',1),(1,34,1572,'2012-10-15 15:47:13',1),(1,31,1572,'2012-10-15 15:47:13',1),(1,236,1572,'2012-10-15 15:47:13',1),(1,145,1572,'2012-10-15 15:47:13',1),(1,207,1572,'2012-10-15 15:47:13',1),(1,123,1576,'2012-10-15 15:47:22',1),(1,158,1576,'2012-10-15 15:47:22',1),(1,51,1576,'2012-10-15 15:47:22',1),(1,178,1576,'2012-10-15 15:47:22',1),(1,34,1576,'2012-10-15 15:47:22',1),(1,31,1576,'2012-10-15 15:47:22',1),(1,236,1576,'2012-10-15 15:47:22',1),(1,145,1576,'2012-10-15 15:47:22',1),(1,94,1580,'2012-10-15 16:17:27',1),(1,121,1580,'2012-10-15 16:17:27',1),(1,123,1580,'2012-10-15 16:17:27',1),(1,158,1580,'2012-10-15 16:17:27',1),(1,51,1580,'2012-10-15 16:17:27',1),(1,178,1580,'2012-10-15 16:17:27',1),(1,34,1580,'2012-10-15 16:17:27',1),(1,31,1580,'2012-10-15 16:17:27',1),(1,123,1589,'2012-10-15 16:47:20',1),(1,158,1589,'2012-10-15 16:47:20',1),(1,51,1589,'2012-10-15 16:47:20',1),(1,235,1589,'2012-10-15 16:47:20',1),(1,178,1589,'2012-10-15 16:47:20',1),(1,34,1589,'2012-10-15 16:47:20',1),(1,30,1589,'2012-10-15 16:47:20',1),(1,243,1589,'2012-10-15 16:47:20',1),(1,94,1588,'2012-10-15 16:47:21',NULL),(1,183,1588,'2012-10-15 16:47:21',NULL),(1,145,1588,'2012-10-15 16:47:21',NULL),(1,251,1588,'2012-10-15 16:47:21',NULL),(1,62,1588,'2012-10-15 16:47:21',NULL),(1,172,1588,'2012-10-15 16:47:21',NULL),(1,83,1588,'2012-10-15 16:47:21',NULL),(1,107,1588,'2012-10-15 16:47:21',NULL),(1,155,1592,'2012-10-15 16:47:31',1),(1,158,1592,'2012-10-15 16:47:31',1),(1,51,1592,'2012-10-15 16:47:31',1),(1,235,1592,'2012-10-15 16:47:31',1),(1,178,1592,'2012-10-15 16:47:31',1),(1,34,1592,'2012-10-15 16:47:31',1),(1,30,1592,'2012-10-15 16:47:31',1),(1,243,1592,'2012-10-15 16:47:31',1),(1,44,1596,'2012-10-15 16:47:32',1),(1,177,1596,'2012-10-15 16:47:32',1),(1,236,1596,'2012-10-15 16:47:32',1),(1,145,1596,'2012-10-15 16:47:32',1),(1,251,1596,'2012-10-15 16:47:32',1),(1,171,1596,'2012-10-15 16:47:32',1),(1,62,1596,'2012-10-15 16:47:32',1),(1,172,1596,'2012-10-15 16:47:32',1),(1,155,1606,'2012-10-15 16:47:46',1),(1,158,1606,'2012-10-15 16:47:46',1),(1,51,1606,'2012-10-15 16:47:46',1),(1,235,1606,'2012-10-15 16:47:46',1),(1,178,1606,'2012-10-15 16:47:46',1),(1,34,1606,'2012-10-15 16:47:46',1),(1,30,1606,'2012-10-15 16:47:46',1),(1,243,1606,'2012-10-15 16:47:46',1),(1,94,1601,'2012-10-15 17:47:41',1),(1,44,1601,'2012-10-15 17:47:41',1),(1,177,1601,'2012-10-15 17:47:41',1),(1,236,1601,'2012-10-15 17:47:41',1),(1,145,1601,'2012-10-15 17:47:41',1),(1,251,1601,'2012-10-15 17:47:41',1),(1,171,1601,'2012-10-15 17:47:41',1),(1,62,1601,'2012-10-15 17:47:41',1),(1,183,1581,'2012-10-15 18:47:36',1),(1,46,1581,'2012-10-15 18:47:36',1),(1,158,1581,'2012-10-15 18:47:36',1),(1,235,1581,'2012-10-15 18:47:36',1),(1,177,1581,'2012-10-15 18:47:36',1),(1,30,1581,'2012-10-15 18:47:36',1),(1,243,1581,'2012-10-15 18:47:36',1),(1,236,1581,'2012-10-15 18:47:36',1),(1,145,1581,'2012-10-15 18:47:36',1),(1,251,1581,'2012-10-15 18:47:36',1),(1,62,1581,'2012-10-15 18:47:36',1),(1,19,1581,'2012-10-15 18:47:36',1),(1,172,1581,'2012-10-15 18:47:36',1),(1,83,1581,'2012-10-15 18:47:36',1),(1,6,1581,'2012-10-15 18:47:36',1),(1,4,1581,'2012-10-15 18:47:36',1),(1,94,1593,'2012-10-15 19:17:30',1),(1,183,1593,'2012-10-15 19:17:30',1),(1,123,1593,'2012-10-15 19:17:30',1),(1,46,1593,'2012-10-15 19:17:30',1),(1,158,1593,'2012-10-15 19:17:30',1),(1,235,1593,'2012-10-15 19:17:30',1),(1,177,1593,'2012-10-15 19:17:30',1),(1,178,1593,'2012-10-15 19:17:30',1),(1,30,1593,'2012-10-15 19:17:30',1),(1,243,1593,'2012-10-15 19:17:30',1),(1,31,1593,'2012-10-15 19:17:30',1),(1,236,1593,'2012-10-15 19:17:30',1),(1,145,1593,'2012-10-15 19:17:30',1),(1,251,1593,'2012-10-15 19:17:30',1),(1,171,1593,'2012-10-15 19:17:30',1),(1,62,1593,'2012-10-15 19:17:30',1),(1,4,1610,'2012-10-16 00:46:19',1),(1,4,1608,'2012-10-16 00:46:19',1),(1,4,1609,'2012-10-16 00:46:19',1),(1,234,1607,'2012-10-16 00:46:19',1),(1,202,1612,'2012-10-16 00:46:26',1),(1,4,1612,'2012-10-16 00:46:26',1),(1,202,1613,'2012-10-16 00:46:26',1),(1,4,1613,'2012-10-16 00:46:26',1),(1,202,1614,'2012-10-16 00:46:26',1),(1,4,1614,'2012-10-16 00:46:26',1),(1,202,1616,'2012-10-16 00:46:35',1),(1,4,1616,'2012-10-16 00:46:35',1),(1,202,1615,'2012-10-16 00:46:35',1),(1,4,1615,'2012-10-16 00:46:35',1),(1,45,1622,'2012-10-16 00:46:46',1),(1,154,1622,'2012-10-16 00:46:46',1),(1,28,1622,'2012-10-16 00:46:46',1),(1,232,1622,'2012-10-16 00:46:46',1),(1,98,1622,'2012-10-16 00:46:46',1),(1,233,1622,'2012-10-16 00:46:46',1),(1,143,1622,'2012-10-16 00:46:46',1),(1,57,1622,'2012-10-16 00:46:46',1),(1,202,1623,'2012-10-16 00:46:50',1),(1,154,1623,'2012-10-16 00:46:50',1),(1,28,1623,'2012-10-16 00:46:50',1),(1,232,1623,'2012-10-16 00:46:50',1),(1,98,1623,'2012-10-16 00:46:50',1),(1,233,1623,'2012-10-16 00:46:50',1),(1,143,1623,'2012-10-16 00:46:50',1),(1,57,1623,'2012-10-16 00:46:50',1),(1,45,1624,'2012-10-16 00:46:50',1),(1,154,1624,'2012-10-16 00:46:50',1),(1,28,1624,'2012-10-16 00:46:50',1),(1,232,1624,'2012-10-16 00:46:50',1),(1,98,1624,'2012-10-16 00:46:50',1),(1,233,1624,'2012-10-16 00:46:50',1),(1,143,1624,'2012-10-16 00:46:50',1),(1,57,1624,'2012-10-16 00:46:50',1),(1,202,1626,'2012-10-16 00:46:52',1),(1,154,1626,'2012-10-16 00:46:52',1),(1,28,1626,'2012-10-16 00:46:52',1),(1,232,1626,'2012-10-16 00:46:52',1),(1,98,1626,'2012-10-16 00:46:52',1),(1,233,1626,'2012-10-16 00:46:52',1),(1,143,1626,'2012-10-16 00:46:52',1),(1,57,1626,'2012-10-16 00:46:52',1),(1,4,1611,'2012-10-16 01:16:27',1),(1,232,1617,'2012-10-16 01:16:36',1),(1,98,1617,'2012-10-16 01:16:36',1),(1,233,1617,'2012-10-16 01:16:36',1),(1,143,1617,'2012-10-16 01:16:36',1),(1,202,1618,'2012-10-16 01:16:36',1),(1,45,1618,'2012-10-16 01:16:36',1),(1,154,1618,'2012-10-16 01:16:36',1),(1,28,1618,'2012-10-16 01:16:36',1),(1,4,1620,'2012-10-16 01:16:46',1),(1,45,1620,'2012-10-16 01:16:46',1),(1,154,1620,'2012-10-16 01:16:46',1),(1,28,1620,'2012-10-16 01:16:46',1),(1,202,1619,'2012-10-16 01:16:46',1),(1,45,1619,'2012-10-16 01:16:46',1),(1,154,1619,'2012-10-16 01:16:46',1),(1,28,1619,'2012-10-16 01:16:46',1),(1,232,1621,'2012-10-16 01:16:47',1),(1,98,1621,'2012-10-16 01:16:47',1),(1,233,1621,'2012-10-16 01:16:47',1),(1,143,1621,'2012-10-16 01:16:47',1),(1,154,1625,'2012-10-16 01:16:51',1),(1,28,1625,'2012-10-16 01:16:51',1),(1,232,1625,'2012-10-16 01:16:51',1),(1,98,1625,'2012-10-16 01:16:51',1),(1,233,1625,'2012-10-16 01:16:51',1),(1,143,1625,'2012-10-16 01:16:51',1),(1,57,1625,'2012-10-16 01:16:51',1),(1,234,1625,'2012-10-16 01:16:51',1),(1,220,1597,'2012-10-16 01:17:49',1),(1,26,1597,'2012-10-16 01:17:49',1),(1,187,1597,'2012-10-16 01:17:49',1),(1,197,1597,'2012-10-16 01:17:49',1),(1,126,1597,'2012-10-16 01:17:49',1),(1,79,1597,'2012-10-16 01:17:49',1),(1,40,1597,'2012-10-16 01:17:49',1),(1,170,1597,'2012-10-16 01:17:49',1),(1,146,1597,'2012-10-16 01:17:49',1),(1,41,1597,'2012-10-16 01:17:49',1),(1,152,1597,'2012-10-16 01:17:49',1),(1,147,1597,'2012-10-16 01:17:49',1),(1,153,1597,'2012-10-16 01:17:49',1),(1,21,1597,'2012-10-16 01:17:49',1),(1,127,1597,'2012-10-16 01:17:49',1),(1,71,1597,'2012-10-16 01:17:49',1),(1,220,1602,'2012-10-16 01:18:00',1),(1,26,1602,'2012-10-16 01:18:00',1),(1,187,1602,'2012-10-16 01:18:00',1),(1,197,1602,'2012-10-16 01:18:00',1),(1,126,1602,'2012-10-16 01:18:00',1),(1,79,1602,'2012-10-16 01:18:00',1),(1,40,1602,'2012-10-16 01:18:00',1),(1,170,1602,'2012-10-16 01:18:00',1),(1,146,1602,'2012-10-16 01:18:00',1),(1,41,1602,'2012-10-16 01:18:00',1),(1,152,1602,'2012-10-16 01:18:00',1),(1,147,1602,'2012-10-16 01:18:00',1),(1,153,1602,'2012-10-16 01:18:00',1),(1,21,1602,'2012-10-16 01:18:00',1),(1,127,1602,'2012-10-16 01:18:00',1),(1,71,1602,'2012-10-16 01:18:00',1),(1,126,1627,'2012-10-16 01:46:11',1),(1,122,1629,'2012-10-16 01:46:11',1),(1,26,1629,'2012-10-16 01:46:11',1),(1,187,1630,'2012-10-16 01:46:11',1),(1,197,1630,'2012-10-16 01:46:11',1),(1,79,1628,'2012-10-16 01:46:11',1),(1,21,1633,'2012-10-16 01:46:21',1),(1,127,1633,'2012-10-16 01:46:21',1),(1,71,1633,'2012-10-16 01:46:21',1),(1,45,1633,'2012-10-16 01:46:21',1),(1,154,1633,'2012-10-16 01:46:21',1),(1,28,1633,'2012-10-16 01:46:21',1),(1,232,1633,'2012-10-16 01:46:21',1),(1,98,1633,'2012-10-16 01:46:21',1),(1,120,1632,'2012-10-16 01:46:21',1),(1,187,1632,'2012-10-16 01:46:21',1),(1,197,1632,'2012-10-16 01:46:21',1),(1,79,1632,'2012-10-16 01:46:21',1),(1,120,1634,'2012-10-16 01:46:21',1),(1,40,1634,'2012-10-16 01:46:21',1),(1,170,1634,'2012-10-16 01:46:21',1),(1,146,1634,'2012-10-16 01:46:21',1),(1,41,1634,'2012-10-16 01:46:21',1),(1,152,1634,'2012-10-16 01:46:21',1),(1,147,1634,'2012-10-16 01:46:21',1),(1,153,1634,'2012-10-16 01:46:21',1),(1,202,1631,'2012-10-16 01:46:21',1),(1,233,1631,'2012-10-16 01:46:21',1),(1,143,1631,'2012-10-16 01:46:21',1),(1,57,1631,'2012-10-16 01:46:21',1),(1,150,1637,'2012-10-16 02:46:17',1),(1,26,1637,'2012-10-16 02:46:17',1),(1,187,1637,'2012-10-16 02:46:17',1),(1,197,1637,'2012-10-16 02:46:17',1),(1,234,1636,'2012-10-16 02:46:17',1),(1,6,1636,'2012-10-16 02:46:17',1),(1,71,1638,'2012-10-16 02:46:17',1),(1,44,1638,'2012-10-16 02:46:17',1),(1,45,1638,'2012-10-16 02:46:17',1),(1,12,1638,'2012-10-16 02:46:17',1),(1,154,1638,'2012-10-16 02:46:17',1),(1,28,1638,'2012-10-16 02:46:17',1),(1,232,1638,'2012-10-16 02:46:17',1),(1,98,1638,'2012-10-16 02:46:17',1),(1,245,1641,'2012-10-16 02:46:26',1),(1,220,1641,'2012-10-16 02:46:26',1),(1,4,1640,'2012-10-16 02:46:26',1),(1,126,1642,'2012-10-16 02:46:26',1),(1,79,1642,'2012-10-16 02:46:26',1),(1,40,1642,'2012-10-16 02:46:26',1),(1,170,1642,'2012-10-16 02:46:26',1),(1,120,1639,'2012-10-16 02:46:26',1),(1,150,1639,'2012-10-16 02:46:26',1),(1,26,1639,'2012-10-16 02:46:26',1),(1,187,1639,'2012-10-16 02:46:26',1),(1,197,1639,'2012-10-16 02:46:26',1),(1,126,1639,'2012-10-16 02:46:26',1),(1,79,1639,'2012-10-16 02:46:26',1),(1,40,1639,'2012-10-16 02:46:26',1),(1,170,1639,'2012-10-16 02:46:26',1),(1,146,1639,'2012-10-16 02:46:26',1),(1,41,1639,'2012-10-16 02:46:26',1),(1,152,1639,'2012-10-16 02:46:26',1),(1,147,1639,'2012-10-16 02:46:26',1),(1,153,1639,'2012-10-16 02:46:26',1),(1,21,1639,'2012-10-16 02:46:26',1),(1,127,1639,'2012-10-16 02:46:26',1),(1,202,1643,'2012-10-16 02:46:33',1),(1,200,1643,'2012-10-16 02:46:33',1),(1,233,1643,'2012-10-16 02:46:33',1),(1,143,1643,'2012-10-16 02:46:33',1),(1,57,1643,'2012-10-16 02:46:33',1),(1,234,1643,'2012-10-16 02:46:33',1),(1,6,1643,'2012-10-16 02:46:33',1),(1,4,1643,'2012-10-16 02:46:33',1),(1,146,1646,'2012-10-16 02:46:36',1),(1,41,1646,'2012-10-16 02:46:36',1),(1,152,1646,'2012-10-16 02:46:36',1),(1,147,1646,'2012-10-16 02:46:36',1),(1,120,1645,'2012-10-16 02:46:36',1),(1,234,1645,'2012-10-16 02:46:36',1),(1,6,1644,'2012-10-16 02:46:36',1),(1,44,1647,'2012-10-16 02:46:42',1),(1,45,1647,'2012-10-16 02:46:42',1),(1,12,1647,'2012-10-16 02:46:42',1),(1,154,1647,'2012-10-16 02:46:42',1),(1,28,1647,'2012-10-16 02:46:42',1),(1,232,1647,'2012-10-16 02:46:42',1),(1,98,1647,'2012-10-16 02:46:42',1),(1,233,1647,'2012-10-16 02:46:42',1),(1,6,1648,'2012-10-16 02:46:42',1),(1,245,1649,'2012-10-16 02:46:42',1),(1,4,1649,'2012-10-16 02:46:42',1),(1,153,1650,'2012-10-16 02:46:42',1),(1,21,1650,'2012-10-16 02:46:42',1),(1,127,1650,'2012-10-16 02:46:42',1),(1,71,1650,'2012-10-16 02:46:42',1),(1,42,1652,'2012-10-16 02:46:52',1),(1,26,1652,'2012-10-16 02:46:52',1),(1,187,1652,'2012-10-16 02:46:52',1),(1,197,1652,'2012-10-16 02:46:52',1),(1,126,1652,'2012-10-16 02:46:52',1),(1,79,1652,'2012-10-16 02:46:52',1),(1,40,1652,'2012-10-16 02:46:52',1),(1,170,1652,'2012-10-16 02:46:52',1),(1,146,1652,'2012-10-16 02:46:52',1),(1,41,1652,'2012-10-16 02:46:52',1),(1,152,1652,'2012-10-16 02:46:52',1),(1,147,1652,'2012-10-16 02:46:52',1),(1,153,1652,'2012-10-16 02:46:52',1),(1,21,1652,'2012-10-16 02:46:52',1),(1,127,1652,'2012-10-16 02:46:52',1),(1,71,1652,'2012-10-16 02:46:52',1),(1,44,1651,'2012-10-16 02:46:52',1),(1,45,1651,'2012-10-16 02:46:52',1),(1,12,1651,'2012-10-16 02:46:52',1),(1,154,1651,'2012-10-16 02:46:52',1),(1,28,1651,'2012-10-16 02:46:52',1),(1,232,1651,'2012-10-16 02:46:52',1),(1,98,1651,'2012-10-16 02:46:52',1),(1,233,1651,'2012-10-16 02:46:52',1),(1,4,1654,'2012-10-16 03:46:20',1),(1,122,1655,'2012-10-16 03:46:20',1),(1,220,1655,'2012-10-16 03:46:20',1),(1,200,1653,'2012-10-16 03:46:20',1),(1,202,1635,'2012-10-16 03:46:20',NULL),(1,200,1635,'2012-10-16 03:46:20',NULL),(1,143,1635,'2012-10-16 03:46:20',NULL),(1,57,1635,'2012-10-16 03:46:20',NULL),(1,234,1656,'2012-10-16 03:46:22',1),(1,6,1656,'2012-10-16 03:46:22',1),(1,220,1657,'2012-10-16 03:46:31',1),(1,170,1657,'2012-10-16 03:46:31',1),(1,143,1657,'2012-10-16 03:46:31',1),(1,4,1657,'2012-10-16 03:46:31',1),(1,57,1661,'2012-10-16 03:46:36',1),(1,202,1661,'2012-10-16 03:46:36',1),(1,120,1665,'2012-10-16 03:46:45',1),(1,57,1665,'2012-10-16 03:46:45',1),(1,202,1669,'2012-10-16 03:46:52',1),(1,200,1670,'2012-10-16 03:46:52',1),(1,202,1670,'2012-10-16 03:46:52',1),(1,202,1674,'2012-10-16 03:47:01',1),(1,202,1675,'2012-10-16 03:47:01',1),(1,200,1675,'2012-10-16 03:47:01',1),(1,143,1658,'2012-10-16 04:16:32',1),(1,170,1658,'2012-10-16 04:16:32',1),(1,6,1658,'2012-10-16 04:16:32',1),(1,4,1658,'2012-10-16 04:16:32',1),(1,220,1662,'2012-10-16 04:16:37',1),(1,146,1662,'2012-10-16 04:16:37',1),(1,202,1662,'2012-10-16 04:16:37',1),(1,200,1662,'2012-10-16 04:16:37',1),(1,200,1666,'2012-10-16 04:16:46',1),(1,202,1666,'2012-10-16 04:16:46',1),(1,143,1666,'2012-10-16 04:16:46',1),(1,146,1666,'2012-10-16 04:16:46',1),(1,200,1671,'2012-10-16 04:16:53',1),(1,202,1671,'2012-10-16 04:16:53',1),(1,143,1671,'2012-10-16 04:16:53',1),(1,234,1671,'2012-10-16 04:16:53',1),(1,220,1676,'2012-10-16 04:17:03',1),(1,170,1676,'2012-10-16 04:17:03',1),(1,146,1676,'2012-10-16 04:17:03',1),(1,6,1676,'2012-10-16 04:17:03',1),(1,200,1659,'2012-10-16 04:46:33',NULL),(1,143,1659,'2012-10-16 04:46:33',NULL),(1,57,1659,'2012-10-16 04:46:33',NULL),(1,234,1659,'2012-10-16 04:46:33',NULL),(1,170,1659,'2012-10-16 04:46:33',NULL),(1,146,1659,'2012-10-16 04:46:33',NULL),(1,6,1659,'2012-10-16 04:46:33',NULL),(1,4,1659,'2012-10-16 04:46:33',NULL),(1,200,1660,'2012-10-16 05:16:36',1),(1,143,1660,'2012-10-16 05:16:36',1),(1,57,1660,'2012-10-16 05:16:36',1),(1,234,1660,'2012-10-16 05:16:36',1),(1,120,1660,'2012-10-16 05:16:36',1),(1,220,1660,'2012-10-16 05:16:36',1),(1,6,1660,'2012-10-16 05:16:36',1),(1,4,1660,'2012-10-16 05:16:36',1),(1,143,1663,'2012-10-16 05:16:40',1),(1,57,1663,'2012-10-16 05:16:40',1),(1,234,1663,'2012-10-16 05:16:40',1),(1,120,1663,'2012-10-16 05:16:40',1),(1,122,1663,'2012-10-16 05:16:40',1),(1,146,1663,'2012-10-16 05:16:40',1),(1,6,1663,'2012-10-16 05:16:40',1),(1,4,1663,'2012-10-16 05:16:40',1),(1,200,1667,'2012-10-16 05:46:52',1),(1,143,1667,'2012-10-16 05:46:52',1),(1,57,1667,'2012-10-16 05:46:52',1),(1,234,1667,'2012-10-16 05:46:52',1),(1,220,1667,'2012-10-16 05:46:52',1),(1,146,1667,'2012-10-16 05:46:52',1),(1,6,1667,'2012-10-16 05:46:52',1),(1,4,1667,'2012-10-16 05:46:52',1),(1,200,1672,'2012-10-16 06:17:00',1),(1,143,1672,'2012-10-16 06:17:00',1),(1,57,1672,'2012-10-16 06:17:00',1),(1,234,1672,'2012-10-16 06:17:00',1),(1,220,1672,'2012-10-16 06:17:00',1),(1,146,1672,'2012-10-16 06:17:00',1),(1,6,1672,'2012-10-16 06:17:00',1),(1,4,1672,'2012-10-16 06:17:00',1),(1,200,1677,'2012-10-16 06:17:15',1),(1,143,1677,'2012-10-16 06:17:15',1),(1,57,1677,'2012-10-16 06:17:15',1),(1,234,1677,'2012-10-16 06:17:15',1),(1,120,1677,'2012-10-16 06:17:15',1),(1,146,1677,'2012-10-16 06:17:15',1),(1,6,1677,'2012-10-16 06:17:15',1),(1,4,1677,'2012-10-16 06:17:15',1),(1,184,1664,'2012-10-16 07:16:43',1),(1,137,1664,'2012-10-16 07:16:43',1),(1,143,1664,'2012-10-16 07:16:43',1),(1,57,1664,'2012-10-16 07:16:43',1),(1,234,1664,'2012-10-16 07:16:43',1),(1,179,1664,'2012-10-16 07:16:43',1),(1,54,1664,'2012-10-16 07:16:43',1),(1,176,1664,'2012-10-16 07:16:43',1),(1,58,1664,'2012-10-16 07:16:43',1),(1,33,1664,'2012-10-16 07:16:43',1),(1,37,1664,'2012-10-16 07:16:43',1),(1,128,1664,'2012-10-16 07:16:43',1),(1,193,1664,'2012-10-16 07:16:43',1),(1,85,1664,'2012-10-16 07:16:43',1),(1,6,1664,'2012-10-16 07:16:43',1),(1,4,1664,'2012-10-16 07:16:43',1),(1,137,1668,'2012-10-16 07:16:57',1),(1,3,1668,'2012-10-16 07:16:57',1),(1,120,1668,'2012-10-16 07:16:57',1),(1,170,1668,'2012-10-16 07:16:57',1),(1,143,1668,'2012-10-16 07:16:57',1),(1,57,1668,'2012-10-16 07:16:57',1),(1,234,1668,'2012-10-16 07:16:57',1),(1,179,1668,'2012-10-16 07:16:57',1),(1,54,1668,'2012-10-16 07:16:57',1),(1,176,1668,'2012-10-16 07:16:57',1),(1,58,1668,'2012-10-16 07:16:57',1),(1,33,1668,'2012-10-16 07:16:57',1),(1,37,1668,'2012-10-16 07:16:57',1),(1,128,1668,'2012-10-16 07:16:57',1),(1,193,1668,'2012-10-16 07:16:57',1),(1,85,1668,'2012-10-16 07:16:57',1),(1,120,1673,'2012-10-16 07:47:12',1),(1,220,1673,'2012-10-16 07:47:12',1),(1,170,1673,'2012-10-16 07:47:12',1),(1,143,1673,'2012-10-16 07:47:12',1),(1,57,1673,'2012-10-16 07:47:12',1),(1,234,1673,'2012-10-16 07:47:12',1),(1,179,1673,'2012-10-16 07:47:12',1),(1,54,1673,'2012-10-16 07:47:12',1),(1,176,1673,'2012-10-16 07:47:12',1),(1,58,1673,'2012-10-16 07:47:12',1),(1,33,1673,'2012-10-16 07:47:12',1),(1,37,1673,'2012-10-16 07:47:12',1),(1,128,1673,'2012-10-16 07:47:12',1),(1,193,1673,'2012-10-16 07:47:12',1),(1,85,1673,'2012-10-16 07:47:12',1),(1,6,1673,'2012-10-16 07:47:12',1),(1,61,1678,'2012-10-17 14:24:32',1),(1,218,1679,'2012-10-17 14:24:36',1),(1,223,1680,'2012-10-17 14:24:42',1),(1,3,1681,'2012-10-17 14:24:43',1),(1,160,1682,'2012-10-17 14:24:44',1),(1,150,1683,'2012-10-17 14:24:45',1),(1,61,1683,'2012-10-17 14:24:45',1),(1,223,1684,'2012-10-17 14:24:47',1),(1,212,1684,'2012-10-17 14:24:47',1),(1,150,1685,'2012-10-17 14:24:47',1),(1,61,1685,'2012-10-17 14:24:47',1),(1,63,1686,'2012-10-17 14:24:49',1),(1,61,1686,'2012-10-17 14:24:49',1),(1,150,1687,'2012-10-17 14:24:50',1),(1,129,1687,'2012-10-17 14:24:50',1),(1,187,1688,'2012-10-17 14:24:53',1),(1,127,1688,'2012-10-17 14:24:53',1),(1,5,1688,'2012-10-17 14:24:53',1),(1,218,1688,'2012-10-17 14:24:53',1),(1,42,1689,'2012-10-17 14:24:54',1),(1,45,1689,'2012-10-17 14:24:54',1),(1,98,1689,'2012-10-17 14:24:54',1),(1,75,1689,'2012-10-17 14:24:54',1),(1,96,1690,'2012-10-17 14:24:55',1),(1,139,1690,'2012-10-17 14:24:55',1),(1,63,1690,'2012-10-17 14:24:55',1),(1,223,1690,'2012-10-17 14:24:55',1),(1,160,1692,'2012-10-17 14:24:57',1),(1,96,1692,'2012-10-17 14:24:57',1),(1,139,1692,'2012-10-17 14:24:57',1),(1,150,1692,'2012-10-17 14:24:57',1),(1,96,1691,'2012-10-17 14:24:57',1),(1,139,1691,'2012-10-17 14:24:57',1),(1,63,1691,'2012-10-17 14:24:57',1),(1,223,1691,'2012-10-17 14:24:57',1),(1,42,1693,'2012-10-17 14:24:59',1),(1,187,1693,'2012-10-17 14:24:59',1),(1,127,1693,'2012-10-17 14:24:59',1),(1,45,1693,'2012-10-17 14:24:59',1),(1,98,1693,'2012-10-17 14:24:59',1),(1,101,1693,'2012-10-17 14:24:59',1),(1,75,1693,'2012-10-17 14:24:59',1),(1,5,1693,'2012-10-17 14:24:59',1),(1,49,1698,'2012-10-17 14:25:04',1),(1,3,1699,'2012-10-17 14:25:05',1),(1,150,1701,'2012-10-17 14:25:08',1),(1,129,1701,'2012-10-17 14:25:08',1),(1,160,1702,'2012-10-17 14:25:09',1),(1,96,1702,'2012-10-17 14:25:09',1),(1,3,1702,'2012-10-17 14:25:09',1),(1,139,1702,'2012-10-17 14:25:09',1),(1,160,1703,'2012-10-17 14:25:09',1),(1,96,1703,'2012-10-17 14:25:09',1),(1,3,1703,'2012-10-17 14:25:09',1),(1,139,1703,'2012-10-17 14:25:09',1),(1,223,1711,'2012-10-17 14:25:25',1),(1,3,1715,'2012-10-17 14:25:32',1),(1,63,1700,'2012-10-17 14:55:08',NULL),(1,61,1700,'2012-10-17 14:55:08',NULL),(1,223,1707,'2012-10-17 14:55:18',1),(1,150,1707,'2012-10-17 14:55:18',1),(1,150,1708,'2012-10-17 14:55:18',1),(1,63,1708,'2012-10-17 14:55:18',1),(1,61,1708,'2012-10-17 14:55:18',1),(1,223,1708,'2012-10-17 14:55:18',1),(1,223,1712,'2012-10-17 14:55:27',1),(1,150,1712,'2012-10-17 14:55:27',1),(1,150,1713,'2012-10-17 14:55:31',1),(1,63,1713,'2012-10-17 14:55:31',1),(1,129,1713,'2012-10-17 14:55:31',1),(1,61,1713,'2012-10-17 14:55:31',1),(1,63,1716,'2012-10-17 14:55:34',1),(1,61,1716,'2012-10-17 14:55:34',1),(1,223,1717,'2012-10-17 14:55:34',1),(1,150,1717,'2012-10-17 14:55:34',1),(1,63,1717,'2012-10-17 14:55:34',1),(1,129,1717,'2012-10-17 14:55:34',1),(1,49,1719,'2012-10-17 14:55:36',1),(1,223,1721,'2012-10-17 14:55:39',1),(1,150,1721,'2012-10-17 14:55:39',1),(1,63,1721,'2012-10-17 14:55:39',1),(1,129,1721,'2012-10-17 14:55:39',1),(1,61,1720,'2012-10-17 14:55:39',1),(1,49,1720,'2012-10-17 14:55:39',1),(1,129,1724,'2012-10-17 14:55:43',1),(1,49,1725,'2012-10-17 14:55:43',1),(1,129,1740,'2012-10-17 14:56:02',1),(1,129,1745,'2012-10-17 14:56:06',1),(1,160,1706,'2012-10-17 15:25:16',NULL),(1,96,1706,'2012-10-17 15:25:16',NULL),(1,3,1706,'2012-10-17 15:25:16',NULL),(1,139,1706,'2012-10-17 15:25:16',NULL),(1,61,1726,'2012-10-17 15:25:46',NULL),(1,49,1726,'2012-10-17 15:25:46',NULL),(1,223,1728,'2012-10-17 15:25:48',1),(1,150,1728,'2012-10-17 15:25:48',1),(1,63,1728,'2012-10-17 15:25:48',1),(1,129,1728,'2012-10-17 15:25:48',1),(1,223,1694,'2012-10-17 15:55:02',1),(1,160,1694,'2012-10-17 15:55:02',1),(1,96,1694,'2012-10-17 15:55:02',1),(1,3,1694,'2012-10-17 15:55:02',1),(1,139,1694,'2012-10-17 15:55:02',1),(1,150,1694,'2012-10-17 15:55:02',1),(1,63,1694,'2012-10-17 15:55:02',1),(1,129,1694,'2012-10-17 15:55:02',1),(1,223,1695,'2012-10-17 15:55:05',1),(1,160,1695,'2012-10-17 15:55:05',1),(1,96,1695,'2012-10-17 15:55:05',1),(1,3,1695,'2012-10-17 15:55:05',1),(1,139,1695,'2012-10-17 15:55:05',1),(1,150,1695,'2012-10-17 15:55:05',1),(1,63,1695,'2012-10-17 15:55:05',1),(1,129,1695,'2012-10-17 15:55:05',1),(1,223,1696,'2012-10-17 15:55:07',1),(1,160,1696,'2012-10-17 15:55:07',1),(1,96,1696,'2012-10-17 15:55:07',1),(1,3,1696,'2012-10-17 15:55:07',1),(1,139,1696,'2012-10-17 15:55:07',1),(1,150,1696,'2012-10-17 15:55:07',1),(1,63,1696,'2012-10-17 15:55:07',1),(1,129,1696,'2012-10-17 15:55:07',1),(1,223,1697,'2012-10-17 15:55:08',1),(1,160,1697,'2012-10-17 15:55:08',1),(1,96,1697,'2012-10-17 15:55:08',1),(1,3,1697,'2012-10-17 15:55:08',1),(1,139,1697,'2012-10-17 15:55:08',1),(1,150,1697,'2012-10-17 15:55:08',1),(1,63,1697,'2012-10-17 15:55:08',1),(1,129,1697,'2012-10-17 15:55:08',1),(1,223,1704,'2012-10-17 15:55:12',1),(1,160,1704,'2012-10-17 15:55:12',1),(1,96,1704,'2012-10-17 15:55:12',1),(1,3,1704,'2012-10-17 15:55:12',1),(1,139,1704,'2012-10-17 15:55:12',1),(1,150,1704,'2012-10-17 15:55:12',1),(1,63,1704,'2012-10-17 15:55:12',1),(1,129,1704,'2012-10-17 15:55:12',1),(1,223,1705,'2012-10-17 15:55:18',1),(1,160,1705,'2012-10-17 15:55:18',1),(1,96,1705,'2012-10-17 15:55:18',1),(1,3,1705,'2012-10-17 15:55:18',1),(1,139,1705,'2012-10-17 15:55:18',1),(1,150,1705,'2012-10-17 15:55:18',1),(1,63,1705,'2012-10-17 15:55:18',1),(1,129,1705,'2012-10-17 15:55:18',1),(1,223,1709,'2012-10-17 15:55:22',1),(1,160,1709,'2012-10-17 15:55:22',1),(1,96,1709,'2012-10-17 15:55:22',1),(1,3,1709,'2012-10-17 15:55:22',1),(1,139,1709,'2012-10-17 15:55:22',1),(1,150,1709,'2012-10-17 15:55:22',1),(1,63,1709,'2012-10-17 15:55:22',1),(1,129,1709,'2012-10-17 15:55:22',1),(1,223,1714,'2012-10-17 15:55:36',1),(1,160,1714,'2012-10-17 15:55:36',1),(1,96,1714,'2012-10-17 15:55:36',1),(1,3,1714,'2012-10-17 15:55:36',1),(1,139,1714,'2012-10-17 15:55:36',1),(1,150,1714,'2012-10-17 15:55:36',1),(1,63,1714,'2012-10-17 15:55:36',1),(1,129,1714,'2012-10-17 15:55:36',1),(1,223,1718,'2012-10-17 15:55:39',1),(1,160,1718,'2012-10-17 15:55:39',1),(1,96,1718,'2012-10-17 15:55:39',1),(1,3,1718,'2012-10-17 15:55:39',1),(1,139,1718,'2012-10-17 15:55:39',1),(1,150,1718,'2012-10-17 15:55:39',1),(1,63,1718,'2012-10-17 15:55:39',1),(1,129,1718,'2012-10-17 15:55:39',1),(1,223,1729,'2012-10-17 15:55:52',1),(1,150,1729,'2012-10-17 15:55:52',1),(1,63,1729,'2012-10-17 15:55:52',1),(1,129,1729,'2012-10-17 15:55:52',1),(1,160,1733,'2012-10-17 15:55:55',1),(1,96,1733,'2012-10-17 15:55:55',1),(1,3,1733,'2012-10-17 15:55:55',1),(1,139,1733,'2012-10-17 15:55:55',1),(1,223,1737,'2012-10-17 15:55:59',1),(1,150,1737,'2012-10-17 15:55:59',1),(1,63,1737,'2012-10-17 15:55:59',1),(1,129,1737,'2012-10-17 15:55:59',1),(1,223,1722,'2012-10-17 16:25:45',1),(1,160,1722,'2012-10-17 16:25:45',1),(1,96,1722,'2012-10-17 16:25:45',1),(1,3,1722,'2012-10-17 16:25:45',1),(1,139,1722,'2012-10-17 16:25:45',1),(1,150,1722,'2012-10-17 16:25:45',1),(1,63,1722,'2012-10-17 16:25:45',1),(1,129,1722,'2012-10-17 16:25:45',1),(1,61,1727,'2012-10-17 16:25:50',NULL),(1,49,1727,'2012-10-17 16:25:50',NULL),(1,61,1732,'2012-10-17 16:25:57',1),(1,49,1732,'2012-10-17 16:25:57',1),(1,24,1736,'2012-10-17 16:25:59',1),(1,129,1736,'2012-10-17 16:25:59',1),(1,85,1738,'2012-10-17 16:26:03',1),(1,24,1738,'2012-10-17 16:26:03',1),(1,147,1738,'2012-10-17 16:26:03',1),(1,233,1738,'2012-10-17 16:26:03',1),(1,163,1738,'2012-10-17 16:26:03',1),(1,29,1738,'2012-10-17 16:26:03',1),(1,128,1738,'2012-10-17 16:26:03',1),(1,189,1738,'2012-10-17 16:26:03',1),(1,61,1741,'2012-10-17 16:26:07',1),(1,49,1741,'2012-10-17 16:26:07',1),(1,85,1742,'2012-10-17 16:26:07',1),(1,24,1742,'2012-10-17 16:26:07',1),(1,61,1742,'2012-10-17 16:26:07',1),(1,49,1742,'2012-10-17 16:26:07',1),(1,223,1746,'2012-10-17 16:26:12',1),(1,85,1746,'2012-10-17 16:26:12',1),(1,61,1747,'2012-10-17 16:26:12',1),(1,49,1747,'2012-10-17 16:26:12',1),(1,223,1747,'2012-10-17 16:26:12',1),(1,85,1747,'2012-10-17 16:26:12',1),(1,105,1748,'2012-10-17 19:56:25',1),(1,75,1748,'2012-10-17 19:56:25',1),(1,5,1748,'2012-10-17 19:56:25',1),(1,218,1748,'2012-10-17 19:56:25',1),(1,212,1748,'2012-10-17 19:56:25',1),(1,42,1748,'2012-10-17 19:56:25',1),(1,187,1748,'2012-10-17 19:56:25',1),(1,127,1748,'2012-10-17 19:56:25',1),(1,136,1710,'2012-10-17 20:26:03',1),(1,42,1710,'2012-10-17 20:26:03',1),(1,82,1710,'2012-10-17 20:26:03',1),(1,187,1710,'2012-10-17 20:26:03',1),(1,79,1710,'2012-10-17 20:26:03',1),(1,239,1710,'2012-10-17 20:26:03',1),(1,127,1710,'2012-10-17 20:26:03',1),(1,45,1710,'2012-10-17 20:26:03',1),(1,98,1710,'2012-10-17 20:26:03',1),(1,161,1710,'2012-10-17 20:26:03',1),(1,190,1710,'2012-10-17 20:26:03',1),(1,159,1710,'2012-10-17 20:26:03',1),(1,6,1710,'2012-10-17 20:26:03',1),(1,4,1710,'2012-10-17 20:26:03',1),(1,101,1710,'2012-10-17 20:26:03',1),(1,15,1710,'2012-10-17 20:26:03',1),(1,136,1723,'2012-10-17 20:26:03',1),(1,42,1723,'2012-10-17 20:26:03',1),(1,82,1723,'2012-10-17 20:26:03',1),(1,187,1723,'2012-10-17 20:26:03',1),(1,79,1723,'2012-10-17 20:26:03',1),(1,239,1723,'2012-10-17 20:26:03',1),(1,127,1723,'2012-10-17 20:26:03',1),(1,45,1723,'2012-10-17 20:26:03',1),(1,98,1723,'2012-10-17 20:26:03',1),(1,161,1723,'2012-10-17 20:26:03',1),(1,190,1723,'2012-10-17 20:26:03',1),(1,159,1723,'2012-10-17 20:26:03',1),(1,6,1723,'2012-10-17 20:26:03',1),(1,4,1723,'2012-10-17 20:26:03',1),(1,101,1723,'2012-10-17 20:26:03',1),(1,15,1723,'2012-10-17 20:26:03',1),(1,136,1731,'2012-10-17 20:26:03',NULL),(1,82,1731,'2012-10-17 20:26:03',NULL),(1,79,1731,'2012-10-17 20:26:03',NULL),(1,239,1731,'2012-10-17 20:26:03',NULL),(1,161,1731,'2012-10-17 20:26:03',NULL),(1,190,1731,'2012-10-17 20:26:03',NULL),(1,159,1731,'2012-10-17 20:26:03',NULL),(1,6,1731,'2012-10-17 20:26:03',NULL),(1,136,1735,'2012-10-17 20:56:13',1),(1,42,1735,'2012-10-17 20:56:13',1),(1,82,1735,'2012-10-17 20:56:13',1),(1,187,1735,'2012-10-17 20:56:13',1),(1,79,1735,'2012-10-17 20:56:13',1),(1,239,1735,'2012-10-17 20:56:13',1),(1,127,1735,'2012-10-17 20:56:13',1),(1,45,1735,'2012-10-17 20:56:13',1),(1,98,1735,'2012-10-17 20:56:13',1),(1,161,1735,'2012-10-17 20:56:13',1),(1,190,1735,'2012-10-17 20:56:13',1),(1,159,1735,'2012-10-17 20:56:13',1),(1,6,1735,'2012-10-17 20:56:13',1),(1,4,1735,'2012-10-17 20:56:13',1),(1,101,1735,'2012-10-17 20:56:13',1),(1,15,1735,'2012-10-17 20:56:13',1),(1,98,1730,'2012-10-17 21:26:16',1),(1,161,1730,'2012-10-17 21:26:16',1),(1,190,1730,'2012-10-17 21:26:16',1),(1,159,1730,'2012-10-17 21:26:16',1),(1,6,1730,'2012-10-17 21:26:16',1),(1,4,1730,'2012-10-17 21:26:16',1),(1,101,1730,'2012-10-17 21:26:16',1),(1,15,1730,'2012-10-17 21:26:16',1),(1,136,1739,'2012-10-17 21:26:16',1),(1,138,1739,'2012-10-17 21:26:16',1),(1,42,1739,'2012-10-17 21:26:16',1),(1,82,1739,'2012-10-17 21:26:16',1),(1,26,1739,'2012-10-17 21:26:16',1),(1,187,1739,'2012-10-17 21:26:16',1),(1,197,1739,'2012-10-17 21:26:16',1),(1,126,1739,'2012-10-17 21:26:16',1),(1,79,1739,'2012-10-17 21:26:16',1),(1,239,1739,'2012-10-17 21:26:16',1),(1,21,1739,'2012-10-17 21:26:16',1),(1,127,1739,'2012-10-17 21:26:16',1),(1,71,1739,'2012-10-17 21:26:16',1),(1,45,1739,'2012-10-17 21:26:16',1),(1,12,1739,'2012-10-17 21:26:16',1),(1,232,1739,'2012-10-17 21:26:16',1),(1,98,1734,'2012-10-17 21:26:16',1),(1,161,1734,'2012-10-17 21:26:16',1),(1,190,1734,'2012-10-17 21:26:16',1),(1,159,1734,'2012-10-17 21:26:16',1),(1,6,1734,'2012-10-17 21:26:16',1),(1,4,1734,'2012-10-17 21:26:16',1),(1,101,1734,'2012-10-17 21:26:16',1),(1,15,1734,'2012-10-17 21:26:16',1),(1,136,1744,'2012-10-17 21:26:24',1),(1,138,1744,'2012-10-17 21:26:24',1),(1,42,1744,'2012-10-17 21:26:24',1),(1,82,1744,'2012-10-17 21:26:24',1),(1,26,1744,'2012-10-17 21:26:24',1),(1,187,1744,'2012-10-17 21:26:24',1),(1,197,1744,'2012-10-17 21:26:24',1),(1,126,1744,'2012-10-17 21:26:24',1),(1,79,1744,'2012-10-17 21:26:24',1),(1,239,1744,'2012-10-17 21:26:24',1),(1,21,1744,'2012-10-17 21:26:24',1),(1,127,1744,'2012-10-17 21:26:24',1),(1,71,1744,'2012-10-17 21:26:24',1),(1,45,1744,'2012-10-17 21:26:24',1),(1,12,1744,'2012-10-17 21:26:24',1),(1,232,1744,'2012-10-17 21:26:24',1),(1,136,1743,'2012-10-17 21:56:26',NULL),(1,138,1743,'2012-10-17 21:56:26',NULL),(1,42,1743,'2012-10-17 21:56:26',NULL),(1,82,1743,'2012-10-17 21:56:26',NULL),(1,26,1743,'2012-10-17 21:56:26',NULL),(1,187,1743,'2012-10-17 21:56:26',NULL),(1,197,1743,'2012-10-17 21:56:26',NULL),(1,126,1743,'2012-10-17 21:56:26',NULL),(1,202,1894,'2012-10-18 00:46:18',1),(1,5,1895,'2012-10-18 00:46:18',1),(1,230,1897,'2012-10-18 00:46:18',1),(1,218,1896,'2012-10-18 00:46:18',1),(1,15,1898,'2012-10-18 00:46:28',1),(1,206,1899,'2012-10-18 00:46:28',1),(1,212,1899,'2012-10-18 00:46:28',1),(1,206,1900,'2012-10-18 00:46:28',1),(1,212,1900,'2012-10-18 00:46:28',1),(1,206,1901,'2012-10-18 00:46:28',1),(1,212,1901,'2012-10-18 00:46:28',1),(1,206,1903,'2012-10-18 00:46:34',1),(1,212,1903,'2012-10-18 00:46:34',1),(1,206,1902,'2012-10-18 00:46:34',1),(1,212,1902,'2012-10-18 00:46:34',1),(1,202,1904,'2012-10-18 00:46:34',1),(1,5,1904,'2012-10-18 00:46:34',1),(1,230,1904,'2012-10-18 00:46:34',1),(1,218,1904,'2012-10-18 00:46:34',1),(1,15,1905,'2012-10-18 00:46:34',1),(1,75,1905,'2012-10-18 00:46:34',1),(1,6,1905,'2012-10-18 00:46:34',1),(1,4,1905,'2012-10-18 00:46:34',1),(1,202,1908,'2012-10-18 00:46:42',1),(1,5,1908,'2012-10-18 00:46:42',1),(1,230,1908,'2012-10-18 00:46:42',1),(1,218,1908,'2012-10-18 00:46:42',1),(1,15,1907,'2012-10-18 00:46:42',1),(1,75,1907,'2012-10-18 00:46:42',1),(1,6,1907,'2012-10-18 00:46:42',1),(1,4,1907,'2012-10-18 00:46:42',1),(1,15,1906,'2012-10-18 00:46:42',1),(1,75,1906,'2012-10-18 00:46:42',1),(1,6,1906,'2012-10-18 00:46:42',1),(1,4,1906,'2012-10-18 00:46:42',1),(1,15,1909,'2012-10-18 00:46:42',1),(1,75,1909,'2012-10-18 00:46:42',1),(1,202,1909,'2012-10-18 00:46:42',1),(1,5,1909,'2012-10-18 00:46:42',1),(1,230,1909,'2012-10-18 00:46:42',1),(1,218,1909,'2012-10-18 00:46:42',1),(1,6,1909,'2012-10-18 00:46:42',1),(1,4,1909,'2012-10-18 00:46:42',1),(1,15,1913,'2012-10-18 00:46:49',1),(1,75,1913,'2012-10-18 00:46:49',1),(1,202,1913,'2012-10-18 00:46:49',1),(1,5,1913,'2012-10-18 00:46:49',1),(1,230,1913,'2012-10-18 00:46:49',1),(1,218,1913,'2012-10-18 00:46:49',1),(1,6,1913,'2012-10-18 00:46:49',1),(1,4,1913,'2012-10-18 00:46:49',1),(1,15,1910,'2012-10-18 00:46:49',1),(1,75,1910,'2012-10-18 00:46:49',1),(1,202,1910,'2012-10-18 00:46:49',1),(1,5,1910,'2012-10-18 00:46:49',1),(1,230,1910,'2012-10-18 00:46:49',1),(1,218,1910,'2012-10-18 00:46:49',1),(1,6,1910,'2012-10-18 00:46:49',1),(1,4,1910,'2012-10-18 00:46:49',1),(1,15,1912,'2012-10-18 00:46:49',1),(1,75,1912,'2012-10-18 00:46:49',1),(1,202,1912,'2012-10-18 00:46:49',1),(1,5,1912,'2012-10-18 00:46:49',1),(1,230,1912,'2012-10-18 00:46:49',1),(1,218,1912,'2012-10-18 00:46:49',1),(1,6,1912,'2012-10-18 00:46:49',1),(1,4,1912,'2012-10-18 00:46:49',1),(1,15,1911,'2012-10-18 00:46:49',1),(1,75,1911,'2012-10-18 00:46:49',1),(1,202,1911,'2012-10-18 00:46:49',1),(1,5,1911,'2012-10-18 00:46:49',1),(1,230,1911,'2012-10-18 00:46:49',1),(1,218,1911,'2012-10-18 00:46:49',1),(1,6,1911,'2012-10-18 00:46:49',1),(1,4,1911,'2012-10-18 00:46:49',1),(1,142,1934,'2012-10-18 01:46:15',1),(1,185,1935,'2012-10-18 01:46:15',1),(1,206,1936,'2012-10-18 01:46:16',1),(1,212,1936,'2012-10-18 01:46:16',1),(1,206,1937,'2012-10-18 01:46:16',1),(1,212,1937,'2012-10-18 01:46:16',1),(1,202,1938,'2012-10-18 01:46:20',1),(1,5,1938,'2012-10-18 01:46:20',1),(1,230,1938,'2012-10-18 01:46:20',1),(1,218,1938,'2012-10-18 01:46:20',1),(1,15,1939,'2012-10-18 01:46:20',1),(1,75,1939,'2012-10-18 01:46:20',1),(1,6,1939,'2012-10-18 01:46:20',1),(1,4,1939,'2012-10-18 01:46:20',1),(1,15,1940,'2012-10-18 01:46:27',1),(1,75,1940,'2012-10-18 01:46:27',1),(1,202,1940,'2012-10-18 01:46:27',1),(1,5,1940,'2012-10-18 01:46:27',1),(1,230,1940,'2012-10-18 01:46:27',1),(1,218,1940,'2012-10-18 01:46:27',1),(1,6,1940,'2012-10-18 01:46:27',1),(1,4,1940,'2012-10-18 01:46:27',1),(1,15,1941,'2012-10-18 01:46:27',1),(1,75,1941,'2012-10-18 01:46:27',1),(1,202,1941,'2012-10-18 01:46:27',1),(1,5,1941,'2012-10-18 01:46:27',1),(1,230,1941,'2012-10-18 01:46:27',1),(1,218,1941,'2012-10-18 01:46:27',1),(1,6,1941,'2012-10-18 01:46:27',1),(1,4,1941,'2012-10-18 01:46:27',1),(1,6,1952,'2012-10-18 02:46:16',1),(1,4,1952,'2012-10-18 02:46:16',1),(1,202,1952,'2012-10-18 02:46:16',1),(1,185,1952,'2012-10-18 02:46:16',1),(1,206,1951,'2012-10-18 02:46:16',1),(1,212,1951,'2012-10-18 02:46:16',1),(1,6,1953,'2012-10-18 02:46:16',1),(1,4,1953,'2012-10-18 02:46:16',1),(1,202,1953,'2012-10-18 02:46:16',1),(1,185,1953,'2012-10-18 02:46:16',1),(1,142,1953,'2012-10-18 02:46:16',1),(1,5,1953,'2012-10-18 02:46:16',1),(1,230,1953,'2012-10-18 02:46:16',1),(1,218,1953,'2012-10-18 02:46:16',1),(1,206,1955,'2012-10-18 02:46:22',1),(1,206,1956,'2012-10-18 02:46:23',1),(1,212,1956,'2012-10-18 02:46:23',1),(1,6,1957,'2012-10-18 02:46:28',1),(1,4,1957,'2012-10-18 02:46:28',1),(1,202,1957,'2012-10-18 02:46:28',1),(1,185,1957,'2012-10-18 02:46:28',1),(1,6,1958,'2012-10-18 02:46:30',1),(1,4,1958,'2012-10-18 02:46:30',1),(1,202,1958,'2012-10-18 02:46:30',1),(1,185,1958,'2012-10-18 02:46:30',1),(1,142,1958,'2012-10-18 02:46:30',1),(1,5,1958,'2012-10-18 02:46:30',1),(1,230,1958,'2012-10-18 02:46:30',1),(1,218,1958,'2012-10-18 02:46:30',1),(1,212,1959,'2012-10-18 02:46:30',1),(1,206,1960,'2012-10-18 02:46:30',1),(1,212,1960,'2012-10-18 02:46:30',1),(1,6,1961,'2012-10-18 02:46:34',1),(1,4,1961,'2012-10-18 02:46:34',1),(1,202,1961,'2012-10-18 02:46:34',1),(1,185,1961,'2012-10-18 02:46:34',1),(1,6,1962,'2012-10-18 02:46:43',1),(1,4,1962,'2012-10-18 02:46:43',1),(1,202,1962,'2012-10-18 02:46:43',1),(1,185,1962,'2012-10-18 02:46:43',1),(1,142,1962,'2012-10-18 02:46:43',1),(1,5,1962,'2012-10-18 02:46:43',1),(1,230,1962,'2012-10-18 02:46:43',1),(1,218,1962,'2012-10-18 02:46:43',1),(1,212,1963,'2012-10-18 02:46:43',1),(1,206,1964,'2012-10-18 02:46:43',1),(1,212,1964,'2012-10-18 02:46:43',1),(1,6,1966,'2012-10-18 02:46:47',1),(1,4,1966,'2012-10-18 02:46:47',1),(1,202,1966,'2012-10-18 02:46:47',1),(1,185,1966,'2012-10-18 02:46:47',1),(1,142,1966,'2012-10-18 02:46:47',1),(1,5,1966,'2012-10-18 02:46:47',1),(1,230,1966,'2012-10-18 02:46:47',1),(1,218,1966,'2012-10-18 02:46:47',1),(1,6,1965,'2012-10-18 03:16:45',1),(1,4,1965,'2012-10-18 03:16:45',1),(1,202,1965,'2012-10-18 03:16:45',1),(1,185,1965,'2012-10-18 03:16:45',1),(1,202,1988,'2012-10-18 03:46:17',1),(1,185,1988,'2012-10-18 03:46:17',1),(1,142,1950,'2012-10-18 03:46:21',NULL),(1,5,1950,'2012-10-18 03:46:21',NULL),(1,230,1950,'2012-10-18 03:46:21',NULL),(1,218,1950,'2012-10-18 03:46:21',NULL),(1,206,1990,'2012-10-18 03:46:25',1),(1,212,1990,'2012-10-18 03:46:25',1),(1,6,1990,'2012-10-18 03:46:25',1),(1,4,1990,'2012-10-18 03:46:25',1),(1,197,1986,'2012-10-18 04:16:19',1),(1,206,1989,'2012-10-18 04:16:19',1),(1,212,1989,'2012-10-18 04:16:19',1),(1,6,1992,'2012-10-18 04:16:26',1),(1,4,1992,'2012-10-18 04:16:26',1),(1,202,1992,'2012-10-18 04:16:26',1),(1,185,1992,'2012-10-18 04:16:26',1),(1,142,1992,'2012-10-18 04:16:26',1),(1,5,1992,'2012-10-18 04:16:26',1),(1,230,1992,'2012-10-18 04:16:26',1),(1,218,1992,'2012-10-18 04:16:26',1),(1,206,1994,'2012-10-18 04:16:35',1),(1,212,1994,'2012-10-18 04:16:35',1),(1,212,1995,'2012-10-18 04:16:36',1),(1,206,1995,'2012-10-18 04:16:36',1),(1,187,1995,'2012-10-18 04:16:36',1),(1,126,1995,'2012-10-18 04:16:36',1),(1,212,1999,'2012-10-18 04:16:42',1),(1,206,1999,'2012-10-18 04:16:42',1),(1,187,1999,'2012-10-18 04:16:42',1),(1,197,1999,'2012-10-18 04:16:42',1),(1,206,1998,'2012-10-18 04:16:42',1),(1,212,1998,'2012-10-18 04:16:42',1),(1,206,2003,'2012-10-18 04:16:49',1),(1,212,2003,'2012-10-18 04:16:49',1),(1,126,2007,'2012-10-18 04:16:56',1),(1,206,2008,'2012-10-18 04:16:56',1),(1,212,2008,'2012-10-18 04:16:56',1),(1,49,1987,'2012-10-18 04:46:20',1),(1,6,1993,'2012-10-18 04:46:27',1),(1,4,1993,'2012-10-18 04:46:27',1),(1,202,1993,'2012-10-18 04:46:27',1),(1,185,1993,'2012-10-18 04:46:27',1),(1,142,1993,'2012-10-18 04:46:27',1),(1,5,1993,'2012-10-18 04:46:27',1),(1,230,1993,'2012-10-18 04:46:27',1),(1,218,1993,'2012-10-18 04:46:27',1),(1,187,1954,'2012-10-18 04:46:30',1),(1,197,1954,'2012-10-18 04:46:30',1),(1,126,1954,'2012-10-18 04:46:30',1),(1,85,1954,'2012-10-18 04:46:30',1),(1,24,1954,'2012-10-18 04:46:30',1),(1,129,1954,'2012-10-18 04:46:30',1),(1,202,1954,'2012-10-18 04:46:30',1),(1,185,1954,'2012-10-18 04:46:30',1),(1,142,1954,'2012-10-18 04:46:30',1),(1,61,1954,'2012-10-18 04:46:30',1),(1,5,1954,'2012-10-18 04:46:30',1),(1,230,1954,'2012-10-18 04:46:30',1),(1,218,1954,'2012-10-18 04:46:30',1),(1,206,1954,'2012-10-18 04:46:30',1),(1,6,1954,'2012-10-18 04:46:30',1),(1,4,1954,'2012-10-18 04:46:30',1),(1,187,2000,'2012-10-18 04:46:44',1),(1,197,2000,'2012-10-18 04:46:44',1),(1,126,2000,'2012-10-18 04:46:44',1),(1,85,2000,'2012-10-18 04:46:44',1),(1,24,2000,'2012-10-18 04:46:44',1),(1,129,2000,'2012-10-18 04:46:44',1),(1,61,2000,'2012-10-18 04:46:44',1),(1,206,2000,'2012-10-18 04:46:44',1),(1,223,2002,'2012-10-18 04:46:49',1),(1,187,1967,'2012-10-18 04:46:53',1),(1,197,1967,'2012-10-18 04:46:53',1),(1,126,1967,'2012-10-18 04:46:53',1),(1,85,1967,'2012-10-18 04:46:53',1),(1,24,1967,'2012-10-18 04:46:53',1),(1,129,1967,'2012-10-18 04:46:53',1),(1,202,1967,'2012-10-18 04:46:53',1),(1,185,1967,'2012-10-18 04:46:53',1),(1,142,1967,'2012-10-18 04:46:53',1),(1,61,1967,'2012-10-18 04:46:53',1),(1,5,1967,'2012-10-18 04:46:53',1),(1,230,1967,'2012-10-18 04:46:53',1),(1,218,1967,'2012-10-18 04:46:53',1),(1,206,1967,'2012-10-18 04:46:53',1),(1,6,1967,'2012-10-18 04:46:53',1),(1,4,1967,'2012-10-18 04:46:53',1),(1,212,2009,'2012-10-18 04:46:58',1),(1,206,2009,'2012-10-18 04:46:58',1),(1,187,2009,'2012-10-18 04:46:58',1),(1,197,2009,'2012-10-18 04:46:58',1),(1,187,1997,'2012-10-18 05:16:39',1),(1,197,1997,'2012-10-18 05:16:39',1),(1,126,1997,'2012-10-18 05:16:39',1),(1,85,1997,'2012-10-18 05:16:39',1),(1,24,1997,'2012-10-18 05:16:39',1),(1,129,1997,'2012-10-18 05:16:39',1),(1,202,1997,'2012-10-18 05:16:39',1),(1,185,1997,'2012-10-18 05:16:39',1),(1,142,1997,'2012-10-18 05:16:39',1),(1,61,1997,'2012-10-18 05:16:39',1),(1,5,1997,'2012-10-18 05:16:39',1),(1,230,1997,'2012-10-18 05:16:39',1),(1,218,1997,'2012-10-18 05:16:39',1),(1,206,1997,'2012-10-18 05:16:39',1),(1,6,1997,'2012-10-18 05:16:39',1),(1,4,1997,'2012-10-18 05:16:39',1),(1,129,1991,'2012-10-18 05:46:29',1),(1,202,1991,'2012-10-18 05:46:29',1),(1,185,1991,'2012-10-18 05:46:29',1),(1,142,1991,'2012-10-18 05:46:29',1),(1,184,1996,'2012-10-18 05:46:40',NULL),(1,121,1996,'2012-10-18 05:46:40',NULL),(1,165,1996,'2012-10-18 05:46:40',NULL),(1,148,1996,'2012-10-18 05:46:40',NULL),(1,1,1996,'2012-10-18 05:46:40',NULL),(1,115,1996,'2012-10-18 05:46:40',NULL),(1,74,1996,'2012-10-18 05:46:40',NULL),(1,174,1996,'2012-10-18 05:46:40',NULL),(1,246,2001,'2012-10-18 05:46:48',1),(1,187,2001,'2012-10-18 05:46:48',1),(1,197,2001,'2012-10-18 05:46:48',1),(1,126,2001,'2012-10-18 05:46:48',1),(1,85,2001,'2012-10-18 05:46:48',1),(1,24,2001,'2012-10-18 05:46:48',1),(1,129,2001,'2012-10-18 05:46:48',1),(1,202,2001,'2012-10-18 05:46:48',1),(1,185,2001,'2012-10-18 05:46:48',1),(1,142,2001,'2012-10-18 05:46:48',1),(1,61,2001,'2012-10-18 05:46:48',1),(1,5,2001,'2012-10-18 05:46:48',1),(1,230,2001,'2012-10-18 05:46:48',1),(1,218,2001,'2012-10-18 05:46:48',1),(1,6,2001,'2012-10-18 05:46:48',1),(1,4,2001,'2012-10-18 05:46:48',1),(1,61,2004,'2012-10-18 05:46:53',1),(1,5,2004,'2012-10-18 05:46:53',1),(1,230,2004,'2012-10-18 05:46:53',1),(1,218,2004,'2012-10-18 05:46:53',1),(1,162,2006,'2012-10-18 05:47:00',1),(1,155,2006,'2012-10-18 05:47:00',1),(1,191,2006,'2012-10-18 05:47:00',1),(1,80,2006,'2012-10-18 05:47:00',1),(1,252,2006,'2012-10-18 05:47:00',1),(1,107,2006,'2012-10-18 05:47:00',1),(1,14,2006,'2012-10-18 05:47:00',1),(1,168,2006,'2012-10-18 05:47:00',1),(1,108,2006,'2012-10-18 05:47:00',1),(1,2,2006,'2012-10-18 05:47:00',1),(1,199,2006,'2012-10-18 05:47:00',1),(1,205,2006,'2012-10-18 05:47:00',1),(1,206,2006,'2012-10-18 05:47:00',1),(1,49,2006,'2012-10-18 05:47:00',1),(1,207,2006,'2012-10-18 05:47:00',1),(1,56,2006,'2012-10-18 05:47:00',1),(1,129,2010,'2012-10-18 05:47:06',1),(1,202,2010,'2012-10-18 05:47:06',1),(1,185,2010,'2012-10-18 05:47:06',1),(1,142,2010,'2012-10-18 05:47:06',1),(1,61,2010,'2012-10-18 05:47:06',1),(1,5,2010,'2012-10-18 05:47:06',1),(1,230,2010,'2012-10-18 05:47:06',1),(1,218,2010,'2012-10-18 05:47:06',1),(1,246,2005,'2012-10-18 06:16:55',1),(1,187,2005,'2012-10-18 06:16:55',1),(1,197,2005,'2012-10-18 06:16:55',1),(1,126,2005,'2012-10-18 06:16:55',1),(1,85,2005,'2012-10-18 06:16:55',1),(1,24,2005,'2012-10-18 06:16:55',1),(1,6,2005,'2012-10-18 06:16:55',1),(1,4,2005,'2012-10-18 06:16:55',1),(1,95,2043,'2012-10-19 00:46:25',1),(1,134,2043,'2012-10-19 00:46:25',1),(1,151,2041,'2012-10-19 00:46:25',1),(1,164,2041,'2012-10-19 00:46:25',1),(1,95,2042,'2012-10-19 00:46:25',1),(1,134,2042,'2012-10-19 00:46:25',1),(1,95,2046,'2012-10-19 00:46:34',1),(1,134,2046,'2012-10-19 00:46:34',1),(1,151,2046,'2012-10-19 00:46:34',1),(1,164,2046,'2012-10-19 00:46:34',1),(1,151,2044,'2012-10-19 00:46:34',1),(1,164,2044,'2012-10-19 00:46:34',1),(1,95,2045,'2012-10-19 00:46:35',1),(1,134,2045,'2012-10-19 00:46:35',1),(1,95,2047,'2012-10-19 00:46:35',1),(1,134,2047,'2012-10-19 00:46:35',1),(1,151,2047,'2012-10-19 00:46:35',1),(1,164,2047,'2012-10-19 00:46:35',1),(1,95,2049,'2012-10-19 00:46:43',1),(1,134,2049,'2012-10-19 00:46:43',1),(1,151,2049,'2012-10-19 00:46:43',1),(1,164,2049,'2012-10-19 00:46:43',1),(1,95,2048,'2012-10-19 00:46:43',1),(1,134,2048,'2012-10-19 00:46:43',1),(1,151,2048,'2012-10-19 00:46:43',1),(1,164,2048,'2012-10-19 00:46:43',1),(1,95,2050,'2012-10-19 00:46:43',1),(1,134,2050,'2012-10-19 00:46:43',1),(1,151,2050,'2012-10-19 00:46:43',1),(1,164,2050,'2012-10-19 00:46:43',1),(1,172,2078,'2012-10-19 02:46:14',1),(1,83,2078,'2012-10-19 02:46:14',1),(1,172,2079,'2012-10-19 02:46:14',1),(1,83,2079,'2012-10-19 02:46:14',1),(1,31,2094,'2012-10-19 02:46:17',1),(1,236,2094,'2012-10-19 02:46:17',1),(1,172,2094,'2012-10-19 02:46:17',1),(1,83,2094,'2012-10-19 02:46:17',1),(1,171,2080,'2012-10-19 02:46:21',1),(1,62,2080,'2012-10-19 02:46:21',1),(1,39,2080,'2012-10-19 02:46:21',1),(1,19,2080,'2012-10-19 02:46:21',1),(1,171,2081,'2012-10-19 02:46:21',1),(1,62,2081,'2012-10-19 02:46:21',1),(1,39,2081,'2012-10-19 02:46:21',1),(1,19,2081,'2012-10-19 02:46:21',1),(1,17,2036,'2012-10-19 02:46:27',1),(1,31,2099,'2012-10-19 02:46:27',1),(1,236,2099,'2012-10-19 02:46:27',1),(1,172,2099,'2012-10-19 02:46:27',1),(1,83,2099,'2012-10-19 02:46:27',1),(1,17,2037,'2012-10-19 02:46:28',1),(1,17,2038,'2012-10-19 02:46:28',1),(1,243,2076,'2012-10-19 03:16:15',1),(1,31,2077,'2012-10-19 03:16:15',1),(1,83,2093,'2012-10-19 03:16:16',1),(1,17,2093,'2012-10-19 03:16:16',1),(1,236,2097,'2012-10-19 03:16:27',1),(1,243,2098,'2012-10-19 03:16:27',1),(1,145,2098,'2012-10-19 03:16:27',1),(1,17,2039,'2012-10-19 03:16:30',1),(1,83,2040,'2012-10-19 03:16:31',1),(1,145,2101,'2012-10-19 03:16:40',1),(1,83,2102,'2012-10-19 03:16:40',1),(1,17,2102,'2012-10-19 03:16:40',1),(1,31,2103,'2012-10-19 03:16:40',1),(1,236,2103,'2012-10-19 03:16:40',1),(1,251,2103,'2012-10-19 03:16:40',1),(1,172,2103,'2012-10-19 03:16:40',1),(1,251,2105,'2012-10-19 03:16:43',1),(1,83,2106,'2012-10-19 03:16:43',1),(1,17,2106,'2012-10-19 03:16:43',1),(1,31,2107,'2012-10-19 03:16:44',1),(1,236,2107,'2012-10-19 03:16:44',1),(1,251,2107,'2012-10-19 03:16:44',1),(1,172,2107,'2012-10-19 03:16:44',1),(1,243,2051,'2012-10-19 03:16:50',1),(1,31,2051,'2012-10-19 03:16:50',1),(1,236,2051,'2012-10-19 03:16:50',1),(1,145,2051,'2012-10-19 03:16:50',1),(1,251,2051,'2012-10-19 03:16:50',1),(1,172,2051,'2012-10-19 03:16:50',1),(1,83,2051,'2012-10-19 03:16:50',1),(1,17,2051,'2012-10-19 03:16:50',1),(1,243,2052,'2012-10-19 03:16:58',1),(1,31,2052,'2012-10-19 03:16:58',1),(1,236,2052,'2012-10-19 03:16:58',1),(1,145,2052,'2012-10-19 03:16:58',1),(1,251,2052,'2012-10-19 03:16:58',1),(1,172,2052,'2012-10-19 03:16:58',1),(1,83,2052,'2012-10-19 03:16:58',1),(1,17,2052,'2012-10-19 03:16:58',1),(1,243,2054,'2012-10-19 03:16:58',1),(1,31,2054,'2012-10-19 03:16:58',1),(1,236,2054,'2012-10-19 03:16:58',1),(1,145,2054,'2012-10-19 03:16:58',1),(1,251,2054,'2012-10-19 03:16:58',1),(1,172,2054,'2012-10-19 03:16:58',1),(1,83,2054,'2012-10-19 03:16:58',1),(1,17,2054,'2012-10-19 03:16:58',1),(1,243,2053,'2012-10-19 03:16:58',1),(1,31,2053,'2012-10-19 03:16:58',1),(1,236,2053,'2012-10-19 03:16:58',1),(1,145,2053,'2012-10-19 03:16:58',1),(1,251,2053,'2012-10-19 03:16:58',1),(1,172,2053,'2012-10-19 03:16:58',1),(1,83,2053,'2012-10-19 03:16:58',1),(1,17,2053,'2012-10-19 03:16:58',1),(1,243,2055,'2012-10-19 03:17:01',1),(1,31,2055,'2012-10-19 03:17:01',1),(1,236,2055,'2012-10-19 03:17:01',1),(1,145,2055,'2012-10-19 03:17:01',1),(1,251,2055,'2012-10-19 03:17:01',1),(1,172,2055,'2012-10-19 03:17:01',1),(1,83,2055,'2012-10-19 03:17:01',1),(1,17,2055,'2012-10-19 03:17:01',1),(1,171,2092,'2012-10-19 03:46:18',NULL),(1,62,2092,'2012-10-19 03:46:18',NULL),(1,39,2092,'2012-10-19 03:46:18',NULL),(1,19,2092,'2012-10-19 03:46:18',NULL),(1,243,2095,'2012-10-19 03:46:19',1),(1,31,2095,'2012-10-19 03:46:19',1),(1,236,2095,'2012-10-19 03:46:19',1),(1,145,2095,'2012-10-19 03:46:19',1),(1,251,2095,'2012-10-19 03:46:19',1),(1,172,2095,'2012-10-19 03:46:19',1),(1,83,2095,'2012-10-19 03:46:19',1),(1,17,2095,'2012-10-19 03:46:19',1),(1,243,2082,'2012-10-19 03:46:24',1),(1,31,2082,'2012-10-19 03:46:24',1),(1,236,2082,'2012-10-19 03:46:24',1),(1,145,2082,'2012-10-19 03:46:24',1),(1,251,2082,'2012-10-19 03:46:24',1),(1,172,2082,'2012-10-19 03:46:24',1),(1,83,2082,'2012-10-19 03:46:24',1),(1,17,2082,'2012-10-19 03:46:24',1),(1,243,2100,'2012-10-19 03:46:35',1),(1,31,2100,'2012-10-19 03:46:35',1),(1,236,2100,'2012-10-19 03:46:35',1),(1,145,2100,'2012-10-19 03:46:35',1),(1,251,2100,'2012-10-19 03:46:35',1),(1,172,2100,'2012-10-19 03:46:35',1),(1,83,2100,'2012-10-19 03:46:35',1),(1,17,2100,'2012-10-19 03:46:35',1),(1,243,2142,'2012-10-19 03:46:48',1),(1,31,2142,'2012-10-19 03:46:48',1),(1,236,2142,'2012-10-19 03:46:48',1),(1,145,2142,'2012-10-19 03:46:48',1),(1,251,2142,'2012-10-19 03:46:48',1),(1,172,2142,'2012-10-19 03:46:48',1),(1,83,2142,'2012-10-19 03:46:48',1),(1,17,2142,'2012-10-19 03:46:48',1),(1,207,2129,'2012-10-19 06:46:30',1),(1,207,2128,'2012-10-19 06:46:30',1),(1,246,2130,'2012-10-19 06:46:30',1),(1,187,2130,'2012-10-19 06:46:30',1),(1,138,2132,'2012-10-19 06:46:35',1),(1,89,2132,'2012-10-19 06:46:35',1),(1,11,2132,'2012-10-19 06:46:35',1),(1,124,2132,'2012-10-19 06:46:35',1),(1,246,2136,'2012-10-19 06:46:46',1),(1,187,2136,'2012-10-19 06:46:46',1),(1,245,2137,'2012-10-19 06:46:48',1),(1,152,2137,'2012-10-19 06:46:48',1),(1,108,2137,'2012-10-19 06:46:48',1),(1,200,2137,'2012-10-19 06:46:48',1),(1,124,2140,'2012-10-19 06:46:54',1),(1,187,2140,'2012-10-19 06:46:54',1),(1,246,2141,'2012-10-19 06:46:55',1),(1,138,2141,'2012-10-19 06:46:55',1),(1,89,2141,'2012-10-19 06:46:55',1),(1,11,2141,'2012-10-19 06:46:55',1),(1,207,2149,'2012-10-19 06:47:09',1),(1,246,2083,'2012-10-19 07:16:33',1),(1,138,2083,'2012-10-19 07:16:33',1),(1,89,2083,'2012-10-19 07:16:33',1),(1,11,2083,'2012-10-19 07:16:33',1),(1,124,2083,'2012-10-19 07:16:33',1),(1,245,2083,'2012-10-19 07:16:33',1),(1,187,2083,'2012-10-19 07:16:33',1),(1,152,2083,'2012-10-19 07:16:33',1),(1,246,2104,'2012-10-19 07:16:53',1),(1,138,2104,'2012-10-19 07:16:53',1),(1,89,2104,'2012-10-19 07:16:53',1),(1,11,2104,'2012-10-19 07:16:53',1),(1,124,2104,'2012-10-19 07:16:53',1),(1,245,2104,'2012-10-19 07:16:53',1),(1,187,2104,'2012-10-19 07:16:53',1),(1,152,2104,'2012-10-19 07:16:53',1),(1,246,2108,'2012-10-19 07:17:02',1),(1,138,2108,'2012-10-19 07:17:02',1),(1,89,2108,'2012-10-19 07:17:02',1),(1,11,2108,'2012-10-19 07:17:02',1),(1,124,2108,'2012-10-19 07:17:02',1),(1,245,2108,'2012-10-19 07:17:02',1),(1,187,2108,'2012-10-19 07:17:02',1),(1,152,2108,'2012-10-19 07:17:02',1),(1,108,2150,'2012-10-19 07:17:14',1),(1,200,2150,'2012-10-19 07:17:14',1),(1,124,2151,'2012-10-19 07:17:14',1),(1,245,2151,'2012-10-19 07:17:14',1),(1,187,2151,'2012-10-19 07:17:14',1),(1,152,2151,'2012-10-19 07:17:14',1),(1,72,2144,'2012-10-19 08:17:05',1),(1,176,2131,'2012-10-19 08:46:38',1),(1,58,2131,'2012-10-19 08:46:38',1),(1,92,2133,'2012-10-19 08:46:41',1),(1,72,2133,'2012-10-19 08:46:41',1),(1,6,2133,'2012-10-19 08:46:41',1),(1,4,2133,'2012-10-19 08:46:41',1),(1,176,2145,'2012-10-19 08:47:10',1),(1,58,2145,'2012-10-19 08:47:10',1),(1,13,2096,'2012-10-19 11:46:44',1),(1,117,2096,'2012-10-19 11:46:44',1),(1,130,2096,'2012-10-19 11:46:44',1),(1,64,2096,'2012-10-19 11:46:44',1),(1,76,2096,'2012-10-19 11:46:44',1),(1,204,2096,'2012-10-19 11:46:44',1),(1,9,2096,'2012-10-19 11:46:44',1),(1,10,2096,'2012-10-19 11:46:44',1),(1,60,2096,'2012-10-19 11:46:44',1),(1,215,2096,'2012-10-19 11:46:44',1),(1,231,2096,'2012-10-19 11:46:44',1),(1,216,2096,'2012-10-19 11:46:44',1),(1,50,2096,'2012-10-19 11:46:44',1),(1,217,2096,'2012-10-19 11:46:44',1),(1,66,2096,'2012-10-19 11:46:44',1),(1,201,2096,'2012-10-19 11:46:44',1),(1,77,2146,'2012-10-19 11:47:16',1),(1,241,2146,'2012-10-19 11:47:16',1),(1,67,2146,'2012-10-19 11:47:16',1),(1,104,2146,'2012-10-19 11:47:16',1),(1,16,2139,'2012-10-19 12:17:01',1),(1,18,2139,'2012-10-19 12:17:01',1),(1,225,2139,'2012-10-19 12:17:01',1),(1,186,2139,'2012-10-19 12:17:01',1),(1,47,2139,'2012-10-19 12:17:01',1),(1,238,2139,'2012-10-19 12:17:01',1),(1,13,2139,'2012-10-19 12:17:01',1),(1,117,2139,'2012-10-19 12:17:01',1),(1,130,2139,'2012-10-19 12:17:01',1),(1,168,2139,'2012-10-19 12:17:01',1),(1,64,2139,'2012-10-19 12:17:01',1),(1,76,2139,'2012-10-19 12:17:01',1),(1,204,2139,'2012-10-19 12:17:01',1),(1,9,2139,'2012-10-19 12:17:01',1),(1,10,2139,'2012-10-19 12:17:01',1),(1,60,2139,'2012-10-19 12:17:01',1),(1,13,2109,'2012-10-19 12:17:15',1),(1,117,2109,'2012-10-19 12:17:15',1),(1,130,2109,'2012-10-19 12:17:15',1),(1,64,2109,'2012-10-19 12:17:15',1),(1,76,2109,'2012-10-19 12:17:15',1),(1,204,2109,'2012-10-19 12:17:15',1),(1,9,2109,'2012-10-19 12:17:15',1),(1,10,2109,'2012-10-19 12:17:15',1),(1,60,2109,'2012-10-19 12:17:15',1),(1,215,2109,'2012-10-19 12:17:15',1),(1,231,2109,'2012-10-19 12:17:15',1),(1,216,2109,'2012-10-19 12:17:15',1),(1,50,2109,'2012-10-19 12:17:15',1),(1,217,2109,'2012-10-19 12:17:15',1),(1,66,2109,'2012-10-19 12:17:15',1),(1,201,2109,'2012-10-19 12:17:15',1),(1,215,2134,'2012-10-19 12:46:51',1),(1,231,2134,'2012-10-19 12:46:51',1),(1,2,2134,'2012-10-19 12:46:51',1),(1,216,2134,'2012-10-19 12:46:51',1),(1,50,2134,'2012-10-19 12:46:51',1),(1,217,2134,'2012-10-19 12:46:51',1),(1,199,2134,'2012-10-19 12:46:51',1),(1,66,2134,'2012-10-19 12:46:51',1),(1,215,2135,'2012-10-19 12:46:53',1),(1,231,2135,'2012-10-19 12:46:53',1),(1,2,2135,'2012-10-19 12:46:53',1),(1,216,2135,'2012-10-19 12:46:53',1),(1,50,2135,'2012-10-19 12:46:53',1),(1,217,2135,'2012-10-19 12:46:53',1),(1,199,2135,'2012-10-19 12:46:53',1),(1,66,2135,'2012-10-19 12:46:53',1),(1,16,2143,'2012-10-19 12:47:08',1),(1,18,2143,'2012-10-19 12:47:08',1),(1,225,2143,'2012-10-19 12:47:08',1),(1,186,2143,'2012-10-19 12:47:08',1),(1,47,2143,'2012-10-19 12:47:08',1),(1,238,2143,'2012-10-19 12:47:08',1),(1,13,2143,'2012-10-19 12:47:08',1),(1,117,2143,'2012-10-19 12:47:08',1),(1,130,2143,'2012-10-19 12:47:08',1),(1,168,2143,'2012-10-19 12:47:08',1),(1,64,2143,'2012-10-19 12:47:08',1),(1,76,2143,'2012-10-19 12:47:08',1),(1,204,2143,'2012-10-19 12:47:08',1),(1,9,2143,'2012-10-19 12:47:08',1),(1,10,2143,'2012-10-19 12:47:08',1),(1,60,2143,'2012-10-19 12:47:08',1),(1,249,2148,'2012-10-19 12:47:33',1),(1,94,2148,'2012-10-19 12:47:33',1),(1,133,2148,'2012-10-19 12:47:33',1),(1,16,2148,'2012-10-19 12:47:33',1),(1,18,2148,'2012-10-19 12:47:33',1),(1,225,2148,'2012-10-19 12:47:33',1),(1,186,2148,'2012-10-19 12:47:33',1),(1,47,2148,'2012-10-19 12:47:33',1),(1,238,2148,'2012-10-19 12:47:33',1),(1,13,2148,'2012-10-19 12:47:33',1),(1,117,2148,'2012-10-19 12:47:33',1),(1,130,2148,'2012-10-19 12:47:33',1),(1,168,2148,'2012-10-19 12:47:33',1),(1,64,2148,'2012-10-19 12:47:33',1),(1,76,2148,'2012-10-19 12:47:33',1),(1,204,2148,'2012-10-19 12:47:33',1),(1,151,2138,'2012-10-19 13:17:04',1),(1,164,2138,'2012-10-19 13:17:04',1),(1,9,2138,'2012-10-19 13:17:04',1),(1,10,2138,'2012-10-19 13:17:04',1),(1,60,2138,'2012-10-19 13:17:04',1),(1,215,2138,'2012-10-19 13:17:04',1),(1,231,2138,'2012-10-19 13:17:04',1),(1,2,2138,'2012-10-19 13:17:04',1),(1,249,2147,'2012-10-19 13:17:20',1),(1,94,2147,'2012-10-19 13:17:20',1),(1,133,2147,'2012-10-19 13:17:20',1),(1,16,2147,'2012-10-19 13:17:20',1),(1,95,2147,'2012-10-19 13:17:20',1),(1,134,2147,'2012-10-19 13:17:20',1),(1,18,2147,'2012-10-19 13:17:20',1),(1,225,2147,'2012-10-19 13:17:20',1),(1,186,2152,'2012-10-19 13:17:30',1),(1,47,2152,'2012-10-19 13:17:30',1),(1,238,2152,'2012-10-19 13:17:30',1),(1,13,2152,'2012-10-19 13:17:30',1),(1,117,2152,'2012-10-19 13:17:30',1),(1,130,2152,'2012-10-19 13:17:30',1),(1,168,2152,'2012-10-19 13:17:30',1),(1,64,2152,'2012-10-19 13:17:30',1),(1,138,2184,'2012-10-20 00:16:24',1),(1,122,2184,'2012-10-20 00:16:24',1),(1,152,2179,'2012-10-20 00:46:16',1),(1,170,2181,'2012-10-20 00:46:16',1),(1,146,2178,'2012-10-20 00:46:16',1),(1,162,2180,'2012-10-20 00:46:16',1),(1,155,2182,'2012-10-20 00:46:28',1),(1,124,2183,'2012-10-20 00:46:28',1),(1,245,2183,'2012-10-20 00:46:28',1),(1,220,2185,'2012-10-20 00:46:28',1),(1,187,2185,'2012-10-20 00:46:28',1),(1,201,2188,'2012-10-20 00:46:33',1),(1,205,2188,'2012-10-20 00:46:33',1),(1,77,2188,'2012-10-20 00:46:33',1),(1,206,2188,'2012-10-20 00:46:33',1),(1,49,2187,'2012-10-20 00:46:35',1),(1,207,2187,'2012-10-20 00:46:35',1),(1,93,2186,'2012-10-20 00:46:35',1),(1,81,2186,'2012-10-20 00:46:35',1),(1,57,2189,'2012-10-20 00:46:35',1),(1,234,2189,'2012-10-20 00:46:35',1),(1,194,2189,'2012-10-20 00:46:35',1),(1,111,2189,'2012-10-20 00:46:35',1),(1,191,2192,'2012-10-20 00:46:41',1),(1,80,2192,'2012-10-20 00:46:41',1),(1,6,2192,'2012-10-20 00:46:41',1),(1,252,2192,'2012-10-20 00:46:41',1),(1,22,2191,'2012-10-20 00:46:41',1),(1,176,2191,'2012-10-20 00:46:41',1),(1,35,2191,'2012-10-20 00:46:41',1),(1,193,2191,'2012-10-20 00:46:41',1),(1,94,2193,'2012-10-20 00:46:41',1),(1,133,2193,'2012-10-20 00:46:41',1),(1,16,2193,'2012-10-20 00:46:41',1),(1,138,2193,'2012-10-20 00:46:41',1),(1,122,2193,'2012-10-20 00:46:41',1),(1,152,2193,'2012-10-20 00:46:41',1),(1,143,2193,'2012-10-20 00:46:41',1),(1,57,2193,'2012-10-20 00:46:41',1),(1,179,2190,'2012-10-20 00:46:41',1),(1,99,2190,'2012-10-20 00:46:41',1),(1,195,2190,'2012-10-20 00:46:41',1),(1,196,2190,'2012-10-20 00:46:41',1),(1,133,2196,'2012-10-20 00:46:47',1),(1,16,2196,'2012-10-20 00:46:47',1),(1,138,2196,'2012-10-20 00:46:47',1),(1,122,2196,'2012-10-20 00:46:47',1),(1,220,2196,'2012-10-20 00:46:47',1),(1,187,2196,'2012-10-20 00:46:47',1),(1,152,2196,'2012-10-20 00:46:47',1),(1,143,2196,'2012-10-20 00:46:47',1),(1,234,2194,'2012-10-20 00:46:47',1),(1,194,2194,'2012-10-20 00:46:47',1),(1,111,2194,'2012-10-20 00:46:47',1),(1,179,2194,'2012-10-20 00:46:47',1),(1,99,2194,'2012-10-20 00:46:47',1),(1,195,2194,'2012-10-20 00:46:47',1),(1,196,2194,'2012-10-20 00:46:47',1),(1,22,2194,'2012-10-20 00:46:47',1),(1,176,2195,'2012-10-20 00:46:47',1),(1,35,2195,'2012-10-20 00:46:47',1),(1,193,2195,'2012-10-20 00:46:47',1),(1,191,2195,'2012-10-20 00:46:47',1),(1,80,2195,'2012-10-20 00:46:47',1),(1,6,2195,'2012-10-20 00:46:47',1),(1,252,2195,'2012-10-20 00:46:47',1),(1,93,2195,'2012-10-20 00:46:47',1),(1,166,2197,'2012-10-20 00:46:47',1),(1,107,2197,'2012-10-20 00:46:47',1),(1,14,2197,'2012-10-20 00:46:47',1),(1,55,2197,'2012-10-20 00:46:47',1),(1,108,2197,'2012-10-20 00:46:47',1),(1,61,2197,'2012-10-20 00:46:47',1),(1,199,2197,'2012-10-20 00:46:47',1),(1,200,2197,'2012-10-20 00:46:47',1),(1,122,2225,'2012-10-20 01:16:19',1),(1,124,2225,'2012-10-20 01:16:19',1),(1,245,2225,'2012-10-20 01:16:19',1),(1,220,2225,'2012-10-20 01:16:19',1),(1,187,2225,'2012-10-20 01:16:19',1),(1,170,2225,'2012-10-20 01:16:19',1),(1,146,2225,'2012-10-20 01:16:19',1),(1,152,2225,'2012-10-20 01:16:19',1),(1,35,2218,'2012-10-20 01:46:13',1),(1,196,2220,'2012-10-20 01:46:13',1),(1,22,2220,'2012-10-20 01:46:13',1),(1,176,2219,'2012-10-20 01:46:13',1),(1,99,2221,'2012-10-20 01:46:13',1),(1,195,2221,'2012-10-20 01:46:13',1),(1,234,2222,'2012-10-20 01:46:21',1),(1,194,2222,'2012-10-20 01:46:21',1),(1,111,2222,'2012-10-20 01:46:21',1),(1,179,2222,'2012-10-20 01:46:21',1),(1,162,2223,'2012-10-20 01:46:21',1),(1,155,2223,'2012-10-20 01:46:21',1),(1,143,2223,'2012-10-20 01:46:21',1),(1,57,2223,'2012-10-20 01:46:21',1),(1,94,2224,'2012-10-20 01:46:21',1),(1,133,2224,'2012-10-20 01:46:21',1),(1,16,2224,'2012-10-20 01:46:21',1),(1,244,2224,'2012-10-20 01:46:21',1),(1,227,2224,'2012-10-20 01:46:21',1),(1,138,2224,'2012-10-20 01:46:21',1),(1,89,2224,'2012-10-20 01:46:21',1),(1,11,2224,'2012-10-20 01:46:21',1),(1,157,2236,'2012-10-20 02:46:15',1),(1,106,2236,'2012-10-20 02:46:15',1),(1,203,2236,'2012-10-20 02:46:15',1),(1,131,2236,'2012-10-20 02:46:15',1),(1,77,2235,'2012-10-20 02:46:15',1),(1,206,2235,'2012-10-20 02:46:15',1),(1,226,2237,'2012-10-20 02:46:15',1),(1,116,2237,'2012-10-20 02:46:15',1),(1,166,2237,'2012-10-20 02:46:15',1),(1,107,2237,'2012-10-20 02:46:15',1),(1,14,2237,'2012-10-20 02:46:15',1),(1,55,2237,'2012-10-20 02:46:15',1),(1,108,2237,'2012-10-20 02:46:15',1),(1,61,2237,'2012-10-20 02:46:15',1),(1,68,2239,'2012-10-20 02:46:22',1),(1,237,2238,'2012-10-20 02:46:22',1),(1,11,2238,'2012-10-20 02:46:22',1),(1,43,2238,'2012-10-20 02:46:22',1),(1,167,2238,'2012-10-20 02:46:22',1),(1,169,2238,'2012-10-20 02:46:22',1),(1,191,2238,'2012-10-20 02:46:22',1),(1,114,2238,'2012-10-20 02:46:22',1),(1,192,2238,'2012-10-20 02:46:22',1),(1,73,2238,'2012-10-20 02:46:22',1),(1,8,2238,'2012-10-20 02:46:22',1),(1,87,2238,'2012-10-20 02:46:22',1),(1,80,2238,'2012-10-20 02:46:22',1),(1,6,2238,'2012-10-20 02:46:22',1),(1,252,2238,'2012-10-20 02:46:22',1),(1,250,2238,'2012-10-20 02:46:22',1),(1,93,2238,'2012-10-20 02:46:22',1),(1,77,2240,'2012-10-20 02:46:24',1),(1,206,2240,'2012-10-20 02:46:24',1),(1,237,2241,'2012-10-20 02:46:27',1),(1,11,2241,'2012-10-20 02:46:27',1),(1,43,2241,'2012-10-20 02:46:27',1),(1,167,2241,'2012-10-20 02:46:27',1),(1,213,2243,'2012-10-20 02:46:29',1),(1,226,2242,'2012-10-20 02:46:29',1),(1,116,2242,'2012-10-20 02:46:29',1),(1,166,2242,'2012-10-20 02:46:29',1),(1,107,2242,'2012-10-20 02:46:29',1),(1,14,2242,'2012-10-20 02:46:29',1),(1,55,2242,'2012-10-20 02:46:29',1),(1,108,2242,'2012-10-20 02:46:29',1),(1,61,2242,'2012-10-20 02:46:29',1),(1,77,2244,'2012-10-20 02:46:32',1),(1,206,2244,'2012-10-20 02:46:32',1),(1,169,2245,'2012-10-20 02:46:32',1),(1,191,2245,'2012-10-20 02:46:32',1),(1,114,2245,'2012-10-20 02:46:32',1),(1,192,2245,'2012-10-20 02:46:32',1),(1,226,2246,'2012-10-20 02:46:39',1),(1,116,2246,'2012-10-20 02:46:39',1),(1,166,2246,'2012-10-20 02:46:39',1),(1,107,2246,'2012-10-20 02:46:39',1),(1,14,2246,'2012-10-20 02:46:39',1),(1,55,2246,'2012-10-20 02:46:39',1),(1,108,2246,'2012-10-20 02:46:39',1),(1,61,2246,'2012-10-20 02:46:39',1),(1,6,2247,'2012-10-20 02:46:39',1),(1,73,2249,'2012-10-20 02:46:40',1),(1,8,2249,'2012-10-20 02:46:40',1),(1,87,2249,'2012-10-20 02:46:40',1),(1,80,2249,'2012-10-20 02:46:40',1),(1,77,2248,'2012-10-20 02:46:40',1),(1,206,2248,'2012-10-20 02:46:40',1),(1,237,2251,'2012-10-20 02:46:45',1),(1,11,2251,'2012-10-20 02:46:45',1),(1,43,2251,'2012-10-20 02:46:45',1),(1,167,2251,'2012-10-20 02:46:45',1),(1,169,2251,'2012-10-20 02:46:45',1),(1,191,2251,'2012-10-20 02:46:45',1),(1,114,2251,'2012-10-20 02:46:45',1),(1,192,2251,'2012-10-20 02:46:45',1),(1,73,2251,'2012-10-20 02:46:45',1),(1,8,2251,'2012-10-20 02:46:45',1),(1,87,2251,'2012-10-20 02:46:45',1),(1,80,2251,'2012-10-20 02:46:45',1),(1,6,2251,'2012-10-20 02:46:45',1),(1,252,2251,'2012-10-20 02:46:45',1),(1,250,2251,'2012-10-20 02:46:45',1),(1,93,2251,'2012-10-20 02:46:45',1),(1,226,2250,'2012-10-20 02:46:45',1),(1,116,2250,'2012-10-20 02:46:45',1),(1,166,2250,'2012-10-20 02:46:45',1),(1,107,2250,'2012-10-20 02:46:45',1),(1,14,2250,'2012-10-20 02:46:45',1),(1,55,2250,'2012-10-20 02:46:45',1),(1,108,2250,'2012-10-20 02:46:45',1),(1,61,2250,'2012-10-20 02:46:45',1),(1,199,2234,'2012-10-20 03:16:17',NULL),(1,200,2234,'2012-10-20 03:16:17',NULL),(1,201,2234,'2012-10-20 03:16:17',NULL),(1,205,2234,'2012-10-20 03:16:17',NULL),(1,25,2271,'2012-10-20 03:46:19',1),(1,205,2270,'2012-10-20 03:46:19',1),(1,213,2272,'2012-10-20 03:46:19',1),(1,81,2272,'2012-10-20 03:46:19',1),(1,200,2273,'2012-10-20 03:46:20',1),(1,201,2273,'2012-10-20 03:46:20',1),(1,67,2274,'2012-10-20 03:46:27',1),(1,104,2274,'2012-10-20 03:46:27',1),(1,206,2274,'2012-10-20 03:46:27',1),(1,68,2274,'2012-10-20 03:46:27',1),(1,97,2278,'2012-10-20 03:46:36',1),(1,48,2278,'2012-10-20 03:46:36',1),(1,199,2279,'2012-10-20 03:46:36',1),(1,67,2279,'2012-10-20 03:46:36',1),(1,104,2279,'2012-10-20 03:46:36',1),(1,206,2279,'2012-10-20 03:46:36',1),(1,20,2281,'2012-10-20 03:46:38',1),(1,28,2281,'2012-10-20 03:46:38',1),(1,167,2281,'2012-10-20 03:46:38',1),(1,157,2281,'2012-10-20 03:46:38',1),(1,36,2281,'2012-10-20 03:46:38',1),(1,37,2281,'2012-10-20 03:46:38',1),(1,106,2281,'2012-10-20 03:46:38',1),(1,169,2281,'2012-10-20 03:46:38',1),(1,191,2281,'2012-10-20 03:46:38',1),(1,114,2281,'2012-10-20 03:46:38',1),(1,192,2281,'2012-10-20 03:46:38',1),(1,73,2281,'2012-10-20 03:46:38',1),(1,8,2281,'2012-10-20 03:46:38',1),(1,87,2281,'2012-10-20 03:46:38',1),(1,80,2281,'2012-10-20 03:46:38',1),(1,6,2281,'2012-10-20 03:46:38',1),(1,213,2282,'2012-10-20 03:46:44',1),(1,81,2282,'2012-10-20 03:46:44',1),(1,97,2283,'2012-10-20 03:46:44',1),(1,205,2283,'2012-10-20 03:46:44',1),(1,68,2283,'2012-10-20 03:46:44',1),(1,213,2283,'2012-10-20 03:46:44',1),(1,252,2285,'2012-10-20 03:46:46',1),(1,250,2285,'2012-10-20 03:46:46',1),(1,93,2285,'2012-10-20 03:46:46',1),(1,226,2285,'2012-10-20 03:46:46',1),(1,116,2285,'2012-10-20 03:46:46',1),(1,166,2285,'2012-10-20 03:46:46',1),(1,107,2285,'2012-10-20 03:46:46',1),(1,14,2285,'2012-10-20 03:46:46',1),(1,55,2285,'2012-10-20 03:46:46',1),(1,203,2285,'2012-10-20 03:46:46',1),(1,108,2285,'2012-10-20 03:46:46',1),(1,61,2285,'2012-10-20 03:46:46',1),(1,131,2285,'2012-10-20 03:46:46',1),(1,219,2285,'2012-10-20 03:46:46',1),(1,77,2285,'2012-10-20 03:46:46',1),(1,241,2285,'2012-10-20 03:46:46',1),(1,81,2286,'2012-10-20 03:46:51',1),(1,199,2288,'2012-10-20 03:46:51',1),(1,67,2288,'2012-10-20 03:46:51',1),(1,104,2288,'2012-10-20 03:46:51',1),(1,206,2288,'2012-10-20 03:46:51',1),(1,205,2287,'2012-10-20 03:46:51',1),(1,213,2287,'2012-10-20 03:46:51',1),(1,48,2290,'2012-10-20 03:47:00',1),(1,252,2290,'2012-10-20 03:47:00',1),(1,250,2290,'2012-10-20 03:47:00',1),(1,93,2290,'2012-10-20 03:47:00',1),(1,226,2290,'2012-10-20 03:47:00',1),(1,116,2290,'2012-10-20 03:47:00',1),(1,166,2290,'2012-10-20 03:47:00',1),(1,107,2290,'2012-10-20 03:47:00',1),(1,14,2290,'2012-10-20 03:47:00',1),(1,55,2290,'2012-10-20 03:47:00',1),(1,203,2290,'2012-10-20 03:47:00',1),(1,108,2290,'2012-10-20 03:47:00',1),(1,61,2290,'2012-10-20 03:47:00',1),(1,131,2290,'2012-10-20 03:47:00',1),(1,219,2290,'2012-10-20 03:47:00',1),(1,77,2290,'2012-10-20 03:47:00',1),(1,25,2291,'2012-10-20 03:47:03',1),(1,241,2292,'2012-10-20 03:47:03',1),(1,81,2292,'2012-10-20 03:47:03',1),(1,20,2277,'2012-10-20 04:16:29',1),(1,97,2277,'2012-10-20 04:16:29',1),(1,28,2277,'2012-10-20 04:16:29',1),(1,167,2277,'2012-10-20 04:16:29',1),(1,157,2277,'2012-10-20 04:16:29',1),(1,36,2277,'2012-10-20 04:16:29',1),(1,37,2277,'2012-10-20 04:16:29',1),(1,106,2277,'2012-10-20 04:16:29',1),(1,125,2275,'2012-10-20 04:16:29',1),(1,113,2275,'2012-10-20 04:16:29',1),(1,135,2275,'2012-10-20 04:16:29',1),(1,119,2275,'2012-10-20 04:16:29',1),(1,169,2276,'2012-10-20 04:16:29',1),(1,191,2276,'2012-10-20 04:16:29',1),(1,114,2276,'2012-10-20 04:16:29',1),(1,192,2276,'2012-10-20 04:16:29',1),(1,73,2276,'2012-10-20 04:16:29',1),(1,8,2276,'2012-10-20 04:16:29',1),(1,87,2276,'2012-10-20 04:16:29',1),(1,80,2276,'2012-10-20 04:16:29',1),(1,6,2280,'2012-10-20 04:16:37',1),(1,200,2280,'2012-10-20 04:16:37',1),(1,201,2280,'2012-10-20 04:16:37',1),(1,205,2280,'2012-10-20 04:16:37',1),(1,241,2280,'2012-10-20 04:16:37',1),(1,68,2280,'2012-10-20 04:16:37',1),(1,213,2280,'2012-10-20 04:16:37',1),(1,81,2280,'2012-10-20 04:16:37',1),(1,48,2284,'2012-10-20 04:16:48',1),(1,252,2284,'2012-10-20 04:16:48',1),(1,250,2284,'2012-10-20 04:16:48',1),(1,93,2284,'2012-10-20 04:16:48',1),(1,226,2284,'2012-10-20 04:16:48',1),(1,116,2284,'2012-10-20 04:16:48',1),(1,166,2284,'2012-10-20 04:16:48',1),(1,107,2284,'2012-10-20 04:16:48',1),(1,14,2289,'2012-10-20 04:16:51',1),(1,55,2289,'2012-10-20 04:16:51',1),(1,203,2289,'2012-10-20 04:16:51',1),(1,108,2289,'2012-10-20 04:16:51',1),(1,61,2289,'2012-10-20 04:16:51',1),(1,131,2289,'2012-10-20 04:16:51',1),(1,219,2289,'2012-10-20 04:16:51',1),(1,77,2289,'2012-10-20 04:16:51',1),(1,199,2293,'2012-10-20 04:17:04',1),(1,67,2293,'2012-10-20 04:17:04',1),(1,104,2293,'2012-10-20 04:17:04',1),(1,206,2293,'2012-10-20 04:17:04',1),(1,48,2294,'2012-10-20 04:17:10',1),(1,252,2294,'2012-10-20 04:17:10',1),(1,250,2294,'2012-10-20 04:17:10',1),(1,93,2294,'2012-10-20 04:17:10',1),(1,226,2294,'2012-10-20 04:17:10',1),(1,116,2294,'2012-10-20 04:17:10',1),(1,166,2294,'2012-10-20 04:17:10',1),(1,107,2294,'2012-10-20 04:17:10',1),(1,146,2336,'2012-10-21 00:16:45',1),(1,152,2336,'2012-10-21 00:16:45',1),(1,162,2336,'2012-10-21 00:16:45',1),(1,155,2336,'2012-10-21 00:16:45',1),(1,143,2336,'2012-10-21 00:16:45',1),(1,57,2336,'2012-10-21 00:16:45',1),(1,234,2336,'2012-10-21 00:16:45',1),(1,194,2336,'2012-10-21 00:16:45',1),(1,111,2337,'2012-10-21 00:16:46',1),(1,179,2337,'2012-10-21 00:16:46',1),(1,99,2337,'2012-10-21 00:16:46',1),(1,195,2337,'2012-10-21 00:16:46',1),(1,196,2337,'2012-10-21 00:16:46',1),(1,22,2337,'2012-10-21 00:16:46',1),(1,176,2337,'2012-10-21 00:16:46',1),(1,35,2337,'2012-10-21 00:16:46',1),(1,99,2320,'2012-10-21 00:46:17',1),(1,195,2321,'2012-10-21 00:46:17',1),(1,16,2323,'2012-10-21 00:46:17',1),(1,244,2322,'2012-10-21 00:46:17',1),(1,243,2324,'2012-10-21 00:46:24',1),(1,196,2325,'2012-10-21 00:46:24',1),(1,22,2325,'2012-10-21 00:46:24',1),(1,99,2326,'2012-10-21 00:46:24',1),(1,195,2326,'2012-10-21 00:46:24',1),(1,111,2327,'2012-10-21 00:46:24',1),(1,179,2327,'2012-10-21 00:46:24',1),(1,94,2328,'2012-10-21 00:46:31',1),(1,133,2328,'2012-10-21 00:46:31',1),(1,176,2329,'2012-10-21 00:46:36',1),(1,35,2329,'2012-10-21 00:46:36',1),(1,199,2330,'2012-10-21 00:46:36',1),(1,200,2330,'2012-10-21 00:46:36',1),(1,66,2330,'2012-10-21 00:46:36',1),(1,91,2330,'2012-10-21 00:46:36',1),(1,94,2331,'2012-10-21 00:46:36',1),(1,133,2331,'2012-10-21 00:46:36',1),(1,16,2331,'2012-10-21 00:46:36',1),(1,244,2331,'2012-10-21 00:46:36',1),(1,227,2332,'2012-10-21 00:46:38',1),(1,134,2332,'2012-10-21 00:46:38',1),(1,138,2332,'2012-10-21 00:46:38',1),(1,89,2332,'2012-10-21 00:46:38',1),(1,146,2333,'2012-10-21 00:46:41',1),(1,152,2333,'2012-10-21 00:46:41',1),(1,162,2333,'2012-10-21 00:46:41',1),(1,155,2333,'2012-10-21 00:46:41',1),(1,143,2334,'2012-10-21 00:46:43',1),(1,57,2334,'2012-10-21 00:46:43',1),(1,234,2334,'2012-10-21 00:46:43',1),(1,194,2334,'2012-10-21 00:46:43',1),(1,94,2335,'2012-10-21 00:46:43',1),(1,133,2335,'2012-10-21 00:46:43',1),(1,16,2335,'2012-10-21 00:46:43',1),(1,244,2335,'2012-10-21 00:46:43',1),(1,227,2335,'2012-10-21 00:46:43',1),(1,134,2335,'2012-10-21 00:46:43',1),(1,138,2335,'2012-10-21 00:46:43',1),(1,89,2335,'2012-10-21 00:46:43',1),(1,19,2338,'2012-10-21 00:46:48',1),(1,193,2338,'2012-10-21 00:46:48',1),(1,172,2338,'2012-10-21 00:46:48',1),(1,83,2338,'2012-10-21 00:46:48',1),(1,108,2338,'2012-10-21 00:46:48',1),(1,61,2338,'2012-10-21 00:46:48',1),(1,131,2338,'2012-10-21 00:46:48',1),(1,219,2338,'2012-10-21 00:46:48',1),(1,243,2339,'2012-10-21 00:46:48',1),(1,31,2339,'2012-10-21 00:46:48',1),(1,236,2339,'2012-10-21 00:46:48',1),(1,145,2339,'2012-10-21 00:46:48',1),(1,251,2339,'2012-10-21 00:46:48',1),(1,171,2339,'2012-10-21 00:46:48',1),(1,62,2339,'2012-10-21 00:46:48',1),(1,39,2339,'2012-10-21 00:46:48',1),(1,91,2360,'2012-10-21 01:46:13',1),(1,66,2362,'2012-10-21 01:46:13',1),(1,221,2362,'2012-10-21 01:46:13',1),(1,91,2361,'2012-10-21 01:46:13',1),(1,199,2363,'2012-10-21 01:46:13',1),(1,200,2363,'2012-10-21 01:46:13',1),(1,199,2364,'2012-10-21 01:46:20',1),(1,200,2364,'2012-10-21 01:46:20',1),(1,66,2364,'2012-10-21 01:46:20',1),(1,221,2364,'2012-10-21 01:46:20',1),(1,138,2366,'2012-10-21 01:46:20',1),(1,89,2366,'2012-10-21 01:46:20',1),(1,171,2366,'2012-10-21 01:46:20',1),(1,62,2366,'2012-10-21 01:46:20',1),(1,199,2366,'2012-10-21 01:46:20',1),(1,200,2366,'2012-10-21 01:46:20',1),(1,66,2366,'2012-10-21 01:46:20',1),(1,221,2366,'2012-10-21 01:46:20',1),(1,199,2365,'2012-10-21 01:46:20',1),(1,200,2365,'2012-10-21 01:46:20',1),(1,66,2365,'2012-10-21 01:46:20',1),(1,221,2365,'2012-10-21 01:46:20',1),(1,138,2367,'2012-10-21 01:46:20',1),(1,89,2367,'2012-10-21 01:46:20',1),(1,171,2367,'2012-10-21 01:46:20',1),(1,62,2367,'2012-10-21 01:46:20',1),(1,199,2367,'2012-10-21 01:46:20',1),(1,200,2367,'2012-10-21 01:46:20',1),(1,66,2367,'2012-10-21 01:46:20',1),(1,221,2367,'2012-10-21 01:46:20',1),(1,138,2379,'2012-10-21 02:46:19',1),(1,89,2379,'2012-10-21 02:46:19',1),(1,171,2379,'2012-10-21 02:46:19',1),(1,62,2379,'2012-10-21 02:46:19',1),(1,106,2379,'2012-10-21 02:46:19',1),(1,169,2379,'2012-10-21 02:46:19',1),(1,17,2379,'2012-10-21 02:46:19',1),(1,191,2379,'2012-10-21 02:46:19',1),(1,138,2378,'2012-10-21 02:46:19',1),(1,89,2378,'2012-10-21 02:46:19',1),(1,171,2378,'2012-10-21 02:46:19',1),(1,62,2378,'2012-10-21 02:46:19',1),(1,91,2381,'2012-10-21 02:46:23',1),(1,138,2380,'2012-10-21 02:46:23',1),(1,89,2380,'2012-10-21 02:46:23',1),(1,171,2380,'2012-10-21 02:46:23',1),(1,62,2380,'2012-10-21 02:46:23',1),(1,106,2380,'2012-10-21 02:46:23',1),(1,169,2380,'2012-10-21 02:46:23',1),(1,17,2380,'2012-10-21 02:46:23',1),(1,191,2380,'2012-10-21 02:46:23',1),(1,114,2380,'2012-10-21 02:46:23',1),(1,192,2380,'2012-10-21 02:46:23',1),(1,199,2380,'2012-10-21 02:46:23',1),(1,200,2380,'2012-10-21 02:46:23',1),(1,66,2380,'2012-10-21 02:46:23',1),(1,214,2380,'2012-10-21 02:46:23',1),(1,70,2380,'2012-10-21 02:46:23',1),(1,221,2380,'2012-10-21 02:46:23',1),(1,138,2383,'2012-10-21 02:46:23',1),(1,89,2383,'2012-10-21 02:46:23',1),(1,171,2383,'2012-10-21 02:46:23',1),(1,62,2383,'2012-10-21 02:46:23',1),(1,114,2384,'2012-10-21 02:46:31',1),(1,192,2384,'2012-10-21 02:46:31',1),(1,199,2384,'2012-10-21 02:46:31',1),(1,200,2384,'2012-10-21 02:46:31',1),(1,66,2384,'2012-10-21 02:46:31',1),(1,214,2384,'2012-10-21 02:46:31',1),(1,70,2384,'2012-10-21 02:46:31',1),(1,221,2384,'2012-10-21 02:46:31',1),(1,91,2385,'2012-10-21 02:46:33',1),(1,138,2387,'2012-10-21 02:46:33',1),(1,89,2387,'2012-10-21 02:46:33',1),(1,171,2387,'2012-10-21 02:46:33',1),(1,62,2387,'2012-10-21 02:46:33',1),(1,91,2389,'2012-10-21 02:46:38',1),(1,138,2388,'2012-10-21 02:46:42',1),(1,89,2388,'2012-10-21 02:46:42',1),(1,171,2388,'2012-10-21 02:46:42',1),(1,62,2388,'2012-10-21 02:46:42',1),(1,106,2388,'2012-10-21 02:46:42',1),(1,169,2388,'2012-10-21 02:46:42',1),(1,17,2388,'2012-10-21 02:46:42',1),(1,191,2388,'2012-10-21 02:46:42',1),(1,138,2393,'2012-10-21 02:46:46',1),(1,89,2393,'2012-10-21 02:46:46',1),(1,171,2393,'2012-10-21 02:46:46',1),(1,62,2393,'2012-10-21 02:46:46',1),(1,106,2393,'2012-10-21 02:46:46',1),(1,169,2393,'2012-10-21 02:46:46',1),(1,17,2393,'2012-10-21 02:46:46',1),(1,191,2393,'2012-10-21 02:46:46',1),(1,114,2393,'2012-10-21 02:46:46',1),(1,192,2393,'2012-10-21 02:46:46',1),(1,199,2393,'2012-10-21 02:46:46',1),(1,200,2393,'2012-10-21 02:46:46',1),(1,66,2393,'2012-10-21 02:46:46',1),(1,214,2393,'2012-10-21 02:46:46',1),(1,70,2393,'2012-10-21 02:46:46',1),(1,221,2393,'2012-10-21 02:46:46',1),(1,200,2377,'2012-10-21 03:16:20',1),(1,66,2377,'2012-10-21 03:16:20',1),(1,214,2382,'2012-10-21 03:16:24',1),(1,70,2382,'2012-10-21 03:16:24',1),(1,221,2386,'2012-10-21 03:16:35',1),(1,91,2386,'2012-10-21 03:16:35',1),(1,221,2390,'2012-10-21 03:16:44',1),(1,91,2390,'2012-10-21 03:16:44',1),(1,138,2391,'2012-10-21 03:16:44',1),(1,89,2391,'2012-10-21 03:16:44',1),(1,171,2391,'2012-10-21 03:16:44',1),(1,62,2391,'2012-10-21 03:16:44',1),(1,114,2392,'2012-10-21 03:16:47',1),(1,192,2392,'2012-10-21 03:16:47',1),(1,199,2392,'2012-10-21 03:16:47',1),(1,200,2392,'2012-10-21 03:16:47',1),(1,66,2392,'2012-10-21 03:16:47',1),(1,214,2392,'2012-10-21 03:16:47',1),(1,70,2392,'2012-10-21 03:16:47',1),(1,221,2392,'2012-10-21 03:16:47',1),(1,91,2413,'2012-10-21 03:46:17',1),(1,91,2412,'2012-10-21 03:46:17',1),(1,56,2414,'2012-10-21 03:46:17',1),(1,221,2414,'2012-10-21 03:46:17',1),(1,106,2376,'2012-10-21 03:46:20',NULL),(1,169,2376,'2012-10-21 03:46:20',NULL),(1,17,2376,'2012-10-21 03:46:20',NULL),(1,191,2376,'2012-10-21 03:46:20',NULL),(1,105,2416,'2012-10-21 03:46:28',1),(1,210,2416,'2012-10-21 03:46:28',1),(1,90,2416,'2012-10-21 03:46:28',1),(1,70,2416,'2012-10-21 03:46:28',1),(1,199,2418,'2012-10-21 03:46:28',NULL),(1,200,2418,'2012-10-21 03:46:28',NULL),(1,66,2418,'2012-10-21 03:46:28',NULL),(1,212,2418,'2012-10-21 03:46:28',NULL),(1,52,2418,'2012-10-21 03:46:28',NULL),(1,209,2418,'2012-10-21 03:46:28',NULL),(1,78,2418,'2012-10-21 03:46:28',NULL),(1,214,2418,'2012-10-21 03:46:28',NULL),(1,90,2421,'2012-10-21 03:46:34',1),(1,70,2421,'2012-10-21 03:46:34',1),(1,56,2421,'2012-10-21 03:46:34',1),(1,221,2421,'2012-10-21 03:46:34',1),(1,105,2424,'2012-10-21 03:46:43',1),(1,210,2424,'2012-10-21 03:46:43',1),(1,78,2425,'2012-10-21 03:46:43',1),(1,214,2425,'2012-10-21 03:46:43',1),(1,105,2425,'2012-10-21 03:46:43',1),(1,210,2425,'2012-10-21 03:46:43',1),(1,78,2426,'2012-10-21 03:46:43',1),(1,214,2426,'2012-10-21 03:46:43',1),(1,105,2426,'2012-10-21 03:46:43',1),(1,210,2426,'2012-10-21 03:46:43',1),(1,90,2426,'2012-10-21 03:46:43',1),(1,70,2426,'2012-10-21 03:46:43',1),(1,56,2426,'2012-10-21 03:46:43',1),(1,221,2426,'2012-10-21 03:46:43',1),(1,91,2428,'2012-10-21 03:46:49',1),(1,91,2433,'2012-10-21 03:46:56',1),(1,221,2415,'2012-10-21 04:16:18',1),(1,91,2415,'2012-10-21 04:16:18',1),(1,99,2419,'2012-10-21 04:16:29',1),(1,195,2419,'2012-10-21 04:16:29',1),(1,196,2419,'2012-10-21 04:16:29',1),(1,22,2419,'2012-10-21 04:16:29',1),(1,171,2419,'2012-10-21 04:16:29',1),(1,62,2419,'2012-10-21 04:16:29',1),(1,114,2419,'2012-10-21 04:16:29',1),(1,192,2419,'2012-10-21 04:16:29',1),(1,210,2420,'2012-10-21 04:16:35',1),(1,90,2420,'2012-10-21 04:16:35',1),(1,246,2423,'2012-10-21 04:16:37',1),(1,137,2423,'2012-10-21 04:16:37',1),(1,138,2423,'2012-10-21 04:16:37',1),(1,89,2423,'2012-10-21 04:16:37',1),(1,111,2423,'2012-10-21 04:16:37',1),(1,179,2423,'2012-10-21 04:16:37',1),(1,106,2423,'2012-10-21 04:16:37',1),(1,169,2423,'2012-10-21 04:16:37',1),(1,17,2423,'2012-10-21 04:16:37',1),(1,191,2423,'2012-10-21 04:16:37',1),(1,199,2423,'2012-10-21 04:16:37',1),(1,200,2423,'2012-10-21 04:16:37',1),(1,66,2423,'2012-10-21 04:16:37',1),(1,212,2423,'2012-10-21 04:16:37',1),(1,52,2423,'2012-10-21 04:16:37',1),(1,209,2423,'2012-10-21 04:16:37',1),(1,134,2427,'2012-10-21 04:16:42',1),(1,99,2427,'2012-10-21 04:16:42',1),(1,195,2427,'2012-10-21 04:16:42',1),(1,196,2427,'2012-10-21 04:16:42',1),(1,22,2427,'2012-10-21 04:16:42',1),(1,171,2427,'2012-10-21 04:16:42',1),(1,62,2427,'2012-10-21 04:16:42',1),(1,114,2427,'2012-10-21 04:16:42',1),(1,192,2427,'2012-10-21 04:16:42',1),(1,78,2427,'2012-10-21 04:16:42',1),(1,214,2427,'2012-10-21 04:16:42',1),(1,105,2427,'2012-10-21 04:16:42',1),(1,210,2427,'2012-10-21 04:16:42',1),(1,90,2427,'2012-10-21 04:16:42',1),(1,70,2427,'2012-10-21 04:16:42',1),(1,56,2427,'2012-10-21 04:16:42',1),(1,91,2430,'2012-10-21 04:16:56',1),(1,221,2430,'2012-10-21 04:16:56',1),(1,171,2430,'2012-10-21 04:16:56',1),(1,62,2430,'2012-10-21 04:16:56',1),(1,246,2432,'2012-10-21 04:16:57',1),(1,137,2432,'2012-10-21 04:16:57',1),(1,138,2432,'2012-10-21 04:16:57',1),(1,89,2432,'2012-10-21 04:16:57',1),(1,111,2432,'2012-10-21 04:16:57',1),(1,179,2432,'2012-10-21 04:16:57',1),(1,106,2432,'2012-10-21 04:16:57',1),(1,169,2432,'2012-10-21 04:16:57',1),(1,17,2432,'2012-10-21 04:16:57',1),(1,191,2432,'2012-10-21 04:16:57',1),(1,199,2432,'2012-10-21 04:16:57',1),(1,200,2432,'2012-10-21 04:16:57',1),(1,66,2432,'2012-10-21 04:16:57',1),(1,212,2432,'2012-10-21 04:16:57',1),(1,52,2432,'2012-10-21 04:16:57',1),(1,209,2432,'2012-10-21 04:16:57',1),(1,70,2434,'2012-10-21 04:16:58',1),(1,56,2434,'2012-10-21 04:16:58',1),(1,195,2435,'2012-10-21 04:17:00',1),(1,196,2435,'2012-10-21 04:17:00',1),(1,22,2435,'2012-10-21 04:17:00',1),(1,78,2435,'2012-10-21 04:17:00',1),(1,78,2436,'2012-10-21 04:17:03',1),(1,214,2436,'2012-10-21 04:17:03',1),(1,105,2436,'2012-10-21 04:17:03',1),(1,210,2436,'2012-10-21 04:17:03',1),(1,90,2436,'2012-10-21 04:17:03',1),(1,70,2436,'2012-10-21 04:17:03',1),(1,56,2436,'2012-10-21 04:17:03',1),(1,221,2436,'2012-10-21 04:17:03',1),(1,66,2417,'2012-10-21 04:46:30',1),(1,212,2417,'2012-10-21 04:46:30',1),(1,52,2417,'2012-10-21 04:46:30',1),(1,209,2417,'2012-10-21 04:46:30',1),(1,134,2422,'2012-10-21 04:46:36',1),(1,246,2422,'2012-10-21 04:46:36',1),(1,137,2422,'2012-10-21 04:46:36',1),(1,138,2422,'2012-10-21 04:46:36',1),(1,89,2422,'2012-10-21 04:46:36',1),(1,111,2422,'2012-10-21 04:46:36',1),(1,179,2422,'2012-10-21 04:46:36',1),(1,99,2422,'2012-10-21 04:46:36',1),(1,210,2429,'2012-10-21 04:46:54',1),(1,90,2429,'2012-10-21 04:46:54',1),(1,106,2431,'2012-10-21 04:46:57',1),(1,169,2431,'2012-10-21 04:46:57',1),(1,17,2431,'2012-10-21 04:46:57',1),(1,191,2431,'2012-10-21 04:46:57',1),(1,114,2431,'2012-10-21 04:46:57',1),(1,192,2431,'2012-10-21 04:46:57',1),(1,199,2431,'2012-10-21 04:46:57',1),(1,200,2431,'2012-10-21 04:46:57',1),(1,223,2462,'2012-10-22 00:46:22',1),(1,78,2463,'2012-10-22 00:46:25',1),(1,6,2464,'2012-10-22 00:46:28',1),(1,4,2465,'2012-10-22 00:46:31',1),(1,4,2466,'2012-10-22 00:46:32',1),(1,4,2467,'2012-10-22 00:46:32',1),(1,206,2467,'2012-10-22 00:46:32',1),(1,90,2468,'2012-10-22 00:46:34',1),(1,70,2468,'2012-10-22 00:46:34',1),(1,208,2469,'2012-10-22 00:46:34',1),(1,78,2469,'2012-10-22 00:46:34',1),(1,222,2470,'2012-10-22 00:46:39',1),(1,6,2470,'2012-10-22 00:46:39',1),(1,6,2471,'2012-10-22 00:46:39',1),(1,4,2471,'2012-10-22 00:46:39',1),(1,212,2472,'2012-10-22 00:46:44',1),(1,210,2472,'2012-10-22 00:46:44',1),(1,221,2472,'2012-10-22 00:46:44',1),(1,222,2472,'2012-10-22 00:46:44',1),(1,66,2473,'2012-10-22 00:46:44',1),(1,77,2473,'2012-10-22 00:46:44',1),(1,206,2473,'2012-10-22 00:46:44',1),(1,211,2473,'2012-10-22 00:46:44',1),(1,160,2475,'2012-10-22 00:46:47',1),(1,134,2475,'2012-10-22 00:46:47',1),(1,6,2475,'2012-10-22 00:46:47',1),(1,4,2475,'2012-10-22 00:46:47',1),(1,6,2477,'2012-10-22 00:46:52',1),(1,125,2477,'2012-10-22 00:46:52',1),(1,96,2477,'2012-10-22 00:46:52',1),(1,157,2477,'2012-10-22 00:46:52',1),(1,106,2477,'2012-10-22 00:46:52',1),(1,17,2477,'2012-10-22 00:46:52',1),(1,115,2477,'2012-10-22 00:46:52',1),(1,77,2477,'2012-10-22 00:46:52',1),(1,6,2479,'2012-10-22 00:46:54',1),(1,4,2479,'2012-10-22 00:46:54',1),(1,169,2479,'2012-10-22 00:46:54',1),(1,17,2479,'2012-10-22 00:46:54',1),(1,192,2479,'2012-10-22 00:46:54',1),(1,115,2479,'2012-10-22 00:46:54',1),(1,250,2479,'2012-10-22 00:46:54',1),(1,93,2479,'2012-10-22 00:46:54',1),(1,113,2509,'2012-10-22 01:16:30',1),(1,96,2509,'2012-10-22 01:16:30',1),(1,134,2509,'2012-10-22 01:16:30',1),(1,97,2509,'2012-10-22 01:16:30',1),(1,89,2509,'2012-10-22 01:16:30',1),(1,158,2509,'2012-10-22 01:16:30',1),(1,98,2509,'2012-10-22 01:16:30',1),(1,51,2509,'2012-10-22 01:16:30',1),(1,178,2474,'2012-10-22 01:16:48',1),(1,160,2474,'2012-10-22 01:16:48',1),(1,113,2474,'2012-10-22 01:16:48',1),(1,134,2474,'2012-10-22 01:16:48',1),(1,78,2476,'2012-10-22 01:16:53',1),(1,210,2476,'2012-10-22 01:16:53',1),(1,90,2476,'2012-10-22 01:16:53',1),(1,70,2476,'2012-10-22 01:16:53',1),(1,178,2478,'2012-10-22 01:16:55',1),(1,160,2478,'2012-10-22 01:16:55',1),(1,113,2478,'2012-10-22 01:16:55',1),(1,134,2478,'2012-10-22 01:16:55',1),(1,97,2478,'2012-10-22 01:16:55',1),(1,33,2478,'2012-10-22 01:16:55',1),(1,6,2478,'2012-10-22 01:16:55',1),(1,4,2478,'2012-10-22 01:16:55',1),(1,178,2481,'2012-10-22 01:17:00',1),(1,34,2481,'2012-10-22 01:17:00',1),(1,160,2481,'2012-10-22 01:17:00',1),(1,113,2481,'2012-10-22 01:17:00',1),(1,134,2481,'2012-10-22 01:17:00',1),(1,97,2481,'2012-10-22 01:17:00',1),(1,33,2481,'2012-10-22 01:17:00',1),(1,6,2481,'2012-10-22 01:17:00',1),(1,178,2480,'2012-10-22 01:17:00',1),(1,160,2480,'2012-10-22 01:17:00',1),(1,113,2480,'2012-10-22 01:17:00',1),(1,134,2480,'2012-10-22 01:17:00',1),(1,97,2480,'2012-10-22 01:17:00',1),(1,33,2480,'2012-10-22 01:17:00',1),(1,6,2480,'2012-10-22 01:17:00',1),(1,4,2480,'2012-10-22 01:17:00',1),(1,96,2502,'2012-10-22 01:46:18',1),(1,113,2503,'2012-10-22 01:46:18',1),(1,210,2504,'2012-10-22 01:46:20',1),(1,90,2504,'2012-10-22 01:46:20',1),(1,70,2505,'2012-10-22 01:46:20',1),(1,160,2505,'2012-10-22 01:46:20',1),(1,178,2506,'2012-10-22 01:46:25',1),(1,34,2506,'2012-10-22 01:46:25',1),(1,182,2506,'2012-10-22 01:46:25',1),(1,78,2506,'2012-10-22 01:46:25',1),(1,235,2507,'2012-10-22 01:46:25',1),(1,33,2507,'2012-10-22 01:46:25',1),(1,6,2507,'2012-10-22 01:46:25',1),(1,4,2507,'2012-10-22 01:46:25',1),(1,166,2508,'2012-10-22 01:46:31',1),(1,107,2508,'2012-10-22 01:46:31',1),(1,14,2508,'2012-10-22 01:46:31',1),(1,55,2508,'2012-10-22 01:46:31',1),(1,203,2508,'2012-10-22 01:46:31',1),(1,68,2508,'2012-10-22 01:46:31',1),(1,213,2508,'2012-10-22 01:46:31',1),(1,81,2508,'2012-10-22 01:46:31',1),(1,227,2519,'2012-10-22 02:46:15',1),(1,134,2519,'2012-10-22 02:46:15',1),(1,206,2520,'2012-10-22 02:46:17',1),(1,211,2520,'2012-10-22 02:46:17',1),(1,68,2520,'2012-10-22 02:46:17',1),(1,212,2520,'2012-10-22 02:46:17',1),(1,80,2521,'2012-10-22 02:46:23',1),(1,250,2521,'2012-10-22 02:46:23',1),(1,93,2521,'2012-10-22 02:46:23',1),(1,116,2521,'2012-10-22 02:46:23',1),(1,174,2521,'2012-10-22 02:46:23',1),(1,166,2521,'2012-10-22 02:46:23',1),(1,107,2521,'2012-10-22 02:46:23',1),(1,14,2521,'2012-10-22 02:46:23',1),(1,20,2522,'2012-10-22 02:46:31',1),(1,94,2522,'2012-10-22 02:46:31',1),(1,160,2522,'2012-10-22 02:46:31',1),(1,133,2522,'2012-10-22 02:46:31',1),(1,16,2522,'2012-10-22 02:46:31',1),(1,113,2522,'2012-10-22 02:46:31',1),(1,96,2522,'2012-10-22 02:46:31',1),(1,134,2522,'2012-10-22 02:46:31',1),(1,97,2522,'2012-10-22 02:46:31',1),(1,89,2522,'2012-10-22 02:46:31',1),(1,158,2522,'2012-10-22 02:46:31',1),(1,98,2522,'2012-10-22 02:46:31',1),(1,51,2522,'2012-10-22 02:46:31',1),(1,235,2522,'2012-10-22 02:46:31',1),(1,111,2522,'2012-10-22 02:46:31',1),(1,99,2522,'2012-10-22 02:46:31',1),(1,4,2523,'2012-10-22 02:46:32',1),(1,119,2524,'2012-10-22 02:46:32',1),(1,137,2524,'2012-10-22 02:46:32',1),(1,213,2525,'2012-10-22 02:46:34',1),(1,81,2525,'2012-10-22 02:46:34',1),(1,69,2525,'2012-10-22 02:46:34',1),(1,52,2525,'2012-10-22 02:46:34',1),(1,55,2526,'2012-10-22 02:46:36',1),(1,203,2526,'2012-10-22 02:46:36',1),(1,199,2526,'2012-10-22 02:46:36',1),(1,66,2526,'2012-10-22 02:46:36',1),(1,201,2526,'2012-10-22 02:46:36',1),(1,77,2526,'2012-10-22 02:46:36',1),(1,241,2526,'2012-10-22 02:46:36',1),(1,104,2526,'2012-10-22 02:46:36',1),(1,51,2527,'2012-10-22 02:46:36',1),(1,97,2528,'2012-10-22 02:46:39',1),(1,89,2528,'2012-10-22 02:46:39',1),(1,20,2529,'2012-10-22 02:46:41',1),(1,94,2529,'2012-10-22 02:46:41',1),(1,160,2529,'2012-10-22 02:46:41',1),(1,133,2529,'2012-10-22 02:46:41',1),(1,206,2530,'2012-10-22 02:46:46',1),(1,211,2530,'2012-10-22 02:46:46',1),(1,68,2530,'2012-10-22 02:46:46',1),(1,212,2530,'2012-10-22 02:46:46',1),(1,213,2530,'2012-10-22 02:46:46',1),(1,81,2530,'2012-10-22 02:46:46',1),(1,69,2530,'2012-10-22 02:46:46',1),(1,52,2530,'2012-10-22 02:46:46',1),(1,235,2531,'2012-10-22 02:46:46',1),(1,158,2532,'2012-10-22 02:46:49',1),(1,98,2532,'2012-10-22 02:46:49',1),(1,16,2533,'2012-10-22 02:46:54',1),(1,244,2533,'2012-10-22 02:46:54',1),(1,113,2533,'2012-10-22 02:46:54',1),(1,96,2533,'2012-10-22 02:46:54',1),(1,208,2534,'2012-10-22 02:46:56',1),(1,209,2534,'2012-10-22 02:46:56',1),(1,78,2534,'2012-10-22 02:46:56',1),(1,214,2534,'2012-10-22 02:46:56',1),(1,105,2534,'2012-10-22 02:46:56',1),(1,210,2534,'2012-10-22 02:46:56',1),(1,90,2534,'2012-10-22 02:46:56',1),(1,70,2534,'2012-10-22 02:46:56',1),(1,178,2535,'2012-10-22 02:46:59',1),(1,34,2535,'2012-10-22 02:46:59',1),(1,182,2535,'2012-10-22 02:46:59',1),(1,100,2535,'2012-10-22 02:46:59',1),(1,181,2535,'2012-10-22 02:46:59',1),(1,30,2535,'2012-10-22 02:46:59',1),(1,169,2535,'2012-10-22 02:46:59',1),(1,17,2535,'2012-10-22 02:46:59',1),(1,191,2535,'2012-10-22 02:46:59',1),(1,114,2535,'2012-10-22 02:46:59',1),(1,192,2535,'2012-10-22 02:46:59',1),(1,73,2535,'2012-10-22 02:46:59',1),(1,115,2535,'2012-10-22 02:46:59',1),(1,8,2535,'2012-10-22 02:46:59',1),(1,74,2535,'2012-10-22 02:46:59',1),(1,33,2535,'2012-10-22 02:46:59',1),(1,56,2518,'2012-10-22 03:46:18',NULL),(1,224,2518,'2012-10-22 03:46:18',NULL),(1,221,2518,'2012-10-22 03:46:18',NULL),(1,6,2518,'2012-10-22 03:46:18',NULL),(1,6,2554,'2012-10-22 03:46:24',1),(1,37,2555,'2012-10-22 03:46:24',1),(1,111,2556,'2012-10-22 03:46:27',1),(1,179,2556,'2012-10-22 03:46:27',1),(1,161,2558,'2012-10-22 03:46:29',1),(1,177,2558,'2012-10-22 03:46:29',1),(1,33,2558,'2012-10-22 03:46:29',1),(1,178,2558,'2012-10-22 03:46:29',1),(1,34,2559,'2012-10-22 03:46:30',1),(1,182,2559,'2012-10-22 03:46:30',1),(1,100,2559,'2012-10-22 03:46:30',1),(1,181,2559,'2012-10-22 03:46:30',1),(1,166,2560,'2012-10-22 03:46:33',NULL),(1,107,2560,'2012-10-22 03:46:33',NULL),(1,14,2560,'2012-10-22 03:46:33',NULL),(1,55,2560,'2012-10-22 03:46:33',NULL),(1,203,2560,'2012-10-22 03:46:33',NULL),(1,199,2560,'2012-10-22 03:46:33',NULL),(1,66,2560,'2012-10-22 03:46:33',NULL),(1,201,2560,'2012-10-22 03:46:33',NULL),(1,205,2561,'2012-10-22 03:46:35',1),(1,77,2561,'2012-10-22 03:46:35',1),(1,241,2561,'2012-10-22 03:46:35',1),(1,104,2561,'2012-10-22 03:46:35',1),(1,206,2561,'2012-10-22 03:46:35',1),(1,211,2561,'2012-10-22 03:46:35',1),(1,68,2561,'2012-10-22 03:46:35',1),(1,212,2561,'2012-10-22 03:46:35',1),(1,105,2562,'2012-10-22 03:46:43',1),(1,210,2562,'2012-10-22 03:46:43',1),(1,67,2563,'2012-10-22 03:46:45',1),(1,56,2563,'2012-10-22 03:46:45',1),(1,224,2563,'2012-10-22 03:46:45',1),(1,221,2563,'2012-10-22 03:46:45',1),(1,213,2564,'2012-10-22 03:46:47',1),(1,81,2564,'2012-10-22 03:46:47',1),(1,69,2564,'2012-10-22 03:46:47',1),(1,52,2564,'2012-10-22 03:46:47',1),(1,208,2564,'2012-10-22 03:46:47',1),(1,209,2564,'2012-10-22 03:46:47',1),(1,78,2564,'2012-10-22 03:46:47',1),(1,214,2564,'2012-10-22 03:46:47',1),(1,20,2565,'2012-10-22 03:46:50',NULL),(1,247,2565,'2012-10-22 03:46:50',NULL),(1,249,2565,'2012-10-22 03:46:50',NULL),(1,94,2565,'2012-10-22 03:46:50',NULL),(1,160,2565,'2012-10-22 03:46:50',NULL),(1,133,2565,'2012-10-22 03:46:50',NULL),(1,16,2565,'2012-10-22 03:46:50',NULL),(1,244,2565,'2012-10-22 03:46:50',NULL),(1,88,2565,'2012-10-22 03:46:50',NULL),(1,25,2565,'2012-10-22 03:46:50',NULL),(1,125,2565,'2012-10-22 03:46:50',NULL),(1,183,2565,'2012-10-22 03:46:50',NULL),(1,113,2565,'2012-10-22 03:46:50',NULL),(1,140,2565,'2012-10-22 03:46:50',NULL),(1,96,2565,'2012-10-22 03:46:50',NULL),(1,227,2565,'2012-10-22 03:46:50',NULL),(1,90,2566,'2012-10-22 03:46:50',1),(1,70,2566,'2012-10-22 03:46:50',1),(1,105,2567,'2012-10-22 03:46:50',1),(1,210,2567,'2012-10-22 03:46:50',1),(1,90,2567,'2012-10-22 03:46:50',1),(1,70,2567,'2012-10-22 03:46:50',1),(1,105,2568,'2012-10-22 03:46:53',1),(1,210,2568,'2012-10-22 03:46:53',1),(1,90,2568,'2012-10-22 03:46:53',1),(1,70,2568,'2012-10-22 03:46:53',1),(1,222,2568,'2012-10-22 03:46:53',1),(1,223,2568,'2012-10-22 03:46:53',1),(1,228,2568,'2012-10-22 03:46:53',1),(1,91,2568,'2012-10-22 03:46:53',1),(1,134,2569,'2012-10-22 03:46:53',1),(1,135,2569,'2012-10-22 03:46:53',1),(1,246,2569,'2012-10-22 03:46:53',1),(1,149,2569,'2012-10-22 03:46:53',1),(1,118,2569,'2012-10-22 03:46:53',1),(1,141,2569,'2012-10-22 03:46:53',1),(1,119,2569,'2012-10-22 03:46:53',1),(1,136,2569,'2012-10-22 03:46:53',1),(1,137,2569,'2012-10-22 03:46:53',1),(1,42,2569,'2012-10-22 03:46:53',1),(1,97,2569,'2012-10-22 03:46:53',1),(1,89,2569,'2012-10-22 03:46:53',1),(1,120,2569,'2012-10-22 03:46:53',1),(1,123,2569,'2012-10-22 03:46:53',1),(1,48,2569,'2012-10-22 03:46:53',1),(1,40,2569,'2012-10-22 03:46:53',1),(1,157,2570,'2012-10-22 03:47:00',1),(1,222,2571,'2012-10-22 03:47:00',1),(1,223,2571,'2012-10-22 03:47:00',1),(1,222,2572,'2012-10-22 03:47:05',1),(1,223,2572,'2012-10-22 03:47:05',1),(1,228,2572,'2012-10-22 03:47:05',1),(1,91,2572,'2012-10-22 03:47:05',1),(1,30,2574,'2012-10-22 03:47:09',1),(1,171,2574,'2012-10-22 03:47:09',1),(1,169,2574,'2012-10-22 03:47:09',1),(1,17,2574,'2012-10-22 03:47:09',1),(1,191,2574,'2012-10-22 03:47:09',1),(1,114,2574,'2012-10-22 03:47:09',1),(1,192,2574,'2012-10-22 03:47:09',1),(1,73,2574,'2012-10-22 03:47:09',1),(1,115,2574,'2012-10-22 03:47:09',1),(1,8,2574,'2012-10-22 03:47:09',1),(1,74,2574,'2012-10-22 03:47:09',1),(1,80,2574,'2012-10-22 03:47:09',1),(1,250,2574,'2012-10-22 03:47:09',1),(1,93,2574,'2012-10-22 03:47:09',1),(1,116,2574,'2012-10-22 03:47:09',1),(1,174,2574,'2012-10-22 03:47:09',1),(1,6,2575,'2012-10-22 03:47:09',1),(1,228,2576,'2012-10-22 03:47:13',1),(1,91,2576,'2012-10-22 03:47:13',1),(1,158,2577,'2012-10-22 03:47:15',1),(1,98,2577,'2012-10-22 03:47:15',1),(1,51,2577,'2012-10-22 03:47:15',1),(1,235,2577,'2012-10-22 03:47:15',1),(1,158,2578,'2012-10-22 03:47:18',1),(1,98,2578,'2012-10-22 03:47:18',1),(1,51,2578,'2012-10-22 03:47:18',1),(1,235,2578,'2012-10-22 03:47:18',1),(1,111,2578,'2012-10-22 03:47:18',1),(1,179,2578,'2012-10-22 03:47:18',1),(1,99,2578,'2012-10-22 03:47:18',1),(1,180,2578,'2012-10-22 03:47:18',1),(1,99,2557,'2012-10-22 04:16:29',1),(1,180,2557,'2012-10-22 04:16:29',1),(1,4,2573,'2012-10-22 04:17:06',1),(1,41,2573,'2012-10-22 04:17:06',1),(1,153,2573,'2012-10-22 04:17:06',1),(1,44,2573,'2012-10-22 04:17:06',1),(1,154,2573,'2012-10-22 04:17:06',1),(1,28,2573,'2012-10-22 04:17:06',1),(1,46,2573,'2012-10-22 04:17:06',1),(1,167,2573,'2012-10-22 04:17:06',1),(1,77,2605,'2012-10-23 00:46:23',1),(1,52,2604,'2012-10-23 00:46:23',1),(1,52,2606,'2012-10-23 00:46:23',1),(1,248,2607,'2012-10-23 00:46:23',1),(1,208,2611,'2012-10-23 00:46:25',1),(1,55,2611,'2012-10-23 00:46:25',1),(1,208,2608,'2012-10-23 00:46:26',1),(1,216,2609,'2012-10-23 00:46:26',1),(1,213,2609,'2012-10-23 00:46:26',1),(1,213,2610,'2012-10-23 00:46:26',1),(1,52,2610,'2012-10-23 00:46:26',1),(1,206,2612,'2012-10-23 00:46:31',1),(1,69,2612,'2012-10-23 00:46:31',1),(1,201,2613,'2012-10-23 00:46:36',1),(1,213,2613,'2012-10-23 00:46:36',1),(1,151,2614,'2012-10-23 00:46:36',1),(1,40,2614,'2012-10-23 00:46:36',1),(1,41,2614,'2012-10-23 00:46:36',1),(1,44,2614,'2012-10-23 00:46:36',1),(1,151,2615,'2012-10-23 00:46:36',1),(1,40,2615,'2012-10-23 00:46:36',1),(1,41,2615,'2012-10-23 00:46:36',1),(1,44,2615,'2012-10-23 00:46:36',1),(1,151,2616,'2012-10-23 00:46:41',1),(1,40,2616,'2012-10-23 00:46:41',1),(1,41,2616,'2012-10-23 00:46:41',1),(1,44,2616,'2012-10-23 00:46:41',1),(1,123,2617,'2012-10-23 00:46:43',1),(1,153,2617,'2012-10-23 00:46:43',1),(1,248,2617,'2012-10-23 00:46:43',1),(1,77,2617,'2012-10-23 00:46:43',1),(1,123,2618,'2012-10-23 00:46:43',1),(1,153,2618,'2012-10-23 00:46:43',1),(1,77,2618,'2012-10-23 00:46:43',1),(1,69,2618,'2012-10-23 00:46:43',1),(1,151,2619,'2012-10-23 00:46:43',1),(1,40,2619,'2012-10-23 00:46:43',1),(1,41,2619,'2012-10-23 00:46:43',1),(1,44,2619,'2012-10-23 00:46:43',1),(1,208,2619,'2012-10-23 00:46:43',1),(1,55,2619,'2012-10-23 00:46:43',1),(1,216,2619,'2012-10-23 00:46:43',1),(1,213,2619,'2012-10-23 00:46:43',1),(1,123,2622,'2012-10-23 00:46:48',1),(1,151,2622,'2012-10-23 00:46:48',1),(1,40,2622,'2012-10-23 00:46:48',1),(1,41,2622,'2012-10-23 00:46:48',1),(1,153,2622,'2012-10-23 00:46:48',1),(1,44,2622,'2012-10-23 00:46:48',1),(1,72,2622,'2012-10-23 00:46:48',1),(1,248,2622,'2012-10-23 00:46:48',1),(1,123,2621,'2012-10-23 00:46:48',1),(1,151,2621,'2012-10-23 00:46:48',1),(1,40,2621,'2012-10-23 00:46:48',1),(1,41,2621,'2012-10-23 00:46:48',1),(1,153,2621,'2012-10-23 00:46:48',1),(1,44,2621,'2012-10-23 00:46:48',1),(1,72,2621,'2012-10-23 00:46:48',1),(1,248,2621,'2012-10-23 00:46:48',1),(1,151,2620,'2012-10-23 00:46:48',1),(1,40,2620,'2012-10-23 00:46:48',1),(1,41,2620,'2012-10-23 00:46:48',1),(1,44,2620,'2012-10-23 00:46:48',1),(1,72,2620,'2012-10-23 00:46:48',1),(1,208,2620,'2012-10-23 00:46:48',1),(1,55,2620,'2012-10-23 00:46:48',1),(1,216,2620,'2012-10-23 00:46:48',1),(1,123,2623,'2012-10-23 00:46:50',1),(1,151,2623,'2012-10-23 00:46:50',1),(1,40,2623,'2012-10-23 00:46:50',1),(1,41,2623,'2012-10-23 00:46:50',1),(1,153,2623,'2012-10-23 00:46:50',1),(1,44,2623,'2012-10-23 00:46:50',1),(1,72,2623,'2012-10-23 00:46:50',1),(1,248,2623,'2012-10-23 00:46:50',1),(1,40,2644,'2012-10-23 01:46:11',1),(1,205,2646,'2012-10-23 01:46:11',1),(1,52,2646,'2012-10-23 01:46:11',1),(1,52,2645,'2012-10-23 01:46:11',1),(1,248,2647,'2012-10-23 01:46:11',1),(1,168,2647,'2012-10-23 01:46:11',1),(1,9,2648,'2012-10-23 01:46:22',1),(1,50,2648,'2012-10-23 01:46:22',1),(1,205,2648,'2012-10-23 01:46:22',1),(1,52,2648,'2012-10-23 01:46:22',1),(1,248,2649,'2012-10-23 01:46:22',1),(1,168,2649,'2012-10-23 01:46:22',1),(1,216,2649,'2012-10-23 01:46:22',1),(1,201,2649,'2012-10-23 01:46:22',1),(1,123,2650,'2012-10-23 02:16:24',1),(1,151,2650,'2012-10-23 02:16:24',1),(1,72,2650,'2012-10-23 02:16:24',1),(1,50,2650,'2012-10-23 02:16:24',1),(1,205,2650,'2012-10-23 02:16:24',1),(1,67,2650,'2012-10-23 02:16:24',1),(1,81,2650,'2012-10-23 02:16:24',1),(1,69,2650,'2012-10-23 02:16:24',1),(1,123,2651,'2012-10-23 02:16:24',1),(1,151,2651,'2012-10-23 02:16:24',1),(1,72,2651,'2012-10-23 02:16:24',1),(1,50,2651,'2012-10-23 02:16:24',1),(1,205,2651,'2012-10-23 02:16:24',1),(1,67,2651,'2012-10-23 02:16:24',1),(1,81,2651,'2012-10-23 02:16:24',1),(1,69,2651,'2012-10-23 02:16:24',1),(1,120,2661,'2012-10-23 02:46:17',1),(1,123,2661,'2012-10-23 02:46:17',1),(1,33,2662,'2012-10-23 02:46:17',1),(1,178,2662,'2012-10-23 02:46:17',1),(1,34,2662,'2012-10-23 02:46:17',1),(1,182,2662,'2012-10-23 02:46:17',1),(1,120,2663,'2012-10-23 02:46:17',1),(1,123,2663,'2012-10-23 02:46:17',1),(1,48,2663,'2012-10-23 02:46:17',1),(1,151,2663,'2012-10-23 02:46:17',1),(1,154,2663,'2012-10-23 02:46:17',1),(1,54,2663,'2012-10-23 02:46:17',1),(1,72,2663,'2012-10-23 02:46:17',1),(1,252,2663,'2012-10-23 02:46:17',1),(1,48,2666,'2012-10-23 02:46:23',1),(1,151,2666,'2012-10-23 02:46:23',1),(1,120,2664,'2012-10-23 02:46:23',1),(1,123,2664,'2012-10-23 02:46:23',1),(1,48,2664,'2012-10-23 02:46:23',1),(1,151,2664,'2012-10-23 02:46:23',1),(1,154,2664,'2012-10-23 02:46:23',1),(1,54,2664,'2012-10-23 02:46:23',1),(1,72,2664,'2012-10-23 02:46:23',1),(1,252,2664,'2012-10-23 02:46:23',1),(1,215,2664,'2012-10-23 02:46:23',1),(1,50,2664,'2012-10-23 02:46:23',1),(1,217,2664,'2012-10-23 02:46:23',1),(1,66,2664,'2012-10-23 02:46:23',1),(1,205,2664,'2012-10-23 02:46:23',1),(1,67,2664,'2012-10-23 02:46:23',1),(1,81,2664,'2012-10-23 02:46:23',1),(1,69,2664,'2012-10-23 02:46:23',1),(1,205,2667,'2012-10-23 02:46:23',1),(1,67,2667,'2012-10-23 02:46:23',1),(1,81,2667,'2012-10-23 02:46:23',1),(1,69,2667,'2012-10-23 02:46:23',1),(1,215,2668,'2012-10-23 02:46:33',1),(1,50,2668,'2012-10-23 02:46:33',1),(1,217,2668,'2012-10-23 02:46:33',1),(1,66,2668,'2012-10-23 02:46:33',1),(1,205,2668,'2012-10-23 02:46:33',1),(1,67,2668,'2012-10-23 02:46:33',1),(1,81,2668,'2012-10-23 02:46:33',1),(1,69,2668,'2012-10-23 02:46:33',1),(1,67,2669,'2012-10-23 02:46:33',1),(1,33,2670,'2012-10-23 02:46:35',1),(1,178,2670,'2012-10-23 02:46:35',1),(1,120,2671,'2012-10-23 02:46:35',1),(1,123,2671,'2012-10-23 02:46:35',1),(1,48,2671,'2012-10-23 02:46:35',1),(1,151,2671,'2012-10-23 02:46:35',1),(1,120,2672,'2012-10-23 02:46:40',1),(1,123,2672,'2012-10-23 02:46:40',1),(1,48,2672,'2012-10-23 02:46:40',1),(1,151,2672,'2012-10-23 02:46:40',1),(1,154,2672,'2012-10-23 02:46:40',1),(1,54,2672,'2012-10-23 02:46:40',1),(1,72,2672,'2012-10-23 02:46:40',1),(1,252,2672,'2012-10-23 02:46:40',1),(1,120,2677,'2012-10-23 02:46:48',1),(1,123,2677,'2012-10-23 02:46:48',1),(1,48,2677,'2012-10-23 02:46:48',1),(1,151,2677,'2012-10-23 02:46:48',1),(1,154,2677,'2012-10-23 02:46:48',1),(1,54,2677,'2012-10-23 02:46:48',1),(1,72,2677,'2012-10-23 02:46:48',1),(1,252,2677,'2012-10-23 02:46:48',1),(1,215,2677,'2012-10-23 02:46:48',1),(1,50,2677,'2012-10-23 02:46:48',1),(1,217,2677,'2012-10-23 02:46:48',1),(1,66,2677,'2012-10-23 02:46:48',1),(1,205,2677,'2012-10-23 02:46:48',1),(1,67,2677,'2012-10-23 02:46:48',1),(1,81,2677,'2012-10-23 02:46:48',1),(1,69,2677,'2012-10-23 02:46:48',1),(1,205,2665,'2012-10-23 03:16:25',1),(1,81,2673,'2012-10-23 03:16:43',1),(1,34,2674,'2012-10-23 03:16:47',1),(1,182,2674,'2012-10-23 03:16:47',1),(1,154,2675,'2012-10-23 03:16:47',1),(1,54,2675,'2012-10-23 03:16:47',1),(1,72,2675,'2012-10-23 03:16:47',1),(1,252,2675,'2012-10-23 03:16:47',1),(1,184,2676,'2012-10-23 03:16:47',1),(1,121,2676,'2012-10-23 03:16:47',1),(1,195,2676,'2012-10-23 03:16:47',1),(1,196,2676,'2012-10-23 03:16:47',1),(1,22,2676,'2012-10-23 03:16:47',1),(1,165,2676,'2012-10-23 03:16:47',1),(1,148,2676,'2012-10-23 03:16:47',1),(1,1,2676,'2012-10-23 03:16:47',1),(1,215,2660,'2012-10-23 03:46:19',NULL),(1,50,2660,'2012-10-23 03:46:19',NULL),(1,217,2660,'2012-10-23 03:46:19',NULL),(1,66,2660,'2012-10-23 03:46:19',NULL),(1,184,2707,'2012-10-23 03:46:36',1),(1,121,2707,'2012-10-23 03:46:36',1),(1,195,2707,'2012-10-23 03:46:36',1),(1,196,2707,'2012-10-23 03:46:36',1),(1,22,2707,'2012-10-23 03:46:36',1),(1,165,2707,'2012-10-23 03:46:36',1),(1,148,2707,'2012-10-23 03:46:36',1),(1,1,2707,'2012-10-23 03:46:36',1),(1,178,2707,'2012-10-23 03:46:36',1),(1,34,2707,'2012-10-23 03:46:36',1),(1,182,2707,'2012-10-23 03:46:36',1),(1,252,2707,'2012-10-23 03:46:36',1),(1,205,2707,'2012-10-23 03:46:36',1),(1,67,2707,'2012-10-23 03:46:36',1),(1,81,2707,'2012-10-23 03:46:36',1),(1,69,2707,'2012-10-23 03:46:36',1),(1,50,2708,'2012-10-23 03:46:42',1),(1,217,2708,'2012-10-23 03:46:42',1),(1,215,2709,'2012-10-23 03:46:42',1),(1,50,2709,'2012-10-23 03:46:42',1),(1,217,2709,'2012-10-23 03:46:42',1),(1,66,2709,'2012-10-23 03:46:42',1),(1,66,2718,'2012-10-23 03:46:59',1),(1,215,2718,'2012-10-23 03:46:59',1),(1,208,2719,'2012-10-23 03:46:59',1),(1,87,2719,'2012-10-23 03:46:59',1),(1,10,2719,'2012-10-23 03:46:59',1),(1,60,2719,'2012-10-23 03:46:59',1),(1,208,2697,'2012-10-23 04:16:21',1),(1,208,2698,'2012-10-23 04:16:21',1),(1,69,2698,'2012-10-23 04:16:21',1),(1,66,2696,'2012-10-23 04:16:21',1),(1,50,2699,'2012-10-23 04:16:22',1),(1,217,2699,'2012-10-23 04:16:22',1),(1,50,2704,'2012-10-23 04:16:37',1),(1,217,2704,'2012-10-23 04:16:37',1),(1,184,2711,'2012-10-23 04:16:43',1),(1,121,2711,'2012-10-23 04:16:43',1),(1,195,2711,'2012-10-23 04:16:43',1),(1,196,2711,'2012-10-23 04:16:43',1),(1,22,2711,'2012-10-23 04:16:43',1),(1,165,2711,'2012-10-23 04:16:43',1),(1,148,2711,'2012-10-23 04:16:43',1),(1,1,2711,'2012-10-23 04:16:43',1),(1,178,2711,'2012-10-23 04:16:43',1),(1,34,2711,'2012-10-23 04:16:43',1),(1,182,2711,'2012-10-23 04:16:43',1),(1,252,2711,'2012-10-23 04:16:43',1),(1,205,2711,'2012-10-23 04:16:43',1),(1,67,2711,'2012-10-23 04:16:43',1),(1,81,2711,'2012-10-23 04:16:43',1),(1,69,2711,'2012-10-23 04:16:43',1),(1,66,2712,'2012-10-23 04:16:53',1),(1,50,2713,'2012-10-23 04:16:53',1),(1,217,2713,'2012-10-23 04:16:53',1),(1,184,2716,'2012-10-23 04:16:59',1),(1,121,2716,'2012-10-23 04:16:59',1),(1,195,2716,'2012-10-23 04:16:59',1),(1,196,2716,'2012-10-23 04:16:59',1),(1,22,2716,'2012-10-23 04:16:59',1),(1,165,2716,'2012-10-23 04:16:59',1),(1,148,2716,'2012-10-23 04:16:59',1),(1,1,2716,'2012-10-23 04:16:59',1),(1,178,2716,'2012-10-23 04:16:59',1),(1,34,2716,'2012-10-23 04:16:59',1),(1,182,2716,'2012-10-23 04:16:59',1),(1,87,2716,'2012-10-23 04:16:59',1),(1,252,2716,'2012-10-23 04:16:59',1),(1,10,2716,'2012-10-23 04:16:59',1),(1,60,2716,'2012-10-23 04:16:59',1),(1,215,2716,'2012-10-23 04:16:59',1),(1,208,2717,'2012-10-23 04:17:00',1),(1,178,2703,'2012-10-23 04:46:31',1),(1,34,2703,'2012-10-23 04:46:31',1),(1,182,2703,'2012-10-23 04:46:31',1),(1,87,2703,'2012-10-23 04:46:31',1),(1,252,2703,'2012-10-23 04:46:31',1),(1,10,2703,'2012-10-23 04:46:31',1),(1,60,2703,'2012-10-23 04:46:31',1),(1,215,2703,'2012-10-23 04:46:31',1),(1,66,2701,'2012-10-23 04:46:33',1),(1,205,2701,'2012-10-23 04:46:33',1),(1,67,2701,'2012-10-23 04:46:33',1),(1,81,2701,'2012-10-23 04:46:33',1),(1,184,2702,'2012-10-23 04:46:33',1),(1,121,2702,'2012-10-23 04:46:33',1),(1,195,2702,'2012-10-23 04:46:33',1),(1,196,2702,'2012-10-23 04:46:33',1),(1,22,2702,'2012-10-23 04:46:33',1),(1,165,2702,'2012-10-23 04:46:33',1),(1,148,2702,'2012-10-23 04:46:33',1),(1,1,2702,'2012-10-23 04:46:33',1),(1,208,2700,'2012-10-23 04:46:35',1),(1,50,2700,'2012-10-23 04:46:35',1),(1,217,2700,'2012-10-23 04:46:35',1),(1,69,2700,'2012-10-23 04:46:35',1),(1,66,2705,'2012-10-23 04:46:38',1),(1,205,2705,'2012-10-23 04:46:38',1),(1,67,2705,'2012-10-23 04:46:38',1),(1,81,2705,'2012-10-23 04:46:38',1),(1,184,2706,'2012-10-23 04:46:38',1),(1,121,2706,'2012-10-23 04:46:38',1),(1,195,2706,'2012-10-23 04:46:38',1),(1,196,2706,'2012-10-23 04:46:38',1),(1,22,2706,'2012-10-23 04:46:38',1),(1,165,2706,'2012-10-23 04:46:38',1),(1,148,2706,'2012-10-23 04:46:38',1),(1,1,2706,'2012-10-23 04:46:38',1),(1,178,2710,'2012-10-23 04:46:45',1),(1,34,2710,'2012-10-23 04:46:45',1),(1,182,2710,'2012-10-23 04:46:45',1),(1,208,2710,'2012-10-23 04:46:45',1),(1,87,2710,'2012-10-23 04:46:45',1),(1,252,2710,'2012-10-23 04:46:45',1),(1,10,2710,'2012-10-23 04:46:45',1),(1,60,2710,'2012-10-23 04:46:45',1),(1,66,2714,'2012-10-23 04:46:54',1),(1,205,2714,'2012-10-23 04:46:54',1),(1,67,2714,'2012-10-23 04:46:54',1),(1,81,2714,'2012-10-23 04:46:54',1),(1,184,2720,'2012-10-23 04:47:08',1),(1,121,2720,'2012-10-23 04:47:08',1),(1,195,2720,'2012-10-23 04:47:08',1),(1,196,2720,'2012-10-23 04:47:08',1),(1,22,2720,'2012-10-23 04:47:08',1),(1,165,2720,'2012-10-23 04:47:08',1),(1,148,2720,'2012-10-23 04:47:08',1),(1,1,2720,'2012-10-23 04:47:08',1),(1,178,2715,'2012-10-23 05:16:55',1),(1,34,2715,'2012-10-23 05:16:55',1),(1,182,2715,'2012-10-23 05:16:55',1),(1,208,2715,'2012-10-23 05:16:55',1),(1,87,2715,'2012-10-23 05:16:55',1),(1,252,2715,'2012-10-23 05:16:55',1),(1,10,2715,'2012-10-23 05:16:55',1),(1,60,2715,'2012-10-23 05:16:55',1),(1,6,2747,'2012-10-24 08:16:42',1),(1,6,2788,'2012-10-24 08:46:36',1),(1,4,2788,'2012-10-24 08:46:36',1),(1,4,2746,'2012-10-24 08:46:44',1),(1,6,2749,'2012-10-24 08:46:45',1),(1,6,2748,'2012-10-24 08:46:45',1),(1,6,2751,'2012-10-24 08:46:54',1),(1,4,2751,'2012-10-24 08:46:54',1),(1,6,2752,'2012-10-24 08:46:54',1),(1,4,2752,'2012-10-24 08:46:54',1),(1,6,2753,'2012-10-24 08:46:58',1),(1,4,2753,'2012-10-24 08:46:58',1),(1,6,2755,'2012-10-24 08:47:02',1),(1,4,2755,'2012-10-24 08:47:02',1),(1,6,2754,'2012-10-24 08:47:02',1),(1,4,2754,'2012-10-24 08:47:02',1),(1,6,2803,'2012-10-24 09:16:37',1),(1,4,2803,'2012-10-24 09:16:37',1),(1,6,2850,'2012-10-24 09:17:05',1),(1,4,2850,'2012-10-24 09:17:05',1),(1,6,2860,'2012-10-24 09:17:22',1),(1,4,2860,'2012-10-24 09:17:22',1),(1,39,2789,'2012-10-24 09:46:34',1),(1,61,2789,'2012-10-24 09:46:34',1),(1,224,2838,'2012-10-24 09:46:34',1),(1,38,2787,'2012-10-24 09:46:38',1),(1,78,2786,'2012-10-24 09:46:39',1),(1,234,2804,'2012-10-24 09:46:42',1),(1,24,2804,'2012-10-24 09:46:42',1),(1,15,2804,'2012-10-24 09:46:42',1),(1,55,2804,'2012-10-24 09:46:42',1),(1,234,2790,'2012-10-24 09:46:50',1),(1,24,2790,'2012-10-24 09:46:50',1),(1,15,2790,'2012-10-24 09:46:50',1),(1,55,2790,'2012-10-24 09:46:50',1),(1,61,2791,'2012-10-24 09:46:50',1),(1,5,2791,'2012-10-24 09:46:50',1),(1,230,2791,'2012-10-24 09:46:50',1),(1,131,2791,'2012-10-24 09:46:50',1),(1,12,2806,'2012-10-24 09:46:51',1),(1,28,2806,'2012-10-24 09:46:51',1),(1,167,2806,'2012-10-24 09:46:51',1),(1,155,2806,'2012-10-24 09:46:51',1),(1,158,2806,'2012-10-24 09:46:51',1),(1,236,2806,'2012-10-24 09:46:51',1),(1,39,2806,'2012-10-24 09:46:51',1),(1,193,2806,'2012-10-24 09:46:51',1),(1,83,2806,'2012-10-24 09:46:51',1),(1,75,2806,'2012-10-24 09:46:51',1),(1,112,2806,'2012-10-24 09:46:51',1),(1,38,2806,'2012-10-24 09:46:51',1),(1,61,2806,'2012-10-24 09:46:51',1),(1,5,2806,'2012-10-24 09:46:51',1),(1,131,2806,'2012-10-24 09:46:51',1),(1,52,2806,'2012-10-24 09:46:51',1),(1,38,2807,'2012-10-24 09:46:54',1),(1,39,2808,'2012-10-24 09:46:54',1),(1,61,2808,'2012-10-24 09:46:54',1),(1,221,2750,'2012-10-24 09:46:56',1),(1,21,2809,'2012-10-24 09:46:56',1),(1,19,2809,'2012-10-24 09:46:56',1),(1,229,2809,'2012-10-24 09:46:56',1),(1,52,2809,'2012-10-24 09:46:56',1),(1,230,2846,'2012-10-24 09:46:58',1),(1,131,2846,'2012-10-24 09:46:58',1),(1,78,2811,'2012-10-24 09:47:05',1),(1,210,2812,'2012-10-24 09:47:08',1),(1,221,2812,'2012-10-24 09:47:08',1),(1,194,2813,'2012-10-24 09:47:08',1),(1,230,2813,'2012-10-24 09:47:08',1),(1,131,2813,'2012-10-24 09:47:08',1),(1,56,2813,'2012-10-24 09:47:08',1),(1,28,2756,'2012-10-24 09:47:10',1),(1,167,2756,'2012-10-24 09:47:10',1),(1,158,2756,'2012-10-24 09:47:10',1),(1,221,2756,'2012-10-24 09:47:10',1),(1,12,2757,'2012-10-24 09:47:10',1),(1,28,2757,'2012-10-24 09:47:10',1),(1,167,2757,'2012-10-24 09:47:10',1),(1,158,2757,'2012-10-24 09:47:10',1),(1,90,2815,'2012-10-24 09:47:15',1),(1,56,2816,'2012-10-24 09:47:15',1),(1,221,2816,'2012-10-24 09:47:15',1),(1,52,2854,'2012-10-24 09:47:20',1),(1,12,2758,'2012-10-24 09:47:21',1),(1,28,2758,'2012-10-24 09:47:21',1),(1,167,2758,'2012-10-24 09:47:21',1),(1,158,2758,'2012-10-24 09:47:21',1),(1,61,2759,'2012-10-24 09:47:21',1),(1,78,2759,'2012-10-24 09:47:21',1),(1,105,2759,'2012-10-24 09:47:21',1),(1,210,2759,'2012-10-24 09:47:21',1),(1,12,2760,'2012-10-24 09:47:22',1),(1,28,2760,'2012-10-24 09:47:22',1),(1,167,2760,'2012-10-24 09:47:22',1),(1,158,2760,'2012-10-24 09:47:22',1),(1,12,2761,'2012-10-24 09:47:23',1),(1,28,2761,'2012-10-24 09:47:23',1),(1,167,2761,'2012-10-24 09:47:23',1),(1,158,2761,'2012-10-24 09:47:23',1),(1,39,2761,'2012-10-24 09:47:23',1),(1,61,2761,'2012-10-24 09:47:23',1),(1,210,2761,'2012-10-24 09:47:23',1),(1,221,2761,'2012-10-24 09:47:23',1),(1,219,2859,'2012-10-24 09:47:30',1),(1,12,2762,'2012-10-24 09:47:35',1),(1,28,2762,'2012-10-24 09:47:35',1),(1,167,2762,'2012-10-24 09:47:35',1),(1,158,2762,'2012-10-24 09:47:35',1),(1,39,2762,'2012-10-24 09:47:35',1),(1,193,2762,'2012-10-24 09:47:35',1),(1,61,2762,'2012-10-24 09:47:35',1),(1,78,2762,'2012-10-24 09:47:35',1),(1,12,2763,'2012-10-24 09:47:35',1),(1,28,2763,'2012-10-24 09:47:35',1),(1,167,2763,'2012-10-24 09:47:35',1),(1,155,2763,'2012-10-24 09:47:35',1),(1,158,2763,'2012-10-24 09:47:35',1),(1,39,2763,'2012-10-24 09:47:35',1),(1,193,2763,'2012-10-24 09:47:35',1),(1,75,2763,'2012-10-24 09:47:35',1),(1,162,2764,'2012-10-24 09:47:35',1),(1,234,2764,'2012-10-24 09:47:35',1),(1,194,2764,'2012-10-24 09:47:35',1),(1,145,2764,'2012-10-24 09:47:35',1),(1,24,2764,'2012-10-24 09:47:35',1),(1,15,2764,'2012-10-24 09:47:35',1),(1,55,2764,'2012-10-24 09:47:35',1),(1,230,2764,'2012-10-24 09:47:35',1),(1,12,2765,'2012-10-24 09:47:37',1),(1,28,2765,'2012-10-24 09:47:37',1),(1,167,2765,'2012-10-24 09:47:37',1),(1,155,2765,'2012-10-24 09:47:37',1),(1,158,2765,'2012-10-24 09:47:37',1),(1,39,2765,'2012-10-24 09:47:37',1),(1,193,2765,'2012-10-24 09:47:37',1),(1,75,2765,'2012-10-24 09:47:37',1),(1,222,2839,'2012-10-24 10:16:31',1),(1,105,2840,'2012-10-24 10:16:32',1),(1,210,2840,'2012-10-24 10:16:32',1),(1,208,2841,'2012-10-24 10:16:35',1),(1,78,2841,'2012-10-24 10:16:35',1),(1,147,2805,'2012-10-24 10:16:42',1),(1,162,2805,'2012-10-24 10:16:42',1),(1,57,2805,'2012-10-24 10:16:42',1),(1,234,2805,'2012-10-24 10:16:42',1),(1,194,2805,'2012-10-24 10:16:42',1),(1,99,2805,'2012-10-24 10:16:42',1),(1,161,2805,'2012-10-24 10:16:42',1),(1,175,2805,'2012-10-24 10:16:42',1),(1,21,2842,'2012-10-24 10:16:47',1),(1,143,2842,'2012-10-24 10:16:47',1),(1,19,2842,'2012-10-24 10:16:47',1),(1,229,2842,'2012-10-24 10:16:47',1),(1,162,2792,'2012-10-24 10:16:52',1),(1,234,2792,'2012-10-24 10:16:52',1),(1,194,2792,'2012-10-24 10:16:52',1),(1,31,2792,'2012-10-24 10:16:52',1),(1,145,2792,'2012-10-24 10:16:52',1),(1,24,2792,'2012-10-24 10:16:52',1),(1,15,2792,'2012-10-24 10:16:52',1),(1,55,2792,'2012-10-24 10:16:52',1),(1,147,2793,'2012-10-24 10:16:54',1),(1,162,2793,'2012-10-24 10:16:54',1),(1,234,2793,'2012-10-24 10:16:54',1),(1,194,2793,'2012-10-24 10:16:54',1),(1,99,2793,'2012-10-24 10:16:54',1),(1,175,2793,'2012-10-24 10:16:54',1),(1,31,2793,'2012-10-24 10:16:54',1),(1,145,2793,'2012-10-24 10:16:54',1),(1,63,2847,'2012-10-24 10:17:04',1),(1,24,2847,'2012-10-24 10:17:04',1),(1,15,2847,'2012-10-24 10:17:04',1),(1,55,2847,'2012-10-24 10:17:04',1),(1,177,2810,'2012-10-24 10:17:06',1),(1,236,2810,'2012-10-24 10:17:06',1),(1,39,2810,'2012-10-24 10:17:06',1),(1,193,2810,'2012-10-24 10:17:06',1),(1,172,2810,'2012-10-24 10:17:06',1),(1,83,2810,'2012-10-24 10:17:06',1),(1,75,2810,'2012-10-24 10:17:06',1),(1,112,2810,'2012-10-24 10:17:06',1),(1,31,2851,'2012-10-24 10:17:14',1),(1,145,2851,'2012-10-24 10:17:14',1),(1,84,2851,'2012-10-24 10:17:14',1),(1,218,2851,'2012-10-24 10:17:14',1),(1,184,2853,'2012-10-24 10:17:15',1),(1,146,2853,'2012-10-24 10:17:15',1),(1,235,2853,'2012-10-24 10:17:15',1),(1,111,2853,'2012-10-24 10:17:15',1),(1,179,2853,'2012-10-24 10:17:15',1),(1,157,2853,'2012-10-24 10:17:15',1),(1,58,2853,'2012-10-24 10:17:15',1),(1,177,2853,'2012-10-24 10:17:15',1),(1,31,2853,'2012-10-24 10:17:15',1),(1,236,2853,'2012-10-24 10:17:15',1),(1,145,2853,'2012-10-24 10:17:15',1),(1,128,2853,'2012-10-24 10:17:15',1),(1,39,2853,'2012-10-24 10:17:15',1),(1,193,2853,'2012-10-24 10:17:15',1),(1,172,2853,'2012-10-24 10:17:15',1),(1,83,2853,'2012-10-24 10:17:15',1),(1,184,2814,'2012-10-24 10:17:15',1),(1,146,2814,'2012-10-24 10:17:15',1),(1,179,2814,'2012-10-24 10:17:15',1),(1,58,2814,'2012-10-24 10:17:15',1),(1,128,2814,'2012-10-24 10:17:15',1),(1,190,2814,'2012-10-24 10:17:15',1),(1,219,2814,'2012-10-24 10:17:15',1),(1,213,2814,'2012-10-24 10:17:15',1),(1,131,2817,'2012-10-24 10:17:21',1),(1,90,2817,'2012-10-24 10:17:21',1),(1,56,2817,'2012-10-24 10:17:21',1),(1,221,2817,'2012-10-24 10:17:21',1),(1,219,2856,'2012-10-24 10:17:26',1),(1,213,2856,'2012-10-24 10:17:26',1),(1,52,2856,'2012-10-24 10:17:26',1),(1,105,2856,'2012-10-24 10:17:26',1),(1,219,2855,'2012-10-24 10:17:26',1),(1,52,2855,'2012-10-24 10:17:26',1),(1,152,2818,'2012-10-24 10:17:29',1),(1,46,2818,'2012-10-24 10:17:29',1),(1,159,2818,'2012-10-24 10:17:29',1),(1,53,2818,'2012-10-24 10:17:29',1),(1,103,2818,'2012-10-24 10:17:29',1),(1,204,2818,'2012-10-24 10:17:29',1),(1,38,2818,'2012-10-24 10:17:29',1),(1,198,2818,'2012-10-24 10:17:29',1),(1,45,2819,'2012-10-24 10:17:29',1),(1,12,2819,'2012-10-24 10:17:29',1),(1,28,2819,'2012-10-24 10:17:29',1),(1,167,2819,'2012-10-24 10:17:29',1),(1,155,2819,'2012-10-24 10:17:29',1),(1,158,2819,'2012-10-24 10:17:29',1),(1,176,2819,'2012-10-24 10:17:29',1),(1,236,2819,'2012-10-24 10:17:29',1),(1,39,2819,'2012-10-24 10:17:29',1),(1,193,2819,'2012-10-24 10:17:29',1),(1,172,2819,'2012-10-24 10:17:29',1),(1,83,2819,'2012-10-24 10:17:29',1),(1,75,2819,'2012-10-24 10:17:29',1),(1,112,2819,'2012-10-24 10:17:29',1),(1,204,2819,'2012-10-24 10:17:29',1),(1,38,2819,'2012-10-24 10:17:29',1),(1,63,2858,'2012-10-24 10:17:31',1),(1,190,2858,'2012-10-24 10:17:31',1),(1,84,2858,'2012-10-24 10:17:31',1),(1,24,2858,'2012-10-24 10:17:31',1),(1,15,2858,'2012-10-24 10:17:31',1),(1,75,2858,'2012-10-24 10:17:31',1),(1,55,2858,'2012-10-24 10:17:31',1),(1,112,2858,'2012-10-24 10:17:31',1),(1,131,2858,'2012-10-24 10:17:31',1),(1,218,2858,'2012-10-24 10:17:31',1),(1,219,2858,'2012-10-24 10:17:31',1),(1,213,2858,'2012-10-24 10:17:31',1),(1,52,2858,'2012-10-24 10:17:31',1),(1,214,2858,'2012-10-24 10:17:31',1),(1,105,2858,'2012-10-24 10:17:31',1),(1,90,2858,'2012-10-24 10:17:31',1),(1,204,2861,'2012-10-24 10:17:34',1),(1,38,2861,'2012-10-24 10:17:34',1),(1,198,2861,'2012-10-24 10:17:34',1),(1,210,2861,'2012-10-24 10:17:34',1),(1,29,2802,'2012-10-24 10:46:41',NULL),(1,108,2802,'2012-10-24 10:46:41',NULL),(1,61,2802,'2012-10-24 10:46:41',NULL),(1,5,2802,'2012-10-24 10:46:41',NULL),(1,127,2843,'2012-10-24 10:46:48',1),(1,163,2843,'2012-10-24 10:46:48',1),(1,251,2843,'2012-10-24 10:46:48',1),(1,230,2843,'2012-10-24 10:46:48',1),(1,21,2844,'2012-10-24 10:46:50',NULL),(1,98,2844,'2012-10-24 10:46:50',NULL),(1,143,2844,'2012-10-24 10:46:50',NULL),(1,243,2844,'2012-10-24 10:46:50',NULL),(1,19,2844,'2012-10-24 10:46:50',NULL),(1,229,2844,'2012-10-24 10:46:50',NULL),(1,210,2844,'2012-10-24 10:46:50',NULL),(1,70,2844,'2012-10-24 10:46:50',NULL),(1,63,2845,'2012-10-24 10:46:50',1),(1,190,2845,'2012-10-24 10:46:50',1),(1,84,2845,'2012-10-24 10:46:50',1),(1,24,2845,'2012-10-24 10:46:50',1),(1,15,2845,'2012-10-24 10:46:50',1),(1,75,2845,'2012-10-24 10:46:50',1),(1,55,2845,'2012-10-24 10:46:50',1),(1,112,2845,'2012-10-24 10:46:50',1),(1,131,2848,'2012-10-24 10:47:05',1),(1,218,2848,'2012-10-24 10:47:05',1),(1,219,2848,'2012-10-24 10:47:05',1),(1,213,2848,'2012-10-24 10:47:05',1),(1,52,2848,'2012-10-24 10:47:05',1),(1,208,2848,'2012-10-24 10:47:05',1),(1,78,2848,'2012-10-24 10:47:05',1),(1,214,2848,'2012-10-24 10:47:05',1),(1,147,2849,'2012-10-24 10:47:05',1),(1,45,2849,'2012-10-24 10:47:05',1),(1,12,2849,'2012-10-24 10:47:05',1),(1,28,2849,'2012-10-24 10:47:05',1),(1,162,2849,'2012-10-24 10:47:05',1),(1,167,2849,'2012-10-24 10:47:05',1),(1,155,2849,'2012-10-24 10:47:05',1),(1,158,2849,'2012-10-24 10:47:05',1),(1,57,2849,'2012-10-24 10:47:05',1),(1,234,2849,'2012-10-24 10:47:05',1),(1,51,2849,'2012-10-24 10:47:05',1),(1,194,2849,'2012-10-24 10:47:05',1),(1,99,2849,'2012-10-24 10:47:05',1),(1,161,2849,'2012-10-24 10:47:05',1),(1,175,2849,'2012-10-24 10:47:05',1),(1,176,2849,'2012-10-24 10:47:05',1),(1,184,2852,'2012-10-24 10:47:15',1),(1,146,2852,'2012-10-24 10:47:15',1),(1,235,2852,'2012-10-24 10:47:15',1),(1,111,2852,'2012-10-24 10:47:15',1),(1,179,2852,'2012-10-24 10:47:15',1),(1,157,2852,'2012-10-24 10:47:15',1),(1,58,2852,'2012-10-24 10:47:15',1),(1,177,2852,'2012-10-24 10:47:15',1),(1,31,2857,'2012-10-24 10:47:29',1),(1,236,2857,'2012-10-24 10:47:29',1),(1,145,2857,'2012-10-24 10:47:29',1),(1,128,2857,'2012-10-24 10:47:29',1),(1,39,2857,'2012-10-24 10:47:29',1),(1,193,2857,'2012-10-24 10:47:29',1),(1,172,2857,'2012-10-24 10:47:29',1),(1,83,2857,'2012-10-24 10:47:29',1),(1,152,2862,'2012-10-24 10:47:42',1),(1,46,2862,'2012-10-24 10:47:42',1),(1,159,2862,'2012-10-24 10:47:42',1),(1,53,2862,'2012-10-24 10:47:42',1),(1,103,2862,'2012-10-24 10:47:42',1),(1,204,2862,'2012-10-24 10:47:42',1),(1,38,2862,'2012-10-24 10:47:42',1),(1,198,2862,'2012-10-24 10:47:42',1),(1,38,2889,'2012-10-25 00:46:20',1),(1,61,2890,'2012-10-25 00:46:20',1),(1,4,2888,'2012-10-25 00:46:20',1),(1,5,2891,'2012-10-25 00:46:20',1),(1,229,2892,'2012-10-25 00:46:30',1),(1,174,2893,'2012-10-25 00:46:30',1),(1,166,2893,'2012-10-25 00:46:30',1),(1,116,2894,'2012-10-25 00:46:30',1),(1,129,2894,'2012-10-25 00:46:30',1),(1,107,2895,'2012-10-25 00:46:30',1),(1,14,2895,'2012-10-25 00:46:30',1),(1,15,2897,'2012-10-25 00:46:36',1),(1,142,2897,'2012-10-25 00:46:36',1),(1,103,2896,'2012-10-25 00:46:36',1),(1,204,2896,'2012-10-25 00:46:36',1),(1,49,2898,'2012-10-25 00:46:36',1),(1,207,2898,'2012-10-25 00:46:36',1),(1,213,2898,'2012-10-25 00:46:36',1),(1,52,2898,'2012-10-25 00:46:36',1),(1,208,2899,'2012-10-25 00:46:36',1),(1,78,2899,'2012-10-25 00:46:36',1),(1,214,2899,'2012-10-25 00:46:36',1),(1,105,2899,'2012-10-25 00:46:36',1),(1,224,2900,'2012-10-25 00:46:44',1),(1,221,2900,'2012-10-25 00:46:44',1),(1,222,2900,'2012-10-25 00:46:44',1),(1,6,2900,'2012-10-25 00:46:44',1),(1,80,2901,'2012-10-25 00:46:44',1),(1,250,2901,'2012-10-25 00:46:44',1),(1,93,2901,'2012-10-25 00:46:44',1),(1,226,2901,'2012-10-25 00:46:44',1),(1,80,2903,'2012-10-25 00:46:44',1),(1,250,2903,'2012-10-25 00:46:44',1),(1,93,2903,'2012-10-25 00:46:44',1),(1,226,2903,'2012-10-25 00:46:44',1),(1,116,2903,'2012-10-25 00:46:44',1),(1,129,2903,'2012-10-25 00:46:44',1),(1,174,2903,'2012-10-25 00:46:44',1),(1,166,2903,'2012-10-25 00:46:44',1),(1,210,2902,'2012-10-25 00:46:44',1),(1,90,2902,'2012-10-25 00:46:44',1),(1,70,2902,'2012-10-25 00:46:44',1),(1,56,2902,'2012-10-25 00:46:44',1),(1,107,2906,'2012-10-25 00:46:51',1),(1,14,2906,'2012-10-25 00:46:51',1),(1,15,2906,'2012-10-25 00:46:51',1),(1,142,2906,'2012-10-25 00:46:51',1),(1,103,2906,'2012-10-25 00:46:51',1),(1,204,2906,'2012-10-25 00:46:51',1),(1,38,2906,'2012-10-25 00:46:51',1),(1,61,2906,'2012-10-25 00:46:51',1),(1,49,2904,'2012-10-25 00:46:51',1),(1,207,2904,'2012-10-25 00:46:51',1),(1,213,2904,'2012-10-25 00:46:51',1),(1,52,2904,'2012-10-25 00:46:51',1),(1,208,2904,'2012-10-25 00:46:51',1),(1,78,2904,'2012-10-25 00:46:51',1),(1,214,2904,'2012-10-25 00:46:51',1),(1,105,2904,'2012-10-25 00:46:51',1),(1,5,2907,'2012-10-25 00:46:51',1),(1,229,2907,'2012-10-25 00:46:51',1),(1,230,2907,'2012-10-25 00:46:51',1),(1,131,2907,'2012-10-25 00:46:51',1),(1,218,2907,'2012-10-25 00:46:51',1),(1,219,2907,'2012-10-25 00:46:51',1),(1,198,2907,'2012-10-25 00:46:51',1),(1,66,2907,'2012-10-25 00:46:51',1),(1,210,2905,'2012-10-25 00:46:51',1),(1,90,2905,'2012-10-25 00:46:51',1),(1,70,2905,'2012-10-25 00:46:51',1),(1,56,2905,'2012-10-25 00:46:51',1),(1,224,2905,'2012-10-25 00:46:51',1),(1,221,2905,'2012-10-25 00:46:51',1),(1,222,2905,'2012-10-25 00:46:51',1),(1,6,2905,'2012-10-25 00:46:51',1),(1,219,2928,'2012-10-25 01:46:12',1),(1,5,2930,'2012-10-25 01:46:12',1),(1,229,2930,'2012-10-25 01:46:12',1),(1,218,2929,'2012-10-25 01:46:12',1),(1,230,2931,'2012-10-25 01:46:12',1),(1,131,2931,'2012-10-25 01:46:12',1),(1,103,2932,'2012-10-25 01:46:20',NULL),(1,204,2932,'2012-10-25 01:46:20',NULL),(1,38,2932,'2012-10-25 01:46:20',NULL),(1,61,2932,'2012-10-25 01:46:20',NULL),(1,80,2934,'2012-10-25 01:46:20',1),(1,250,2934,'2012-10-25 01:46:20',1),(1,93,2934,'2012-10-25 01:46:20',1),(1,226,2934,'2012-10-25 01:46:20',1),(1,116,2934,'2012-10-25 01:46:20',1),(1,129,2934,'2012-10-25 01:46:20',1),(1,174,2934,'2012-10-25 01:46:20',1),(1,166,2934,'2012-10-25 01:46:20',1),(1,107,2933,'2012-10-25 01:46:20',1),(1,14,2933,'2012-10-25 01:46:20',1),(1,15,2933,'2012-10-25 01:46:20',1),(1,142,2933,'2012-10-25 01:46:20',1),(1,239,2935,'2012-10-25 01:46:20',1),(1,43,2935,'2012-10-25 01:46:20',1),(1,153,2935,'2012-10-25 01:46:20',1),(1,71,2935,'2012-10-25 01:46:20',1),(1,44,2935,'2012-10-25 01:46:20',1),(1,232,2935,'2012-10-25 01:46:20',1),(1,233,2935,'2012-10-25 01:46:20',1),(1,195,2935,'2012-10-25 01:46:20',1),(1,208,2946,'2012-10-25 02:46:18',1),(1,78,2946,'2012-10-25 02:46:18',1),(1,214,2946,'2012-10-25 02:46:18',1),(1,105,2946,'2012-10-25 02:46:18',1),(1,107,2947,'2012-10-25 02:46:18',1),(1,14,2947,'2012-10-25 02:46:18',1),(1,15,2947,'2012-10-25 02:46:18',1),(1,142,2947,'2012-10-25 02:46:18',1),(1,103,2947,'2012-10-25 02:46:18',1),(1,204,2947,'2012-10-25 02:46:18',1),(1,38,2947,'2012-10-25 02:46:18',1),(1,61,2947,'2012-10-25 02:46:18',1),(1,224,2945,'2012-10-25 02:46:19',1),(1,221,2945,'2012-10-25 02:46:19',1),(1,222,2949,'2012-10-25 02:46:23',1),(1,238,2948,'2012-10-25 02:46:23',1),(1,233,2948,'2012-10-25 02:46:23',1),(1,195,2948,'2012-10-25 02:46:23',1),(1,196,2948,'2012-10-25 02:46:23',1),(1,36,2948,'2012-10-25 02:46:23',1),(1,80,2948,'2012-10-25 02:46:23',1),(1,250,2948,'2012-10-25 02:46:23',1),(1,93,2948,'2012-10-25 02:46:23',1),(1,101,2948,'2012-10-25 02:46:23',1),(1,226,2948,'2012-10-25 02:46:23',1),(1,116,2948,'2012-10-25 02:46:23',1),(1,129,2948,'2012-10-25 02:46:23',1),(1,174,2948,'2012-10-25 02:46:23',1),(1,166,2948,'2012-10-25 02:46:23',1),(1,6,2948,'2012-10-25 02:46:23',1),(1,4,2948,'2012-10-25 02:46:23',1),(1,208,2950,'2012-10-25 02:46:25',1),(1,78,2950,'2012-10-25 02:46:25',1),(1,5,2952,'2012-10-25 02:46:31',1),(1,229,2952,'2012-10-25 02:46:31',1),(1,230,2952,'2012-10-25 02:46:31',1),(1,131,2952,'2012-10-25 02:46:31',1),(1,218,2952,'2012-10-25 02:46:31',1),(1,219,2952,'2012-10-25 02:46:31',1),(1,198,2952,'2012-10-25 02:46:31',1),(1,66,2952,'2012-10-25 02:46:31',1),(1,210,2951,'2012-10-25 02:46:31',1),(1,90,2951,'2012-10-25 02:46:31',1),(1,70,2951,'2012-10-25 02:46:31',1),(1,56,2951,'2012-10-25 02:46:31',1),(1,15,2953,'2012-10-25 02:46:33',1),(1,214,2954,'2012-10-25 02:46:33',1),(1,105,2954,'2012-10-25 02:46:33',1),(1,107,2956,'2012-10-25 02:46:39',1),(1,14,2956,'2012-10-25 02:46:39',1),(1,15,2956,'2012-10-25 02:46:39',1),(1,142,2956,'2012-10-25 02:46:39',1),(1,103,2956,'2012-10-25 02:46:39',1),(1,204,2956,'2012-10-25 02:46:39',1),(1,38,2956,'2012-10-25 02:46:39',1),(1,61,2956,'2012-10-25 02:46:39',1),(1,208,2955,'2012-10-25 02:46:39',1),(1,78,2955,'2012-10-25 02:46:39',1),(1,214,2955,'2012-10-25 02:46:39',1),(1,105,2955,'2012-10-25 02:46:39',1),(1,142,2957,'2012-10-25 02:46:39',1),(1,107,2958,'2012-10-25 02:46:39',1),(1,14,2958,'2012-10-25 02:46:39',1),(1,210,2959,'2012-10-25 02:46:46',1),(1,90,2959,'2012-10-25 02:46:46',1),(1,70,2959,'2012-10-25 02:46:46',1),(1,56,2959,'2012-10-25 02:46:46',1),(1,5,2960,'2012-10-25 02:46:47',1),(1,229,2960,'2012-10-25 02:46:47',1),(1,230,2960,'2012-10-25 02:46:47',1),(1,131,2960,'2012-10-25 02:46:47',1),(1,218,2960,'2012-10-25 02:46:47',1),(1,219,2960,'2012-10-25 02:46:47',1),(1,198,2960,'2012-10-25 02:46:47',1),(1,66,2960,'2012-10-25 02:46:47',1),(1,238,2961,'2012-10-25 02:46:47',1),(1,233,2961,'2012-10-25 02:46:47',1),(1,195,2961,'2012-10-25 02:46:47',1),(1,196,2961,'2012-10-25 02:46:47',1),(1,36,2961,'2012-10-25 02:46:47',1),(1,80,2961,'2012-10-25 02:46:47',1),(1,250,2961,'2012-10-25 02:46:47',1),(1,93,2961,'2012-10-25 02:46:47',1),(1,101,2961,'2012-10-25 02:46:47',1),(1,226,2961,'2012-10-25 02:46:47',1),(1,116,2961,'2012-10-25 02:46:47',1),(1,129,2961,'2012-10-25 02:46:47',1),(1,174,2961,'2012-10-25 02:46:47',1),(1,166,2961,'2012-10-25 02:46:47',1),(1,6,2961,'2012-10-25 02:46:47',1),(1,4,2961,'2012-10-25 02:46:47',1),(1,49,2944,'2012-10-25 03:16:18',NULL),(1,207,2944,'2012-10-25 03:16:18',NULL),(1,213,2944,'2012-10-25 03:16:18',NULL),(1,52,2944,'2012-10-25 03:16:18',NULL),(1,222,2981,'2012-10-25 03:46:18',1),(1,224,2982,'2012-10-25 03:46:18',1),(1,221,2982,'2012-10-25 03:46:18',1),(1,222,2980,'2012-10-25 03:46:18',1),(1,49,2985,'2012-10-25 03:46:29',1),(1,207,2985,'2012-10-25 03:46:29',1),(1,213,2985,'2012-10-25 03:46:29',1),(1,52,2985,'2012-10-25 03:46:29',1),(1,238,2991,'2012-10-25 03:46:34',NULL),(1,233,2991,'2012-10-25 03:46:34',NULL),(1,195,2991,'2012-10-25 03:46:34',NULL),(1,196,2991,'2012-10-25 03:46:34',NULL),(1,36,2991,'2012-10-25 03:46:34',NULL),(1,80,2991,'2012-10-25 03:46:34',NULL),(1,250,2991,'2012-10-25 03:46:34',NULL),(1,93,2991,'2012-10-25 03:46:34',NULL),(1,101,2991,'2012-10-25 03:46:34',NULL),(1,226,2991,'2012-10-25 03:46:34',NULL),(1,116,2991,'2012-10-25 03:46:34',NULL),(1,129,2991,'2012-10-25 03:46:34',NULL),(1,174,2991,'2012-10-25 03:46:34',NULL),(1,166,2991,'2012-10-25 03:46:34',NULL),(1,6,2991,'2012-10-25 03:46:34',NULL),(1,4,2991,'2012-10-25 03:46:34',NULL),(1,107,2995,'2012-10-25 03:46:44',1),(1,14,2995,'2012-10-25 03:46:44',1),(1,15,2995,'2012-10-25 03:46:44',1),(1,142,2995,'2012-10-25 03:46:44',1),(1,103,2995,'2012-10-25 03:46:44',1),(1,204,2995,'2012-10-25 03:46:44',1),(1,38,2995,'2012-10-25 03:46:44',1),(1,61,2995,'2012-10-25 03:46:44',1),(1,5,2995,'2012-10-25 03:46:44',1),(1,229,2995,'2012-10-25 03:46:44',1),(1,230,2995,'2012-10-25 03:46:44',1),(1,131,2995,'2012-10-25 03:46:44',1),(1,218,2995,'2012-10-25 03:46:44',1),(1,219,2995,'2012-10-25 03:46:44',1),(1,198,2995,'2012-10-25 03:46:44',1),(1,66,2995,'2012-10-25 03:46:44',1),(1,222,2996,'2012-10-25 03:46:50',1),(1,107,3000,'2012-10-25 03:46:58',1),(1,14,3000,'2012-10-25 03:46:58',1),(1,15,3000,'2012-10-25 03:46:58',1),(1,142,3000,'2012-10-25 03:46:58',1),(1,103,3000,'2012-10-25 03:46:58',1),(1,204,3000,'2012-10-25 03:46:58',1),(1,38,3000,'2012-10-25 03:46:58',1),(1,61,3000,'2012-10-25 03:46:58',1),(1,5,3000,'2012-10-25 03:46:58',1),(1,229,3000,'2012-10-25 03:46:58',1),(1,230,3000,'2012-10-25 03:46:58',1),(1,131,3000,'2012-10-25 03:46:58',1),(1,218,3000,'2012-10-25 03:46:58',1),(1,219,3000,'2012-10-25 03:46:58',1),(1,198,3000,'2012-10-25 03:46:58',1),(1,66,3000,'2012-10-25 03:46:58',1),(1,222,3001,'2012-10-25 03:46:58',1),(1,224,2983,'2012-10-25 04:16:19',1),(1,221,2983,'2012-10-25 04:16:19',1),(1,49,2984,'2012-10-25 04:16:28',1),(1,207,2984,'2012-10-25 04:16:28',1),(1,213,2984,'2012-10-25 04:16:28',1),(1,52,2984,'2012-10-25 04:16:28',1),(1,208,2987,'2012-10-25 04:16:30',1),(1,78,2987,'2012-10-25 04:16:30',1),(1,214,2987,'2012-10-25 04:16:30',1),(1,105,2987,'2012-10-25 04:16:30',1),(1,210,2987,'2012-10-25 04:16:30',1),(1,90,2987,'2012-10-25 04:16:30',1),(1,70,2987,'2012-10-25 04:16:30',1),(1,56,2987,'2012-10-25 04:16:30',1),(1,107,2986,'2012-10-25 04:16:30',NULL),(1,14,2986,'2012-10-25 04:16:30',NULL),(1,15,2986,'2012-10-25 04:16:30',NULL),(1,142,2986,'2012-10-25 04:16:30',NULL),(1,103,2986,'2012-10-25 04:16:30',NULL),(1,204,2986,'2012-10-25 04:16:30',NULL),(1,38,2986,'2012-10-25 04:16:30',NULL),(1,61,2986,'2012-10-25 04:16:30',NULL),(1,224,2988,'2012-10-25 04:16:35',1),(1,221,2988,'2012-10-25 04:16:35',1),(1,238,2989,'2012-10-25 04:16:35',1),(1,233,2989,'2012-10-25 04:16:35',1),(1,195,2989,'2012-10-25 04:16:35',1),(1,196,2989,'2012-10-25 04:16:35',1),(1,5,2990,'2012-10-25 04:16:35',1),(1,229,2990,'2012-10-25 04:16:35',1),(1,230,2990,'2012-10-25 04:16:35',1),(1,131,2990,'2012-10-25 04:16:35',1),(1,218,2990,'2012-10-25 04:16:35',1),(1,219,2990,'2012-10-25 04:16:35',1),(1,198,2990,'2012-10-25 04:16:35',1),(1,66,2990,'2012-10-25 04:16:35',1),(1,224,2992,'2012-10-25 04:16:44',1),(1,221,2992,'2012-10-25 04:16:44',1),(1,238,2994,'2012-10-25 04:16:44',1),(1,233,2994,'2012-10-25 04:16:44',1),(1,195,2994,'2012-10-25 04:16:44',1),(1,196,2994,'2012-10-25 04:16:44',1),(1,36,2994,'2012-10-25 04:16:44',1),(1,80,2994,'2012-10-25 04:16:44',1),(1,250,2994,'2012-10-25 04:16:44',1),(1,93,2994,'2012-10-25 04:16:44',1),(1,36,2993,'2012-10-25 04:16:44',1),(1,80,2993,'2012-10-25 04:16:44',1),(1,250,2993,'2012-10-25 04:16:44',1),(1,93,2993,'2012-10-25 04:16:44',1),(1,36,2998,'2012-10-25 04:16:54',1),(1,80,2998,'2012-10-25 04:16:54',1),(1,250,2998,'2012-10-25 04:16:54',1),(1,93,2998,'2012-10-25 04:16:54',1),(1,210,2997,'2012-10-25 04:16:54',1),(1,90,2997,'2012-10-25 04:16:54',1),(1,101,2999,'2012-10-25 04:16:54',1),(1,226,2999,'2012-10-25 04:16:54',1),(1,116,2999,'2012-10-25 04:16:54',1),(1,129,2999,'2012-10-25 04:16:54',1),(1,174,2999,'2012-10-25 04:16:54',1),(1,166,2999,'2012-10-25 04:16:54',1),(1,222,2999,'2012-10-25 04:16:54',1),(1,6,2999,'2012-10-25 04:16:54',1),(1,208,3003,'2012-10-25 04:17:00',1),(1,78,3003,'2012-10-25 04:17:00',1),(1,214,3003,'2012-10-25 04:17:00',1),(1,105,3003,'2012-10-25 04:17:00',1),(1,70,3002,'2012-10-25 04:17:00',1),(1,56,3002,'2012-10-25 04:17:00',1),(1,208,3004,'2012-10-25 04:17:07',1),(1,78,3004,'2012-10-25 04:17:07',1),(1,214,3004,'2012-10-25 04:17:07',1),(1,105,3004,'2012-10-25 04:17:07',1),(1,210,3004,'2012-10-25 04:17:07',1),(1,90,3004,'2012-10-25 04:17:07',1),(1,70,3004,'2012-10-25 04:17:07',1),(1,56,3004,'2012-10-25 04:17:07',1),(1,6,3030,'2012-10-26 01:16:25',1),(1,6,3031,'2012-10-26 01:16:25',1),(1,65,3032,'2012-10-26 01:16:25',1),(1,168,3035,'2012-10-26 01:16:27',1),(1,65,3035,'2012-10-26 01:16:27',1),(1,168,3036,'2012-10-26 01:16:27',1),(1,65,3036,'2012-10-26 01:16:27',1),(1,168,3037,'2012-10-26 01:16:28',1),(1,65,3037,'2012-10-26 01:16:28',1),(1,168,3039,'2012-10-26 01:16:37',1),(1,65,3039,'2012-10-26 01:16:37',1),(1,168,3038,'2012-10-26 01:16:37',1),(1,65,3038,'2012-10-26 01:16:37',1),(1,87,3070,'2012-10-26 01:46:13',1),(1,87,3072,'2012-10-26 01:46:13',1),(1,65,3072,'2012-10-26 01:46:13',1),(1,6,3071,'2012-10-26 01:46:13',1),(1,30,3073,'2012-10-26 01:46:13',1),(1,6,3073,'2012-10-26 01:46:13',1),(1,6,3033,'2012-10-26 01:46:26',1),(1,87,3034,'2012-10-26 01:46:28',1),(1,30,3040,'2012-10-26 01:46:38',1),(1,87,3040,'2012-10-26 01:46:38',1),(1,65,3040,'2012-10-26 01:46:38',1),(1,6,3040,'2012-10-26 01:46:38',1),(1,30,3041,'2012-10-26 01:46:41',1),(1,87,3041,'2012-10-26 01:46:41',1),(1,65,3041,'2012-10-26 01:46:41',1),(1,6,3041,'2012-10-26 01:46:41',1),(1,30,3043,'2012-10-26 01:46:46',1),(1,87,3043,'2012-10-26 01:46:46',1),(1,65,3043,'2012-10-26 01:46:46',1),(1,6,3043,'2012-10-26 01:46:46',1),(1,30,3044,'2012-10-26 01:46:48',1),(1,87,3044,'2012-10-26 01:46:48',1),(1,65,3044,'2012-10-26 01:46:48',1),(1,6,3044,'2012-10-26 01:46:48',1),(1,6,3091,'2012-10-26 02:46:29',1),(1,6,3095,'2012-10-26 02:46:33',1),(1,6,3099,'2012-10-26 02:46:41',1),(1,123,3089,'2012-10-26 03:16:21',1),(1,48,3089,'2012-10-26 03:16:21',1),(1,151,3089,'2012-10-26 03:16:21',1),(1,154,3089,'2012-10-26 03:16:21',1),(1,54,3089,'2012-10-26 03:16:21',1),(1,72,3089,'2012-10-26 03:16:21',1),(1,33,3089,'2012-10-26 03:16:21',1),(1,6,3089,'2012-10-26 03:16:21',1),(1,123,3076,'2012-10-26 03:16:27',1),(1,48,3076,'2012-10-26 03:16:27',1),(1,151,3076,'2012-10-26 03:16:27',1),(1,154,3076,'2012-10-26 03:16:27',1),(1,54,3076,'2012-10-26 03:16:27',1),(1,72,3076,'2012-10-26 03:16:27',1),(1,33,3076,'2012-10-26 03:16:27',1),(1,6,3076,'2012-10-26 03:16:27',1),(1,123,3077,'2012-10-26 03:16:30',1),(1,48,3077,'2012-10-26 03:16:30',1),(1,151,3077,'2012-10-26 03:16:30',1),(1,154,3077,'2012-10-26 03:16:30',1),(1,54,3077,'2012-10-26 03:16:30',1),(1,72,3077,'2012-10-26 03:16:30',1),(1,33,3077,'2012-10-26 03:16:30',1),(1,6,3077,'2012-10-26 03:16:30',1),(1,123,3094,'2012-10-26 03:16:36',1),(1,48,3094,'2012-10-26 03:16:36',1),(1,151,3094,'2012-10-26 03:16:36',1),(1,154,3094,'2012-10-26 03:16:36',1),(1,54,3094,'2012-10-26 03:16:36',1),(1,72,3094,'2012-10-26 03:16:36',1),(1,33,3094,'2012-10-26 03:16:36',1),(1,6,3094,'2012-10-26 03:16:36',1),(1,123,3098,'2012-10-26 03:16:43',1),(1,48,3098,'2012-10-26 03:16:43',1),(1,151,3098,'2012-10-26 03:16:43',1),(1,154,3098,'2012-10-26 03:16:43',1),(1,54,3098,'2012-10-26 03:16:43',1),(1,72,3098,'2012-10-26 03:16:43',1),(1,33,3098,'2012-10-26 03:16:43',1),(1,6,3098,'2012-10-26 03:16:43',1),(1,123,3045,'2012-10-26 03:16:52',1),(1,48,3045,'2012-10-26 03:16:52',1),(1,151,3045,'2012-10-26 03:16:52',1),(1,154,3045,'2012-10-26 03:16:52',1),(1,54,3045,'2012-10-26 03:16:52',1),(1,72,3045,'2012-10-26 03:16:52',1),(1,33,3045,'2012-10-26 03:16:52',1),(1,6,3045,'2012-10-26 03:16:52',1),(1,123,3046,'2012-10-26 03:16:56',1),(1,48,3046,'2012-10-26 03:16:56',1),(1,151,3046,'2012-10-26 03:16:56',1),(1,154,3046,'2012-10-26 03:16:56',1),(1,54,3046,'2012-10-26 03:16:56',1),(1,72,3046,'2012-10-26 03:16:56',1),(1,33,3046,'2012-10-26 03:16:56',1),(1,6,3046,'2012-10-26 03:16:56',1),(1,123,3048,'2012-10-26 03:16:57',1),(1,48,3048,'2012-10-26 03:16:57',1),(1,151,3048,'2012-10-26 03:16:57',1),(1,154,3048,'2012-10-26 03:16:57',1),(1,54,3048,'2012-10-26 03:16:57',1),(1,72,3048,'2012-10-26 03:16:57',1),(1,33,3048,'2012-10-26 03:16:57',1),(1,6,3048,'2012-10-26 03:16:57',1),(1,123,3047,'2012-10-26 03:16:57',1),(1,48,3047,'2012-10-26 03:16:57',1),(1,151,3047,'2012-10-26 03:16:57',1),(1,154,3047,'2012-10-26 03:16:57',1),(1,54,3047,'2012-10-26 03:16:57',1),(1,72,3047,'2012-10-26 03:16:57',1),(1,33,3047,'2012-10-26 03:16:57',1),(1,6,3047,'2012-10-26 03:16:57',1),(1,123,3049,'2012-10-26 03:16:59',1),(1,48,3049,'2012-10-26 03:16:59',1),(1,151,3049,'2012-10-26 03:16:59',1),(1,154,3049,'2012-10-26 03:16:59',1),(1,54,3049,'2012-10-26 03:16:59',1),(1,72,3049,'2012-10-26 03:16:59',1),(1,33,3049,'2012-10-26 03:16:59',1),(1,6,3049,'2012-10-26 03:16:59',1),(1,123,3102,'2012-10-26 03:46:51',1),(1,48,3102,'2012-10-26 03:46:51',1),(1,151,3102,'2012-10-26 03:46:51',1),(1,154,3102,'2012-10-26 03:46:51',1),(1,54,3102,'2012-10-26 03:46:51',1),(1,72,3102,'2012-10-26 03:46:51',1),(1,33,3102,'2012-10-26 03:46:51',1),(1,6,3102,'2012-10-26 03:46:51',1),(1,6,3122,'2012-10-26 04:16:20',1),(1,72,3087,'2012-10-26 04:16:24',1),(1,33,3087,'2012-10-26 04:16:24',1),(1,126,3088,'2012-10-26 04:16:24',1),(1,79,3088,'2012-10-26 04:16:24',1),(1,154,3088,'2012-10-26 04:16:24',1),(1,54,3088,'2012-10-26 04:16:24',1),(1,139,3128,'2012-10-26 04:16:27',NULL),(1,82,3128,'2012-10-26 04:16:27',NULL),(1,11,3128,'2012-10-26 04:16:27',NULL),(1,150,3128,'2012-10-26 04:16:27',NULL),(1,26,3128,'2012-10-26 04:16:27',NULL),(1,197,3128,'2012-10-26 04:16:27',NULL),(1,126,3128,'2012-10-26 04:16:27',NULL),(1,79,3128,'2012-10-26 04:16:27',NULL),(1,126,3074,'2012-10-26 04:16:29',1),(1,79,3074,'2012-10-26 04:16:29',1),(1,154,3074,'2012-10-26 04:16:29',1),(1,54,3074,'2012-10-26 04:16:29',1),(1,126,3075,'2012-10-26 04:16:30',1),(1,79,3075,'2012-10-26 04:16:30',1),(1,154,3075,'2012-10-26 04:16:30',1),(1,54,3075,'2012-10-26 04:16:30',1),(1,123,3129,'2012-10-26 04:16:32',1),(1,48,3129,'2012-10-26 04:16:32',1),(1,151,3129,'2012-10-26 04:16:32',1),(1,154,3129,'2012-10-26 04:16:32',1),(1,54,3129,'2012-10-26 04:16:32',1),(1,72,3129,'2012-10-26 04:16:32',1),(1,33,3129,'2012-10-26 04:16:32',1),(1,6,3129,'2012-10-26 04:16:32',1),(1,139,3090,'2012-10-26 04:16:34',1),(1,82,3090,'2012-10-26 04:16:34',1),(1,11,3090,'2012-10-26 04:16:34',1),(1,123,3090,'2012-10-26 04:16:34',1),(1,150,3090,'2012-10-26 04:16:34',1),(1,48,3090,'2012-10-26 04:16:34',1),(1,26,3090,'2012-10-26 04:16:34',1),(1,151,3090,'2012-10-26 04:16:34',1),(1,197,3090,'2012-10-26 04:16:34',1),(1,126,3090,'2012-10-26 04:16:34',1),(1,79,3090,'2012-10-26 04:16:34',1),(1,154,3090,'2012-10-26 04:16:34',1),(1,54,3090,'2012-10-26 04:16:34',1),(1,72,3090,'2012-10-26 04:16:34',1),(1,33,3090,'2012-10-26 04:16:34',1),(1,6,3090,'2012-10-26 04:16:34',1),(1,72,3092,'2012-10-26 04:16:34',1),(1,33,3092,'2012-10-26 04:16:34',1),(1,79,3093,'2012-10-26 04:16:36',1),(1,154,3093,'2012-10-26 04:16:36',1),(1,54,3093,'2012-10-26 04:16:36',1),(1,86,3093,'2012-10-26 04:16:36',1),(1,82,3132,'2012-10-26 04:16:36',1),(1,11,3132,'2012-10-26 04:16:36',1),(1,123,3132,'2012-10-26 04:16:36',1),(1,150,3132,'2012-10-26 04:16:36',1),(1,48,3132,'2012-10-26 04:16:36',1),(1,26,3132,'2012-10-26 04:16:36',1),(1,151,3132,'2012-10-26 04:16:36',1),(1,197,3132,'2012-10-26 04:16:36',1),(1,72,3096,'2012-10-26 04:16:44',1),(1,33,3096,'2012-10-26 04:16:44',1),(1,126,3097,'2012-10-26 04:16:44',1),(1,79,3097,'2012-10-26 04:16:44',1),(1,154,3097,'2012-10-26 04:16:44',1),(1,54,3097,'2012-10-26 04:16:44',1),(1,86,3134,'2012-10-26 04:16:46',1),(1,6,3134,'2012-10-26 04:16:46',1),(1,126,3042,'2012-10-26 04:16:58',1),(1,79,3042,'2012-10-26 04:16:58',1),(1,154,3042,'2012-10-26 04:16:58',1),(1,54,3042,'2012-10-26 04:16:58',1),(1,6,3143,'2012-10-26 04:17:00',1),(1,240,3123,'2012-10-26 04:46:21',1),(1,126,3135,'2012-10-26 04:46:49',1),(1,72,3135,'2012-10-26 04:46:49',1),(1,33,3135,'2012-10-26 04:46:49',1),(1,6,3135,'2012-10-26 04:46:49',1),(1,82,3136,'2012-10-26 04:46:49',1),(1,11,3136,'2012-10-26 04:46:49',1),(1,123,3136,'2012-10-26 04:46:49',1),(1,150,3136,'2012-10-26 04:46:49',1),(1,48,3136,'2012-10-26 04:46:49',1),(1,26,3136,'2012-10-26 04:46:49',1),(1,151,3136,'2012-10-26 04:46:49',1),(1,197,3136,'2012-10-26 04:46:49',1),(1,72,3100,'2012-10-26 04:46:52',1),(1,33,3100,'2012-10-26 04:46:52',1),(1,240,3138,'2012-10-26 04:46:56',1),(1,79,3101,'2012-10-26 04:46:56',1),(1,154,3101,'2012-10-26 04:46:56',1),(1,54,3101,'2012-10-26 04:46:56',1),(1,86,3101,'2012-10-26 04:46:56',1),(1,11,3103,'2012-10-26 04:46:59',1),(1,123,3103,'2012-10-26 04:46:59',1),(1,150,3103,'2012-10-26 04:46:59',1),(1,48,3103,'2012-10-26 04:46:59',1),(1,26,3103,'2012-10-26 04:46:59',1),(1,151,3103,'2012-10-26 04:46:59',1),(1,197,3103,'2012-10-26 04:46:59',1),(1,126,3103,'2012-10-26 04:46:59',1),(1,79,3103,'2012-10-26 04:46:59',1),(1,154,3103,'2012-10-26 04:46:59',1),(1,54,3103,'2012-10-26 04:46:59',1),(1,72,3103,'2012-10-26 04:46:59',1),(1,33,3103,'2012-10-26 04:46:59',1),(1,86,3103,'2012-10-26 04:46:59',1),(1,240,3103,'2012-10-26 04:46:59',1),(1,6,3103,'2012-10-26 04:46:59',1),(1,126,3144,'2012-10-26 04:47:04',1),(1,6,3144,'2012-10-26 04:47:04',1),(1,11,3145,'2012-10-26 04:47:05',1),(1,123,3145,'2012-10-26 04:47:05',1),(1,150,3145,'2012-10-26 04:47:05',1),(1,48,3145,'2012-10-26 04:47:05',1),(1,82,3146,'2012-10-26 04:47:07',1),(1,11,3146,'2012-10-26 04:47:07',1),(1,123,3146,'2012-10-26 04:47:07',1),(1,150,3146,'2012-10-26 04:47:07',1),(1,48,3146,'2012-10-26 04:47:07',1),(1,26,3146,'2012-10-26 04:47:07',1),(1,151,3146,'2012-10-26 04:47:07',1),(1,197,3146,'2012-10-26 04:47:07',1),(1,240,3124,'2012-10-26 05:16:23',1),(1,82,3124,'2012-10-26 05:16:23',1),(1,11,3133,'2012-10-26 05:16:44',1),(1,123,3133,'2012-10-26 05:16:44',1),(1,150,3133,'2012-10-26 05:16:44',1),(1,48,3133,'2012-10-26 05:16:44',1),(1,26,3133,'2012-10-26 05:16:44',1),(1,151,3133,'2012-10-26 05:16:44',1),(1,197,3133,'2012-10-26 05:16:44',1),(1,126,3133,'2012-10-26 05:16:44',1),(1,79,3133,'2012-10-26 05:16:44',1),(1,154,3133,'2012-10-26 05:16:44',1),(1,54,3133,'2012-10-26 05:16:44',1),(1,72,3133,'2012-10-26 05:16:44',1),(1,33,3133,'2012-10-26 05:16:44',1),(1,86,3133,'2012-10-26 05:16:44',1),(1,252,3133,'2012-10-26 05:16:44',1),(1,6,3133,'2012-10-26 05:16:44',1),(1,82,3137,'2012-10-26 05:46:54',1),(1,123,3137,'2012-10-26 05:46:54',1),(1,150,3137,'2012-10-26 05:46:54',1),(1,48,3137,'2012-10-26 05:46:54',1),(1,26,3137,'2012-10-26 05:46:54',1),(1,151,3137,'2012-10-26 05:46:54',1),(1,197,3137,'2012-10-26 05:46:54',1),(1,126,3137,'2012-10-26 05:46:54',1),(1,79,3137,'2012-10-26 05:46:54',1),(1,154,3137,'2012-10-26 05:46:54',1),(1,54,3137,'2012-10-26 05:46:54',1),(1,72,3137,'2012-10-26 05:46:54',1),(1,33,3137,'2012-10-26 05:46:54',1),(1,86,3137,'2012-10-26 05:46:54',1),(1,252,3137,'2012-10-26 05:46:54',1),(1,6,3137,'2012-10-26 05:46:54',1),(1,82,3142,'2012-10-26 05:47:02',1),(1,123,3142,'2012-10-26 05:47:02',1),(1,150,3142,'2012-10-26 05:47:02',1),(1,48,3142,'2012-10-26 05:47:02',1),(1,26,3142,'2012-10-26 05:47:02',1),(1,151,3142,'2012-10-26 05:47:02',1),(1,197,3142,'2012-10-26 05:47:02',1),(1,126,3142,'2012-10-26 05:47:02',1),(1,79,3142,'2012-10-26 05:47:02',1),(1,154,3142,'2012-10-26 05:47:02',1),(1,54,3142,'2012-10-26 05:47:02',1),(1,72,3142,'2012-10-26 05:47:02',1),(1,33,3142,'2012-10-26 05:47:02',1),(1,86,3142,'2012-10-26 05:47:02',1),(1,252,3142,'2012-10-26 05:47:02',1),(1,6,3142,'2012-10-26 05:47:02',1),(1,33,3127,'2012-10-26 06:16:33',1),(1,86,3127,'2012-10-26 06:16:33',1),(1,252,3127,'2012-10-26 06:16:33',1),(1,6,3127,'2012-10-26 06:16:33',1),(1,33,3126,'2012-10-26 06:16:33',1),(1,86,3126,'2012-10-26 06:16:33',1),(1,252,3126,'2012-10-26 06:16:33',1),(1,6,3126,'2012-10-26 06:16:33',1),(1,240,3130,'2012-10-26 06:16:43',1),(1,11,3130,'2012-10-26 06:16:43',1),(1,82,3131,'2012-10-26 06:16:43',1),(1,123,3131,'2012-10-26 06:16:43',1),(1,150,3131,'2012-10-26 06:16:43',1),(1,48,3131,'2012-10-26 06:16:43',1),(1,26,3140,'2012-10-26 06:17:03',1),(1,151,3140,'2012-10-26 06:17:03',1),(1,197,3140,'2012-10-26 06:17:03',1),(1,126,3140,'2012-10-26 06:17:03',1),(1,82,3141,'2012-10-26 06:17:03',1),(1,123,3141,'2012-10-26 06:17:03',1),(1,150,3141,'2012-10-26 06:17:03',1),(1,48,3141,'2012-10-26 06:17:03',1),(1,26,3141,'2012-10-26 06:17:03',1),(1,151,3141,'2012-10-26 06:17:03',1),(1,197,3141,'2012-10-26 06:17:03',1),(1,126,3141,'2012-10-26 06:17:03',1),(1,82,3125,'2012-10-26 06:46:27',1),(1,123,3125,'2012-10-26 06:46:27',1),(1,79,3086,'2012-10-26 06:46:31',NULL),(1,154,3086,'2012-10-26 06:46:31',NULL),(1,54,3086,'2012-10-26 06:46:31',NULL),(1,72,3086,'2012-10-26 06:46:31',NULL),(1,150,3139,'2012-10-26 06:47:04',1),(1,48,3139,'2012-10-26 06:47:04',1),(1,87,3183,'2012-10-27 00:16:31',1),(1,6,3183,'2012-10-27 00:16:31',1),(1,168,3183,'2012-10-27 00:16:31',1),(1,242,3183,'2012-10-27 00:16:31',1),(1,102,3172,'2012-10-27 00:46:18',1),(1,168,3173,'2012-10-27 00:46:18',1),(1,102,3175,'2012-10-27 00:46:18',1),(1,242,3174,'2012-10-27 00:46:18',1),(1,202,3176,'2012-10-27 00:46:26',1),(1,202,3177,'2012-10-27 00:46:26',1),(1,7,3177,'2012-10-27 00:46:26',1),(1,202,3178,'2012-10-27 00:46:26',1),(1,7,3178,'2012-10-27 00:46:26',1),(1,202,3179,'2012-10-27 00:46:26',1),(1,7,3179,'2012-10-27 00:46:26',1),(1,202,3180,'2012-10-27 00:46:32',1),(1,7,3180,'2012-10-27 00:46:32',1),(1,87,3181,'2012-10-27 00:46:38',1),(1,6,3181,'2012-10-27 00:46:38',1),(1,87,3182,'2012-10-27 00:46:38',1),(1,6,3182,'2012-10-27 00:46:38',1),(1,168,3182,'2012-10-27 00:46:38',1),(1,242,3182,'2012-10-27 00:46:38',1),(1,87,3184,'2012-10-27 00:46:40',1),(1,6,3184,'2012-10-27 00:46:40',1),(1,168,3184,'2012-10-27 00:46:40',1),(1,242,3184,'2012-10-27 00:46:40',1),(1,87,3185,'2012-10-27 00:46:40',1),(1,6,3185,'2012-10-27 00:46:40',1),(1,168,3185,'2012-10-27 00:46:40',1),(1,242,3185,'2012-10-27 00:46:40',1),(1,87,3186,'2012-10-27 00:46:44',1),(1,6,3186,'2012-10-27 00:46:44',1),(1,168,3186,'2012-10-27 00:46:44',1),(1,242,3186,'2012-10-27 00:46:44',1),(1,139,3187,'2012-10-27 00:46:44',1),(1,87,3187,'2012-10-27 00:46:44',1),(1,6,3187,'2012-10-27 00:46:44',1),(1,168,3187,'2012-10-27 00:46:44',1),(1,242,3187,'2012-10-27 00:46:44',1),(1,202,3187,'2012-10-27 00:46:44',1),(1,7,3187,'2012-10-27 00:46:44',1),(1,102,3187,'2012-10-27 00:46:44',1),(1,95,3191,'2012-10-27 01:16:53',1),(1,87,3191,'2012-10-27 01:16:53',1),(1,6,3191,'2012-10-27 01:16:53',1),(1,168,3191,'2012-10-27 01:16:53',1),(1,242,3191,'2012-10-27 01:16:53',1),(1,202,3191,'2012-10-27 01:16:53',1),(1,7,3191,'2012-10-27 01:16:53',1),(1,102,3191,'2012-10-27 01:16:53',1),(1,95,3188,'2012-10-27 01:16:53',1),(1,87,3188,'2012-10-27 01:16:53',1),(1,6,3188,'2012-10-27 01:16:53',1),(1,168,3188,'2012-10-27 01:16:53',1),(1,242,3188,'2012-10-27 01:16:53',1),(1,202,3188,'2012-10-27 01:16:53',1),(1,7,3188,'2012-10-27 01:16:53',1),(1,102,3188,'2012-10-27 01:16:53',1),(1,30,3190,'2012-10-27 01:16:53',1),(1,87,3190,'2012-10-27 01:16:53',1),(1,6,3190,'2012-10-27 01:16:53',1),(1,168,3190,'2012-10-27 01:16:53',1),(1,242,3190,'2012-10-27 01:16:53',1),(1,110,3190,'2012-10-27 01:16:53',1),(1,202,3190,'2012-10-27 01:16:53',1),(1,7,3190,'2012-10-27 01:16:53',1),(1,95,3189,'2012-10-27 01:16:53',1),(1,87,3189,'2012-10-27 01:16:53',1),(1,6,3189,'2012-10-27 01:16:53',1),(1,168,3189,'2012-10-27 01:16:53',1),(1,242,3189,'2012-10-27 01:16:53',1),(1,202,3189,'2012-10-27 01:16:53',1),(1,7,3189,'2012-10-27 01:16:53',1),(1,102,3189,'2012-10-27 01:16:53',1),(1,102,3212,'2012-10-27 01:46:11',1),(1,202,3214,'2012-10-27 01:46:11',1),(1,7,3214,'2012-10-27 01:46:11',1),(1,102,3213,'2012-10-27 01:46:11',1),(1,242,3215,'2012-10-27 01:46:11',1),(1,110,3215,'2012-10-27 01:46:11',1),(1,242,3217,'2012-10-27 01:46:22',1),(1,110,3217,'2012-10-27 01:46:22',1),(1,202,3217,'2012-10-27 01:46:22',1),(1,7,3217,'2012-10-27 01:46:22',1),(1,30,3218,'2012-10-27 01:46:22',1),(1,87,3218,'2012-10-27 01:46:22',1),(1,6,3218,'2012-10-27 01:46:22',1),(1,168,3218,'2012-10-27 01:46:22',1),(1,242,3218,'2012-10-27 01:46:22',1),(1,110,3218,'2012-10-27 01:46:22',1),(1,202,3218,'2012-10-27 01:46:22',1),(1,7,3218,'2012-10-27 01:46:22',1),(1,30,3219,'2012-10-27 01:46:22',1),(1,87,3219,'2012-10-27 01:46:22',1),(1,6,3219,'2012-10-27 01:46:22',1),(1,168,3219,'2012-10-27 01:46:22',1),(1,242,3219,'2012-10-27 01:46:22',1),(1,110,3219,'2012-10-27 01:46:22',1),(1,202,3219,'2012-10-27 01:46:22',1),(1,7,3219,'2012-10-27 01:46:22',1),(1,30,3216,'2012-10-27 01:46:22',1),(1,87,3216,'2012-10-27 01:46:22',1),(1,6,3216,'2012-10-27 01:46:22',1),(1,168,3216,'2012-10-27 01:46:22',1),(1,242,3230,'2012-10-27 02:46:19',1),(1,110,3230,'2012-10-27 02:46:19',1),(1,202,3230,'2012-10-27 02:46:19',1),(1,7,3230,'2012-10-27 02:46:19',1),(1,132,3229,'2012-10-27 02:46:19',1),(1,102,3229,'2012-10-27 02:46:19',1),(1,11,3231,'2012-10-27 02:46:19',1),(1,36,3231,'2012-10-27 02:46:19',1),(1,30,3231,'2012-10-27 02:46:19',1),(1,32,3231,'2012-10-27 02:46:19',1),(1,87,3231,'2012-10-27 02:46:19',1),(1,6,3231,'2012-10-27 02:46:19',1),(1,168,3231,'2012-10-27 02:46:19',1),(1,65,3231,'2012-10-27 02:46:19',1),(1,91,3233,'2012-10-27 02:46:26',1),(1,132,3234,'2012-10-27 02:46:26',1),(1,102,3234,'2012-10-27 02:46:26',1),(1,11,3235,'2012-10-27 02:46:26',1),(1,36,3235,'2012-10-27 02:46:26',1),(1,30,3235,'2012-10-27 02:46:26',1),(1,32,3235,'2012-10-27 02:46:26',1),(1,11,3236,'2012-10-27 02:46:34',1),(1,36,3236,'2012-10-27 02:46:34',1),(1,30,3236,'2012-10-27 02:46:34',1),(1,32,3236,'2012-10-27 02:46:34',1),(1,87,3236,'2012-10-27 02:46:34',1),(1,6,3236,'2012-10-27 02:46:34',1),(1,168,3236,'2012-10-27 02:46:34',1),(1,65,3236,'2012-10-27 02:46:34',1),(1,139,3237,'2012-10-27 02:46:37',1),(1,87,3239,'2012-10-27 02:46:37',1),(1,6,3239,'2012-10-27 02:46:37',1),(1,168,3239,'2012-10-27 02:46:37',1),(1,65,3239,'2012-10-27 02:46:37',1),(1,132,3238,'2012-10-27 02:46:37',1),(1,102,3238,'2012-10-27 02:46:37',1),(1,11,3240,'2012-10-27 02:46:44',1),(1,36,3240,'2012-10-27 02:46:44',1),(1,30,3240,'2012-10-27 02:46:44',1),(1,32,3240,'2012-10-27 02:46:44',1),(1,87,3240,'2012-10-27 02:46:44',1),(1,6,3240,'2012-10-27 02:46:44',1),(1,168,3240,'2012-10-27 02:46:44',1),(1,65,3240,'2012-10-27 02:46:44',1),(1,91,3241,'2012-10-27 02:46:44',1),(1,132,3242,'2012-10-27 02:46:44',1),(1,102,3242,'2012-10-27 02:46:44',1),(1,11,3244,'2012-10-27 02:46:49',1),(1,36,3244,'2012-10-27 02:46:49',1),(1,30,3244,'2012-10-27 02:46:49',1),(1,32,3244,'2012-10-27 02:46:49',1),(1,87,3244,'2012-10-27 02:46:49',1),(1,6,3244,'2012-10-27 02:46:49',1),(1,168,3244,'2012-10-27 02:46:49',1),(1,65,3244,'2012-10-27 02:46:49',1),(1,87,3243,'2012-10-27 03:16:45',1),(1,6,3243,'2012-10-27 03:16:45',1),(1,168,3243,'2012-10-27 03:16:45',1),(1,65,3243,'2012-10-27 03:16:45',1),(1,242,3228,'2012-10-27 03:46:20',NULL),(1,110,3228,'2012-10-27 03:46:20',NULL),(1,202,3228,'2012-10-27 03:46:20',NULL),(1,7,3228,'2012-10-27 03:46:20',NULL),(1,91,3232,'2012-10-27 03:46:28',1),(1,11,3232,'2012-10-27 03:46:28',1),(1,36,3232,'2012-10-27 03:46:28',1),(1,30,3232,'2012-10-27 03:46:28',1),(1,32,3232,'2012-10-27 03:46:28',1),(1,87,3232,'2012-10-27 03:46:28',1),(1,6,3232,'2012-10-27 03:46:28',1),(1,4,3232,'2012-10-27 03:46:28',1),(1,168,3232,'2012-10-27 03:46:28',1),(1,65,3232,'2012-10-27 03:46:28',1),(1,242,3232,'2012-10-27 03:46:28',1),(1,110,3232,'2012-10-27 03:46:28',1),(1,202,3232,'2012-10-27 03:46:28',1),(1,7,3232,'2012-10-27 03:46:28',1),(1,132,3232,'2012-10-27 03:46:28',1),(1,102,3232,'2012-10-27 03:46:28',1),(1,91,3245,'2012-10-27 03:46:52',1),(1,95,3245,'2012-10-27 03:46:52',1),(1,36,3245,'2012-10-27 03:46:52',1),(1,30,3245,'2012-10-27 03:46:52',1),(1,32,3245,'2012-10-27 03:46:52',1),(1,87,3245,'2012-10-27 03:46:52',1),(1,6,3245,'2012-10-27 03:46:52',1),(1,4,3245,'2012-10-27 03:46:52',1),(1,168,3245,'2012-10-27 03:46:52',1),(1,65,3245,'2012-10-27 03:46:52',1),(1,242,3245,'2012-10-27 03:46:52',1),(1,110,3245,'2012-10-27 03:46:52',1),(1,202,3245,'2012-10-27 03:46:52',1),(1,7,3245,'2012-10-27 03:46:52',1),(1,132,3245,'2012-10-27 03:46:52',1),(1,102,3245,'2012-10-27 03:46:52',1),(1,95,3275,'2012-10-27 04:16:35',1),(1,36,3275,'2012-10-27 04:16:35',1),(1,30,3275,'2012-10-27 04:16:35',1),(1,32,3275,'2012-10-27 04:16:35',1),(1,87,3275,'2012-10-27 04:16:35',1),(1,6,3275,'2012-10-27 04:16:35',1),(1,4,3275,'2012-10-27 04:16:35',1),(1,168,3275,'2012-10-27 04:16:35',1),(1,65,3275,'2012-10-27 04:16:35',1),(1,242,3275,'2012-10-27 04:16:35',1),(1,110,3275,'2012-10-27 04:16:35',1),(1,202,3275,'2012-10-27 04:16:35',1),(1,7,3275,'2012-10-27 04:16:35',1),(1,132,3275,'2012-10-27 04:16:35',1),(1,102,3275,'2012-10-27 04:16:35',1),(1,228,3275,'2012-10-27 04:16:35',1),(1,242,3277,'2012-10-27 04:16:44',1),(1,110,3277,'2012-10-27 04:16:44',1),(1,202,3277,'2012-10-27 04:16:44',1),(1,7,3277,'2012-10-27 04:16:44',1),(1,132,3276,'2012-10-27 04:16:44',1),(1,102,3276,'2012-10-27 04:16:44',1),(1,36,3278,'2012-10-27 04:16:44',1),(1,30,3278,'2012-10-27 04:16:44',1),(1,32,3278,'2012-10-27 04:16:44',1),(1,87,3278,'2012-10-27 04:16:44',1),(1,6,3278,'2012-10-27 04:16:44',1),(1,4,3278,'2012-10-27 04:16:44',1),(1,168,3278,'2012-10-27 04:16:44',1),(1,65,3278,'2012-10-27 04:16:44',1),(1,132,3286,'2012-10-27 04:16:59',1),(1,102,3286,'2012-10-27 04:16:59',1),(1,228,3285,'2012-10-27 04:16:59',1),(1,242,3287,'2012-10-27 04:16:59',1),(1,110,3287,'2012-10-27 04:16:59',1),(1,202,3287,'2012-10-27 04:16:59',1),(1,7,3287,'2012-10-27 04:16:59',1),(1,36,3288,'2012-10-27 04:17:07',1),(1,30,3288,'2012-10-27 04:17:07',1),(1,32,3288,'2012-10-27 04:17:07',1),(1,87,3288,'2012-10-27 04:17:07',1),(1,6,3288,'2012-10-27 04:17:07',1),(1,4,3288,'2012-10-27 04:17:07',1),(1,168,3288,'2012-10-27 04:17:07',1),(1,65,3288,'2012-10-27 04:17:07',1),(1,91,3265,'2012-10-27 04:46:19',NULL),(1,36,3279,'2012-10-27 04:46:45',1),(1,30,3279,'2012-10-27 04:46:45',1),(1,32,3279,'2012-10-27 04:46:45',1),(1,87,3279,'2012-10-27 04:46:45',1),(1,6,3279,'2012-10-27 04:46:45',1),(1,4,3279,'2012-10-27 04:46:45',1),(1,168,3279,'2012-10-27 04:46:45',1),(1,65,3279,'2012-10-27 04:46:45',1),(1,242,3279,'2012-10-27 04:46:45',1),(1,110,3279,'2012-10-27 04:46:45',1),(1,202,3279,'2012-10-27 04:46:45',1),(1,7,3279,'2012-10-27 04:46:45',1),(1,132,3279,'2012-10-27 04:46:45',1),(1,102,3279,'2012-10-27 04:46:45',1),(1,228,3279,'2012-10-27 04:46:45',1),(1,91,3279,'2012-10-27 04:46:45',1),(1,11,3264,'2012-10-27 05:16:21',1),(1,30,3270,'2012-10-27 05:16:29',NULL),(1,32,3270,'2012-10-27 05:16:29',NULL),(1,87,3270,'2012-10-27 05:16:29',NULL),(1,6,3270,'2012-10-27 05:16:29',NULL),(1,4,3270,'2012-10-27 05:16:29',NULL),(1,168,3270,'2012-10-27 05:16:29',NULL),(1,65,3270,'2012-10-27 05:16:29',NULL),(1,242,3270,'2012-10-27 05:16:29',NULL),(1,36,3284,'2012-10-27 05:17:01',1),(1,30,3284,'2012-10-27 05:17:01',1),(1,32,3284,'2012-10-27 05:17:01',1),(1,87,3284,'2012-10-27 05:17:01',1),(1,6,3284,'2012-10-27 05:17:01',1),(1,4,3284,'2012-10-27 05:17:01',1),(1,168,3284,'2012-10-27 05:17:01',1),(1,65,3284,'2012-10-27 05:17:01',1),(1,242,3284,'2012-10-27 05:17:01',1),(1,110,3284,'2012-10-27 05:17:01',1),(1,202,3284,'2012-10-27 05:17:01',1),(1,7,3284,'2012-10-27 05:17:01',1),(1,132,3284,'2012-10-27 05:17:01',1),(1,102,3284,'2012-10-27 05:17:01',1),(1,228,3284,'2012-10-27 05:17:01',1),(1,91,3284,'2012-10-27 05:17:01',1),(1,11,3271,'2012-10-27 05:46:33',NULL),(1,110,3271,'2012-10-27 05:46:33',NULL),(1,202,3271,'2012-10-27 05:46:33',NULL),(1,7,3271,'2012-10-27 05:46:33',NULL),(1,132,3271,'2012-10-27 05:46:33',NULL),(1,102,3271,'2012-10-27 05:46:33',NULL),(1,228,3271,'2012-10-27 05:46:33',NULL),(1,91,3271,'2012-10-27 05:46:33',NULL),(1,30,3274,'2012-10-27 05:46:40',1),(1,32,3274,'2012-10-27 05:46:40',1),(1,87,3274,'2012-10-27 05:46:40',1),(1,6,3274,'2012-10-27 05:46:40',1),(1,4,3274,'2012-10-27 05:46:40',1),(1,168,3274,'2012-10-27 05:46:40',1),(1,65,3274,'2012-10-27 05:46:40',1),(1,242,3274,'2012-10-27 05:46:40',1),(1,11,3268,'2012-10-27 06:16:31',NULL),(1,110,3268,'2012-10-27 06:16:31',NULL),(1,202,3268,'2012-10-27 06:16:31',NULL),(1,7,3268,'2012-10-27 06:16:31',NULL),(1,132,3269,'2012-10-27 06:16:32',1),(1,102,3269,'2012-10-27 06:16:32',1),(1,228,3269,'2012-10-27 06:16:32',1),(1,91,3269,'2012-10-27 06:16:32',1),(1,11,3273,'2012-10-27 06:16:42',1),(1,110,3273,'2012-10-27 06:16:42',1),(1,202,3273,'2012-10-27 06:16:42',1),(1,7,3273,'2012-10-27 06:16:42',1),(1,30,3272,'2012-10-27 06:16:42',1),(1,32,3272,'2012-10-27 06:16:42',1),(1,30,3282,'2012-10-27 06:16:56',1),(1,32,3282,'2012-10-27 06:16:56',1),(1,87,3282,'2012-10-27 06:16:56',1),(1,6,3282,'2012-10-27 06:16:56',1),(1,11,3280,'2012-10-27 06:16:56',1),(1,87,3281,'2012-10-27 06:16:56',1),(1,6,3281,'2012-10-27 06:16:56',1),(1,30,3283,'2012-10-27 06:16:59',1),(1,32,3283,'2012-10-27 06:16:59',1),(1,87,3283,'2012-10-27 06:16:59',1),(1,6,3283,'2012-10-27 06:16:59',1),(1,4,3283,'2012-10-27 06:16:59',1),(1,168,3283,'2012-10-27 06:16:59',1),(1,65,3283,'2012-10-27 06:16:59',1),(1,242,3283,'2012-10-27 06:16:59',1),(1,4,3266,'2012-10-27 06:46:24',NULL),(1,168,3266,'2012-10-27 06:46:24',NULL),(1,65,3267,'2012-10-27 06:46:24',1),(1,242,3267,'2012-10-27 06:46:24',1),(1,220,3314,'2012-10-28 00:46:17',1),(1,94,3315,'2012-10-28 00:46:17',1),(1,28,3316,'2012-10-28 00:46:17',1),(1,230,3317,'2012-10-28 00:46:17',1),(1,49,3318,'2012-10-28 00:46:28',1),(1,11,3319,'2012-10-28 00:46:28',1),(1,219,3319,'2012-10-28 00:46:28',1),(1,220,3320,'2012-10-28 00:46:28',1),(1,28,3320,'2012-10-28 00:46:28',1),(1,141,3321,'2012-10-28 00:46:28',1),(1,5,3321,'2012-10-28 00:46:28',1),(1,5,3323,'2012-10-28 00:46:34',1),(1,200,3323,'2012-10-28 00:46:34',1),(1,5,3324,'2012-10-28 00:46:34',1),(1,198,3324,'2012-10-28 00:46:34',1),(1,205,3324,'2012-10-28 00:46:34',1),(1,207,3324,'2012-10-28 00:46:34',1),(1,89,3325,'2012-10-28 00:46:34',1),(1,220,3325,'2012-10-28 00:46:34',1),(1,28,3325,'2012-10-28 00:46:34',1),(1,5,3325,'2012-10-28 00:46:34',1),(1,49,3322,'2012-10-28 00:46:34',1),(1,207,3322,'2012-10-28 00:46:34',1),(1,141,3328,'2012-10-28 00:46:43',1),(1,89,3328,'2012-10-28 00:46:43',1),(1,220,3328,'2012-10-28 00:46:43',1),(1,28,3328,'2012-10-28 00:46:43',1),(1,230,3327,'2012-10-28 00:46:43',1),(1,198,3327,'2012-10-28 00:46:43',1),(1,205,3327,'2012-10-28 00:46:43',1),(1,67,3327,'2012-10-28 00:46:43',1),(1,94,3329,'2012-10-28 00:46:43',1),(1,133,3329,'2012-10-28 00:46:43',1),(1,184,3329,'2012-10-28 00:46:43',1),(1,237,3329,'2012-10-28 00:46:43',1),(1,89,3329,'2012-10-28 00:46:43',1),(1,11,3329,'2012-10-28 00:46:43',1),(1,198,3329,'2012-10-28 00:46:43',1),(1,207,3329,'2012-10-28 00:46:43',1),(1,160,3326,'2012-10-28 00:46:43',1),(1,184,3326,'2012-10-28 00:46:43',1),(1,227,3326,'2012-10-28 00:46:43',1),(1,237,3326,'2012-10-28 00:46:43',1),(1,94,3332,'2012-10-28 00:46:51',1),(1,133,3332,'2012-10-28 00:46:51',1),(1,184,3332,'2012-10-28 00:46:51',1),(1,227,3332,'2012-10-28 00:46:51',1),(1,237,3332,'2012-10-28 00:46:51',1),(1,141,3332,'2012-10-28 00:46:51',1),(1,89,3332,'2012-10-28 00:46:51',1),(1,11,3332,'2012-10-28 00:46:51',1),(1,94,3330,'2012-10-28 00:46:51',1),(1,133,3330,'2012-10-28 00:46:51',1),(1,184,3330,'2012-10-28 00:46:51',1),(1,227,3330,'2012-10-28 00:46:51',1),(1,237,3330,'2012-10-28 00:46:51',1),(1,141,3330,'2012-10-28 00:46:51',1),(1,89,3330,'2012-10-28 00:46:51',1),(1,11,3330,'2012-10-28 00:46:51',1),(1,94,3331,'2012-10-28 00:46:51',1),(1,160,3331,'2012-10-28 00:46:51',1),(1,133,3331,'2012-10-28 00:46:51',1),(1,184,3331,'2012-10-28 00:46:51',1),(1,227,3331,'2012-10-28 00:46:51',1),(1,237,3331,'2012-10-28 00:46:51',1),(1,141,3331,'2012-10-28 00:46:51',1),(1,89,3331,'2012-10-28 00:46:51',1),(1,220,3333,'2012-10-28 00:46:51',1),(1,28,3333,'2012-10-28 00:46:51',1),(1,5,3333,'2012-10-28 00:46:51',1),(1,230,3333,'2012-10-28 00:46:51',1),(1,198,3333,'2012-10-28 00:46:51',1),(1,205,3333,'2012-10-28 00:46:51',1),(1,49,3333,'2012-10-28 00:46:51',1),(1,207,3333,'2012-10-28 00:46:51',1),(1,219,3354,'2012-10-28 01:46:13',1),(1,229,3356,'2012-10-28 01:46:13',1),(1,131,3356,'2012-10-28 01:46:13',1),(1,28,3355,'2012-10-28 01:46:13',1),(1,184,3357,'2012-10-28 01:46:13',1),(1,141,3357,'2012-10-28 01:46:13',1),(1,184,3358,'2012-10-28 01:46:26',1),(1,141,3358,'2012-10-28 01:46:26',1),(1,28,3358,'2012-10-28 01:46:26',1),(1,49,3358,'2012-10-28 01:46:26',1),(1,184,3360,'2012-10-28 01:46:26',1),(1,141,3360,'2012-10-28 01:46:26',1),(1,28,3360,'2012-10-28 01:46:26',1),(1,229,3360,'2012-10-28 01:46:26',1),(1,131,3360,'2012-10-28 01:46:26',1),(1,219,3360,'2012-10-28 01:46:26',1),(1,200,3360,'2012-10-28 01:46:26',1),(1,67,3360,'2012-10-28 01:46:26',1),(1,229,3359,'2012-10-28 01:46:26',1),(1,131,3359,'2012-10-28 01:46:26',1),(1,200,3359,'2012-10-28 01:46:26',1),(1,67,3359,'2012-10-28 01:46:26',1),(1,229,3361,'2012-10-28 01:46:26',1),(1,131,3361,'2012-10-28 01:46:26',1),(1,219,3361,'2012-10-28 01:46:26',1),(1,200,3361,'2012-10-28 01:46:26',1),(1,67,3361,'2012-10-28 01:46:26',1),(1,228,3361,'2012-10-28 01:46:26',1),(1,91,3361,'2012-10-28 01:46:26',1),(1,6,3361,'2012-10-28 01:46:26',1),(1,47,3373,'2012-10-28 02:46:15',1),(1,39,3373,'2012-10-28 02:46:15',1),(1,5,3373,'2012-10-28 02:46:15',1),(1,229,3373,'2012-10-28 02:46:15',1),(1,131,3373,'2012-10-28 02:46:15',1),(1,219,3373,'2012-10-28 02:46:15',1),(1,199,3373,'2012-10-28 02:46:15',1),(1,200,3373,'2012-10-28 02:46:15',1),(1,91,3371,'2012-10-28 02:46:15',1),(1,6,3371,'2012-10-28 02:46:15',1),(1,249,3372,'2012-10-28 02:46:15',1),(1,184,3372,'2012-10-28 02:46:15',1),(1,237,3372,'2012-10-28 02:46:15',1),(1,246,3372,'2012-10-28 02:46:15',1),(1,4,3375,'2012-10-28 02:46:24',1),(1,91,3376,'2012-10-28 02:46:24',1),(1,6,3376,'2012-10-28 02:46:24',1),(1,249,3374,'2012-10-28 02:46:24',1),(1,184,3374,'2012-10-28 02:46:24',1),(1,237,3374,'2012-10-28 02:46:24',1),(1,246,3374,'2012-10-28 02:46:24',1),(1,141,3374,'2012-10-28 02:46:24',1),(1,121,3374,'2012-10-28 02:46:24',1),(1,11,3374,'2012-10-28 02:46:24',1),(1,220,3374,'2012-10-28 02:46:24',1),(1,40,3374,'2012-10-28 02:46:24',1),(1,41,3374,'2012-10-28 02:46:24',1),(1,71,3374,'2012-10-28 02:46:24',1),(1,44,3374,'2012-10-28 02:46:24',1),(1,12,3374,'2012-10-28 02:46:24',1),(1,28,3374,'2012-10-28 02:46:24',1),(1,186,3374,'2012-10-28 02:46:24',1),(1,232,3374,'2012-10-28 02:46:24',1),(1,141,3377,'2012-10-28 02:46:26',1),(1,121,3377,'2012-10-28 02:46:26',1),(1,11,3377,'2012-10-28 02:46:26',1),(1,220,3377,'2012-10-28 02:46:26',1),(1,4,3379,'2012-10-28 02:46:33',1),(1,47,3378,'2012-10-28 02:46:33',1),(1,39,3378,'2012-10-28 02:46:33',1),(1,5,3378,'2012-10-28 02:46:33',1),(1,229,3378,'2012-10-28 02:46:33',1),(1,131,3378,'2012-10-28 02:46:33',1),(1,219,3378,'2012-10-28 02:46:33',1),(1,199,3378,'2012-10-28 02:46:33',1),(1,200,3378,'2012-10-28 02:46:33',1),(1,40,3381,'2012-10-28 02:46:33',1),(1,41,3381,'2012-10-28 02:46:33',1),(1,71,3381,'2012-10-28 02:46:33',1),(1,44,3381,'2012-10-28 02:46:33',1),(1,91,3380,'2012-10-28 02:46:33',1),(1,6,3380,'2012-10-28 02:46:33',1),(1,47,3382,'2012-10-28 02:46:40',1),(1,39,3382,'2012-10-28 02:46:40',1),(1,5,3382,'2012-10-28 02:46:40',1),(1,229,3382,'2012-10-28 02:46:40',1),(1,131,3382,'2012-10-28 02:46:40',1),(1,219,3382,'2012-10-28 02:46:40',1),(1,199,3382,'2012-10-28 02:46:40',1),(1,200,3382,'2012-10-28 02:46:40',1),(1,91,3384,'2012-10-28 02:46:40',1),(1,6,3384,'2012-10-28 02:46:40',1),(1,4,3383,'2012-10-28 02:46:40',1),(1,12,3385,'2012-10-28 02:46:40',1),(1,28,3385,'2012-10-28 02:46:40',1),(1,186,3385,'2012-10-28 02:46:40',1),(1,232,3385,'2012-10-28 02:46:40',1),(1,249,3387,'2012-10-28 02:46:51',1),(1,184,3387,'2012-10-28 02:46:51',1),(1,237,3387,'2012-10-28 02:46:51',1),(1,246,3387,'2012-10-28 02:46:51',1),(1,141,3387,'2012-10-28 02:46:51',1),(1,121,3387,'2012-10-28 02:46:51',1),(1,11,3387,'2012-10-28 02:46:51',1),(1,220,3387,'2012-10-28 02:46:51',1),(1,40,3387,'2012-10-28 02:46:51',1),(1,41,3387,'2012-10-28 02:46:51',1),(1,71,3387,'2012-10-28 02:46:51',1),(1,44,3387,'2012-10-28 02:46:51',1),(1,12,3387,'2012-10-28 02:46:51',1),(1,28,3387,'2012-10-28 02:46:51',1),(1,186,3387,'2012-10-28 02:46:51',1),(1,232,3387,'2012-10-28 02:46:51',1),(1,47,3386,'2012-10-28 02:46:51',1),(1,39,3386,'2012-10-28 02:46:51',1),(1,5,3386,'2012-10-28 02:46:51',1),(1,229,3386,'2012-10-28 02:46:51',1),(1,131,3386,'2012-10-28 02:46:51',1),(1,219,3386,'2012-10-28 02:46:51',1),(1,199,3386,'2012-10-28 02:46:51',1),(1,200,3386,'2012-10-28 02:46:51',1),(1,249,3406,'2012-10-28 03:46:17',1),(1,205,3370,'2012-10-28 03:46:17',NULL),(1,67,3370,'2012-10-28 03:46:17',NULL),(1,49,3370,'2012-10-28 03:46:17',NULL),(1,228,3370,'2012-10-28 03:46:17',NULL),(1,47,3412,'2012-10-28 03:46:26',NULL),(1,39,3412,'2012-10-28 03:46:26',NULL),(1,5,3412,'2012-10-28 03:46:26',NULL),(1,229,3412,'2012-10-28 03:46:26',NULL),(1,131,3412,'2012-10-28 03:46:26',NULL),(1,218,3412,'2012-10-28 03:46:26',NULL),(1,219,3412,'2012-10-28 03:46:26',NULL),(1,199,3412,'2012-10-28 03:46:26',NULL),(1,200,3411,'2012-10-28 03:46:26',1),(1,91,3411,'2012-10-28 03:46:26',1),(1,6,3411,'2012-10-28 03:46:26',1),(1,4,3411,'2012-10-28 03:46:26',1),(1,205,3410,'2012-10-28 03:46:26',1),(1,67,3410,'2012-10-28 03:46:26',1),(1,49,3410,'2012-10-28 03:46:26',1),(1,228,3410,'2012-10-28 03:46:26',1),(1,184,3417,'2012-10-28 03:46:37',NULL),(1,237,3417,'2012-10-28 03:46:37',NULL),(1,246,3417,'2012-10-28 03:46:37',NULL),(1,141,3417,'2012-10-28 03:46:37',NULL),(1,138,3417,'2012-10-28 03:46:37',NULL),(1,121,3417,'2012-10-28 03:46:37',NULL),(1,11,3417,'2012-10-28 03:46:37',NULL),(1,220,3417,'2012-10-28 03:46:37',NULL),(1,40,3417,'2012-10-28 03:46:37',NULL),(1,41,3417,'2012-10-28 03:46:37',NULL),(1,71,3417,'2012-10-28 03:46:37',NULL),(1,44,3417,'2012-10-28 03:46:37',NULL),(1,12,3417,'2012-10-28 03:46:37',NULL),(1,28,3417,'2012-10-28 03:46:37',NULL),(1,186,3417,'2012-10-28 03:46:37',NULL),(1,232,3417,'2012-10-28 03:46:37',NULL),(1,205,3415,'2012-10-28 03:46:37',1),(1,67,3415,'2012-10-28 03:46:37',1),(1,49,3415,'2012-10-28 03:46:37',1),(1,228,3415,'2012-10-28 03:46:37',1),(1,205,3419,'2012-10-28 03:46:43',1),(1,67,3419,'2012-10-28 03:46:43',1),(1,49,3419,'2012-10-28 03:46:43',1),(1,228,3419,'2012-10-28 03:46:43',1),(1,47,3420,'2012-10-28 03:46:43',1),(1,39,3420,'2012-10-28 03:46:43',1),(1,5,3420,'2012-10-28 03:46:43',1),(1,229,3420,'2012-10-28 03:46:43',1),(1,131,3420,'2012-10-28 03:46:43',1),(1,218,3420,'2012-10-28 03:46:43',1),(1,219,3420,'2012-10-28 03:46:43',1),(1,199,3420,'2012-10-28 03:46:43',1),(1,125,3407,'2012-10-28 04:16:18',1),(1,49,3414,'2012-10-28 04:16:37',1),(1,228,3414,'2012-10-28 04:16:37',1),(1,184,3421,'2012-10-28 04:16:45',1),(1,237,3421,'2012-10-28 04:16:45',1),(1,246,3421,'2012-10-28 04:16:45',1),(1,141,3421,'2012-10-28 04:16:45',1),(1,138,3421,'2012-10-28 04:16:45',1),(1,121,3421,'2012-10-28 04:16:45',1),(1,11,3421,'2012-10-28 04:16:45',1),(1,220,3421,'2012-10-28 04:16:45',1),(1,40,3421,'2012-10-28 04:16:45',1),(1,41,3421,'2012-10-28 04:16:45',1),(1,71,3421,'2012-10-28 04:16:45',1),(1,44,3421,'2012-10-28 04:16:45',1),(1,12,3421,'2012-10-28 04:16:45',1),(1,28,3421,'2012-10-28 04:16:45',1),(1,186,3421,'2012-10-28 04:16:45',1),(1,232,3421,'2012-10-28 04:16:45',1),(1,49,3418,'2012-10-28 04:16:45',1),(1,228,3418,'2012-10-28 04:16:45',1),(1,205,3424,'2012-10-28 04:16:51',1),(1,67,3424,'2012-10-28 04:16:51',1),(1,49,3424,'2012-10-28 04:16:51',1),(1,228,3424,'2012-10-28 04:16:51',1),(1,4,3422,'2012-10-28 04:16:51',1),(1,49,3423,'2012-10-28 04:16:51',1),(1,228,3423,'2012-10-28 04:16:51',1),(1,47,3426,'2012-10-28 04:16:59',1),(1,39,3426,'2012-10-28 04:16:59',1),(1,5,3426,'2012-10-28 04:16:59',1),(1,229,3426,'2012-10-28 04:16:59',1),(1,131,3426,'2012-10-28 04:16:59',1),(1,218,3426,'2012-10-28 04:16:59',1),(1,219,3426,'2012-10-28 04:16:59',1),(1,199,3426,'2012-10-28 04:16:59',1),(1,200,3426,'2012-10-28 04:16:59',1),(1,205,3426,'2012-10-28 04:16:59',1),(1,67,3426,'2012-10-28 04:16:59',1),(1,49,3426,'2012-10-28 04:16:59',1),(1,228,3426,'2012-10-28 04:16:59',1),(1,91,3426,'2012-10-28 04:16:59',1),(1,6,3426,'2012-10-28 04:16:59',1),(1,4,3426,'2012-10-28 04:16:59',1),(1,91,3427,'2012-10-28 04:17:01',1),(1,47,3428,'2012-10-28 04:17:01',1),(1,4,3428,'2012-10-28 04:17:01',1),(1,205,3429,'2012-10-28 04:17:01',1),(1,67,3429,'2012-10-28 04:17:01',1),(1,49,3429,'2012-10-28 04:17:01',1),(1,228,3429,'2012-10-28 04:17:01',1),(1,47,3430,'2012-10-28 04:17:10',1),(1,39,3430,'2012-10-28 04:17:10',1),(1,5,3430,'2012-10-28 04:17:10',1),(1,229,3430,'2012-10-28 04:17:10',1),(1,131,3430,'2012-10-28 04:17:10',1),(1,218,3430,'2012-10-28 04:17:10',1),(1,219,3430,'2012-10-28 04:17:10',1),(1,199,3430,'2012-10-28 04:17:10',1),(1,205,3408,'2012-10-28 04:46:20',1),(1,67,3408,'2012-10-28 04:46:20',1),(1,91,3409,'2012-10-28 04:46:23',1),(1,6,3409,'2012-10-28 04:46:23',1),(1,39,3413,'2012-10-28 04:46:29',1),(1,5,3413,'2012-10-28 04:46:29',1),(1,229,3413,'2012-10-28 04:46:29',1),(1,131,3413,'2012-10-28 04:46:29',1),(1,218,3413,'2012-10-28 04:46:29',1),(1,219,3413,'2012-10-28 04:46:29',1),(1,199,3413,'2012-10-28 04:46:29',1),(1,200,3413,'2012-10-28 04:46:29',1),(1,160,3416,'2012-10-28 04:46:40',1),(1,184,3416,'2012-10-28 04:46:40',1),(1,237,3416,'2012-10-28 04:46:40',1),(1,246,3416,'2012-10-28 04:46:40',1),(1,141,3416,'2012-10-28 04:46:40',1),(1,138,3416,'2012-10-28 04:46:40',1),(1,121,3416,'2012-10-28 04:46:40',1),(1,11,3416,'2012-10-28 04:46:40',1),(1,220,3425,'2012-10-28 04:46:53',1),(1,40,3425,'2012-10-28 04:46:53',1),(1,41,3425,'2012-10-28 04:46:53',1),(1,71,3425,'2012-10-28 04:46:53',1),(1,44,3425,'2012-10-28 04:46:53',1),(1,12,3425,'2012-10-28 04:46:53',1),(1,28,3425,'2012-10-28 04:46:53',1),(1,186,3425,'2012-10-28 04:46:53',1),(1,96,3456,'2012-10-29 00:46:19',1),(1,88,3457,'2012-10-29 00:46:19',1),(1,88,3458,'2012-10-29 00:46:19',1),(1,88,3459,'2012-10-29 00:46:22',1),(1,211,3460,'2012-10-29 00:46:27',1),(1,16,3461,'2012-10-29 00:46:27',1),(1,227,3461,'2012-10-29 00:46:27',1),(1,6,3462,'2012-10-29 00:46:28',1),(1,4,3462,'2012-10-29 00:46:28',1),(1,211,3463,'2012-10-29 00:46:30',1),(1,221,3463,'2012-10-29 00:46:30',1),(1,223,3465,'2012-10-29 00:46:35',1),(1,228,3465,'2012-10-29 00:46:35',1),(1,231,3464,'2012-10-29 00:46:35',1),(1,230,3464,'2012-10-29 00:46:35',1),(1,230,3466,'2012-10-29 00:46:37',1),(1,6,3466,'2012-10-29 00:46:37',1),(1,4,3466,'2012-10-29 00:46:37',1),(1,16,3466,'2012-10-29 00:46:37',1),(1,230,3467,'2012-10-29 00:46:37',1),(1,4,3467,'2012-10-29 00:46:37',1),(1,6,3467,'2012-10-29 00:46:37',1),(1,88,3467,'2012-10-29 00:46:37',1),(1,230,3468,'2012-10-29 00:46:42',1),(1,6,3468,'2012-10-29 00:46:42',1),(1,4,3468,'2012-10-29 00:46:42',1),(1,16,3468,'2012-10-29 00:46:42',1),(1,230,3470,'2012-10-29 00:46:42',1),(1,6,3470,'2012-10-29 00:46:42',1),(1,4,3470,'2012-10-29 00:46:42',1),(1,16,3470,'2012-10-29 00:46:42',1),(1,230,3469,'2012-10-29 00:46:42',1),(1,6,3469,'2012-10-29 00:46:42',1),(1,4,3469,'2012-10-29 00:46:42',1),(1,16,3469,'2012-10-29 00:46:42',1),(1,96,3471,'2012-10-29 00:46:42',1),(1,134,3471,'2012-10-29 00:46:42',1),(1,73,3471,'2012-10-29 00:46:42',1),(1,60,3471,'2012-10-29 00:46:42',1),(1,231,3471,'2012-10-29 00:46:42',1),(1,230,3471,'2012-10-29 00:46:42',1),(1,6,3471,'2012-10-29 00:46:42',1),(1,4,3471,'2012-10-29 00:46:42',1),(1,16,3474,'2012-10-29 00:46:50',1),(1,96,3474,'2012-10-29 00:46:50',1),(1,227,3474,'2012-10-29 00:46:50',1),(1,134,3474,'2012-10-29 00:46:50',1),(1,73,3474,'2012-10-29 00:46:50',1),(1,60,3474,'2012-10-29 00:46:50',1),(1,6,3474,'2012-10-29 00:46:50',1),(1,4,3474,'2012-10-29 00:46:50',1),(1,16,3472,'2012-10-29 00:46:50',1),(1,88,3472,'2012-10-29 00:46:50',1),(1,96,3472,'2012-10-29 00:46:50',1),(1,227,3472,'2012-10-29 00:46:50',1),(1,134,3472,'2012-10-29 00:46:50',1),(1,189,3472,'2012-10-29 00:46:50',1),(1,73,3472,'2012-10-29 00:46:50',1),(1,6,3472,'2012-10-29 00:46:50',1),(1,16,3473,'2012-10-29 00:46:50',1),(1,88,3473,'2012-10-29 00:46:50',1),(1,96,3473,'2012-10-29 00:46:50',1),(1,227,3473,'2012-10-29 00:46:50',1),(1,134,3473,'2012-10-29 00:46:50',1),(1,73,3473,'2012-10-29 00:46:50',1),(1,6,3473,'2012-10-29 00:46:50',1),(1,4,3473,'2012-10-29 00:46:50',1),(1,16,3475,'2012-10-29 00:46:50',1),(1,88,3475,'2012-10-29 00:46:50',1),(1,96,3475,'2012-10-29 00:46:50',1),(1,227,3475,'2012-10-29 00:46:50',1),(1,134,3475,'2012-10-29 00:46:50',1),(1,189,3475,'2012-10-29 00:46:50',1),(1,73,3475,'2012-10-29 00:46:50',1),(1,6,3475,'2012-10-29 00:46:50',1),(1,104,3496,'2012-10-29 01:47:12',1),(1,211,3497,'2012-10-29 01:47:12',1),(1,227,3498,'2012-10-29 01:47:12',1),(1,85,3498,'2012-10-29 01:47:12',1),(1,198,3499,'2012-10-29 01:47:15',1),(1,211,3499,'2012-10-29 01:47:15',1),(1,10,3500,'2012-10-29 01:47:32',1),(1,4,3500,'2012-10-29 01:47:32',1),(1,6,3500,'2012-10-29 01:47:32',1),(1,189,3500,'2012-10-29 01:47:32',1),(1,10,3501,'2012-10-29 01:47:35',1),(1,4,3501,'2012-10-29 01:47:35',1),(1,6,3501,'2012-10-29 01:47:35',1),(1,189,3501,'2012-10-29 01:47:35',1),(1,227,3502,'2012-10-29 01:47:36',1),(1,189,3502,'2012-10-29 01:47:36',1),(1,85,3502,'2012-10-29 01:47:36',1),(1,17,3502,'2012-10-29 01:47:36',1),(1,73,3502,'2012-10-29 01:47:36',1),(1,10,3502,'2012-10-29 01:47:36',1),(1,6,3502,'2012-10-29 01:47:36',1),(1,4,3502,'2012-10-29 01:47:36',1),(1,189,3503,'2012-10-29 01:47:36',1),(1,17,3503,'2012-10-29 01:47:36',1),(1,73,3503,'2012-10-29 01:47:36',1),(1,10,3503,'2012-10-29 01:47:36',1),(1,198,3503,'2012-10-29 01:47:36',1),(1,104,3503,'2012-10-29 01:47:36',1),(1,6,3503,'2012-10-29 01:47:36',1),(1,4,3503,'2012-10-29 01:47:36',1),(1,68,3514,'2012-10-29 02:46:19',1),(1,81,3514,'2012-10-29 02:46:19',1),(1,222,3514,'2012-10-29 02:46:19',1),(1,6,3514,'2012-10-29 02:46:19',1),(1,20,3515,'2012-10-29 02:46:20',1),(1,244,3515,'2012-10-29 02:46:20',1),(1,189,3515,'2012-10-29 02:46:20',1),(1,17,3515,'2012-10-29 02:46:20',1),(1,73,3515,'2012-10-29 02:46:20',1),(1,60,3515,'2012-10-29 02:46:20',1),(1,231,3515,'2012-10-29 02:46:20',1),(1,198,3515,'2012-10-29 02:46:20',1),(1,4,3517,'2012-10-29 02:46:31',1),(1,222,3513,'2012-10-29 03:16:20',1),(1,6,3513,'2012-10-29 03:16:20',1),(1,20,3516,'2012-10-29 03:16:31',1),(1,133,3516,'2012-10-29 03:16:31',1),(1,16,3516,'2012-10-29 03:16:31',1),(1,244,3516,'2012-10-29 03:16:31',1),(1,134,3516,'2012-10-29 03:16:31',1),(1,189,3516,'2012-10-29 03:16:31',1),(1,17,3516,'2012-10-29 03:16:31',1),(1,73,3516,'2012-10-29 03:16:31',1),(1,59,3516,'2012-10-29 03:16:31',1),(1,60,3516,'2012-10-29 03:16:31',1),(1,215,3516,'2012-10-29 03:16:31',1),(1,231,3516,'2012-10-29 03:16:31',1),(1,198,3516,'2012-10-29 03:16:31',1),(1,77,3516,'2012-10-29 03:16:31',1),(1,68,3516,'2012-10-29 03:16:31',1),(1,81,3516,'2012-10-29 03:16:31',1),(1,222,3518,'2012-10-29 03:16:33',1),(1,6,3518,'2012-10-29 03:16:33',1),(1,4,3521,'2012-10-29 03:16:46',1),(1,20,3559,'2012-10-29 03:46:55',1),(1,133,3559,'2012-10-29 03:46:55',1),(1,16,3559,'2012-10-29 03:46:55',1),(1,244,3559,'2012-10-29 03:46:55',1),(1,134,3559,'2012-10-29 03:46:55',1),(1,189,3559,'2012-10-29 03:46:55',1),(1,85,3559,'2012-10-29 03:46:55',1),(1,17,3559,'2012-10-29 03:46:55',1),(1,73,3559,'2012-10-29 03:46:55',1),(1,59,3559,'2012-10-29 03:46:55',1),(1,60,3559,'2012-10-29 03:46:55',1),(1,215,3559,'2012-10-29 03:46:55',1),(1,231,3559,'2012-10-29 03:46:55',1),(1,198,3559,'2012-10-29 03:46:55',1),(1,77,3559,'2012-10-29 03:46:55',1),(1,68,3559,'2012-10-29 03:46:55',1),(1,4,3525,'2012-10-29 03:47:24',1),(1,20,3529,'2012-10-29 03:47:27',1),(1,133,3529,'2012-10-29 03:47:27',1),(1,16,3529,'2012-10-29 03:47:27',1),(1,244,3529,'2012-10-29 03:47:27',1),(1,134,3529,'2012-10-29 03:47:27',1),(1,189,3529,'2012-10-29 03:47:27',1),(1,17,3529,'2012-10-29 03:47:27',1),(1,73,3529,'2012-10-29 03:47:27',1),(1,59,3529,'2012-10-29 03:47:27',1),(1,60,3529,'2012-10-29 03:47:27',1),(1,215,3529,'2012-10-29 03:47:27',1),(1,231,3529,'2012-10-29 03:47:27',1),(1,198,3529,'2012-10-29 03:47:27',1),(1,77,3529,'2012-10-29 03:47:27',1),(1,68,3529,'2012-10-29 03:47:27',1),(1,81,3529,'2012-10-29 03:47:27',1),(1,68,3548,'2012-10-29 04:16:39',1),(1,20,3563,'2012-10-29 04:17:09',1),(1,160,3563,'2012-10-29 04:17:09',1),(1,133,3563,'2012-10-29 04:17:09',1),(1,16,3563,'2012-10-29 04:17:09',1),(1,244,3563,'2012-10-29 04:17:09',1),(1,134,3563,'2012-10-29 04:17:09',1),(1,189,3563,'2012-10-29 04:17:09',1),(1,85,3563,'2012-10-29 04:17:09',1),(1,17,3563,'2012-10-29 04:17:09',1),(1,73,3563,'2012-10-29 04:17:09',1),(1,59,3563,'2012-10-29 04:17:09',1),(1,60,3563,'2012-10-29 04:17:09',1),(1,215,3563,'2012-10-29 04:17:09',1),(1,231,3563,'2012-10-29 04:17:09',1),(1,198,3563,'2012-10-29 04:17:09',1),(1,77,3563,'2012-10-29 04:17:09',1),(1,81,3512,'2012-10-29 04:46:47',NULL),(1,222,3512,'2012-10-29 04:46:47',NULL),(1,6,3512,'2012-10-29 04:46:47',NULL),(1,4,3512,'2012-10-29 04:46:47',NULL),(1,59,3519,'2012-10-29 04:47:01',1),(1,60,3519,'2012-10-29 04:47:01',1),(1,215,3519,'2012-10-29 04:47:01',1),(1,231,3519,'2012-10-29 04:47:01',1),(1,133,3520,'2012-10-29 04:47:16',1),(1,16,3520,'2012-10-29 04:47:16',1),(1,244,3520,'2012-10-29 04:47:16',1),(1,134,3520,'2012-10-29 04:47:16',1),(1,189,3520,'2012-10-29 04:47:16',1),(1,85,3520,'2012-10-29 04:47:16',1),(1,17,3520,'2012-10-29 04:47:16',1),(1,73,3520,'2012-10-29 04:47:16',1),(1,198,3522,'2012-10-29 04:47:19',1),(1,77,3522,'2012-10-29 04:47:19',1),(1,81,3527,'2012-10-29 04:47:35',NULL),(1,222,3527,'2012-10-29 04:47:35',NULL),(1,6,3527,'2012-10-29 04:47:35',NULL),(1,4,3527,'2012-10-29 04:47:35',NULL),(1,6,3526,'2012-10-29 04:47:35',NULL),(1,4,3526,'2012-10-29 04:47:35',NULL),(1,151,3570,'2012-10-29 04:47:35',NULL),(1,197,3570,'2012-10-29 04:47:35',NULL),(1,231,3571,'2012-10-29 04:47:35',NULL),(1,198,3571,'2012-10-29 04:47:35',NULL),(1,222,3571,'2012-10-29 04:47:35',NULL),(1,223,3571,'2012-10-29 04:47:35',NULL),(1,17,3528,'2012-10-29 04:47:37',NULL),(1,73,3528,'2012-10-29 04:47:37',NULL),(1,59,3528,'2012-10-29 04:47:37',NULL),(1,60,3528,'2012-10-29 04:47:37',NULL),(1,215,3528,'2012-10-29 04:47:37',NULL),(1,231,3528,'2012-10-29 04:47:37',NULL),(1,198,3528,'2012-10-29 04:47:37',NULL),(1,77,3528,'2012-10-29 04:47:37',NULL),(1,252,3572,'2012-10-29 04:47:37',NULL),(1,240,3572,'2012-10-29 04:47:37',NULL),(1,60,3572,'2012-10-29 04:47:37',NULL),(1,215,3572,'2012-10-29 04:47:37',NULL),(1,231,3572,'2012-10-29 04:47:37',NULL),(1,198,3572,'2012-10-29 04:47:37',NULL),(1,6,3572,'2012-10-29 04:47:37',NULL),(1,4,3572,'2012-10-29 04:47:37',NULL),(1,198,3523,'2012-10-29 05:17:20',1),(1,77,3523,'2012-10-29 05:17:20',1),(1,81,3523,'2012-10-29 05:17:20',1),(1,222,3523,'2012-10-29 05:17:20',1),(1,189,3524,'2012-10-29 05:17:32',1),(1,85,3524,'2012-10-29 05:17:32',1),(1,17,3524,'2012-10-29 05:17:32',1),(1,73,3524,'2012-10-29 05:17:32',1),(1,59,3524,'2012-10-29 05:17:32',1),(1,60,3524,'2012-10-29 05:17:32',1),(1,215,3524,'2012-10-29 05:17:32',1),(1,231,3524,'2012-10-29 05:17:32',1),(1,244,3568,'2012-10-29 05:17:34',1),(1,134,3568,'2012-10-29 05:17:34',1),(1,189,3568,'2012-10-29 05:17:34',1),(1,85,3568,'2012-10-29 05:17:34',1),(1,17,3568,'2012-10-29 05:17:34',1),(1,73,3568,'2012-10-29 05:17:34',1),(1,59,3568,'2012-10-29 05:17:34',1),(1,60,3568,'2012-10-29 05:17:34',1),(1,215,3568,'2012-10-29 05:17:34',1),(1,231,3568,'2012-10-29 05:17:34',1),(1,198,3568,'2012-10-29 05:17:34',1),(1,77,3568,'2012-10-29 05:17:34',1),(1,81,3568,'2012-10-29 05:17:34',1),(1,222,3568,'2012-10-29 05:17:34',1),(1,6,3568,'2012-10-29 05:17:34',1),(1,4,3568,'2012-10-29 05:17:34',1),(1,79,3569,'2012-10-29 05:47:39',NULL),(1,198,3552,'2012-10-29 06:16:58',1),(1,77,3552,'2012-10-29 06:16:58',1),(1,81,3552,'2012-10-29 06:16:58',1),(1,222,3552,'2012-10-29 06:16:58',1),(1,73,3555,'2012-10-29 06:17:00',1),(1,59,3555,'2012-10-29 06:17:00',1),(1,115,3555,'2012-10-29 06:17:00',1),(1,60,3555,'2012-10-29 06:17:00',1),(1,215,3555,'2012-10-29 06:17:00',1),(1,231,3555,'2012-10-29 06:17:00',1),(1,6,3555,'2012-10-29 06:17:00',1),(1,4,3555,'2012-10-29 06:17:00',1),(1,150,3554,'2012-10-29 06:47:05',NULL),(1,48,3554,'2012-10-29 06:47:05',NULL),(1,26,3554,'2012-10-29 06:47:05',NULL),(1,151,3554,'2012-10-29 06:47:05',NULL),(1,197,3554,'2012-10-29 06:47:05',NULL),(1,126,3554,'2012-10-29 06:47:05',NULL),(1,33,3554,'2012-10-29 06:47:05',NULL),(1,73,3554,'2012-10-29 06:47:05',NULL),(1,81,3553,'2012-10-29 06:47:05',1),(1,222,3553,'2012-10-29 06:47:05',1),(1,6,3553,'2012-10-29 06:47:05',1),(1,4,3553,'2012-10-29 06:47:05',1),(1,59,3558,'2012-10-29 06:47:20',1),(1,86,3558,'2012-10-29 06:47:20',1),(1,115,3558,'2012-10-29 06:47:20',1),(1,60,3558,'2012-10-29 06:47:20',1),(1,215,3558,'2012-10-29 06:47:20',1),(1,231,3558,'2012-10-29 06:47:20',1),(1,198,3558,'2012-10-29 06:47:20',1),(1,77,3558,'2012-10-29 06:47:20',1),(1,252,3566,'2012-10-29 06:47:35',NULL),(1,240,3566,'2012-10-29 06:47:35',NULL),(1,60,3566,'2012-10-29 06:47:35',NULL),(1,215,3566,'2012-10-29 06:47:35',NULL),(1,154,3567,'2012-10-29 06:47:35',NULL),(1,54,3567,'2012-10-29 06:47:35',NULL),(1,72,3567,'2012-10-29 06:47:35',NULL),(1,33,3567,'2012-10-29 06:47:35',NULL),(1,73,3567,'2012-10-29 06:47:35',NULL),(1,59,3567,'2012-10-29 06:47:35',NULL),(1,86,3567,'2012-10-29 06:47:35',NULL),(1,115,3567,'2012-10-29 06:47:35',NULL),(1,222,3549,'2012-10-29 07:17:04',1),(1,252,3550,'2012-10-29 07:17:06',1),(1,240,3550,'2012-10-29 07:17:06',1),(1,77,3551,'2012-10-29 07:17:07',1),(1,81,3551,'2012-10-29 07:17:07',1),(1,6,3556,'2012-10-29 07:17:19',1),(1,4,3556,'2012-10-29 07:17:19',1),(1,123,3557,'2012-10-29 07:17:19',1),(1,150,3557,'2012-10-29 07:17:19',1),(1,48,3557,'2012-10-29 07:17:19',1),(1,26,3557,'2012-10-29 07:17:19',1),(1,151,3561,'2012-10-29 07:17:27',1),(1,197,3561,'2012-10-29 07:17:27',1),(1,126,3561,'2012-10-29 07:17:27',1),(1,79,3561,'2012-10-29 07:17:27',1),(1,123,3562,'2012-10-29 07:17:30',1),(1,150,3562,'2012-10-29 07:17:30',1),(1,48,3562,'2012-10-29 07:17:30',1),(1,26,3562,'2012-10-29 07:17:30',1),(1,151,3562,'2012-10-29 07:17:30',1),(1,197,3562,'2012-10-29 07:17:30',1),(1,126,3562,'2012-10-29 07:17:30',1),(1,79,3562,'2012-10-29 07:17:30',1),(1,123,3560,'2012-10-29 07:47:26',1),(1,150,3560,'2012-10-29 07:47:26',1),(1,126,3564,'2012-10-29 07:47:33',1),(1,48,3565,'2012-10-29 07:47:35',1),(1,26,3565,'2012-10-29 07:47:35',1),(1,185,3641,'2012-10-30 01:46:14',1),(1,241,3641,'2012-10-30 01:46:14',1),(1,69,3599,'2012-10-30 01:46:18',1),(1,229,3642,'2012-10-30 01:46:22',1),(1,216,3642,'2012-10-30 01:46:22',1),(1,218,3642,'2012-10-30 01:46:22',1),(1,199,3642,'2012-10-30 01:46:22',1),(1,94,3644,'2012-10-30 01:46:22',NULL),(1,88,3644,'2012-10-30 01:46:22',NULL),(1,245,3644,'2012-10-30 01:46:22',NULL),(1,22,3644,'2012-10-30 01:46:22',NULL),(1,251,3644,'2012-10-30 01:46:22',NULL),(1,128,3644,'2012-10-30 01:46:22',NULL),(1,83,3644,'2012-10-30 01:46:22',NULL),(1,63,3644,'2012-10-30 01:46:22',NULL),(1,241,3643,'2012-10-30 01:46:22',1),(1,69,3643,'2012-10-30 01:46:22',1),(1,208,3643,'2012-10-30 01:46:22',1),(1,209,3643,'2012-10-30 01:46:22',1),(1,101,3645,'2012-10-30 01:46:24',1),(1,226,3645,'2012-10-30 01:46:24',1),(1,117,3645,'2012-10-30 01:46:24',1),(1,75,3645,'2012-10-30 01:46:24',1),(1,76,3645,'2012-10-30 01:46:24',1),(1,185,3645,'2012-10-30 01:46:24',1),(1,108,3645,'2012-10-30 01:46:24',1),(1,142,3645,'2012-10-30 01:46:24',1),(1,105,3603,'2012-10-30 01:46:31',1),(1,90,3603,'2012-10-30 01:46:31',1),(1,209,3604,'2012-10-30 01:46:31',1),(1,214,3604,'2012-10-30 01:46:31',1),(1,105,3605,'2012-10-30 01:46:31',1),(1,90,3605,'2012-10-30 01:46:31',1),(1,103,3609,'2012-10-30 01:46:37',1),(1,204,3609,'2012-10-30 01:46:37',1),(1,229,3609,'2012-10-30 01:46:37',1),(1,209,3609,'2012-10-30 01:46:37',1),(1,17,3608,'2012-10-30 01:46:37',1),(1,191,3608,'2012-10-30 01:46:37',1),(1,159,3608,'2012-10-30 01:46:37',1),(1,32,3608,'2012-10-30 01:46:37',1),(1,192,3612,'2012-10-30 01:46:44',1),(1,252,3612,'2012-10-30 01:46:44',1),(1,101,3612,'2012-10-30 01:46:44',1),(1,226,3612,'2012-10-30 01:46:44',1),(1,108,3611,'2012-10-30 01:46:44',1),(1,142,3611,'2012-10-30 01:46:44',1),(1,103,3611,'2012-10-30 01:46:44',1),(1,204,3611,'2012-10-30 01:46:44',1),(1,251,3613,'2012-10-30 01:46:44',1),(1,128,3613,'2012-10-30 01:46:44',1),(1,191,3613,'2012-10-30 01:46:44',1),(1,32,3613,'2012-10-30 01:46:44',1),(1,192,3613,'2012-10-30 01:46:44',1),(1,101,3613,'2012-10-30 01:46:44',1),(1,226,3613,'2012-10-30 01:46:44',1),(1,117,3613,'2012-10-30 01:46:44',1),(1,117,3610,'2012-10-30 01:46:44',1),(1,75,3610,'2012-10-30 01:46:44',1),(1,76,3610,'2012-10-30 01:46:44',1),(1,185,3610,'2012-10-30 01:46:44',1),(1,75,3616,'2012-10-30 01:46:51',1),(1,76,3616,'2012-10-30 01:46:51',1),(1,185,3616,'2012-10-30 01:46:51',1),(1,108,3616,'2012-10-30 01:46:51',1),(1,142,3616,'2012-10-30 01:46:51',1),(1,103,3616,'2012-10-30 01:46:51',1),(1,204,3616,'2012-10-30 01:46:51',1),(1,229,3616,'2012-10-30 01:46:51',1),(1,94,3617,'2012-10-30 01:46:51',1),(1,245,3617,'2012-10-30 01:46:51',1),(1,216,3617,'2012-10-30 01:46:51',1),(1,218,3617,'2012-10-30 01:46:51',1),(1,199,3617,'2012-10-30 01:46:51',1),(1,241,3617,'2012-10-30 01:46:51',1),(1,69,3617,'2012-10-30 01:46:51',1),(1,208,3617,'2012-10-30 01:46:51',1),(1,216,3614,'2012-10-30 01:46:51',1),(1,218,3614,'2012-10-30 01:46:51',1),(1,199,3614,'2012-10-30 01:46:51',1),(1,241,3614,'2012-10-30 01:46:51',1),(1,69,3614,'2012-10-30 01:46:51',1),(1,208,3614,'2012-10-30 01:46:51',1),(1,209,3614,'2012-10-30 01:46:51',1),(1,214,3614,'2012-10-30 01:46:51',1),(1,88,3615,'2012-10-30 01:46:51',1),(1,251,3615,'2012-10-30 01:46:51',1),(1,128,3615,'2012-10-30 01:46:51',1),(1,191,3615,'2012-10-30 01:46:51',1),(1,159,3615,'2012-10-30 01:46:51',1),(1,32,3615,'2012-10-30 01:46:51',1),(1,192,3615,'2012-10-30 01:46:51',1),(1,252,3615,'2012-10-30 01:46:51',1),(1,94,3638,'2012-10-30 02:16:16',1),(1,75,3640,'2012-10-30 02:16:16',1),(1,76,3640,'2012-10-30 02:16:16',1),(1,88,3639,'2012-10-30 02:16:16',1),(1,208,3600,'2012-10-30 02:16:19',1),(1,4,3598,'2012-10-30 02:16:19',1),(1,214,3601,'2012-10-30 02:16:19',1),(1,209,3602,'2012-10-30 02:16:33',1),(1,188,3607,'2012-10-30 02:16:38',1),(1,117,3607,'2012-10-30 02:16:38',1),(1,165,3606,'2012-10-30 02:16:38',1),(1,190,3606,'2012-10-30 02:16:38',1),(1,108,3655,'2012-10-30 02:46:15',1),(1,68,3655,'2012-10-30 02:46:15',1),(1,180,3657,'2012-10-30 02:46:15',1),(1,1,3657,'2012-10-30 02:46:15',1),(1,178,3657,'2012-10-30 02:46:15',1),(1,100,3657,'2012-10-30 02:46:15',1),(1,83,3657,'2012-10-30 02:46:15',1),(1,190,3657,'2012-10-30 02:46:15',1),(1,252,3657,'2012-10-30 02:46:15',1),(1,69,3657,'2012-10-30 02:46:15',1),(1,112,3656,'2012-10-30 02:46:15',1),(1,53,3656,'2012-10-30 02:46:15',1),(1,130,3656,'2012-10-30 02:46:15',1),(1,76,3656,'2012-10-30 02:46:15',1),(1,148,3658,'2012-10-30 02:46:24',1),(1,1,3658,'2012-10-30 02:46:24',1),(1,100,3658,'2012-10-30 02:46:24',1),(1,83,3658,'2012-10-30 02:46:24',1),(1,190,3658,'2012-10-30 02:46:24',1),(1,192,3658,'2012-10-30 02:46:24',1),(1,144,3658,'2012-10-30 02:46:24',1),(1,23,3658,'2012-10-30 02:46:24',1),(1,174,3658,'2012-10-30 02:46:24',1),(1,117,3658,'2012-10-30 02:46:24',1),(1,14,3658,'2012-10-30 02:46:24',1),(1,15,3658,'2012-10-30 02:46:24',1),(1,75,3658,'2012-10-30 02:46:24',1),(1,55,3658,'2012-10-30 02:46:24',1),(1,6,3658,'2012-10-30 02:46:24',1),(1,4,3658,'2012-10-30 02:46:24',1),(1,69,3659,'2012-10-30 02:46:27',1),(1,103,3660,'2012-10-30 02:46:27',1),(1,68,3660,'2012-10-30 02:46:27',1),(1,68,3661,'2012-10-30 02:46:27',1),(1,183,3661,'2012-10-30 02:46:27',1),(1,165,3661,'2012-10-30 02:46:27',1),(1,178,3661,'2012-10-30 02:46:27',1),(1,180,3662,'2012-10-30 02:46:33',1),(1,1,3662,'2012-10-30 02:46:33',1),(1,178,3662,'2012-10-30 02:46:33',1),(1,100,3662,'2012-10-30 02:46:33',1),(1,83,3662,'2012-10-30 02:46:33',1),(1,190,3662,'2012-10-30 02:46:33',1),(1,252,3662,'2012-10-30 02:46:33',1),(1,103,3662,'2012-10-30 02:46:33',1),(1,68,3663,'2012-10-30 02:46:33',1),(1,112,3664,'2012-10-30 02:46:33',1),(1,69,3664,'2012-10-30 02:46:33',1),(1,88,3665,'2012-10-30 02:46:35',1),(1,183,3665,'2012-10-30 02:46:35',1),(1,120,3665,'2012-10-30 02:46:35',1),(1,122,3665,'2012-10-30 02:46:35',1),(1,160,3666,'2012-10-30 02:46:40',1),(1,88,3666,'2012-10-30 02:46:40',1),(1,183,3666,'2012-10-30 02:46:40',1),(1,120,3666,'2012-10-30 02:46:40',1),(1,124,3666,'2012-10-30 02:46:40',1),(1,165,3666,'2012-10-30 02:46:40',1),(1,192,3666,'2012-10-30 02:46:40',1),(1,144,3666,'2012-10-30 02:46:40',1),(1,69,3667,'2012-10-30 02:46:40',1),(1,160,3671,'2012-10-30 02:46:46',1),(1,88,3671,'2012-10-30 02:46:46',1),(1,120,3671,'2012-10-30 02:46:46',1),(1,124,3671,'2012-10-30 02:46:46',1),(1,192,3671,'2012-10-30 02:46:46',1),(1,144,3671,'2012-10-30 02:46:46',1),(1,23,3671,'2012-10-30 02:46:46',1),(1,174,3671,'2012-10-30 02:46:46',1),(1,117,3671,'2012-10-30 02:46:46',1),(1,14,3671,'2012-10-30 02:46:46',1),(1,15,3671,'2012-10-30 02:46:46',1),(1,75,3671,'2012-10-30 02:46:46',1),(1,55,3671,'2012-10-30 02:46:46',1),(1,112,3671,'2012-10-30 02:46:46',1),(1,6,3671,'2012-10-30 02:46:46',1),(1,4,3671,'2012-10-30 02:46:46',1),(1,178,3668,'2012-10-30 03:16:44',1),(1,100,3668,'2012-10-30 03:16:44',1),(1,124,3669,'2012-10-30 03:16:44',1),(1,180,3669,'2012-10-30 03:16:44',1),(1,165,3669,'2012-10-30 03:16:44',1),(1,1,3669,'2012-10-30 03:16:44',1),(1,23,3670,'2012-10-30 03:16:47',1),(1,174,3670,'2012-10-30 03:16:47',1),(1,117,3670,'2012-10-30 03:16:47',1),(1,14,3670,'2012-10-30 03:16:47',1),(1,15,3670,'2012-10-30 03:16:47',1),(1,75,3670,'2012-10-30 03:16:47',1),(1,6,3670,'2012-10-30 03:16:47',1),(1,4,3670,'2012-10-30 03:16:47',1),(1,53,3654,'2012-10-30 03:46:18',NULL),(1,130,3654,'2012-10-30 03:46:18',NULL),(1,76,3654,'2012-10-30 03:46:18',NULL),(1,108,3654,'2012-10-30 03:46:18',NULL),(1,120,3690,'2012-10-30 03:46:20',1),(1,108,3691,'2012-10-30 03:46:20',1),(1,68,3692,'2012-10-30 03:46:20',1),(1,69,3692,'2012-10-30 03:46:20',1),(1,117,3696,'2012-10-30 03:46:27',1),(1,14,3696,'2012-10-30 03:46:27',1),(1,15,3696,'2012-10-30 03:46:27',1),(1,75,3696,'2012-10-30 03:46:27',1),(1,55,3696,'2012-10-30 03:46:27',1),(1,112,3696,'2012-10-30 03:46:27',1),(1,103,3696,'2012-10-30 03:46:27',1),(1,4,3696,'2012-10-30 03:46:27',1),(1,53,3698,'2012-10-30 03:46:34',1),(1,130,3698,'2012-10-30 03:46:34',1),(1,76,3702,'2012-10-30 03:46:41',1),(1,108,3702,'2012-10-30 03:46:41',1),(1,130,3703,'2012-10-30 03:46:43',1),(1,76,3703,'2012-10-30 03:46:43',1),(1,68,3703,'2012-10-30 03:46:43',1),(1,69,3703,'2012-10-30 03:46:43',1),(1,76,3706,'2012-10-30 03:46:49',1),(1,130,3711,'2012-10-30 03:46:56',1),(1,76,3712,'2012-10-30 03:46:56',1),(1,180,3712,'2012-10-30 03:46:56',1),(1,103,3695,'2012-10-30 04:16:26',1),(1,68,3695,'2012-10-30 04:16:26',1),(1,69,3695,'2012-10-30 04:16:26',1),(1,56,3695,'2012-10-30 04:16:26',1),(1,14,3697,'2012-10-30 04:16:29',1),(1,15,3697,'2012-10-30 04:16:29',1),(1,75,3697,'2012-10-30 04:16:29',1),(1,55,3697,'2012-10-30 04:16:29',1),(1,112,3697,'2012-10-30 04:16:29',1),(1,130,3697,'2012-10-30 04:16:29',1),(1,76,3697,'2012-10-30 04:16:29',1),(1,4,3697,'2012-10-30 04:16:29',1),(1,160,3701,'2012-10-30 04:16:37',NULL),(1,88,3701,'2012-10-30 04:16:37',NULL),(1,150,3701,'2012-10-30 04:16:37',NULL),(1,195,3701,'2012-10-30 04:16:37',NULL),(1,165,3701,'2012-10-30 04:16:37',NULL),(1,148,3701,'2012-10-30 04:16:37',NULL),(1,1,3701,'2012-10-30 04:16:37',NULL),(1,178,3701,'2012-10-30 04:16:37',NULL),(1,100,3701,'2012-10-30 04:16:37',NULL),(1,30,3701,'2012-10-30 04:16:37',NULL),(1,83,3701,'2012-10-30 04:16:37',NULL),(1,190,3701,'2012-10-30 04:16:37',NULL),(1,192,3701,'2012-10-30 04:16:37',NULL),(1,144,3701,'2012-10-30 04:16:37',NULL),(1,23,3701,'2012-10-30 04:16:37',NULL),(1,6,3701,'2012-10-30 04:16:37',NULL),(1,150,3705,'2012-10-30 04:16:45',1),(1,195,3705,'2012-10-30 04:16:45',1),(1,165,3705,'2012-10-30 04:16:45',1),(1,148,3705,'2012-10-30 04:16:45',1),(1,1,3705,'2012-10-30 04:16:45',1),(1,178,3705,'2012-10-30 04:16:45',1),(1,100,3705,'2012-10-30 04:16:45',1),(1,30,3705,'2012-10-30 04:16:45',1),(1,83,3705,'2012-10-30 04:16:45',1),(1,190,3705,'2012-10-30 04:16:45',1),(1,192,3705,'2012-10-30 04:16:45',1),(1,144,3705,'2012-10-30 04:16:45',1),(1,23,3705,'2012-10-30 04:16:45',1),(1,117,3705,'2012-10-30 04:16:45',1),(1,53,3705,'2012-10-30 04:16:45',1),(1,6,3705,'2012-10-30 04:16:45',1),(1,108,3713,'2012-10-30 04:16:58',1),(1,160,3713,'2012-10-30 04:16:58',1),(1,16,3713,'2012-10-30 04:16:58',1),(1,120,3713,'2012-10-30 04:16:58',1),(1,56,3693,'2012-10-30 04:46:24',1),(1,91,3693,'2012-10-30 04:46:24',1),(1,108,3694,'2012-10-30 04:46:30',1),(1,103,3694,'2012-10-30 04:46:30',1),(1,68,3694,'2012-10-30 04:46:30',1),(1,69,3694,'2012-10-30 04:46:30',1),(1,68,3699,'2012-10-30 04:46:38',1),(1,212,3699,'2012-10-30 04:46:38',1),(1,69,3699,'2012-10-30 04:46:38',1),(1,70,3699,'2012-10-30 04:46:38',1),(1,14,3700,'2012-10-30 04:46:38',1),(1,15,3700,'2012-10-30 04:46:38',1),(1,75,3700,'2012-10-30 04:46:38',1),(1,55,3700,'2012-10-30 04:46:38',1),(1,112,3700,'2012-10-30 04:46:38',1),(1,130,3700,'2012-10-30 04:46:38',1),(1,76,3700,'2012-10-30 04:46:38',1),(1,4,3700,'2012-10-30 04:46:38',1),(1,120,3704,'2012-10-30 04:46:46',1),(1,180,3704,'2012-10-30 04:46:46',1),(1,189,3704,'2012-10-30 04:46:46',1),(1,174,3704,'2012-10-30 04:46:46',1),(1,107,3704,'2012-10-30 04:46:46',1),(1,131,3704,'2012-10-30 04:46:46',1),(1,66,3704,'2012-10-30 04:46:46',1),(1,201,3704,'2012-10-30 04:46:46',1),(1,148,3708,'2012-10-30 04:46:55',1),(1,189,3708,'2012-10-30 04:46:55',1),(1,174,3708,'2012-10-30 04:46:55',1),(1,4,3708,'2012-10-30 04:46:55',1),(1,107,3707,'2012-10-30 04:46:55',1),(1,14,3707,'2012-10-30 04:46:55',1),(1,150,3710,'2012-10-30 04:46:57',1),(1,195,3710,'2012-10-30 04:46:57',1),(1,165,3710,'2012-10-30 04:46:57',1),(1,148,3710,'2012-10-30 04:46:57',1),(1,1,3710,'2012-10-30 04:46:57',1),(1,178,3710,'2012-10-30 04:46:57',1),(1,100,3710,'2012-10-30 04:46:57',1),(1,30,3710,'2012-10-30 04:46:57',1),(1,83,3710,'2012-10-30 04:46:57',1),(1,190,3710,'2012-10-30 04:46:57',1),(1,192,3710,'2012-10-30 04:46:57',1),(1,144,3710,'2012-10-30 04:46:57',1),(1,23,3710,'2012-10-30 04:46:57',1),(1,117,3710,'2012-10-30 04:46:57',1),(1,53,3710,'2012-10-30 04:46:57',1),(1,6,3710,'2012-10-30 04:46:57',1),(1,23,3714,'2012-10-30 04:47:05',1),(1,252,3714,'2012-10-30 04:47:05',1),(1,117,3714,'2012-10-30 04:47:05',1),(1,53,3714,'2012-10-30 04:47:05',1),(1,108,3714,'2012-10-30 04:47:05',1),(1,103,3714,'2012-10-30 04:47:05',1),(1,49,3714,'2012-10-30 04:47:05',1),(1,6,3714,'2012-10-30 04:47:05',1),(1,1,3709,'2012-10-30 05:16:59',1),(1,178,3709,'2012-10-30 05:16:59',1),(1,100,3709,'2012-10-30 05:16:59',1),(1,30,3709,'2012-10-30 05:16:59',1),(1,83,3709,'2012-10-30 05:16:59',1),(1,190,3709,'2012-10-30 05:16:59',1),(1,192,3709,'2012-10-30 05:16:59',1),(1,144,3709,'2012-10-30 05:16:59',1),(1,58,3740,'2012-10-31 01:46:25',1),(1,6,3741,'2012-10-31 01:46:38',1),(1,56,3742,'2012-10-31 01:46:41',1),(1,218,3743,'2012-10-31 01:46:42',1),(1,6,3746,'2012-10-31 01:46:45',1),(1,4,3746,'2012-10-31 01:46:45',1),(1,6,3747,'2012-10-31 01:46:46',1),(1,4,3747,'2012-10-31 01:46:46',1),(1,96,3750,'2012-10-31 01:46:55',1),(1,124,3750,'2012-10-31 01:46:55',1),(1,238,3750,'2012-10-31 01:46:55',1),(1,157,3750,'2012-10-31 01:46:55',1),(1,74,3751,'2012-10-31 01:46:58',1),(1,120,3751,'2012-10-31 01:46:58',1),(1,122,3751,'2012-10-31 01:46:58',1),(1,235,3751,'2012-10-31 01:46:58',1),(1,250,3754,'2012-10-31 01:47:07',1),(1,226,3754,'2012-10-31 01:47:07',1),(1,218,3754,'2012-10-31 01:47:07',1),(1,104,3754,'2012-10-31 01:47:07',1),(1,124,3755,'2012-10-31 01:47:08',1),(1,12,3755,'2012-10-31 01:47:08',1),(1,238,3755,'2012-10-31 01:47:08',1),(1,51,3755,'2012-10-31 01:47:08',1),(1,157,3755,'2012-10-31 01:47:08',1),(1,104,3755,'2012-10-31 01:47:08',1),(1,6,3755,'2012-10-31 01:47:08',1),(1,4,3755,'2012-10-31 01:47:08',1),(1,120,3757,'2012-10-31 01:47:25',1),(1,122,3757,'2012-10-31 01:47:25',1),(1,150,3757,'2012-10-31 01:47:25',1),(1,124,3757,'2012-10-31 01:47:25',1),(1,12,3757,'2012-10-31 01:47:25',1),(1,238,3757,'2012-10-31 01:47:25',1),(1,51,3757,'2012-10-31 01:47:25',1),(1,235,3757,'2012-10-31 01:47:25',1),(1,51,3758,'2012-10-31 01:47:25',1),(1,235,3758,'2012-10-31 01:47:25',1),(1,179,3758,'2012-10-31 01:47:25',1),(1,157,3758,'2012-10-31 01:47:25',1),(1,58,3758,'2012-10-31 01:47:25',1),(1,74,3758,'2012-10-31 01:47:25',1),(1,6,3758,'2012-10-31 01:47:25',1),(1,4,3758,'2012-10-31 01:47:25',1),(1,136,3759,'2012-10-31 01:47:26',1),(1,120,3759,'2012-10-31 01:47:26',1),(1,122,3759,'2012-10-31 01:47:26',1),(1,150,3759,'2012-10-31 01:47:26',1),(1,124,3759,'2012-10-31 01:47:26',1),(1,12,3759,'2012-10-31 01:47:26',1),(1,238,3759,'2012-10-31 01:47:26',1),(1,57,3759,'2012-10-31 01:47:26',1),(1,56,3780,'2012-10-31 02:16:23',1),(1,57,3782,'2012-10-31 02:16:24',1),(1,157,3782,'2012-10-31 02:16:24',1),(1,58,3781,'2012-10-31 02:16:24',1),(1,158,3783,'2012-10-31 02:16:25',1),(1,233,3783,'2012-10-31 02:16:25',1),(1,41,3784,'2012-10-31 02:16:39',1),(1,12,3784,'2012-10-31 02:16:39',1),(1,167,3784,'2012-10-31 02:16:39',1),(1,155,3784,'2012-10-31 02:16:39',1),(1,238,3785,'2012-10-31 02:16:40',1),(1,158,3785,'2012-10-31 02:16:40',1),(1,233,3785,'2012-10-31 02:16:40',1),(1,57,3785,'2012-10-31 02:16:40',1),(1,157,3786,'2012-10-31 02:16:41',1),(1,58,3786,'2012-10-31 02:16:41',1),(1,74,3786,'2012-10-31 02:16:41',1),(1,250,3786,'2012-10-31 02:16:41',1),(1,101,3786,'2012-10-31 02:16:41',1),(1,226,3786,'2012-10-31 02:16:41',1),(1,6,3786,'2012-10-31 02:16:41',1),(1,4,3786,'2012-10-31 02:16:41',1),(1,93,3744,'2012-10-31 02:16:45',1),(1,155,3787,'2012-10-31 02:16:45',1),(1,238,3787,'2012-10-31 02:16:45',1),(1,158,3787,'2012-10-31 02:16:45',1),(1,233,3787,'2012-10-31 02:16:45',1),(1,57,3787,'2012-10-31 02:16:45',1),(1,51,3787,'2012-10-31 02:16:45',1),(1,235,3787,'2012-10-31 02:16:45',1),(1,179,3787,'2012-10-31 02:16:45',1),(1,235,3745,'2012-10-31 02:16:46',1),(1,179,3745,'2012-10-31 02:16:46',1),(1,93,3748,'2012-10-31 02:16:51',1),(1,70,3748,'2012-10-31 02:16:51',1),(1,136,3749,'2012-10-31 02:16:54',1),(1,238,3749,'2012-10-31 02:16:54',1),(1,129,3752,'2012-10-31 02:17:03',1),(1,218,3752,'2012-10-31 02:17:03',1),(1,199,3752,'2012-10-31 02:17:03',1),(1,104,3752,'2012-10-31 02:17:03',1),(1,122,3753,'2012-10-31 02:17:06',1),(1,150,3753,'2012-10-31 02:17:06',1),(1,124,3753,'2012-10-31 02:17:06',1),(1,18,3753,'2012-10-31 02:17:06',1),(1,120,3756,'2012-10-31 02:17:19',1),(1,122,3756,'2012-10-31 02:17:19',1),(1,150,3756,'2012-10-31 02:17:19',1),(1,124,3756,'2012-10-31 02:17:19',1),(1,18,3756,'2012-10-31 02:17:19',1),(1,41,3756,'2012-10-31 02:17:19',1),(1,12,3756,'2012-10-31 02:17:19',1),(1,167,3756,'2012-10-31 02:17:19',1),(1,6,3797,'2012-10-31 02:46:18',1),(1,4,3797,'2012-10-31 02:46:18',1),(1,56,3799,'2012-10-31 02:46:20',1),(1,183,3799,'2012-10-31 02:46:20',1),(1,96,3799,'2012-10-31 02:46:20',1),(1,136,3799,'2012-10-31 02:46:20',1),(1,122,3799,'2012-10-31 02:46:20',1),(1,232,3799,'2012-10-31 02:46:20',1),(1,235,3799,'2012-10-31 02:46:20',1),(1,250,3799,'2012-10-31 02:46:20',1),(1,96,3798,'2012-10-31 02:46:20',1),(1,122,3798,'2012-10-31 02:46:20',1),(1,232,3798,'2012-10-31 02:46:20',1),(1,235,3798,'2012-10-31 02:46:20',1),(1,20,3800,'2012-10-31 02:46:31',1),(1,88,3800,'2012-10-31 02:46:31',1),(1,183,3800,'2012-10-31 02:46:31',1),(1,96,3800,'2012-10-31 02:46:31',1),(1,227,3800,'2012-10-31 02:46:31',1),(1,118,3800,'2012-10-31 02:46:31',1),(1,136,3800,'2012-10-31 02:46:31',1),(1,122,3800,'2012-10-31 02:46:31',1),(1,18,3800,'2012-10-31 02:46:31',1),(1,12,3800,'2012-10-31 02:46:31',1),(1,232,3800,'2012-10-31 02:46:31',1),(1,235,3800,'2012-10-31 02:46:31',1),(1,250,3800,'2012-10-31 02:46:31',1),(1,10,3800,'2012-10-31 02:46:31',1),(1,6,3800,'2012-10-31 02:46:31',1),(1,4,3800,'2012-10-31 02:46:31',1),(1,10,3801,'2012-10-31 02:46:34',1),(1,2,3802,'2012-10-31 02:46:35',1),(1,56,3802,'2012-10-31 02:46:35',1),(1,235,3803,'2012-10-31 02:46:35',1),(1,6,3803,'2012-10-31 02:46:35',1),(1,4,3803,'2012-10-31 02:46:35',1),(1,250,3803,'2012-10-31 02:46:35',1),(1,183,3804,'2012-10-31 02:46:37',1),(1,96,3804,'2012-10-31 02:46:37',1),(1,227,3804,'2012-10-31 02:46:37',1),(1,118,3804,'2012-10-31 02:46:37',1),(1,136,3804,'2012-10-31 02:46:37',1),(1,122,3804,'2012-10-31 02:46:37',1),(1,12,3804,'2012-10-31 02:46:37',1),(1,232,3804,'2012-10-31 02:46:37',1),(1,56,3805,'2012-10-31 02:46:39',1),(1,183,3807,'2012-10-31 02:46:39',1),(1,74,3807,'2012-10-31 02:46:39',1),(1,129,3807,'2012-10-31 02:46:39',1),(1,218,3807,'2012-10-31 02:46:39',1),(1,74,3806,'2012-10-31 02:46:39',1),(1,129,3806,'2012-10-31 02:46:39',1),(1,183,3808,'2012-10-31 02:46:53',1),(1,158,3808,'2012-10-31 02:46:53',1),(1,57,3808,'2012-10-31 02:46:53',1),(1,74,3808,'2012-10-31 02:46:53',1),(1,87,3808,'2012-10-31 02:46:53',1),(1,226,3808,'2012-10-31 02:46:53',1),(1,129,3808,'2012-10-31 02:46:53',1),(1,52,3808,'2012-10-31 02:46:53',1),(1,56,3809,'2012-10-31 02:46:53',1),(1,218,3810,'2012-10-31 02:46:56',1),(1,78,3810,'2012-10-31 02:46:56',1),(1,96,3813,'2012-10-31 02:47:01',1),(1,227,3813,'2012-10-31 02:47:01',1),(1,118,3813,'2012-10-31 02:47:01',1),(1,136,3813,'2012-10-31 02:47:01',1),(1,122,3813,'2012-10-31 02:47:01',1),(1,18,3813,'2012-10-31 02:47:01',1),(1,12,3813,'2012-10-31 02:47:01',1),(1,232,3813,'2012-10-31 02:47:01',1),(1,238,3813,'2012-10-31 02:47:01',1),(1,235,3813,'2012-10-31 02:47:01',1),(1,58,3813,'2012-10-31 02:47:01',1),(1,250,3813,'2012-10-31 02:47:01',1),(1,10,3813,'2012-10-31 02:47:01',1),(1,2,3813,'2012-10-31 02:47:01',1),(1,6,3813,'2012-10-31 02:47:01',1),(1,4,3813,'2012-10-31 02:47:01',1),(1,96,3811,'2012-10-31 03:16:58',1),(1,227,3811,'2012-10-31 03:16:58',1),(1,118,3811,'2012-10-31 03:16:58',1),(1,136,3811,'2012-10-31 03:16:58',1),(1,183,3812,'2012-10-31 03:17:04',1),(1,158,3812,'2012-10-31 03:17:04',1),(1,57,3812,'2012-10-31 03:17:04',1),(1,74,3812,'2012-10-31 03:17:04',1),(1,87,3812,'2012-10-31 03:17:04',1),(1,101,3812,'2012-10-31 03:17:04',1),(1,226,3812,'2012-10-31 03:17:04',1),(1,129,3812,'2012-10-31 03:17:04',1),(1,101,3833,'2012-10-31 03:46:19',1),(1,4,3834,'2012-10-31 03:46:19',1),(1,6,3834,'2012-10-31 03:46:19',1),(1,235,3832,'2012-10-31 03:46:19',1),(1,120,3796,'2012-10-31 03:46:22',NULL),(1,46,3796,'2012-10-31 03:46:22',NULL),(1,22,3796,'2012-10-31 03:46:22',NULL),(1,56,3796,'2012-10-31 03:46:22',NULL),(1,20,3840,'2012-10-31 03:46:36',1),(1,139,3840,'2012-10-31 03:46:36',1),(1,199,3844,'2012-10-31 03:46:44',1),(1,78,3844,'2012-10-31 03:46:44',1),(1,94,3845,'2012-10-31 03:46:45',1),(1,96,3845,'2012-10-31 03:46:45',1),(1,122,3845,'2012-10-31 03:46:45',1),(1,18,3845,'2012-10-31 03:46:45',1),(1,118,3846,'2012-10-31 03:46:47',1),(1,122,3846,'2012-10-31 03:46:47',1),(1,18,3846,'2012-10-31 03:46:47',1),(1,71,3846,'2012-10-31 03:46:47',1),(1,158,3846,'2012-10-31 03:46:47',1),(1,157,3846,'2012-10-31 03:46:47',1),(1,58,3846,'2012-10-31 03:46:47',1),(1,13,3846,'2012-10-31 03:46:47',1),(1,78,3848,'2012-10-31 03:46:58',1),(1,94,3853,'2012-10-31 03:47:06',1),(1,199,3854,'2012-10-31 03:47:06',1),(1,78,3854,'2012-10-31 03:47:06',1),(1,70,3835,'2012-10-31 04:16:24',1),(1,56,3835,'2012-10-31 04:16:24',1),(1,139,3838,'2012-10-31 04:16:30',NULL),(1,120,3838,'2012-10-31 04:16:30',NULL),(1,46,3838,'2012-10-31 04:16:30',NULL),(1,22,3838,'2012-10-31 04:16:30',NULL),(1,101,3838,'2012-10-31 04:16:30',NULL),(1,104,3838,'2012-10-31 04:16:30',NULL),(1,52,3838,'2012-10-31 04:16:30',NULL),(1,78,3838,'2012-10-31 04:16:30',NULL),(1,118,3843,'2012-10-31 04:16:44',NULL),(1,122,3843,'2012-10-31 04:16:44',NULL),(1,150,3843,'2012-10-31 04:16:44',NULL),(1,18,3843,'2012-10-31 04:16:44',NULL),(1,71,3843,'2012-10-31 04:16:44',NULL),(1,12,3843,'2012-10-31 04:16:44',NULL),(1,158,3843,'2012-10-31 04:16:44',NULL),(1,57,3843,'2012-10-31 04:16:44',NULL),(1,235,3843,'2012-10-31 04:16:44',NULL),(1,157,3843,'2012-10-31 04:16:44',NULL),(1,58,3843,'2012-10-31 04:16:44',NULL),(1,13,3843,'2012-10-31 04:16:44',NULL),(1,218,3843,'2012-10-31 04:16:44',NULL),(1,199,3843,'2012-10-31 04:16:44',NULL),(1,6,3843,'2012-10-31 04:16:44',NULL),(1,4,3843,'2012-10-31 04:16:44',NULL),(1,70,3849,'2012-10-31 04:17:01',1),(1,56,3849,'2012-10-31 04:17:01',1),(1,96,3855,'2012-10-31 04:17:08',1),(1,173,3855,'2012-10-31 04:17:08',1),(1,93,3855,'2012-10-31 04:17:08',1),(1,10,3855,'2012-10-31 04:17:08',1),(1,218,3836,'2012-10-31 04:46:29',1),(1,199,3836,'2012-10-31 04:46:29',1),(1,70,3836,'2012-10-31 04:46:29',1),(1,56,3836,'2012-10-31 04:46:29',1),(1,226,3841,'2012-10-31 04:46:42',1),(1,129,3841,'2012-10-31 04:46:42',1),(1,6,3841,'2012-10-31 04:46:42',1),(1,4,3841,'2012-10-31 04:46:42',1),(1,71,3842,'2012-10-31 04:46:45',1),(1,12,3842,'2012-10-31 04:46:45',1),(1,158,3842,'2012-10-31 04:46:45',1),(1,57,3842,'2012-10-31 04:46:45',1),(1,235,3842,'2012-10-31 04:46:45',1),(1,157,3842,'2012-10-31 04:46:45',1),(1,58,3842,'2012-10-31 04:46:45',1),(1,74,3842,'2012-10-31 04:46:45',1),(1,139,3847,'2012-10-31 04:46:53',1),(1,120,3847,'2012-10-31 04:46:53',1),(1,41,3847,'2012-10-31 04:46:53',1),(1,147,3847,'2012-10-31 04:46:53',1),(1,46,3847,'2012-10-31 04:46:53',1),(1,232,3847,'2012-10-31 04:46:53',1),(1,238,3847,'2012-10-31 04:46:53',1),(1,22,3847,'2012-10-31 04:46:53',1),(1,87,3847,'2012-10-31 04:46:53',1),(1,173,3847,'2012-10-31 04:46:53',1),(1,93,3847,'2012-10-31 04:46:53',1),(1,101,3847,'2012-10-31 04:46:53',1),(1,10,3847,'2012-10-31 04:46:53',1),(1,104,3847,'2012-10-31 04:46:53',1),(1,52,3847,'2012-10-31 04:46:53',1),(1,78,3847,'2012-10-31 04:46:53',1),(1,120,3850,'2012-10-31 04:47:06',1),(1,233,3850,'2012-10-31 04:47:06',1),(1,13,3850,'2012-10-31 04:47:06',1),(1,10,3850,'2012-10-31 04:47:06',1),(1,96,3852,'2012-10-31 04:47:10',1),(1,227,3852,'2012-10-31 04:47:10',1),(1,118,3852,'2012-10-31 04:47:10',1),(1,136,3852,'2012-10-31 04:47:10',1),(1,122,3852,'2012-10-31 04:47:10',1),(1,150,3852,'2012-10-31 04:47:10',1),(1,18,3852,'2012-10-31 04:47:10',1),(1,71,3852,'2012-10-31 04:47:10',1),(1,12,3852,'2012-10-31 04:47:10',1),(1,158,3852,'2012-10-31 04:47:10',1),(1,57,3852,'2012-10-31 04:47:10',1),(1,235,3852,'2012-10-31 04:47:10',1),(1,157,3852,'2012-10-31 04:47:10',1),(1,58,3852,'2012-10-31 04:47:10',1),(1,74,3852,'2012-10-31 04:47:10',1),(1,6,3852,'2012-10-31 04:47:10',1),(1,93,3856,'2012-10-31 04:47:11',1),(1,101,3856,'2012-10-31 04:47:11',1),(1,226,3856,'2012-10-31 04:47:11',1),(1,129,3856,'2012-10-31 04:47:11',1),(1,13,3856,'2012-10-31 04:47:11',1),(1,10,3856,'2012-10-31 04:47:11',1),(1,6,3856,'2012-10-31 04:47:11',1),(1,4,3856,'2012-10-31 04:47:11',1),(1,96,3839,'2012-10-31 05:16:33',NULL),(1,227,3839,'2012-10-31 05:16:33',NULL),(1,135,3839,'2012-10-31 05:16:33',NULL),(1,118,3839,'2012-10-31 05:16:33',NULL),(1,136,3839,'2012-10-31 05:16:33',NULL),(1,122,3839,'2012-10-31 05:16:33',NULL),(1,150,3839,'2012-10-31 05:16:33',NULL),(1,18,3839,'2012-10-31 05:16:33',NULL),(1,250,3837,'2012-10-31 05:16:33',1),(1,104,3837,'2012-10-31 05:16:33',1),(1,52,3837,'2012-10-31 05:16:33',1),(1,78,3837,'2012-10-31 05:16:33',1),(1,41,3851,'2012-10-31 05:17:11',NULL),(1,147,3851,'2012-10-31 05:17:11',NULL),(1,46,3851,'2012-10-31 05:17:11',NULL),(1,232,3851,'2012-10-31 05:17:11',NULL),(1,238,3851,'2012-10-31 05:17:11',NULL),(1,22,3851,'2012-10-31 05:17:11',NULL),(1,87,3851,'2012-10-31 05:17:11',NULL),(1,173,3851,'2012-10-31 05:17:11',NULL),(1,4,3882,'2012-11-01 00:46:26',1),(1,6,3883,'2012-11-01 00:46:29',1),(1,168,3884,'2012-11-01 00:46:32',1),(1,61,3885,'2012-11-01 00:46:35',1),(1,240,3886,'2012-11-01 00:46:38',1),(1,6,3887,'2012-11-01 00:46:38',1),(1,4,3887,'2012-11-01 00:46:38',1),(1,176,3888,'2012-11-01 00:46:41',1),(1,33,3888,'2012-11-01 00:46:41',1),(1,6,3889,'2012-11-01 00:46:43',1),(1,4,3889,'2012-11-01 00:46:43',1),(1,102,3890,'2012-11-01 00:46:47',1),(1,61,3890,'2012-11-01 00:46:47',1),(1,102,3891,'2012-11-01 00:46:49',1),(1,61,3891,'2012-11-01 00:46:49',1),(1,4,3892,'2012-11-01 00:46:50',1),(1,242,3892,'2012-11-01 00:46:50',1),(1,102,3892,'2012-11-01 00:46:50',1),(1,61,3892,'2012-11-01 00:46:50',1),(1,61,3893,'2012-11-01 00:46:51',1),(1,138,3893,'2012-11-01 00:46:51',1),(1,124,3893,'2012-11-01 00:46:51',1),(1,242,3893,'2012-11-01 00:46:51',1),(1,6,3894,'2012-11-01 00:47:03',1),(1,4,3894,'2012-11-01 00:47:03',1),(1,240,3894,'2012-11-01 00:47:03',1),(1,61,3894,'2012-11-01 00:47:03',1),(1,189,3895,'2012-11-01 00:47:04',1),(1,159,3895,'2012-11-01 00:47:04',1),(1,6,3895,'2012-11-01 00:47:04',1),(1,240,3895,'2012-11-01 00:47:04',1),(1,240,3896,'2012-11-01 00:47:04',1),(1,189,3896,'2012-11-01 00:47:04',1),(1,159,3896,'2012-11-01 00:47:04',1),(1,242,3896,'2012-11-01 00:47:04',1),(1,124,3897,'2012-11-01 00:47:06',1),(1,225,3897,'2012-11-01 00:47:06',1),(1,176,3897,'2012-11-01 00:47:06',1),(1,33,3897,'2012-11-01 00:47:06',1),(1,189,3897,'2012-11-01 00:47:06',1),(1,159,3897,'2012-11-01 00:47:06',1),(1,6,3897,'2012-11-01 00:47:06',1),(1,4,3897,'2012-11-01 00:47:06',1),(1,227,3898,'2012-11-01 00:47:18',1),(1,138,3898,'2012-11-01 00:47:18',1),(1,42,3898,'2012-11-01 00:47:18',1),(1,3,3898,'2012-11-01 00:47:18',1),(1,124,3898,'2012-11-01 00:47:18',1),(1,225,3898,'2012-11-01 00:47:18',1),(1,176,3898,'2012-11-01 00:47:18',1),(1,33,3898,'2012-11-01 00:47:18',1),(1,138,3899,'2012-11-01 00:47:18',1),(1,124,3899,'2012-11-01 00:47:18',1),(1,225,3899,'2012-11-01 00:47:18',1),(1,176,3899,'2012-11-01 00:47:18',1),(1,33,3899,'2012-11-01 00:47:18',1),(1,189,3899,'2012-11-01 00:47:18',1),(1,159,3899,'2012-11-01 00:47:18',1),(1,6,3899,'2012-11-01 00:47:18',1),(1,124,3900,'2012-11-01 00:47:20',1),(1,225,3900,'2012-11-01 00:47:20',1),(1,45,3900,'2012-11-01 00:47:20',1),(1,176,3900,'2012-11-01 00:47:20',1),(1,189,3900,'2012-11-01 00:47:20',1),(1,159,3900,'2012-11-01 00:47:20',1),(1,102,3900,'2012-11-01 00:47:20',1),(1,6,3900,'2012-11-01 00:47:20',1),(1,3,3901,'2012-11-01 00:47:20',1),(1,124,3901,'2012-11-01 00:47:20',1),(1,176,3901,'2012-11-01 00:47:20',1),(1,33,3901,'2012-11-01 00:47:20',1),(1,189,3901,'2012-11-01 00:47:20',1),(1,159,3901,'2012-11-01 00:47:20',1),(1,168,3901,'2012-11-01 00:47:20',1),(1,6,3901,'2012-11-01 00:47:20',1),(1,4,3922,'2012-11-01 01:46:13',1),(1,4,3923,'2012-11-01 01:46:13',1),(1,6,3924,'2012-11-01 02:16:14',1),(1,4,3924,'2012-11-01 02:16:14',1),(1,6,3925,'2012-11-01 02:16:14',1),(1,4,3925,'2012-11-01 02:16:14',1),(1,6,3939,'2012-11-01 02:46:17',1),(1,4,3939,'2012-11-01 02:46:17',1),(1,125,3926,'2012-11-01 02:46:38',1),(1,113,3926,'2012-11-01 02:46:38',1),(1,227,3926,'2012-11-01 02:46:38',1),(1,6,3926,'2012-11-01 02:46:38',1),(1,4,3943,'2012-11-01 02:46:38',1),(1,33,3944,'2012-11-01 02:46:38',1),(1,6,3944,'2012-11-01 02:46:38',1),(1,4,3947,'2012-11-01 02:46:44',1),(1,6,3948,'2012-11-01 02:46:44',1),(1,4,3948,'2012-11-01 02:46:44',1),(1,4,3951,'2012-11-01 02:46:46',1),(1,138,3952,'2012-11-01 02:46:46',1),(1,112,3952,'2012-11-01 02:46:46',1),(1,33,3927,'2012-11-01 03:16:45',1),(1,6,3927,'2012-11-01 03:16:45',1),(1,4,3927,'2012-11-01 03:16:45',1),(1,112,3927,'2012-11-01 03:16:45',1),(1,102,3974,'2012-11-01 03:46:20',1),(1,35,3975,'2012-11-01 03:46:23',1),(1,176,3976,'2012-11-01 03:46:24',1),(1,168,3976,'2012-11-01 03:46:24',1),(1,61,3940,'2012-11-01 03:46:26',1),(1,45,3940,'2012-11-01 03:46:26',1),(1,242,3940,'2012-11-01 03:46:26',1),(1,76,3940,'2012-11-01 03:46:26',1),(1,76,3982,'2012-11-01 03:46:34',1),(1,45,3982,'2012-11-01 03:46:34',1),(1,184,3986,'2012-11-01 03:46:49',1),(1,146,3986,'2012-11-01 03:46:49',1),(1,146,3945,'2012-11-01 03:46:53',1),(1,176,3945,'2012-11-01 03:46:53',1),(1,168,3945,'2012-11-01 03:46:53',1),(1,76,3945,'2012-11-01 03:46:53',1),(1,113,3949,'2012-11-01 03:46:53',1),(1,33,3949,'2012-11-01 03:46:53',1),(1,35,3949,'2012-11-01 03:46:53',1),(1,76,3949,'2012-11-01 03:46:53',1),(1,138,3995,'2012-11-01 03:47:08',1),(1,35,3996,'2012-11-01 03:47:10',1),(1,76,3996,'2012-11-01 03:47:10',1),(1,6,3938,'2012-11-01 04:16:26',NULL),(1,4,3938,'2012-11-01 04:16:26',NULL),(1,112,3938,'2012-11-01 04:16:26',NULL),(1,108,3938,'2012-11-01 04:16:26',NULL),(1,113,3941,'2012-11-01 04:16:26',1),(1,45,3941,'2012-11-01 04:16:26',1),(1,33,3941,'2012-11-01 04:16:26',1),(1,86,3941,'2012-11-01 04:16:26',1),(1,6,3941,'2012-11-01 04:16:26',1),(1,4,3941,'2012-11-01 04:16:26',1),(1,107,3941,'2012-11-01 04:16:26',1),(1,112,3941,'2012-11-01 04:16:26',1),(1,61,3977,'2012-11-01 04:16:26',NULL),(1,242,3977,'2012-11-01 04:16:26',NULL),(1,201,3928,'2012-11-01 04:16:54',1),(1,86,3928,'2012-11-01 04:16:54',1),(1,107,3928,'2012-11-01 04:16:54',1),(1,168,3928,'2012-11-01 04:16:54',1),(1,242,3928,'2012-11-01 04:16:54',1),(1,76,3928,'2012-11-01 04:16:54',1),(1,102,3928,'2012-11-01 04:16:54',1),(1,61,3928,'2012-11-01 04:16:54',1),(1,201,3987,'2012-11-01 04:16:56',1),(1,146,3987,'2012-11-01 04:16:56',1),(1,33,3987,'2012-11-01 04:16:56',1),(1,168,3987,'2012-11-01 04:16:56',1),(1,138,3946,'2012-11-01 04:16:56',1),(1,45,3946,'2012-11-01 04:16:56',1),(1,176,3946,'2012-11-01 04:16:56',1),(1,33,3946,'2012-11-01 04:16:56',1),(1,35,3946,'2012-11-01 04:16:56',1),(1,86,3946,'2012-11-01 04:16:56',1),(1,115,3946,'2012-11-01 04:16:56',1),(1,6,3946,'2012-11-01 04:16:56',1),(1,201,3990,'2012-11-01 04:16:58',1),(1,61,3991,'2012-11-01 04:16:58',1),(1,201,3991,'2012-11-01 04:16:58',1),(1,76,3953,'2012-11-01 04:17:02',1),(1,35,3953,'2012-11-01 04:17:02',1),(1,86,3953,'2012-11-01 04:17:02',1),(1,115,3953,'2012-11-01 04:17:02',1),(1,201,3997,'2012-11-01 04:17:14',1),(1,138,3997,'2012-11-01 04:17:14',1),(1,168,3997,'2012-11-01 04:17:14',1),(1,76,3997,'2012-11-01 04:17:14',1),(1,61,3988,'2012-11-01 04:46:58',1),(1,227,3988,'2012-11-01 04:46:58',1),(1,146,3988,'2012-11-01 04:46:58',1),(1,33,3988,'2012-11-01 04:46:58',1),(1,86,3988,'2012-11-01 04:46:58',1),(1,115,3988,'2012-11-01 04:46:58',1),(1,6,3988,'2012-11-01 04:46:58',1),(1,4,3988,'2012-11-01 04:46:58',1),(1,94,3942,'2012-11-01 04:46:58',1),(1,113,3942,'2012-11-01 04:46:58',1),(1,176,3942,'2012-11-01 04:46:58',1),(1,33,3942,'2012-11-01 04:46:58',1),(1,35,3942,'2012-11-01 04:46:58',1),(1,86,3942,'2012-11-01 04:46:58',1),(1,115,3942,'2012-11-01 04:46:58',1),(1,107,3942,'2012-11-01 04:46:58',1),(1,112,3942,'2012-11-01 04:46:58',1),(1,130,3942,'2012-11-01 04:46:58',1),(1,242,3942,'2012-11-01 04:46:58',1),(1,76,3942,'2012-11-01 04:46:58',1),(1,102,3942,'2012-11-01 04:46:58',1),(1,61,3942,'2012-11-01 04:46:58',1),(1,6,3942,'2012-11-01 04:46:58',1),(1,4,3942,'2012-11-01 04:46:58',1),(1,247,3950,'2012-11-01 04:47:00',1),(1,120,3950,'2012-11-01 04:47:00',1),(1,45,3950,'2012-11-01 04:47:00',1),(1,13,3950,'2012-11-01 04:47:00',1),(1,10,3950,'2012-11-01 04:47:00',1),(1,218,3950,'2012-11-01 04:47:00',1),(1,199,3950,'2012-11-01 04:47:00',1),(1,70,3950,'2012-11-01 04:47:00',1),(1,227,3955,'2012-11-01 04:47:18',1),(1,138,3955,'2012-11-01 04:47:18',1),(1,146,3955,'2012-11-01 04:47:18',1),(1,176,3955,'2012-11-01 04:47:18',1),(1,115,3955,'2012-11-01 04:47:18',1),(1,107,3955,'2012-11-01 04:47:18',1),(1,112,3955,'2012-11-01 04:47:18',1),(1,130,3955,'2012-11-01 04:47:18',1),(1,242,3955,'2012-11-01 04:47:18',1),(1,76,3955,'2012-11-01 04:47:18',1),(1,108,3955,'2012-11-01 04:47:18',1),(1,102,3955,'2012-11-01 04:47:18',1),(1,61,3955,'2012-11-01 04:47:18',1),(1,201,3955,'2012-11-01 04:47:18',1),(1,6,3955,'2012-11-01 04:47:18',1),(1,4,3955,'2012-11-01 04:47:18',1),(1,10,3978,'2012-11-01 05:16:32',1),(1,218,3978,'2012-11-01 05:16:32',1),(1,199,3978,'2012-11-01 05:16:32',1),(1,70,3978,'2012-11-01 05:16:32',1),(1,13,3983,'2012-11-01 05:16:42',1),(1,10,3983,'2012-11-01 05:16:42',1),(1,61,3983,'2012-11-01 05:16:42',1),(1,218,3983,'2012-11-01 05:16:42',1),(1,94,3985,'2012-11-01 05:17:05',NULL),(1,183,3985,'2012-11-01 05:17:05',NULL),(1,227,3985,'2012-11-01 05:17:05',NULL),(1,138,3985,'2012-11-01 05:17:05',NULL),(1,146,3985,'2012-11-01 05:17:05',NULL),(1,176,3985,'2012-11-01 05:17:05',NULL),(1,115,3985,'2012-11-01 05:17:05',NULL),(1,107,3985,'2012-11-01 05:17:05',NULL),(1,112,3985,'2012-11-01 05:17:05',NULL),(1,130,3985,'2012-11-01 05:17:05',NULL),(1,242,3985,'2012-11-01 05:17:05',NULL),(1,76,3985,'2012-11-01 05:17:05',NULL),(1,108,3985,'2012-11-01 05:17:05',NULL),(1,102,3985,'2012-11-01 05:17:05',NULL),(1,6,3985,'2012-11-01 05:17:05',NULL),(1,4,3985,'2012-11-01 05:17:05',NULL),(1,10,3979,'2012-11-01 05:46:39',NULL),(1,61,3979,'2012-11-01 05:46:39',NULL),(1,218,3979,'2012-11-01 05:46:39',NULL),(1,201,3979,'2012-11-01 05:46:39',NULL),(1,176,3989,'2012-11-01 05:47:09',1),(1,33,3989,'2012-11-01 05:47:09',1),(1,115,3989,'2012-11-01 05:47:09',1),(1,13,3989,'2012-11-01 05:47:09',1),(1,107,3989,'2012-11-01 05:47:09',1),(1,112,3989,'2012-11-01 05:47:09',1),(1,130,3989,'2012-11-01 05:47:09',1),(1,168,3989,'2012-11-01 05:47:09',1),(1,242,3989,'2012-11-01 05:47:09',1),(1,76,3989,'2012-11-01 05:47:09',1),(1,108,3989,'2012-11-01 05:47:09',1),(1,102,3989,'2012-11-01 05:47:09',1),(1,199,3989,'2012-11-01 05:47:09',1),(1,70,3989,'2012-11-01 05:47:09',1),(1,6,3989,'2012-11-01 05:47:09',1),(1,4,3989,'2012-11-01 05:47:09',1),(1,183,3929,'2012-11-01 05:47:09',1),(1,184,3929,'2012-11-01 05:47:09',1),(1,227,3929,'2012-11-01 05:47:09',1),(1,138,3929,'2012-11-01 05:47:09',1),(1,146,3929,'2012-11-01 05:47:09',1),(1,45,3929,'2012-11-01 05:47:09',1),(1,176,3929,'2012-11-01 05:47:09',1),(1,35,3929,'2012-11-01 05:47:09',1),(1,115,3998,'2012-11-01 05:47:22',1),(1,6,3998,'2012-11-01 05:47:22',1),(1,4,3998,'2012-11-01 05:47:22',1),(1,13,3998,'2012-11-01 05:47:22',1),(1,107,3998,'2012-11-01 05:47:22',1),(1,112,3998,'2012-11-01 05:47:22',1),(1,130,3998,'2012-11-01 05:47:22',1),(1,168,3998,'2012-11-01 05:47:22',1),(1,107,3980,'2012-11-01 06:16:41',1),(1,112,3980,'2012-11-01 06:16:41',1),(1,130,3980,'2012-11-01 06:16:41',1),(1,168,3980,'2012-11-01 06:16:41',1),(1,242,3980,'2012-11-01 06:16:41',1),(1,76,3980,'2012-11-01 06:16:41',1),(1,6,3980,'2012-11-01 06:16:41',1),(1,4,3980,'2012-11-01 06:16:41',1),(1,199,3992,'2012-11-01 06:17:15',1),(1,201,3992,'2012-11-01 06:17:15',1),(1,70,3992,'2012-11-01 06:17:15',1),(1,56,3992,'2012-11-01 06:17:15',1),(1,33,3994,'2012-11-01 06:17:15',1),(1,115,3994,'2012-11-01 06:17:15',1),(1,13,3994,'2012-11-01 06:17:15',1),(1,107,3994,'2012-11-01 06:17:15',1),(1,112,3994,'2012-11-01 06:17:15',1),(1,130,3994,'2012-11-01 06:17:15',1),(1,168,3994,'2012-11-01 06:17:15',1),(1,242,3994,'2012-11-01 06:17:15',1),(1,76,3994,'2012-11-01 06:17:15',1),(1,108,3994,'2012-11-01 06:17:15',1),(1,102,3994,'2012-11-01 06:17:15',1),(1,199,3994,'2012-11-01 06:17:15',1),(1,70,3994,'2012-11-01 06:17:15',1),(1,56,3994,'2012-11-01 06:17:15',1),(1,6,3994,'2012-11-01 06:17:15',1),(1,4,3994,'2012-11-01 06:17:15',1),(1,138,3954,'2012-11-01 06:17:17',1),(1,146,3954,'2012-11-01 06:17:17',1),(1,45,3954,'2012-11-01 06:17:17',1),(1,176,3954,'2012-11-01 06:17:17',1),(1,35,3954,'2012-11-01 06:17:17',1),(1,10,3954,'2012-11-01 06:17:17',1),(1,61,3954,'2012-11-01 06:17:17',1),(1,218,3954,'2012-11-01 06:17:17',1),(1,33,3981,'2012-11-01 06:46:50',1),(1,35,3981,'2012-11-01 06:46:50',1),(1,115,3981,'2012-11-01 06:46:50',1),(1,13,3981,'2012-11-01 06:46:50',1),(1,108,3981,'2012-11-01 06:46:50',1),(1,102,3981,'2012-11-01 06:46:50',1),(1,103,3981,'2012-11-01 06:46:50',1),(1,10,3981,'2012-11-01 06:46:50',1),(1,146,3984,'2012-11-01 06:46:50',1),(1,86,3984,'2012-11-01 06:46:50',1),(1,107,3984,'2012-11-01 06:46:50',1),(1,112,3984,'2012-11-01 06:46:50',1),(1,130,3984,'2012-11-01 06:46:50',1),(1,168,3984,'2012-11-01 06:46:50',1),(1,6,3984,'2012-11-01 06:46:50',1),(1,4,3984,'2012-11-01 06:46:50',1),(1,146,3993,'2012-11-01 07:17:26',1),(1,45,3993,'2012-11-01 07:17:26',1),(1,233,3993,'2012-11-01 07:17:26',1),(1,86,3993,'2012-11-01 07:17:26',1),(1,107,3993,'2012-11-01 07:17:26',1),(1,112,3993,'2012-11-01 07:17:26',1),(1,6,3993,'2012-11-01 07:17:26',1),(1,4,3993,'2012-11-01 07:17:26',1),(1,91,4024,'2012-11-02 10:51:05',1),(1,224,4034,'2012-11-02 10:51:12',1),(1,221,4034,'2012-11-02 10:51:12',1),(1,222,4034,'2012-11-02 10:51:12',1),(1,228,4034,'2012-11-02 10:51:12',1),(1,91,4035,'2012-11-02 10:51:13',1),(1,92,4035,'2012-11-02 10:51:13',1),(1,224,4035,'2012-11-02 10:51:13',1),(1,221,4035,'2012-11-02 10:51:13',1),(1,168,4040,'2012-11-02 10:51:16',1),(1,210,4040,'2012-11-02 10:51:16',1),(1,70,4040,'2012-11-02 10:51:16',1),(1,92,4040,'2012-11-02 10:51:16',1),(1,224,4040,'2012-11-02 10:51:16',1),(1,221,4040,'2012-11-02 10:51:16',1),(1,222,4040,'2012-11-02 10:51:16',1),(1,228,4040,'2012-11-02 10:51:16',1),(1,62,4042,'2012-11-02 10:51:16',1),(1,106,4042,'2012-11-02 10:51:16',1),(1,114,4042,'2012-11-02 10:51:16',1),(1,13,4042,'2012-11-02 10:51:16',1),(1,168,4042,'2012-11-02 10:51:16',1),(1,210,4042,'2012-11-02 10:51:16',1),(1,70,4042,'2012-11-02 10:51:16',1),(1,92,4042,'2012-11-02 10:51:16',1),(1,91,4025,'2012-11-02 11:22:07',1),(1,221,4026,'2012-11-02 11:22:08',1),(1,91,4027,'2012-11-02 11:22:10',1),(1,228,4028,'2012-11-02 11:22:13',1),(1,222,4029,'2012-11-02 11:22:14',1),(1,228,4029,'2012-11-02 11:22:14',1),(1,224,4030,'2012-11-02 11:22:16',1),(1,221,4030,'2012-11-02 11:22:16',1),(1,221,4031,'2012-11-02 11:22:17',1),(1,222,4031,'2012-11-02 11:22:17',1),(1,222,4032,'2012-11-02 11:22:19',1),(1,228,4032,'2012-11-02 11:22:19',1),(1,70,4033,'2012-11-02 11:22:20',1),(1,56,4033,'2012-11-02 11:22:20',1),(1,90,4036,'2012-11-02 11:22:22',1),(1,56,4036,'2012-11-02 11:22:22',1),(1,92,4036,'2012-11-02 11:22:22',1),(1,224,4036,'2012-11-02 11:22:22',1),(1,91,4037,'2012-11-02 11:22:23',1),(1,13,4037,'2012-11-02 11:22:23',1),(1,222,4037,'2012-11-02 11:22:23',1),(1,228,4037,'2012-11-02 11:22:23',1),(1,90,4038,'2012-11-02 11:22:25',1),(1,56,4038,'2012-11-02 11:22:25',1),(1,224,4038,'2012-11-02 11:22:25',1),(1,221,4038,'2012-11-02 11:22:25',1),(1,91,4064,'2012-11-02 11:22:28',1),(1,228,4065,'2012-11-02 11:22:28',1),(1,221,4066,'2012-11-02 11:22:28',1),(1,222,4066,'2012-11-02 11:22:28',1),(1,168,4067,'2012-11-02 11:22:31',1),(1,70,4067,'2012-11-02 11:22:31',1),(1,224,4081,'2012-11-02 11:22:46',1),(1,221,4081,'2012-11-02 11:22:46',1),(1,141,4082,'2012-11-02 11:22:47',1),(1,138,4082,'2012-11-02 11:22:47',1),(1,62,4082,'2012-11-02 11:22:47',1),(1,70,4082,'2012-11-02 11:22:47',1),(1,91,4085,'2012-11-02 11:22:51',1),(1,228,4086,'2012-11-02 11:22:52',1),(1,56,4086,'2012-11-02 11:22:52',1),(1,222,4090,'2012-11-02 11:22:56',1),(1,228,4090,'2012-11-02 11:22:56',1),(1,56,4089,'2012-11-02 11:22:56',1),(1,113,4129,'2012-11-02 11:23:17',1),(1,151,4129,'2012-11-02 11:23:17',1),(1,62,4129,'2012-11-02 11:23:17',1),(1,56,4129,'2012-11-02 11:23:17',1),(1,88,4128,'2012-11-02 11:23:17',1),(1,138,4128,'2012-11-02 11:23:17',1),(1,222,4137,'2012-11-02 11:23:22',1),(1,224,4138,'2012-11-02 11:23:23',1),(1,221,4138,'2012-11-02 11:23:23',1),(1,91,4139,'2012-11-02 11:23:24',1),(1,88,4139,'2012-11-02 11:23:24',1),(1,138,4139,'2012-11-02 11:23:24',1),(1,90,4139,'2012-11-02 11:23:24',1),(1,134,4041,'2012-11-02 11:52:27',1),(1,141,4041,'2012-11-02 11:52:27',1),(1,210,4041,'2012-11-02 11:52:27',1),(1,224,4041,'2012-11-02 11:52:27',1),(1,221,4041,'2012-11-02 11:52:27',1),(1,222,4041,'2012-11-02 11:52:27',1),(1,228,4041,'2012-11-02 11:52:27',1),(1,91,4041,'2012-11-02 11:52:27',1),(1,134,4039,'2012-11-02 11:52:27',1),(1,141,4039,'2012-11-02 11:52:27',1),(1,210,4039,'2012-11-02 11:52:27',1),(1,224,4039,'2012-11-02 11:52:27',1),(1,221,4039,'2012-11-02 11:52:27',1),(1,222,4039,'2012-11-02 11:52:27',1),(1,228,4039,'2012-11-02 11:52:27',1),(1,91,4039,'2012-11-02 11:52:27',1),(1,25,4043,'2012-11-02 11:52:27',1),(1,134,4043,'2012-11-02 11:52:27',1),(1,141,4043,'2012-11-02 11:52:27',1),(1,210,4043,'2012-11-02 11:52:27',1),(1,92,4043,'2012-11-02 11:52:27',1),(1,224,4043,'2012-11-02 11:52:27',1),(1,221,4043,'2012-11-02 11:52:27',1),(1,222,4043,'2012-11-02 11:52:27',1),(1,210,4068,'2012-11-02 11:52:35',1),(1,221,4068,'2012-11-02 11:52:35',1),(1,222,4068,'2012-11-02 11:52:35',1),(1,228,4068,'2012-11-02 11:52:35',1),(1,210,4069,'2012-11-02 11:52:39',1),(1,221,4069,'2012-11-02 11:52:39',1),(1,222,4069,'2012-11-02 11:52:39',1),(1,228,4069,'2012-11-02 11:52:39',1),(1,25,4070,'2012-11-02 11:52:41',1),(1,134,4070,'2012-11-02 11:52:41',1),(1,141,4070,'2012-11-02 11:52:41',1),(1,210,4070,'2012-11-02 11:52:41',1),(1,92,4070,'2012-11-02 11:52:41',1),(1,224,4070,'2012-11-02 11:52:41',1),(1,221,4070,'2012-11-02 11:52:41',1),(1,222,4070,'2012-11-02 11:52:41',1),(1,25,4071,'2012-11-02 11:52:43',1),(1,134,4071,'2012-11-02 11:52:43',1),(1,141,4071,'2012-11-02 11:52:43',1),(1,210,4071,'2012-11-02 11:52:43',1),(1,92,4071,'2012-11-02 11:52:43',1),(1,224,4071,'2012-11-02 11:52:43',1),(1,221,4071,'2012-11-02 11:52:43',1),(1,222,4071,'2012-11-02 11:52:43',1),(1,25,4083,'2012-11-02 11:52:51',1),(1,134,4083,'2012-11-02 11:52:51',1),(1,141,4083,'2012-11-02 11:52:51',1),(1,210,4083,'2012-11-02 11:52:51',1),(1,92,4083,'2012-11-02 11:52:51',1),(1,224,4083,'2012-11-02 11:52:51',1),(1,221,4083,'2012-11-02 11:52:51',1),(1,222,4083,'2012-11-02 11:52:51',1),(1,210,4087,'2012-11-02 11:52:56',1),(1,221,4087,'2012-11-02 11:52:56',1),(1,222,4087,'2012-11-02 11:52:56',1),(1,228,4087,'2012-11-02 11:52:56',1),(1,25,4088,'2012-11-02 11:52:57',1),(1,134,4088,'2012-11-02 11:52:57',1),(1,141,4088,'2012-11-02 11:52:57',1),(1,210,4088,'2012-11-02 11:52:57',1),(1,92,4088,'2012-11-02 11:52:57',1),(1,224,4088,'2012-11-02 11:52:57',1),(1,221,4088,'2012-11-02 11:52:57',1),(1,222,4088,'2012-11-02 11:52:57',1),(1,210,4091,'2012-11-02 11:52:58',1),(1,221,4091,'2012-11-02 11:52:58',1),(1,222,4091,'2012-11-02 11:52:58',1),(1,228,4091,'2012-11-02 11:52:58',1),(1,92,4093,'2012-11-02 11:53:03',1),(1,222,4094,'2012-11-02 11:53:04',1),(1,228,4094,'2012-11-02 11:53:04',1),(1,221,4116,'2012-11-02 11:53:09',1),(1,92,4117,'2012-11-02 11:53:10',1),(1,91,4118,'2012-11-02 11:53:12',1),(1,224,4118,'2012-11-02 11:53:12',1),(1,210,4132,'2012-11-02 11:53:22',1),(1,25,4092,'2012-11-02 12:23:01',1),(1,134,4092,'2012-11-02 12:23:01',1),(1,141,4092,'2012-11-02 12:23:01',1),(1,210,4092,'2012-11-02 12:23:01',1),(1,92,4092,'2012-11-02 12:23:01',1),(1,224,4092,'2012-11-02 12:23:01',1),(1,221,4092,'2012-11-02 12:23:01',1),(1,222,4092,'2012-11-02 12:23:01',1),(1,25,4096,'2012-11-02 12:23:09',1),(1,134,4096,'2012-11-02 12:23:09',1),(1,141,4096,'2012-11-02 12:23:09',1),(1,210,4096,'2012-11-02 12:23:09',1),(1,92,4096,'2012-11-02 12:23:09',1),(1,224,4096,'2012-11-02 12:23:09',1),(1,221,4096,'2012-11-02 12:23:09',1),(1,222,4096,'2012-11-02 12:23:09',1),(1,91,4119,'2012-11-02 12:23:15',1),(1,228,4119,'2012-11-02 12:23:15',1),(1,228,4124,'2012-11-02 12:23:21',1),(1,91,4124,'2012-11-02 12:23:21',1),(1,25,4122,'2012-11-02 12:53:19',1),(1,134,4122,'2012-11-02 12:53:19',1),(1,141,4122,'2012-11-02 12:53:19',1),(1,210,4122,'2012-11-02 12:53:19',1),(1,92,4122,'2012-11-02 12:53:19',1),(1,224,4122,'2012-11-02 12:53:19',1),(1,221,4122,'2012-11-02 12:53:19',1),(1,222,4122,'2012-11-02 12:53:19',1),(1,228,4133,'2012-11-02 12:53:26',1),(1,91,4133,'2012-11-02 12:53:26',1),(1,149,4095,'2012-11-02 13:23:10',1),(1,89,4095,'2012-11-02 13:23:10',1),(1,187,4095,'2012-11-02 13:23:10',1),(1,222,4095,'2012-11-02 13:23:10',1),(1,25,4123,'2012-11-02 13:23:25',NULL),(1,134,4123,'2012-11-02 13:23:25',NULL),(1,141,4123,'2012-11-02 13:23:25',NULL),(1,152,4123,'2012-11-02 13:23:25',NULL),(1,210,4123,'2012-11-02 13:23:25',NULL),(1,92,4123,'2012-11-02 13:23:25',NULL),(1,224,4123,'2012-11-02 13:23:25',NULL),(1,221,4123,'2012-11-02 13:23:25',NULL),(1,140,4080,'2012-11-02 15:53:00',NULL),(1,119,4080,'2012-11-02 15:53:00',NULL),(1,97,4080,'2012-11-02 15:53:00',NULL),(1,222,4080,'2012-11-02 15:53:00',NULL),(1,160,4120,'2012-11-02 18:53:37',1),(1,133,4120,'2012-11-02 18:53:37',1),(1,95,4120,'2012-11-02 18:53:37',1),(1,225,4120,'2012-11-02 18:53:37',1),(1,94,4121,'2012-11-02 19:23:53',1),(1,160,4121,'2012-11-02 19:23:53',1),(1,133,4121,'2012-11-02 19:23:53',1),(1,95,4121,'2012-11-02 19:23:53',1),(1,238,4125,'2012-11-02 21:24:00',1),(1,22,4125,'2012-11-02 21:24:00',1),(1,87,4125,'2012-11-02 21:24:00',1),(1,173,4125,'2012-11-02 21:24:00',1),(1,238,4134,'2012-11-02 21:24:13',1),(1,22,4134,'2012-11-02 21:24:13',1),(1,87,4134,'2012-11-02 21:24:13',1),(1,173,4134,'2012-11-02 21:24:13',1),(1,10,4171,'2012-11-03 06:47:47',1),(1,219,4171,'2012-11-03 06:47:47',1),(1,233,4179,'2012-11-03 06:47:49',1),(1,19,4179,'2012-11-03 06:47:49',1),(1,192,4179,'2012-11-03 06:47:49',1),(1,224,4179,'2012-11-03 06:47:49',1),(1,34,4172,'2012-11-03 06:47:54',1),(1,10,4172,'2012-11-03 06:47:54',1),(1,34,4174,'2012-11-03 06:48:10',1),(1,10,4174,'2012-11-03 06:48:10',1),(1,219,4170,'2012-11-03 06:48:35',1),(1,144,4126,'2012-11-03 06:58:16',1),(1,86,4126,'2012-11-03 06:58:16',1),(1,87,4126,'2012-11-03 06:58:16',1),(1,173,4126,'2012-11-03 06:58:16',1),(1,242,4126,'2012-11-03 06:58:16',1),(1,202,4126,'2012-11-03 06:58:16',1),(1,240,4126,'2012-11-03 06:58:16',1),(1,56,4126,'2012-11-03 06:58:16',1),(1,233,4130,'2012-11-03 06:58:26',1),(1,144,4130,'2012-11-03 06:58:26',1),(1,86,4130,'2012-11-03 06:58:26',1),(1,87,4130,'2012-11-03 06:58:26',1),(1,173,4130,'2012-11-03 06:58:26',1),(1,242,4130,'2012-11-03 06:58:26',1),(1,202,4130,'2012-11-03 06:58:26',1),(1,240,4130,'2012-11-03 06:58:26',1),(1,219,4223,'2012-11-03 07:16:47',1),(1,90,4223,'2012-11-03 07:16:47',1),(1,51,4228,'2012-11-03 07:16:58',1),(1,219,4228,'2012-11-03 07:16:58',1),(1,221,4206,'2012-11-03 07:17:02',1),(1,240,4207,'2012-11-03 07:17:06',1),(1,221,4231,'2012-11-03 07:17:13',1),(1,10,4208,'2012-11-03 07:17:14',1),(1,219,4208,'2012-11-03 07:17:14',1),(1,240,4209,'2012-11-03 07:17:20',1),(1,90,4209,'2012-11-03 07:17:20',1),(1,219,4180,'2012-11-03 07:17:54',1),(1,90,4180,'2012-11-03 07:17:54',1),(1,192,4180,'2012-11-03 07:17:54',1),(1,240,4180,'2012-11-03 07:17:54',1),(1,221,4175,'2012-11-03 07:18:11',1),(1,10,4175,'2012-11-03 07:18:11',1),(1,224,4173,'2012-11-03 07:18:11',1),(1,221,4173,'2012-11-03 07:18:11',1),(1,221,4176,'2012-11-03 07:18:21',1),(1,128,4176,'2012-11-03 07:18:21',1),(1,192,4176,'2012-11-03 07:18:21',1),(1,240,4176,'2012-11-03 07:18:21',1),(1,92,4166,'2012-11-03 07:18:38',1),(1,219,4169,'2012-11-03 07:18:46',1),(1,56,4168,'2012-11-03 07:19:01',1),(1,221,4167,'2012-11-03 07:19:12',1),(1,202,4270,'2012-11-03 07:46:55',1),(1,210,4270,'2012-11-03 07:46:55',1),(1,90,4227,'2012-11-03 07:47:01',1),(1,92,4274,'2012-11-03 07:47:06',1),(1,87,4266,'2012-11-03 07:47:10',1),(1,202,4266,'2012-11-03 07:47:10',1),(1,202,4258,'2012-11-03 07:47:13',1),(1,192,4260,'2012-11-03 07:47:14',1),(1,242,4260,'2012-11-03 07:47:14',1),(1,221,4232,'2012-11-03 07:47:28',1),(1,210,4232,'2012-11-03 07:47:28',1),(1,219,4235,'2012-11-03 07:47:31',1),(1,210,4210,'2012-11-03 07:47:33',1),(1,56,4210,'2012-11-03 07:47:33',1),(1,92,4210,'2012-11-03 07:47:33',1),(1,221,4210,'2012-11-03 07:47:33',1),(1,92,4211,'2012-11-03 07:47:33',1),(1,221,4211,'2012-11-03 07:47:33',1),(1,173,4211,'2012-11-03 07:47:33',1),(1,219,4211,'2012-11-03 07:47:33',1),(1,202,4279,'2012-11-03 07:47:48',1),(1,221,4236,'2012-11-03 07:47:49',1),(1,210,4236,'2012-11-03 07:47:49',1),(1,210,4177,'2012-11-03 07:48:33',1),(1,233,4177,'2012-11-03 07:48:33',1),(1,194,4177,'2012-11-03 07:48:33',1),(1,192,4177,'2012-11-03 07:48:33',1),(1,56,4178,'2012-11-03 07:48:40',1),(1,92,4178,'2012-11-03 07:48:40',1),(1,221,4178,'2012-11-03 07:48:40',1),(1,242,4178,'2012-11-03 07:48:40',1),(1,56,4135,'2012-11-03 07:58:36',1),(1,233,4135,'2012-11-03 07:58:36',1),(1,144,4135,'2012-11-03 07:58:36',1),(1,86,4135,'2012-11-03 07:58:36',1),(1,87,4135,'2012-11-03 07:58:36',1),(1,173,4135,'2012-11-03 07:58:36',1),(1,242,4135,'2012-11-03 07:58:36',1),(1,202,4135,'2012-11-03 07:58:36',1),(1,192,4140,'2012-11-03 07:58:48',1),(1,226,4140,'2012-11-03 07:58:48',1),(1,129,4140,'2012-11-03 07:58:48',1),(1,202,4140,'2012-11-03 07:58:48',1),(1,240,4140,'2012-11-03 07:58:48',1),(1,104,4140,'2012-11-03 07:58:48',1),(1,52,4140,'2012-11-03 07:58:48',1),(1,78,4140,'2012-11-03 07:58:48',1),(1,224,4267,'2012-11-03 08:16:55',1),(1,226,4267,'2012-11-03 08:16:55',1),(1,129,4267,'2012-11-03 08:16:55',1),(1,242,4267,'2012-11-03 08:16:55',1),(1,226,4224,'2012-11-03 08:16:58',1),(1,129,4224,'2012-11-03 08:16:58',1),(1,240,4224,'2012-11-03 08:16:58',1),(1,104,4224,'2012-11-03 08:16:58',1),(1,86,4229,'2012-11-03 08:17:10',1),(1,74,4229,'2012-11-03 08:17:10',1),(1,87,4229,'2012-11-03 08:17:10',1),(1,250,4229,'2012-11-03 08:17:10',1),(1,240,4259,'2012-11-03 08:17:14',1),(1,210,4261,'2012-11-03 08:17:16',1),(1,56,4261,'2012-11-03 08:17:16',1),(1,74,4275,'2012-11-03 08:17:31',1),(1,87,4275,'2012-11-03 08:17:31',1),(1,104,4233,'2012-11-03 08:17:48',1),(1,52,4233,'2012-11-03 08:17:48',1),(1,210,4233,'2012-11-03 08:17:48',1),(1,56,4233,'2012-11-03 08:17:48',1),(1,192,4280,'2012-11-03 08:17:49',1),(1,86,4280,'2012-11-03 08:17:49',1),(1,192,4184,'2012-11-03 08:18:06',1),(1,226,4184,'2012-11-03 08:18:06',1),(1,129,4184,'2012-11-03 08:18:06',1),(1,242,4184,'2012-11-03 08:18:06',1),(1,202,4184,'2012-11-03 08:18:06',1),(1,240,4184,'2012-11-03 08:18:06',1),(1,104,4184,'2012-11-03 08:18:06',1),(1,52,4184,'2012-11-03 08:18:06',1),(1,101,4181,'2012-11-03 08:18:09',1),(1,226,4181,'2012-11-03 08:18:09',1),(1,129,4181,'2012-11-03 08:18:09',1),(1,242,4181,'2012-11-03 08:18:09',1),(1,202,4181,'2012-11-03 08:18:09',1),(1,240,4181,'2012-11-03 08:18:09',1),(1,104,4181,'2012-11-03 08:18:09',1),(1,52,4181,'2012-11-03 08:18:09',1),(1,210,4183,'2012-11-03 08:18:14',1),(1,56,4183,'2012-11-03 08:18:14',1),(1,101,4183,'2012-11-03 08:18:14',1),(1,226,4183,'2012-11-03 08:18:14',1),(1,129,4183,'2012-11-03 08:18:14',1),(1,242,4183,'2012-11-03 08:18:14',1),(1,202,4183,'2012-11-03 08:18:14',1),(1,240,4183,'2012-11-03 08:18:14',1),(1,210,4182,'2012-11-03 08:18:16',1),(1,56,4182,'2012-11-03 08:18:16',1),(1,101,4182,'2012-11-03 08:18:16',1),(1,226,4182,'2012-11-03 08:18:16',1),(1,129,4182,'2012-11-03 08:18:16',1),(1,242,4182,'2012-11-03 08:18:16',1),(1,202,4182,'2012-11-03 08:18:16',1),(1,240,4182,'2012-11-03 08:18:16',1),(1,74,4185,'2012-11-03 08:19:09',1),(1,87,4185,'2012-11-03 08:19:09',1),(1,101,4185,'2012-11-03 08:19:09',1),(1,226,4185,'2012-11-03 08:19:09',1),(1,129,4185,'2012-11-03 08:19:09',1),(1,242,4185,'2012-11-03 08:19:09',1),(1,202,4185,'2012-11-03 08:19:09',1),(1,240,4185,'2012-11-03 08:19:09',1),(1,221,4222,'2012-11-03 08:47:04',NULL),(1,173,4222,'2012-11-03 08:47:04',NULL),(1,219,4222,'2012-11-03 08:47:04',NULL),(1,92,4222,'2012-11-03 08:47:04',NULL),(1,93,4225,'2012-11-03 08:47:05',1),(1,101,4225,'2012-11-03 08:47:05',1),(1,226,4225,'2012-11-03 08:47:05',1),(1,129,4225,'2012-11-03 08:47:05',1),(1,242,4225,'2012-11-03 08:47:05',1),(1,219,4225,'2012-11-03 08:47:05',1),(1,104,4225,'2012-11-03 08:47:05',1),(1,78,4225,'2012-11-03 08:47:05',1),(1,192,4271,'2012-11-03 08:47:06',1),(1,226,4271,'2012-11-03 08:47:06',1),(1,129,4271,'2012-11-03 08:47:06',1),(1,242,4271,'2012-11-03 08:47:06',1),(1,92,4230,'2012-11-03 08:47:21',1),(1,221,4230,'2012-11-03 08:47:21',1),(1,93,4230,'2012-11-03 08:47:21',1),(1,101,4230,'2012-11-03 08:47:21',1),(1,226,4230,'2012-11-03 08:47:21',1),(1,129,4230,'2012-11-03 08:47:21',1),(1,242,4230,'2012-11-03 08:47:21',1),(1,219,4230,'2012-11-03 08:47:21',1),(1,202,4263,'2012-11-03 08:47:22',1),(1,240,4263,'2012-11-03 08:47:22',1),(1,52,4263,'2012-11-03 08:47:22',1),(1,210,4263,'2012-11-03 08:47:22',1),(1,86,4276,'2012-11-03 08:47:38',1),(1,101,4276,'2012-11-03 08:47:38',1),(1,226,4276,'2012-11-03 08:47:38',1),(1,129,4276,'2012-11-03 08:47:38',1),(1,144,4262,'2012-11-03 08:47:38',1),(1,226,4262,'2012-11-03 08:47:38',1),(1,129,4262,'2012-11-03 08:47:38',1),(1,242,4262,'2012-11-03 08:47:38',1),(1,190,4212,'2012-11-03 08:47:39',1),(1,192,4212,'2012-11-03 08:47:39',1),(1,226,4212,'2012-11-03 08:47:39',1),(1,129,4212,'2012-11-03 08:47:39',1),(1,242,4212,'2012-11-03 08:47:39',1),(1,90,4212,'2012-11-03 08:47:39',1),(1,56,4212,'2012-11-03 08:47:39',1),(1,224,4212,'2012-11-03 08:47:39',1),(1,242,4213,'2012-11-03 08:47:40',1),(1,219,4213,'2012-11-03 08:47:40',1),(1,104,4213,'2012-11-03 08:47:40',1),(1,78,4213,'2012-11-03 08:47:40',1),(1,90,4213,'2012-11-03 08:47:40',1),(1,56,4213,'2012-11-03 08:47:40',1),(1,92,4213,'2012-11-03 08:47:40',1),(1,221,4213,'2012-11-03 08:47:40',1),(1,101,4281,'2012-11-03 08:47:54',1),(1,90,4281,'2012-11-03 08:47:54',1),(1,56,4281,'2012-11-03 08:47:54',1),(1,224,4281,'2012-11-03 08:47:54',1),(1,52,4237,'2012-11-03 08:47:56',1),(1,210,4237,'2012-11-03 08:47:56',1),(1,90,4237,'2012-11-03 08:47:56',1),(1,56,4237,'2012-11-03 08:47:56',1),(1,41,4084,'2012-11-03 08:57:57',1),(1,147,4084,'2012-11-03 08:57:57',1),(1,46,4084,'2012-11-03 08:57:57',1),(1,232,4084,'2012-11-03 08:57:57',1),(1,93,4084,'2012-11-03 08:57:57',1),(1,101,4084,'2012-11-03 08:57:57',1),(1,226,4084,'2012-11-03 08:57:57',1),(1,129,4084,'2012-11-03 08:57:57',1),(1,242,4084,'2012-11-03 08:57:57',1),(1,202,4084,'2012-11-03 08:57:57',1),(1,240,4084,'2012-11-03 08:57:57',1),(1,219,4084,'2012-11-03 08:57:57',1),(1,52,4084,'2012-11-03 08:57:57',1),(1,210,4084,'2012-11-03 08:57:57',1),(1,92,4084,'2012-11-03 08:57:57',1),(1,221,4084,'2012-11-03 08:57:57',1),(1,78,4272,'2012-11-03 09:17:08',1),(1,56,4272,'2012-11-03 09:17:08',1),(1,135,4272,'2012-11-03 09:17:08',1),(1,118,4272,'2012-11-03 09:17:08',1),(1,136,4272,'2012-11-03 09:17:08',1),(1,139,4272,'2012-11-03 09:17:08',1),(1,122,4272,'2012-11-03 09:17:08',1),(1,150,4272,'2012-11-03 09:17:08',1),(1,78,4234,'2012-11-03 09:17:49',1),(1,90,4234,'2012-11-03 09:17:49',1),(1,56,4234,'2012-11-03 09:17:49',1),(1,221,4234,'2012-11-03 09:17:49',1),(1,136,4234,'2012-11-03 09:17:49',1),(1,139,4234,'2012-11-03 09:17:49',1),(1,122,4234,'2012-11-03 09:17:49',1),(1,150,4234,'2012-11-03 09:17:49',1),(1,78,4282,'2012-11-03 09:18:14',1),(1,90,4282,'2012-11-03 09:18:14',1),(1,56,4282,'2012-11-03 09:18:14',1),(1,221,4282,'2012-11-03 09:18:14',1),(1,139,4282,'2012-11-03 09:18:14',1),(1,122,4282,'2012-11-03 09:18:14',1),(1,150,4282,'2012-11-03 09:18:14',1),(1,192,4282,'2012-11-03 09:18:14',1),(1,219,4238,'2012-11-03 09:18:21',1),(1,104,4238,'2012-11-03 09:18:21',1),(1,52,4238,'2012-11-03 09:18:21',1),(1,78,4238,'2012-11-03 09:18:21',1),(1,210,4238,'2012-11-03 09:18:21',1),(1,90,4238,'2012-11-03 09:18:21',1),(1,56,4238,'2012-11-03 09:18:21',1),(1,92,4238,'2012-11-03 09:18:21',1),(1,147,4097,'2012-11-03 09:28:10',1),(1,46,4097,'2012-11-03 09:28:10',1),(1,232,4097,'2012-11-03 09:28:10',1),(1,87,4097,'2012-11-03 09:28:10',1),(1,93,4097,'2012-11-03 09:28:10',1),(1,101,4097,'2012-11-03 09:28:10',1),(1,226,4097,'2012-11-03 09:28:10',1),(1,129,4097,'2012-11-03 09:28:10',1),(1,242,4097,'2012-11-03 09:28:10',1),(1,202,4097,'2012-11-03 09:28:10',1),(1,240,4097,'2012-11-03 09:28:10',1),(1,219,4097,'2012-11-03 09:28:10',1),(1,104,4097,'2012-11-03 09:28:10',1),(1,52,4097,'2012-11-03 09:28:10',1),(1,210,4097,'2012-11-03 09:28:10',1),(1,92,4097,'2012-11-03 09:28:10',1),(1,232,4127,'2012-11-03 09:28:30',1),(1,34,4127,'2012-11-03 09:28:30',1),(1,128,4127,'2012-11-03 09:28:30',1),(1,190,4127,'2012-11-03 09:28:30',1),(1,192,4127,'2012-11-03 09:28:30',1),(1,144,4127,'2012-11-03 09:28:30',1),(1,74,4127,'2012-11-03 09:28:30',1),(1,87,4127,'2012-11-03 09:28:30',1),(1,250,4127,'2012-11-03 09:28:30',1),(1,93,4127,'2012-11-03 09:28:30',1),(1,101,4127,'2012-11-03 09:28:30',1),(1,226,4127,'2012-11-03 09:28:30',1),(1,129,4127,'2012-11-03 09:28:30',1),(1,242,4127,'2012-11-03 09:28:30',1),(1,202,4127,'2012-11-03 09:28:30',1),(1,240,4127,'2012-11-03 09:28:30',1),(1,219,4268,'2012-11-03 09:47:14',1),(1,104,4268,'2012-11-03 09:47:14',1),(1,52,4268,'2012-11-03 09:47:14',1),(1,78,4268,'2012-11-03 09:47:14',1),(1,210,4268,'2012-11-03 09:47:14',1),(1,90,4268,'2012-11-03 09:47:14',1),(1,56,4268,'2012-11-03 09:47:14',1),(1,92,4268,'2012-11-03 09:47:14',1),(1,64,4226,'2012-11-03 09:47:15',1),(1,242,4226,'2012-11-03 09:47:15',1),(1,60,4226,'2012-11-03 09:47:15',1),(1,215,4226,'2012-11-03 09:47:15',1),(1,231,4226,'2012-11-03 09:47:15',1),(1,230,4226,'2012-11-03 09:47:15',1),(1,200,4226,'2012-11-03 09:47:15',1),(1,66,4226,'2012-11-03 09:47:15',1),(1,201,4226,'2012-11-03 09:47:15',1),(1,205,4226,'2012-11-03 09:47:15',1),(1,77,4226,'2012-11-03 09:47:15',1),(1,67,4226,'2012-11-03 09:47:15',1),(1,206,4226,'2012-11-03 09:47:15',1),(1,49,4226,'2012-11-03 09:47:15',1),(1,207,4226,'2012-11-03 09:47:15',1),(1,211,4226,'2012-11-03 09:47:15',1),(1,46,4131,'2012-11-03 09:58:36',1),(1,232,4131,'2012-11-03 09:58:36',1),(1,34,4131,'2012-11-03 09:58:36',1),(1,128,4131,'2012-11-03 09:58:36',1),(1,19,4131,'2012-11-03 09:58:36',1),(1,189,4131,'2012-11-03 09:58:36',1),(1,190,4131,'2012-11-03 09:58:36',1),(1,192,4131,'2012-11-03 09:58:36',1),(1,144,4131,'2012-11-03 09:58:36',1),(1,74,4131,'2012-11-03 09:58:36',1),(1,87,4131,'2012-11-03 09:58:36',1),(1,173,4131,'2012-11-03 09:58:36',1),(1,250,4131,'2012-11-03 09:58:36',1),(1,93,4131,'2012-11-03 09:58:36',1),(1,101,4131,'2012-11-03 09:58:36',1),(1,226,4131,'2012-11-03 09:58:36',1),(1,136,4136,'2012-11-03 09:58:43',1),(1,122,4136,'2012-11-03 09:58:43',1),(1,43,4136,'2012-11-03 09:58:43',1),(1,195,4136,'2012-11-03 09:58:43',1),(1,72,4136,'2012-11-03 09:58:43',1),(1,182,4136,'2012-11-03 09:58:43',1),(1,37,4136,'2012-11-03 09:58:43',1),(1,30,4136,'2012-11-03 09:58:43',1),(1,236,4136,'2012-11-03 09:58:43',1),(1,83,4136,'2012-11-03 09:58:43',1),(1,174,4136,'2012-11-03 09:58:43',1),(1,15,4136,'2012-11-03 09:58:43',1),(1,75,4136,'2012-11-03 09:58:43',1),(1,112,4136,'2012-11-03 09:58:43',1),(1,130,4136,'2012-11-03 09:58:43',1),(1,156,4136,'2012-11-03 09:58:43',1),(1,46,4269,'2012-11-03 10:17:16',1),(1,232,4269,'2012-11-03 10:17:16',1),(1,58,4269,'2012-11-03 10:17:16',1),(1,34,4269,'2012-11-03 10:17:16',1),(1,128,4269,'2012-11-03 10:17:16',1),(1,19,4269,'2012-11-03 10:17:16',1),(1,189,4269,'2012-11-03 10:17:16',1),(1,190,4269,'2012-11-03 10:17:16',1),(1,192,4269,'2012-11-03 10:17:16',1),(1,144,4269,'2012-11-03 10:17:16',1),(1,74,4269,'2012-11-03 10:17:16',1),(1,87,4269,'2012-11-03 10:17:16',1),(1,173,4269,'2012-11-03 10:17:16',1),(1,250,4269,'2012-11-03 10:17:16',1),(1,93,4269,'2012-11-03 10:17:16',1),(1,101,4269,'2012-11-03 10:17:16',1),(1,136,4273,'2012-11-03 10:17:16',1),(1,122,4273,'2012-11-03 10:17:16',1),(1,43,4273,'2012-11-03 10:17:16',1),(1,195,4273,'2012-11-03 10:17:16',1),(1,72,4273,'2012-11-03 10:17:16',1),(1,182,4273,'2012-11-03 10:17:16',1),(1,37,4273,'2012-11-03 10:17:16',1),(1,30,4273,'2012-11-03 10:17:16',1),(1,236,4273,'2012-11-03 10:17:16',1),(1,83,4273,'2012-11-03 10:17:16',1),(1,86,4273,'2012-11-03 10:17:16',1),(1,174,4273,'2012-11-03 10:17:16',1),(1,15,4273,'2012-11-03 10:17:16',1),(1,75,4273,'2012-11-03 10:17:16',1),(1,112,4273,'2012-11-03 10:17:16',1),(1,130,4273,'2012-11-03 10:17:16',1),(1,202,4265,'2012-11-03 10:17:19',1),(1,240,4265,'2012-11-03 10:17:19',1),(1,10,4265,'2012-11-03 10:17:19',1),(1,219,4265,'2012-11-03 10:17:19',1),(1,104,4265,'2012-11-03 10:17:19',1),(1,52,4265,'2012-11-03 10:17:19',1),(1,78,4265,'2012-11-03 10:17:19',1),(1,210,4265,'2012-11-03 10:17:19',1),(1,104,4264,'2012-11-03 10:17:25',1),(1,52,4264,'2012-11-03 10:17:25',1),(1,78,4264,'2012-11-03 10:17:25',1),(1,210,4264,'2012-11-03 10:17:25',1),(1,56,4264,'2012-11-03 10:17:25',1),(1,92,4264,'2012-11-03 10:17:25',1),(1,221,4264,'2012-11-03 10:17:25',1),(1,223,4264,'2012-11-03 10:17:25',1),(1,64,4278,'2012-11-03 10:17:49',1),(1,242,4278,'2012-11-03 10:17:49',1),(1,202,4278,'2012-11-03 10:17:49',1),(1,240,4278,'2012-11-03 10:17:49',1),(1,10,4278,'2012-11-03 10:17:49',1),(1,60,4278,'2012-11-03 10:17:49',1),(1,215,4278,'2012-11-03 10:17:49',1),(1,231,4278,'2012-11-03 10:17:49',1),(1,230,4278,'2012-11-03 10:17:49',1),(1,219,4278,'2012-11-03 10:17:49',1),(1,200,4278,'2012-11-03 10:17:49',1),(1,66,4278,'2012-11-03 10:17:49',1),(1,201,4278,'2012-11-03 10:17:49',1),(1,205,4278,'2012-11-03 10:17:49',1),(1,77,4278,'2012-11-03 10:17:49',1),(1,67,4278,'2012-11-03 10:17:49',1),(1,215,4239,'2012-11-03 10:18:27',1),(1,231,4239,'2012-11-03 10:18:27',1),(1,230,4239,'2012-11-03 10:18:27',1),(1,200,4239,'2012-11-03 10:18:27',1),(1,66,4239,'2012-11-03 10:18:27',1),(1,201,4239,'2012-11-03 10:18:27',1),(1,205,4239,'2012-11-03 10:18:27',1),(1,77,4239,'2012-11-03 10:18:27',1),(1,67,4239,'2012-11-03 10:18:27',1),(1,206,4239,'2012-11-03 10:18:27',1),(1,49,4239,'2012-11-03 10:18:27',1),(1,207,4239,'2012-11-03 10:18:27',1),(1,211,4239,'2012-11-03 10:18:27',1),(1,213,4239,'2012-11-03 10:18:27',1),(1,81,4239,'2012-11-03 10:18:27',1),(1,90,4239,'2012-11-03 10:18:27',1),(1,135,4277,'2012-11-03 10:48:07',1),(1,147,4277,'2012-11-03 10:48:07',1),(1,226,4277,'2012-11-03 10:48:07',1),(1,49,4277,'2012-11-03 10:48:07',1),(1,207,4277,'2012-11-03 10:48:07',1),(1,211,4277,'2012-11-03 10:48:07',1),(1,213,4277,'2012-11-03 10:48:07',1),(1,81,4277,'2012-11-03 10:48:07',1),(1,200,4376,'2012-11-04 00:46:13',1),(1,66,4376,'2012-11-04 00:46:13',1),(1,201,4376,'2012-11-04 00:46:13',1),(1,77,4376,'2012-11-04 00:46:13',1),(1,55,4377,'2012-11-04 00:46:13',1),(1,102,4377,'2012-11-04 00:46:13',1),(1,9,4377,'2012-11-04 00:46:13',1),(1,217,4377,'2012-11-04 00:46:13',1),(1,222,4375,'2012-11-04 00:46:13',1),(1,6,4375,'2012-11-04 00:46:13',1),(1,160,4378,'2012-11-04 00:46:13',1),(1,225,4378,'2012-11-04 00:46:13',1),(1,129,4378,'2012-11-04 00:46:13',1),(1,14,4378,'2012-11-04 00:46:13',1),(1,129,4384,'2012-11-04 00:46:22',1),(1,14,4384,'2012-11-04 00:46:22',1),(1,217,4384,'2012-11-04 00:46:22',1),(1,200,4384,'2012-11-04 00:46:22',1),(1,66,4384,'2012-11-04 00:46:22',1),(1,201,4384,'2012-11-04 00:46:22',1),(1,205,4384,'2012-11-04 00:46:22',1),(1,77,4384,'2012-11-04 00:46:22',1),(1,6,4370,'2012-11-04 00:46:22',1),(1,205,4386,'2012-11-04 00:46:22',1),(1,160,4372,'2012-11-04 00:46:22',1),(1,225,4372,'2012-11-04 00:46:22',1),(1,160,4385,'2012-11-04 00:46:40',1),(1,225,4385,'2012-11-04 00:46:40',1),(1,129,4385,'2012-11-04 00:46:40',1),(1,14,4385,'2012-11-04 00:46:40',1),(1,55,4385,'2012-11-04 00:46:40',1),(1,217,4385,'2012-11-04 00:46:40',1),(1,200,4385,'2012-11-04 00:46:40',1),(1,66,4385,'2012-11-04 00:46:40',1),(1,222,4371,'2012-11-04 00:46:40',1),(1,6,4371,'2012-11-04 00:46:40',1),(1,200,4373,'2012-11-04 00:46:40',1),(1,66,4373,'2012-11-04 00:46:40',1),(1,201,4374,'2012-11-04 00:46:40',1),(1,205,4374,'2012-11-04 00:46:40',1),(1,102,4369,'2012-11-04 00:46:54',1),(1,160,4383,'2012-11-04 00:46:54',1),(1,225,4383,'2012-11-04 00:46:54',1),(1,129,4383,'2012-11-04 00:46:54',1),(1,14,4383,'2012-11-04 00:46:54',1),(1,55,4383,'2012-11-04 00:46:54',1),(1,217,4383,'2012-11-04 00:46:54',1),(1,200,4383,'2012-11-04 00:46:54',1),(1,66,4383,'2012-11-04 00:46:54',1),(1,160,4379,'2012-11-04 00:46:54',1),(1,225,4379,'2012-11-04 00:46:54',1),(1,252,4379,'2012-11-04 00:46:54',1),(1,129,4379,'2012-11-04 00:46:54',1),(1,200,4380,'2012-11-04 00:46:54',1),(1,66,4380,'2012-11-04 00:46:54',1),(1,201,4380,'2012-11-04 00:46:54',1),(1,77,4380,'2012-11-04 00:46:54',1),(1,217,4367,'2012-11-04 00:47:01',1),(1,160,4381,'2012-11-04 00:47:01',1),(1,225,4381,'2012-11-04 00:47:01',1),(1,129,4381,'2012-11-04 00:47:01',1),(1,14,4381,'2012-11-04 00:47:01',1),(1,55,4381,'2012-11-04 00:47:01',1),(1,102,4381,'2012-11-04 00:47:01',1),(1,9,4381,'2012-11-04 00:47:01',1),(1,217,4381,'2012-11-04 00:47:01',1),(1,160,4382,'2012-11-04 00:47:03',1),(1,225,4382,'2012-11-04 00:47:03',1),(1,129,4382,'2012-11-04 00:47:03',1),(1,14,4382,'2012-11-04 00:47:03',1),(1,55,4382,'2012-11-04 00:47:03',1),(1,102,4382,'2012-11-04 00:47:03',1),(1,9,4382,'2012-11-04 00:47:03',1),(1,217,4382,'2012-11-04 00:47:03',1),(1,9,4368,'2012-11-04 00:47:04',1),(1,55,4428,'2012-11-04 01:48:28',1),(1,23,4429,'2012-11-04 01:48:29',1),(1,8,4429,'2012-11-04 01:48:29',1),(1,79,4431,'2012-11-04 01:48:30',1),(1,46,4431,'2012-11-04 01:48:30',1),(1,243,4431,'2012-11-04 01:48:30',1),(1,31,4431,'2012-11-04 01:48:30',1),(1,46,4432,'2012-11-04 01:48:31',1),(1,31,4432,'2012-11-04 01:48:31',1),(1,251,4432,'2012-11-04 01:48:31',1),(1,17,4432,'2012-11-04 01:48:31',1),(1,79,4433,'2012-11-04 01:48:32',1),(1,46,4433,'2012-11-04 01:48:32',1),(1,243,4433,'2012-11-04 01:48:32',1),(1,31,4433,'2012-11-04 01:48:32',1),(1,251,4433,'2012-11-04 01:48:32',1),(1,17,4433,'2012-11-04 01:48:32',1),(1,23,4433,'2012-11-04 01:48:32',1),(1,8,4433,'2012-11-04 01:48:32',1),(1,79,4434,'2012-11-04 01:48:33',1),(1,46,4434,'2012-11-04 01:48:33',1),(1,243,4434,'2012-11-04 01:48:33',1),(1,31,4434,'2012-11-04 01:48:33',1),(1,17,4434,'2012-11-04 01:48:33',1),(1,23,4434,'2012-11-04 01:48:33',1),(1,8,4434,'2012-11-04 01:48:33',1),(1,250,4434,'2012-11-04 01:48:33',1),(1,251,4430,'2012-11-04 01:48:34',1),(1,17,4430,'2012-11-04 01:48:34',1),(1,55,4427,'2012-11-04 01:48:34',1),(1,50,4461,'2012-11-04 02:16:10',1),(1,222,4461,'2012-11-04 02:16:10',1),(1,222,4460,'2012-11-04 02:46:11',1),(1,31,4459,'2012-11-04 02:46:12',1),(1,251,4459,'2012-11-04 02:46:12',1),(1,250,4459,'2012-11-04 02:46:12',1),(1,93,4459,'2012-11-04 02:46:12',1),(1,174,4459,'2012-11-04 02:46:12',1),(1,14,4459,'2012-11-04 02:46:12',1),(1,75,4459,'2012-11-04 02:46:12',1),(1,53,4459,'2012-11-04 02:46:12',1),(1,7,4458,'2012-11-04 02:46:21',1),(1,103,4458,'2012-11-04 02:46:21',1),(1,204,4458,'2012-11-04 02:46:21',1),(1,9,4458,'2012-11-04 02:46:21',1),(1,88,4452,'2012-11-04 02:46:24',1),(1,50,4452,'2012-11-04 02:46:24',1),(1,7,4453,'2012-11-04 02:46:25',1),(1,103,4453,'2012-11-04 02:46:25',1),(1,204,4453,'2012-11-04 02:46:25',1),(1,9,4453,'2012-11-04 02:46:25',1),(1,31,4454,'2012-11-04 02:46:25',1),(1,251,4454,'2012-11-04 02:46:25',1),(1,250,4454,'2012-11-04 02:46:25',1),(1,93,4454,'2012-11-04 02:46:25',1),(1,174,4454,'2012-11-04 02:46:25',1),(1,14,4454,'2012-11-04 02:46:25',1),(1,75,4454,'2012-11-04 02:46:25',1),(1,53,4454,'2012-11-04 02:46:25',1),(1,222,4456,'2012-11-04 02:46:38',1),(1,102,4457,'2012-11-04 02:46:39',1),(1,6,4457,'2012-11-04 02:46:39',1),(1,132,4464,'2012-11-04 02:46:53',1),(1,132,4465,'2012-11-04 02:46:54',1),(1,222,4465,'2012-11-04 02:46:54',1),(1,204,4466,'2012-11-04 02:46:55',1),(1,9,4466,'2012-11-04 02:46:55',1),(1,50,4466,'2012-11-04 02:46:55',1),(1,6,4466,'2012-11-04 02:46:55',1),(1,31,4467,'2012-11-04 02:46:56',1),(1,251,4467,'2012-11-04 02:46:56',1),(1,250,4467,'2012-11-04 02:46:56',1),(1,93,4467,'2012-11-04 02:46:56',1),(1,174,4467,'2012-11-04 02:46:56',1),(1,14,4467,'2012-11-04 02:46:56',1),(1,75,4467,'2012-11-04 02:46:56',1),(1,53,4467,'2012-11-04 02:46:56',1),(1,195,4462,'2012-11-04 02:46:59',1),(1,8,4462,'2012-11-04 02:46:59',1),(1,132,4462,'2012-11-04 02:46:59',1),(1,222,4462,'2012-11-04 02:46:59',1),(1,88,4463,'2012-11-04 02:47:01',1),(1,7,4463,'2012-11-04 02:47:01',1),(1,102,4463,'2012-11-04 02:47:01',1),(1,103,4463,'2012-11-04 02:47:01',1),(1,204,4463,'2012-11-04 02:47:01',1),(1,9,4463,'2012-11-04 02:47:01',1),(1,50,4463,'2012-11-04 02:47:01',1),(1,6,4463,'2012-11-04 02:47:01',1),(1,225,4455,'2012-11-04 03:16:28',1),(1,31,4455,'2012-11-04 03:16:28',1),(1,250,4455,'2012-11-04 03:16:28',1),(1,93,4455,'2012-11-04 03:16:28',1),(1,174,4455,'2012-11-04 03:16:28',1),(1,14,4455,'2012-11-04 03:16:28',1),(1,75,4455,'2012-11-04 03:16:28',1),(1,55,4455,'2012-11-04 03:16:28',1),(1,112,4455,'2012-11-04 03:16:28',1),(1,53,4455,'2012-11-04 03:16:28',1),(1,132,4455,'2012-11-04 03:16:28',1),(1,204,4455,'2012-11-04 03:16:28',1),(1,9,4455,'2012-11-04 03:16:28',1),(1,50,4455,'2012-11-04 03:16:28',1),(1,222,4455,'2012-11-04 03:16:28',1),(1,6,4455,'2012-11-04 03:16:28',1),(1,225,4468,'2012-11-04 03:16:43',1),(1,31,4468,'2012-11-04 03:16:43',1),(1,250,4468,'2012-11-04 03:16:43',1),(1,93,4468,'2012-11-04 03:16:43',1),(1,174,4468,'2012-11-04 03:16:43',1),(1,14,4468,'2012-11-04 03:16:43',1),(1,75,4468,'2012-11-04 03:16:43',1),(1,55,4468,'2012-11-04 03:16:43',1),(1,112,4468,'2012-11-04 03:16:43',1),(1,53,4468,'2012-11-04 03:16:43',1),(1,132,4468,'2012-11-04 03:16:43',1),(1,204,4468,'2012-11-04 03:16:43',1),(1,9,4468,'2012-11-04 03:16:43',1),(1,50,4468,'2012-11-04 03:16:43',1),(1,222,4468,'2012-11-04 03:16:43',1),(1,6,4468,'2012-11-04 03:16:43',1),(1,88,4496,'2012-11-04 03:46:10',1),(1,7,4496,'2012-11-04 03:46:10',1),(1,102,4496,'2012-11-04 03:46:10',1),(1,103,4496,'2012-11-04 03:46:10',1),(1,43,4497,'2012-11-04 03:46:13',1),(1,75,4497,'2012-11-04 03:46:13',1),(1,112,4497,'2012-11-04 03:46:13',1),(1,53,4497,'2012-11-04 03:46:13',1),(1,132,4497,'2012-11-04 03:46:13',1),(1,204,4497,'2012-11-04 03:46:13',1),(1,9,4497,'2012-11-04 03:46:13',1),(1,50,4497,'2012-11-04 03:46:13',1),(1,222,4495,'2012-11-04 03:46:16',1),(1,6,4495,'2012-11-04 03:46:16',1),(1,222,4489,'2012-11-04 03:46:28',1),(1,6,4489,'2012-11-04 03:46:28',1),(1,14,4503,'2012-11-04 03:46:29',1),(1,251,4499,'2012-11-04 03:46:41',1),(1,250,4499,'2012-11-04 03:46:41',1),(1,222,4508,'2012-11-04 03:46:46',1),(1,251,4504,'2012-11-04 03:46:47',1),(1,250,4504,'2012-11-04 03:46:47',1),(1,88,4451,'2012-11-04 03:46:58',NULL),(1,7,4451,'2012-11-04 03:46:58',NULL),(1,102,4451,'2012-11-04 03:46:58',NULL),(1,103,4451,'2012-11-04 03:46:58',NULL),(1,225,4509,'2012-11-04 03:47:03',1),(1,174,4509,'2012-11-04 03:47:03',1),(1,43,4493,'2012-11-04 04:16:29',NULL),(1,14,4493,'2012-11-04 04:16:29',NULL),(1,75,4493,'2012-11-04 04:16:29',NULL),(1,112,4493,'2012-11-04 04:16:29',NULL),(1,53,4493,'2012-11-04 04:16:29',NULL),(1,132,4493,'2012-11-04 04:16:29',NULL),(1,204,4493,'2012-11-04 04:16:29',NULL),(1,9,4493,'2012-11-04 04:16:29',NULL),(1,88,4491,'2012-11-04 04:16:29',1),(1,7,4491,'2012-11-04 04:16:29',1),(1,102,4491,'2012-11-04 04:16:29',1),(1,103,4491,'2012-11-04 04:16:29',1),(1,225,4492,'2012-11-04 04:16:40',1),(1,251,4492,'2012-11-04 04:16:40',1),(1,250,4492,'2012-11-04 04:16:40',1),(1,174,4492,'2012-11-04 04:16:40',1),(1,93,4490,'2012-11-04 04:16:42',1),(1,101,4490,'2012-11-04 04:16:42',1),(1,88,4505,'2012-11-04 04:17:00',1),(1,47,4505,'2012-11-04 04:17:00',1),(1,114,4505,'2012-11-04 04:17:00',1),(1,8,4505,'2012-11-04 04:17:00',1),(1,88,4511,'2012-11-04 04:17:01',1),(1,96,4511,'2012-11-04 04:17:01',1),(1,47,4511,'2012-11-04 04:17:01',1),(1,114,4511,'2012-11-04 04:17:01',1),(1,7,4511,'2012-11-04 04:17:01',1),(1,50,4511,'2012-11-04 04:17:01',1),(1,222,4511,'2012-11-04 04:17:01',1),(1,6,4511,'2012-11-04 04:17:01',1),(1,114,4487,'2012-11-04 04:17:02',1),(1,31,4488,'2012-11-04 04:17:04',1),(1,88,4510,'2012-11-04 04:17:05',1),(1,96,4510,'2012-11-04 04:17:05',1),(1,47,4510,'2012-11-04 04:17:05',1),(1,114,4510,'2012-11-04 04:17:05',1),(1,8,4500,'2012-11-04 04:17:07',1),(1,93,4500,'2012-11-04 04:17:07',1),(1,101,4500,'2012-11-04 04:17:07',1),(1,7,4500,'2012-11-04 04:17:07',1),(1,43,4494,'2012-11-04 04:46:49',NULL),(1,8,4494,'2012-11-04 04:46:49',NULL),(1,93,4494,'2012-11-04 04:46:49',NULL),(1,101,4494,'2012-11-04 04:46:49',NULL),(1,14,4494,'2012-11-04 04:46:49',NULL),(1,75,4494,'2012-11-04 04:46:49',NULL),(1,112,4494,'2012-11-04 04:46:49',NULL),(1,53,4494,'2012-11-04 04:46:49',NULL),(1,88,4506,'2012-11-04 04:47:08',1),(1,96,4506,'2012-11-04 04:47:08',1),(1,47,4506,'2012-11-04 04:47:08',1),(1,114,4506,'2012-11-04 04:47:08',1),(1,7,4506,'2012-11-04 04:47:08',1),(1,102,4506,'2012-11-04 04:47:08',1),(1,103,4506,'2012-11-04 04:47:08',1),(1,9,4506,'2012-11-04 04:47:08',1),(1,43,4501,'2012-11-04 04:47:26',1),(1,8,4501,'2012-11-04 04:47:26',1),(1,93,4501,'2012-11-04 04:47:26',1),(1,101,4501,'2012-11-04 04:47:26',1),(1,14,4501,'2012-11-04 04:47:26',1),(1,75,4501,'2012-11-04 04:47:26',1),(1,112,4501,'2012-11-04 04:47:26',1),(1,53,4501,'2012-11-04 04:47:26',1),(1,43,4498,'2012-11-04 05:16:25',1),(1,114,4498,'2012-11-04 05:16:25',1),(1,23,4498,'2012-11-04 05:16:25',1),(1,8,4498,'2012-11-04 05:16:25',1),(1,250,4498,'2012-11-04 05:16:25',1),(1,93,4498,'2012-11-04 05:16:25',1),(1,101,4498,'2012-11-04 05:16:25',1),(1,14,4498,'2012-11-04 05:16:25',1),(1,75,4498,'2012-11-04 05:16:25',1),(1,112,4498,'2012-11-04 05:16:25',1),(1,53,4498,'2012-11-04 05:16:25',1),(1,7,4498,'2012-11-04 05:16:25',1),(1,132,4498,'2012-11-04 05:16:25',1),(1,102,4498,'2012-11-04 05:16:25',1),(1,103,4498,'2012-11-04 05:16:25',1),(1,9,4498,'2012-11-04 05:16:25',1),(1,88,4507,'2012-11-04 05:46:57',1),(1,227,4507,'2012-11-04 05:46:57',1),(1,43,4507,'2012-11-04 05:46:57',1),(1,17,4507,'2012-11-04 05:46:57',1),(1,114,4507,'2012-11-04 05:46:57',1),(1,23,4507,'2012-11-04 05:46:57',1),(1,8,4507,'2012-11-04 05:46:57',1),(1,250,4507,'2012-11-04 05:46:57',1),(1,93,4507,'2012-11-04 05:46:57',1),(1,101,4507,'2012-11-04 05:46:57',1),(1,14,4507,'2012-11-04 05:46:57',1),(1,75,4507,'2012-11-04 05:46:57',1),(1,112,4507,'2012-11-04 05:46:57',1),(1,53,4507,'2012-11-04 05:46:57',1),(1,7,4507,'2012-11-04 05:46:57',1),(1,132,4507,'2012-11-04 05:46:57',1),(1,88,4502,'2012-11-04 05:46:59',1),(1,227,4502,'2012-11-04 05:46:59',1),(1,43,4502,'2012-11-04 05:46:59',1),(1,17,4502,'2012-11-04 05:46:59',1),(1,114,4502,'2012-11-04 05:46:59',1),(1,23,4502,'2012-11-04 05:46:59',1),(1,8,4502,'2012-11-04 05:46:59',1),(1,250,4502,'2012-11-04 05:46:59',1),(1,93,4502,'2012-11-04 05:46:59',1),(1,101,4502,'2012-11-04 05:46:59',1),(1,14,4502,'2012-11-04 05:46:59',1),(1,75,4502,'2012-11-04 05:46:59',1),(1,112,4502,'2012-11-04 05:46:59',1),(1,53,4502,'2012-11-04 05:46:59',1),(1,7,4502,'2012-11-04 05:46:59',1),(1,132,4502,'2012-11-04 05:46:59',1),(1,84,4555,'2012-11-05 00:46:19',1),(1,110,4555,'2012-11-05 00:46:19',1),(1,59,4556,'2012-11-05 00:46:26',1),(1,117,4541,'2012-11-05 00:46:29',1),(1,166,4541,'2012-11-05 00:46:29',1),(1,110,4542,'2012-11-05 00:46:32',1),(1,6,4542,'2012-11-05 00:46:32',1),(1,88,4543,'2012-11-05 00:46:32',1),(1,84,4543,'2012-11-05 00:46:32',1),(1,110,4543,'2012-11-05 00:46:32',1),(1,4,4543,'2012-11-05 00:46:32',1),(1,84,4554,'2012-11-05 00:46:32',1),(1,59,4540,'2012-11-05 00:46:35',1),(1,13,4540,'2012-11-05 00:46:35',1),(1,116,4538,'2012-11-05 00:46:36',1),(1,15,4539,'2012-11-05 00:46:37',1),(1,4,4539,'2012-11-05 00:46:37',1),(1,160,4546,'2012-11-05 00:46:45',1),(1,124,4546,'2012-11-05 00:46:45',1),(1,116,4546,'2012-11-05 00:46:45',1),(1,13,4546,'2012-11-05 00:46:45',1),(1,13,4537,'2012-11-05 00:46:48',1),(1,117,4553,'2012-11-05 00:46:48',1),(1,160,4551,'2012-11-05 00:46:49',1),(1,88,4551,'2012-11-05 00:46:49',1),(1,139,4551,'2012-11-05 00:46:49',1),(1,124,4551,'2012-11-05 00:46:49',1),(1,84,4551,'2012-11-05 00:46:49',1),(1,116,4551,'2012-11-05 00:46:49',1),(1,117,4551,'2012-11-05 00:46:49',1),(1,166,4551,'2012-11-05 00:46:49',1),(1,160,4548,'2012-11-05 00:46:52',1),(1,88,4548,'2012-11-05 00:46:52',1),(1,139,4548,'2012-11-05 00:46:52',1),(1,124,4548,'2012-11-05 00:46:52',1),(1,84,4548,'2012-11-05 00:46:52',1),(1,116,4548,'2012-11-05 00:46:52',1),(1,117,4548,'2012-11-05 00:46:52',1),(1,166,4548,'2012-11-05 00:46:52',1),(1,160,4549,'2012-11-05 00:46:54',1),(1,88,4549,'2012-11-05 00:46:54',1),(1,138,4549,'2012-11-05 00:46:54',1),(1,139,4549,'2012-11-05 00:46:54',1),(1,124,4549,'2012-11-05 00:46:54',1),(1,59,4549,'2012-11-05 00:46:54',1),(1,84,4549,'2012-11-05 00:46:54',1),(1,116,4549,'2012-11-05 00:46:54',1),(1,88,4545,'2012-11-05 00:46:55',1),(1,84,4545,'2012-11-05 00:46:55',1),(1,110,4545,'2012-11-05 00:46:55',1),(1,6,4545,'2012-11-05 00:46:55',1),(1,160,4550,'2012-11-05 00:46:55',1),(1,88,4550,'2012-11-05 00:46:55',1),(1,138,4550,'2012-11-05 00:46:55',1),(1,139,4550,'2012-11-05 00:46:55',1),(1,124,4550,'2012-11-05 00:46:55',1),(1,59,4550,'2012-11-05 00:46:55',1),(1,84,4550,'2012-11-05 00:46:55',1),(1,116,4550,'2012-11-05 00:46:55',1),(1,13,4552,'2012-11-05 00:47:04',1),(1,117,4552,'2012-11-05 00:47:04',1),(1,166,4552,'2012-11-05 00:47:04',1),(1,15,4552,'2012-11-05 00:47:04',1),(1,110,4552,'2012-11-05 00:47:04',1),(1,5,4552,'2012-11-05 00:47:04',1),(1,2,4552,'2012-11-05 00:47:04',1),(1,6,4552,'2012-11-05 00:47:04',1),(1,160,4544,'2012-11-05 00:47:05',1),(1,139,4544,'2012-11-05 00:47:05',1),(1,124,4544,'2012-11-05 00:47:05',1),(1,116,4544,'2012-11-05 00:47:05',1),(1,13,4547,'2012-11-05 00:47:07',1),(1,117,4547,'2012-11-05 00:47:07',1),(1,166,4547,'2012-11-05 00:47:07',1),(1,110,4547,'2012-11-05 00:47:07',1),(1,139,4600,'2012-11-05 01:16:22',1),(1,107,4600,'2012-11-05 01:16:22',1),(1,5,4600,'2012-11-05 01:16:22',1),(1,6,4600,'2012-11-05 01:16:22',1),(1,117,4603,'2012-11-05 01:46:12',1),(1,6,4603,'2012-11-05 01:46:12',1),(1,160,4601,'2012-11-05 01:46:15',1),(1,88,4601,'2012-11-05 01:46:15',1),(1,138,4601,'2012-11-05 01:46:15',1),(1,139,4601,'2012-11-05 01:46:15',1),(1,13,4601,'2012-11-05 01:46:15',1),(1,117,4601,'2012-11-05 01:46:15',1),(1,107,4601,'2012-11-05 01:46:15',1),(1,5,4601,'2012-11-05 01:46:15',1),(1,6,4598,'2012-11-05 01:46:15',1),(1,4,4598,'2012-11-05 01:46:15',1),(1,160,4602,'2012-11-05 01:46:18',1),(1,88,4602,'2012-11-05 01:46:18',1),(1,138,4602,'2012-11-05 01:46:18',1),(1,139,4602,'2012-11-05 01:46:18',1),(1,13,4602,'2012-11-05 01:46:18',1),(1,117,4602,'2012-11-05 01:46:18',1),(1,107,4602,'2012-11-05 01:46:18',1),(1,5,4602,'2012-11-05 01:46:18',1),(1,4,4604,'2012-11-05 01:46:25',1),(1,139,4599,'2012-11-05 01:46:25',1),(1,13,4599,'2012-11-05 01:46:25',1),(1,107,4599,'2012-11-05 01:46:25',1),(1,5,4599,'2012-11-05 01:46:25',1),(1,6,4597,'2012-11-05 01:46:28',1),(1,138,4622,'2012-11-05 02:46:09',1),(1,84,4622,'2012-11-05 02:46:09',1),(1,205,4622,'2012-11-05 02:46:09',1),(1,91,4622,'2012-11-05 02:46:09',1),(1,139,4623,'2012-11-05 02:46:10',1),(1,13,4623,'2012-11-05 02:46:10',1),(1,117,4623,'2012-11-05 02:46:10',1),(1,15,4623,'2012-11-05 02:46:10',1),(1,205,4623,'2012-11-05 02:46:10',1),(1,91,4623,'2012-11-05 02:46:10',1),(1,6,4623,'2012-11-05 02:46:10',1),(1,4,4623,'2012-11-05 02:46:10',1),(1,4,4625,'2012-11-05 02:46:12',1),(1,118,4627,'2012-11-05 02:46:22',1),(1,139,4627,'2012-11-05 02:46:22',1),(1,13,4627,'2012-11-05 02:46:22',1),(1,117,4627,'2012-11-05 02:46:22',1),(1,15,4627,'2012-11-05 02:46:22',1),(1,205,4627,'2012-11-05 02:46:22',1),(1,91,4627,'2012-11-05 02:46:22',1),(1,6,4627,'2012-11-05 02:46:22',1),(1,88,4628,'2012-11-05 02:46:23',1),(1,205,4629,'2012-11-05 02:46:24',1),(1,91,4629,'2012-11-05 02:46:24',1),(1,135,4630,'2012-11-05 02:46:34',1),(1,15,4630,'2012-11-05 02:46:34',1),(1,110,4630,'2012-11-05 02:46:34',1),(1,2,4630,'2012-11-05 02:46:34',1),(1,88,4631,'2012-11-05 02:46:36',1),(1,118,4631,'2012-11-05 02:46:36',1),(1,139,4631,'2012-11-05 02:46:36',1),(1,47,4631,'2012-11-05 02:46:36',1),(1,13,4631,'2012-11-05 02:46:36',1),(1,117,4631,'2012-11-05 02:46:36',1),(1,107,4631,'2012-11-05 02:46:36',1),(1,15,4631,'2012-11-05 02:46:36',1),(1,6,4632,'2012-11-05 02:46:36',1),(1,15,4633,'2012-11-05 02:46:40',1),(1,110,4633,'2012-11-05 02:46:40',1),(1,223,4634,'2012-11-05 02:46:40',1),(1,91,4634,'2012-11-05 02:46:40',1),(1,6,4634,'2012-11-05 02:46:40',1),(1,4,4634,'2012-11-05 02:46:40',1),(1,160,4635,'2012-11-05 02:46:43',1),(1,88,4635,'2012-11-05 02:46:43',1),(1,118,4635,'2012-11-05 02:46:43',1),(1,139,4635,'2012-11-05 02:46:43',1),(1,47,4635,'2012-11-05 02:46:43',1),(1,13,4635,'2012-11-05 02:46:43',1),(1,117,4635,'2012-11-05 02:46:43',1),(1,107,4635,'2012-11-05 02:46:43',1),(1,91,4621,'2012-11-05 02:46:45',1),(1,4,4621,'2012-11-05 02:46:45',1),(1,135,4626,'2012-11-05 02:46:53',1),(1,15,4626,'2012-11-05 02:46:53',1),(1,110,4626,'2012-11-05 02:46:53',1),(1,2,4626,'2012-11-05 02:46:53',1),(1,160,4637,'2012-11-05 02:46:56',1),(1,88,4637,'2012-11-05 02:46:56',1),(1,138,4638,'2012-11-05 03:46:32',NULL),(1,84,4638,'2012-11-05 03:46:32',NULL),(1,201,4638,'2012-11-05 03:46:32',NULL),(1,205,4638,'2012-11-05 03:46:32',NULL),(1,95,4657,'2012-11-05 03:46:37',1),(1,121,4657,'2012-11-05 03:46:37',1),(1,88,4660,'2012-11-05 03:46:51',1),(1,118,4660,'2012-11-05 03:46:51',1),(1,95,4681,'2012-11-05 03:46:54',1),(1,121,4681,'2012-11-05 03:46:54',1),(1,88,4679,'2012-11-05 03:47:02',1),(1,118,4679,'2012-11-05 03:47:02',1),(1,160,4670,'2012-11-05 03:47:09',NULL),(1,88,4670,'2012-11-05 03:47:09',NULL),(1,135,4670,'2012-11-05 03:47:09',NULL),(1,118,4670,'2012-11-05 03:47:09',NULL),(1,138,4670,'2012-11-05 03:47:09',NULL),(1,139,4670,'2012-11-05 03:47:09',NULL),(1,121,4670,'2012-11-05 03:47:09',NULL),(1,124,4670,'2012-11-05 03:47:09',NULL),(1,225,4670,'2012-11-05 03:47:09',NULL),(1,233,4670,'2012-11-05 03:47:09',NULL),(1,194,4670,'2012-11-05 03:47:09',NULL),(1,85,4670,'2012-11-05 03:47:09',NULL),(1,59,4670,'2012-11-05 03:47:09',NULL),(1,84,4670,'2012-11-05 03:47:09',NULL),(1,116,4670,'2012-11-05 03:47:09',NULL),(1,129,4670,'2012-11-05 03:47:09',NULL),(1,4,4671,'2012-11-05 03:47:11',NULL),(1,160,4665,'2012-11-05 03:47:13',NULL),(1,138,4665,'2012-11-05 03:47:13',NULL),(1,139,4665,'2012-11-05 03:47:13',NULL),(1,124,4665,'2012-11-05 03:47:13',NULL),(1,40,4665,'2012-11-05 03:47:13',NULL),(1,225,4665,'2012-11-05 03:47:13',NULL),(1,47,4665,'2012-11-05 03:47:13',NULL),(1,233,4665,'2012-11-05 03:47:13',NULL),(1,160,4663,'2012-11-05 03:47:14',NULL),(1,88,4663,'2012-11-05 03:47:14',NULL),(1,135,4663,'2012-11-05 03:47:14',NULL),(1,118,4663,'2012-11-05 03:47:14',NULL),(1,138,4663,'2012-11-05 03:47:14',NULL),(1,139,4663,'2012-11-05 03:47:14',NULL),(1,121,4663,'2012-11-05 03:47:14',NULL),(1,124,4663,'2012-11-05 03:47:14',NULL),(1,225,4663,'2012-11-05 03:47:14',NULL),(1,233,4663,'2012-11-05 03:47:14',NULL),(1,194,4663,'2012-11-05 03:47:14',NULL),(1,85,4663,'2012-11-05 03:47:14',NULL),(1,59,4663,'2012-11-05 03:47:14',NULL),(1,84,4663,'2012-11-05 03:47:14',NULL),(1,116,4663,'2012-11-05 03:47:14',NULL),(1,129,4663,'2012-11-05 03:47:14',NULL),(1,138,4658,'2012-11-05 04:16:29',1),(1,84,4658,'2012-11-05 04:16:29',1),(1,201,4658,'2012-11-05 04:16:29',1),(1,205,4658,'2012-11-05 04:16:29',1),(1,160,4678,'2012-11-05 04:16:32',NULL),(1,225,4678,'2012-11-05 04:16:32',NULL),(1,47,4678,'2012-11-05 04:16:32',NULL),(1,233,4678,'2012-11-05 04:16:32',NULL),(1,194,4678,'2012-11-05 04:16:32',NULL),(1,200,4678,'2012-11-05 04:16:32',NULL),(1,6,4678,'2012-11-05 04:16:32',NULL),(1,4,4678,'2012-11-05 04:16:32',NULL),(1,95,4659,'2012-11-05 04:16:34',NULL),(1,88,4659,'2012-11-05 04:16:34',NULL),(1,118,4659,'2012-11-05 04:16:34',NULL),(1,121,4659,'2012-11-05 04:16:34',NULL),(1,24,4659,'2012-11-05 04:16:34',NULL),(1,117,4659,'2012-11-05 04:16:34',NULL),(1,107,4659,'2012-11-05 04:16:34',NULL),(1,15,4659,'2012-11-05 04:16:34',NULL),(1,139,4676,'2012-11-05 04:16:42',1),(1,124,4676,'2012-11-05 04:16:42',1),(1,4,4674,'2012-11-05 04:16:45',1),(1,160,4673,'2012-11-05 04:16:57',1),(1,225,4673,'2012-11-05 04:16:57',1),(1,47,4673,'2012-11-05 04:16:57',1),(1,233,4673,'2012-11-05 04:16:57',1),(1,194,4673,'2012-11-05 04:16:57',1),(1,116,4673,'2012-11-05 04:16:57',1),(1,200,4673,'2012-11-05 04:16:57',1),(1,6,4673,'2012-11-05 04:16:57',1),(1,69,4667,'2012-11-05 04:17:06',1),(1,223,4667,'2012-11-05 04:17:06',1),(1,160,4624,'2012-11-05 04:46:27',1),(1,138,4624,'2012-11-05 04:46:27',1),(1,139,4624,'2012-11-05 04:46:27',1),(1,124,4624,'2012-11-05 04:46:27',1),(1,233,4624,'2012-11-05 04:46:27',1),(1,194,4624,'2012-11-05 04:46:27',1),(1,84,4624,'2012-11-05 04:46:27',1),(1,116,4624,'2012-11-05 04:46:27',1),(1,129,4624,'2012-11-05 04:46:27',1),(1,13,4624,'2012-11-05 04:46:27',1),(1,5,4624,'2012-11-05 04:46:27',1),(1,217,4624,'2012-11-05 04:46:27',1),(1,200,4624,'2012-11-05 04:46:27',1),(1,69,4624,'2012-11-05 04:46:27',1),(1,6,4624,'2012-11-05 04:46:27',1),(1,4,4624,'2012-11-05 04:46:27',1),(1,138,4677,'2012-11-05 04:46:35',1),(1,84,4677,'2012-11-05 04:46:35',1),(1,201,4677,'2012-11-05 04:46:35',1),(1,205,4677,'2012-11-05 04:46:35',1),(1,6,4675,'2012-11-05 04:46:38',1),(1,160,4636,'2012-11-05 04:47:01',1),(1,138,4636,'2012-11-05 04:47:01',1),(1,139,4636,'2012-11-05 04:47:01',1),(1,124,4636,'2012-11-05 04:47:01',1),(1,225,4636,'2012-11-05 04:47:01',1),(1,233,4636,'2012-11-05 04:47:01',1),(1,194,4636,'2012-11-05 04:47:01',1),(1,59,4636,'2012-11-05 04:47:01',1),(1,84,4636,'2012-11-05 04:47:01',1),(1,116,4636,'2012-11-05 04:47:01',1),(1,129,4636,'2012-11-05 04:47:01',1),(1,13,4636,'2012-11-05 04:47:01',1),(1,5,4636,'2012-11-05 04:47:01',1),(1,217,4636,'2012-11-05 04:47:01',1),(1,200,4636,'2012-11-05 04:47:01',1),(1,205,4636,'2012-11-05 04:47:01',1),(1,160,4662,'2012-11-05 04:47:01',1),(1,139,4662,'2012-11-05 04:47:01',1),(1,124,4662,'2012-11-05 04:47:01',1),(1,40,4662,'2012-11-05 04:47:01',1),(1,225,4662,'2012-11-05 04:47:01',1),(1,47,4662,'2012-11-05 04:47:01',1),(1,233,4662,'2012-11-05 04:47:01',1),(1,194,4662,'2012-11-05 04:47:01',1),(1,194,4661,'2012-11-05 04:47:02',1),(1,84,4661,'2012-11-05 04:47:02',1),(1,129,4661,'2012-11-05 04:47:02',1),(1,13,4661,'2012-11-05 04:47:02',1),(1,59,4664,'2012-11-05 04:47:06',1),(1,201,4664,'2012-11-05 04:47:06',1),(1,205,4664,'2012-11-05 04:47:06',1),(1,4,4664,'2012-11-05 04:47:06',1),(1,59,4672,'2012-11-05 04:47:14',1),(1,201,4672,'2012-11-05 04:47:14',1),(1,205,4672,'2012-11-05 04:47:14',1),(1,223,4672,'2012-11-05 04:47:14',1),(1,160,4668,'2012-11-05 04:47:14',1),(1,138,4668,'2012-11-05 04:47:14',1),(1,139,4668,'2012-11-05 04:47:14',1),(1,124,4668,'2012-11-05 04:47:14',1),(1,95,4669,'2012-11-05 04:47:15',1),(1,88,4669,'2012-11-05 04:47:15',1),(1,118,4669,'2012-11-05 04:47:15',1),(1,121,4669,'2012-11-05 04:47:15',1),(1,24,4669,'2012-11-05 04:47:15',1),(1,117,4669,'2012-11-05 04:47:15',1),(1,107,4669,'2012-11-05 04:47:15',1),(1,15,4669,'2012-11-05 04:47:15',1),(1,4,4680,'2012-11-05 04:47:34',1),(1,160,4666,'2012-11-05 05:17:08',1),(1,88,4666,'2012-11-05 05:17:08',1),(1,135,4666,'2012-11-05 05:17:08',1),(1,138,4666,'2012-11-05 05:17:08',1),(1,139,4666,'2012-11-05 05:17:08',1),(1,121,4666,'2012-11-05 05:17:08',1),(1,124,4666,'2012-11-05 05:17:08',1),(1,225,4666,'2012-11-05 05:17:08',1),(1,233,4666,'2012-11-05 05:17:08',1),(1,194,4666,'2012-11-05 05:17:08',1),(1,85,4666,'2012-11-05 05:17:08',1),(1,59,4666,'2012-11-05 05:17:08',1),(1,84,4666,'2012-11-05 05:17:08',1),(1,116,4666,'2012-11-05 05:17:08',1),(1,129,4666,'2012-11-05 05:17:08',1),(1,13,4666,'2012-11-05 05:17:08',1),(1,45,4709,'2012-11-06 00:16:48',1),(1,12,4709,'2012-11-06 00:16:48',1),(1,247,4721,'2012-11-06 00:17:02',1),(1,94,4721,'2012-11-06 00:17:02',1),(1,133,4721,'2012-11-06 00:17:02',1),(1,16,4721,'2012-11-06 00:17:02',1),(1,88,4721,'2012-11-06 00:17:02',1),(1,25,4721,'2012-11-06 00:17:02',1),(1,125,4721,'2012-11-06 00:17:02',1),(1,113,4721,'2012-11-06 00:17:02',1),(1,184,4720,'2012-11-06 00:17:04',1),(1,140,4720,'2012-11-06 00:17:04',1),(1,237,4720,'2012-11-06 00:17:04',1),(1,134,4720,'2012-11-06 00:17:04',1),(1,246,4720,'2012-11-06 00:17:04',1),(1,149,4720,'2012-11-06 00:17:04',1),(1,118,4720,'2012-11-06 00:17:04',1),(1,141,4720,'2012-11-06 00:17:04',1),(1,187,4715,'2012-11-06 00:17:11',1),(1,197,4715,'2012-11-06 00:17:11',1),(1,40,4715,'2012-11-06 00:17:11',1),(1,170,4715,'2012-11-06 00:17:11',1),(1,136,4719,'2012-11-06 00:17:12',1),(1,137,4719,'2012-11-06 00:17:12',1),(1,42,4719,'2012-11-06 00:17:12',1),(1,139,4719,'2012-11-06 00:17:12',1),(1,82,4719,'2012-11-06 00:17:12',1),(1,120,4719,'2012-11-06 00:17:12',1),(1,121,4719,'2012-11-06 00:17:12',1),(1,11,4719,'2012-11-06 00:17:12',1),(1,47,4726,'2012-11-06 00:46:46',1),(1,21,4713,'2012-11-06 00:46:46',1),(1,127,4713,'2012-11-06 00:46:46',1),(1,71,4708,'2012-11-06 00:46:49',1),(1,44,4708,'2012-11-06 00:46:49',1),(1,154,4712,'2012-11-06 00:46:56',1),(1,162,4712,'2012-11-06 00:46:56',1),(1,123,4716,'2012-11-06 00:46:59',1),(1,124,4716,'2012-11-06 00:46:59',1),(1,48,4716,'2012-11-06 00:46:59',1),(1,245,4716,'2012-11-06 00:46:59',1),(1,220,4717,'2012-11-06 00:47:00',1),(1,26,4717,'2012-11-06 00:47:00',1),(1,151,4717,'2012-11-06 00:47:00',1),(1,164,4717,'2012-11-06 00:47:00',1),(1,238,4711,'2012-11-06 00:47:00',1),(1,158,4725,'2012-11-06 00:47:16',1),(1,57,4707,'2012-11-06 00:47:17',1),(1,234,4724,'2012-11-06 00:47:17',1),(1,167,4710,'2012-11-06 00:47:17',1),(1,186,4710,'2012-11-06 00:47:17',1),(1,225,4718,'2012-11-06 00:47:24',1),(1,146,4718,'2012-11-06 00:47:24',1),(1,239,4718,'2012-11-06 00:47:24',1),(1,153,4718,'2012-11-06 00:47:24',1),(1,136,4714,'2012-11-06 00:47:24',1),(1,137,4714,'2012-11-06 00:47:24',1),(1,42,4714,'2012-11-06 00:47:24',1),(1,139,4714,'2012-11-06 00:47:24',1),(1,184,4723,'2012-11-06 00:47:25',1),(1,140,4723,'2012-11-06 00:47:25',1),(1,237,4723,'2012-11-06 00:47:25',1),(1,134,4723,'2012-11-06 00:47:25',1),(1,246,4723,'2012-11-06 00:47:25',1),(1,149,4723,'2012-11-06 00:47:25',1),(1,118,4723,'2012-11-06 00:47:25',1),(1,141,4723,'2012-11-06 00:47:25',1),(1,247,4722,'2012-11-06 00:47:26',1),(1,94,4722,'2012-11-06 00:47:26',1),(1,133,4722,'2012-11-06 00:47:26',1),(1,16,4722,'2012-11-06 00:47:26',1),(1,88,4722,'2012-11-06 00:47:26',1),(1,25,4722,'2012-11-06 00:47:26',1),(1,125,4722,'2012-11-06 00:47:26',1),(1,113,4722,'2012-11-06 00:47:26',1),(1,247,4771,'2012-11-06 01:16:21',1),(1,249,4771,'2012-11-06 01:16:21',1),(1,94,4771,'2012-11-06 01:16:21',1),(1,133,4771,'2012-11-06 01:16:21',1),(1,16,4771,'2012-11-06 01:16:21',1),(1,244,4771,'2012-11-06 01:16:21',1),(1,88,4771,'2012-11-06 01:16:21',1),(1,25,4771,'2012-11-06 01:16:21',1),(1,125,4769,'2012-11-06 01:16:24',1),(1,113,4769,'2012-11-06 01:16:24',1),(1,184,4769,'2012-11-06 01:16:24',1),(1,140,4769,'2012-11-06 01:16:24',1),(1,149,4768,'2012-11-06 01:46:14',1),(1,96,4772,'2012-11-06 01:46:21',1),(1,237,4772,'2012-11-06 01:46:21',1),(1,134,4767,'2012-11-06 01:46:27',1),(1,246,4767,'2012-11-06 01:46:27',1),(1,118,4773,'2012-11-06 01:46:37',1),(1,247,4770,'2012-11-06 01:46:38',1),(1,249,4770,'2012-11-06 01:46:38',1),(1,94,4770,'2012-11-06 01:46:38',1),(1,133,4770,'2012-11-06 01:46:38',1),(1,16,4770,'2012-11-06 01:46:38',1),(1,244,4770,'2012-11-06 01:46:38',1),(1,88,4770,'2012-11-06 01:46:38',1),(1,25,4770,'2012-11-06 01:46:38',1),(1,125,4774,'2012-11-06 01:46:40',1),(1,113,4774,'2012-11-06 01:46:40',1),(1,184,4774,'2012-11-06 01:46:40',1),(1,140,4774,'2012-11-06 01:46:40',1),(1,85,4798,'2012-11-06 02:16:39',1),(1,17,4798,'2012-11-06 02:16:39',1),(1,249,4793,'2012-11-06 02:46:14',1),(1,94,4793,'2012-11-06 02:46:14',1),(1,133,4793,'2012-11-06 02:46:14',1),(1,16,4793,'2012-11-06 02:46:14',1),(1,244,4793,'2012-11-06 02:46:14',1),(1,95,4793,'2012-11-06 02:46:14',1),(1,88,4793,'2012-11-06 02:46:14',1),(1,25,4793,'2012-11-06 02:46:14',1),(1,125,4793,'2012-11-06 02:46:14',1),(1,113,4793,'2012-11-06 02:46:14',1),(1,27,4793,'2012-11-06 02:46:14',1),(1,184,4793,'2012-11-06 02:46:14',1),(1,140,4793,'2012-11-06 02:46:14',1),(1,96,4793,'2012-11-06 02:46:14',1),(1,237,4793,'2012-11-06 02:46:14',1),(1,134,4793,'2012-11-06 02:46:14',1),(1,24,4797,'2012-11-06 02:46:14',1),(1,245,4792,'2012-11-06 02:46:16',1),(1,220,4792,'2012-11-06 02:46:16',1),(1,26,4792,'2012-11-06 02:46:16',1),(1,151,4792,'2012-11-06 02:46:16',1),(1,164,4792,'2012-11-06 02:46:16',1),(1,187,4792,'2012-11-06 02:46:16',1),(1,197,4792,'2012-11-06 02:46:16',1),(1,79,4792,'2012-11-06 02:46:16',1),(1,51,4803,'2012-11-06 02:46:18',1),(1,235,4803,'2012-11-06 02:46:18',1),(1,194,4803,'2012-11-06 02:46:18',1),(1,111,4803,'2012-11-06 02:46:18',1),(1,40,4804,'2012-11-06 02:46:20',1),(1,170,4804,'2012-11-06 02:46:20',1),(1,225,4804,'2012-11-06 02:46:20',1),(1,146,4804,'2012-11-06 02:46:20',1),(1,239,4804,'2012-11-06 02:46:20',1),(1,43,4804,'2012-11-06 02:46:20',1),(1,153,4804,'2012-11-06 02:46:20',1),(1,21,4804,'2012-11-06 02:46:20',1),(1,6,4801,'2012-11-06 02:46:22',1),(1,179,4799,'2012-11-06 02:46:25',1),(1,99,4799,'2012-11-06 02:46:25',1),(1,180,4799,'2012-11-06 02:46:25',1),(1,195,4799,'2012-11-06 02:46:25',1),(1,4,4794,'2012-11-06 02:46:37',1),(1,157,4791,'2012-11-06 02:46:37',1),(1,22,4791,'2012-11-06 02:46:37',1),(1,54,4791,'2012-11-06 02:46:37',1),(1,176,4791,'2012-11-06 02:46:37',1),(1,127,4796,'2012-11-06 02:46:37',1),(1,71,4796,'2012-11-06 02:46:37',1),(1,44,4796,'2012-11-06 02:46:37',1),(1,45,4796,'2012-11-06 02:46:37',1),(1,12,4796,'2012-11-06 02:46:37',1),(1,154,4796,'2012-11-06 02:46:37',1),(1,28,4796,'2012-11-06 02:46:37',1),(1,162,4796,'2012-11-06 02:46:37',1),(1,167,4800,'2012-11-06 02:46:40',1),(1,186,4800,'2012-11-06 02:46:40',1),(1,155,4800,'2012-11-06 02:46:40',1),(1,47,4800,'2012-11-06 02:46:40',1),(1,238,4800,'2012-11-06 02:46:40',1),(1,158,4800,'2012-11-06 02:46:40',1),(1,57,4800,'2012-11-06 02:46:40',1),(1,234,4800,'2012-11-06 02:46:40',1),(1,246,4805,'2012-11-06 02:46:46',1),(1,149,4805,'2012-11-06 02:46:46',1),(1,118,4805,'2012-11-06 02:46:46',1),(1,141,4805,'2012-11-06 02:46:46',1),(1,136,4805,'2012-11-06 02:46:46',1),(1,137,4805,'2012-11-06 02:46:46',1),(1,42,4805,'2012-11-06 02:46:46',1),(1,3,4805,'2012-11-06 02:46:46',1),(1,139,4805,'2012-11-06 02:46:46',1),(1,82,4805,'2012-11-06 02:46:46',1),(1,120,4805,'2012-11-06 02:46:46',1),(1,121,4805,'2012-11-06 02:46:46',1),(1,11,4805,'2012-11-06 02:46:46',1),(1,123,4805,'2012-11-06 02:46:46',1),(1,124,4805,'2012-11-06 02:46:46',1),(1,48,4805,'2012-11-06 02:46:46',1),(1,251,4808,'2012-11-06 02:46:49',1),(1,169,4808,'2012-11-06 02:46:49',1),(1,84,4802,'2012-11-06 02:46:54',1),(1,8,4802,'2012-11-06 02:46:54',1),(1,100,4807,'2012-11-06 02:46:54',1),(1,181,4807,'2012-11-06 02:46:54',1),(1,31,4807,'2012-11-06 02:46:54',1),(1,145,4807,'2012-11-06 02:46:54',1),(1,114,4806,'2012-11-06 02:46:57',1),(1,73,4806,'2012-11-06 02:46:57',1),(1,177,4795,'2012-11-06 03:16:49',NULL),(1,148,4795,'2012-11-06 03:16:49',NULL),(1,1,4795,'2012-11-06 03:16:49',NULL),(1,178,4795,'2012-11-06 03:16:49',NULL),(1,88,4827,'2012-11-06 03:46:24',1),(1,25,4827,'2012-11-06 03:46:24',1),(1,27,4829,'2012-11-06 03:46:25',1),(1,184,4829,'2012-11-06 03:46:25',1),(1,20,4832,'2012-11-06 03:46:26',NULL),(1,247,4832,'2012-11-06 03:46:26',NULL),(1,249,4832,'2012-11-06 03:46:26',NULL),(1,94,4832,'2012-11-06 03:46:26',NULL),(1,133,4832,'2012-11-06 03:46:26',NULL),(1,16,4832,'2012-11-06 03:46:26',NULL),(1,244,4832,'2012-11-06 03:46:26',NULL),(1,95,4832,'2012-11-06 03:46:26',NULL),(1,125,4834,'2012-11-06 03:46:27',1),(1,113,4834,'2012-11-06 03:46:27',1),(1,4,4830,'2012-11-06 03:46:33',1),(1,116,4830,'2012-11-06 03:46:33',1),(1,129,4830,'2012-11-06 03:46:33',1),(1,13,4830,'2012-11-06 03:46:33',1),(1,194,4837,'2012-11-06 03:46:33',1),(1,111,4837,'2012-11-06 03:46:33',1),(1,179,4837,'2012-11-06 03:46:33',1),(1,99,4837,'2012-11-06 03:46:33',1),(1,180,4837,'2012-11-06 03:46:33',1),(1,195,4837,'2012-11-06 03:46:33',1),(1,157,4837,'2012-11-06 03:46:33',1),(1,22,4837,'2012-11-06 03:46:33',1),(1,166,4836,'2012-11-06 03:46:36',1),(1,107,4836,'2012-11-06 03:46:36',1),(1,15,4836,'2012-11-06 03:46:36',1),(1,112,4836,'2012-11-06 03:46:36',1),(1,69,4848,'2012-11-06 03:46:38',1),(1,53,4831,'2012-11-06 03:46:41',1),(1,168,4831,'2012-11-06 03:46:41',1),(1,65,4831,'2012-11-06 03:46:41',1),(1,110,4831,'2012-11-06 03:46:41',1),(1,66,4835,'2012-11-06 03:46:44',1),(1,201,4835,'2012-11-06 03:46:44',1),(1,54,4847,'2012-11-06 03:46:48',1),(1,176,4847,'2012-11-06 03:46:48',1),(1,177,4847,'2012-11-06 03:46:48',1),(1,148,4847,'2012-11-06 03:46:48',1),(1,1,4847,'2012-11-06 03:46:48',1),(1,178,4847,'2012-11-06 03:46:48',1),(1,100,4847,'2012-11-06 03:46:48',1),(1,181,4847,'2012-11-06 03:46:48',1),(1,209,4828,'2012-11-06 03:46:52',1),(1,31,4844,'2012-11-06 03:46:55',1),(1,145,4844,'2012-11-06 03:46:55',1),(1,251,4844,'2012-11-06 03:46:55',1),(1,106,4844,'2012-11-06 03:46:55',1),(1,169,4844,'2012-11-06 03:46:55',1),(1,63,4844,'2012-11-06 03:46:55',1),(1,85,4844,'2012-11-06 03:46:55',1),(1,17,4844,'2012-11-06 03:46:55',1),(1,140,4838,'2012-11-06 03:46:57',1),(1,96,4838,'2012-11-06 03:46:57',1),(1,227,4838,'2012-11-06 03:46:57',1),(1,237,4838,'2012-11-06 03:46:57',1),(1,134,4838,'2012-11-06 03:46:57',1),(1,246,4838,'2012-11-06 03:46:57',1),(1,149,4838,'2012-11-06 03:46:57',1),(1,118,4838,'2012-11-06 03:46:57',1),(1,141,4838,'2012-11-06 03:46:57',1),(1,136,4838,'2012-11-06 03:46:57',1),(1,137,4838,'2012-11-06 03:46:57',1),(1,138,4838,'2012-11-06 03:46:57',1),(1,42,4838,'2012-11-06 03:46:57',1),(1,3,4838,'2012-11-06 03:46:57',1),(1,139,4838,'2012-11-06 03:46:57',1),(1,82,4838,'2012-11-06 03:46:57',1),(1,205,4850,'2012-11-06 03:47:00',1),(1,241,4850,'2012-11-06 03:47:00',1),(1,114,4840,'2012-11-06 03:47:03',1),(1,73,4840,'2012-11-06 03:47:03',1),(1,84,4840,'2012-11-06 03:47:03',1),(1,115,4840,'2012-11-06 03:47:03',1),(1,8,4840,'2012-11-06 03:47:03',1),(1,24,4840,'2012-11-06 03:47:03',1),(1,80,4840,'2012-11-06 03:47:03',1),(1,6,4840,'2012-11-06 03:47:03',1),(1,120,4841,'2012-11-06 03:47:03',1),(1,121,4841,'2012-11-06 03:47:03',1),(1,11,4841,'2012-11-06 03:47:03',1),(1,123,4841,'2012-11-06 03:47:03',1),(1,124,4841,'2012-11-06 03:47:03',1),(1,48,4841,'2012-11-06 03:47:03',1),(1,245,4841,'2012-11-06 03:47:03',1),(1,220,4841,'2012-11-06 03:47:03',1),(1,26,4841,'2012-11-06 03:47:03',1),(1,151,4841,'2012-11-06 03:47:03',1),(1,164,4841,'2012-11-06 03:47:03',1),(1,187,4841,'2012-11-06 03:47:03',1),(1,197,4841,'2012-11-06 03:47:03',1),(1,79,4841,'2012-11-06 03:47:03',1),(1,40,4841,'2012-11-06 03:47:03',1),(1,170,4841,'2012-11-06 03:47:03',1),(1,68,4842,'2012-11-06 03:47:05',1),(1,212,4842,'2012-11-06 03:47:05',1),(1,142,4851,'2012-11-06 03:47:06',1),(1,132,4851,'2012-11-06 03:47:06',1),(1,102,4851,'2012-11-06 03:47:06',1),(1,204,4851,'2012-11-06 03:47:06',1),(1,38,4843,'2012-11-06 03:47:12',1),(1,9,4843,'2012-11-06 03:47:12',1),(1,5,4843,'2012-11-06 03:47:12',1),(1,2,4843,'2012-11-06 03:47:12',1),(1,50,4849,'2012-11-06 03:47:12',1),(1,131,4849,'2012-11-06 03:47:12',1),(1,217,4849,'2012-11-06 03:47:12',1),(1,200,4849,'2012-11-06 03:47:12',1),(1,225,4845,'2012-11-06 03:47:13',1),(1,146,4845,'2012-11-06 03:47:13',1),(1,239,4845,'2012-11-06 03:47:13',1),(1,43,4845,'2012-11-06 03:47:13',1),(1,153,4845,'2012-11-06 03:47:13',1),(1,21,4845,'2012-11-06 03:47:13',1),(1,127,4845,'2012-11-06 03:47:13',1),(1,71,4845,'2012-11-06 03:47:13',1),(1,44,4845,'2012-11-06 03:47:13',1),(1,45,4845,'2012-11-06 03:47:13',1),(1,12,4845,'2012-11-06 03:47:13',1),(1,154,4845,'2012-11-06 03:47:13',1),(1,28,4845,'2012-11-06 03:47:13',1),(1,162,4845,'2012-11-06 03:47:13',1),(1,167,4845,'2012-11-06 03:47:13',1),(1,186,4845,'2012-11-06 03:47:13',1),(1,70,4846,'2012-11-06 03:47:17',1),(1,222,4839,'2012-11-06 03:47:33',1),(1,155,4833,'2012-11-06 04:16:43',1),(1,47,4833,'2012-11-06 04:16:43',1),(1,238,4833,'2012-11-06 04:16:43',1),(1,158,4833,'2012-11-06 04:16:43',1),(1,57,4833,'2012-11-06 04:16:43',1),(1,234,4833,'2012-11-06 04:16:43',1),(1,51,4833,'2012-11-06 04:16:43',1),(1,235,4833,'2012-11-06 04:16:43',1),(1,6,4972,'2012-11-07 07:46:36',1),(1,4,4972,'2012-11-07 07:46:36',1),(1,6,4975,'2012-11-07 07:46:37',1),(1,4,4975,'2012-11-07 07:46:37',1),(1,6,4951,'2012-11-07 07:47:14',1),(1,4,4951,'2012-11-07 07:47:14',1),(1,6,4949,'2012-11-07 07:47:17',1),(1,4,4949,'2012-11-07 07:47:17',1),(1,6,4886,'2012-11-07 07:48:27',1),(1,4,4886,'2012-11-07 07:48:27',1),(1,6,4904,'2012-11-07 07:48:27',1),(1,4,4904,'2012-11-07 07:48:27',1),(1,6,4888,'2012-11-07 07:48:52',1),(1,4,4888,'2012-11-07 07:48:52',1),(1,6,4903,'2012-11-07 07:49:21',1),(1,4,4903,'2012-11-07 07:49:21',1),(1,6,4885,'2012-11-07 07:49:22',1),(1,4,4885,'2012-11-07 07:49:22',1),(1,6,5011,'2012-11-07 08:16:48',1),(1,4,5011,'2012-11-07 08:16:48',1),(1,6,5005,'2012-11-07 08:16:56',1),(1,4,5005,'2012-11-07 08:16:56',1),(1,6,5012,'2012-11-07 08:17:03',1),(1,4,5012,'2012-11-07 08:17:03',1),(1,6,4979,'2012-11-07 08:17:40',1),(1,4,4979,'2012-11-07 08:17:40',1),(1,6,4986,'2012-11-07 08:17:51',1),(1,4,4986,'2012-11-07 08:17:51',1),(1,6,5027,'2012-11-07 08:47:26',1),(1,4,5027,'2012-11-07 08:47:26',1),(1,6,5006,'2012-11-07 08:48:13',1),(1,4,5006,'2012-11-07 08:48:13',1),(1,170,4971,'2012-11-07 10:47:23',NULL),(1,6,5007,'2012-11-07 10:47:23',NULL),(1,4,5007,'2012-11-07 10:47:23',NULL),(1,247,5007,'2012-11-07 10:47:23',NULL),(1,97,5007,'2012-11-07 10:47:23',NULL),(1,6,5013,'2012-11-07 10:47:23',NULL),(1,4,5013,'2012-11-07 10:47:23',NULL),(1,247,5013,'2012-11-07 10:47:23',NULL),(1,97,5013,'2012-11-07 10:47:23',NULL),(1,42,4974,'2012-11-07 10:47:30',NULL),(1,39,5015,'2012-11-07 10:47:46',NULL),(1,19,5015,'2012-11-07 10:47:46',NULL),(1,106,5015,'2012-11-07 10:47:46',NULL),(1,193,5015,'2012-11-07 10:47:46',NULL),(1,172,5015,'2012-11-07 10:47:46',NULL),(1,169,5015,'2012-11-07 10:47:46',NULL),(1,83,5015,'2012-11-07 10:47:46',NULL),(1,63,5015,'2012-11-07 10:47:46',NULL),(1,189,5015,'2012-11-07 10:47:46',NULL),(1,190,5015,'2012-11-07 10:47:46',NULL),(1,85,5015,'2012-11-07 10:47:46',NULL),(1,17,5015,'2012-11-07 10:47:46',NULL),(1,191,5015,'2012-11-07 10:47:46',NULL),(1,159,5015,'2012-11-07 10:47:46',NULL),(1,67,5015,'2012-11-07 10:47:46',NULL),(1,68,5015,'2012-11-07 10:47:46',NULL),(1,62,4970,'2012-11-07 10:47:53',NULL),(1,128,4970,'2012-11-07 10:47:53',NULL),(1,39,4970,'2012-11-07 10:47:53',NULL),(1,19,4970,'2012-11-07 10:47:53',NULL),(1,106,4970,'2012-11-07 10:47:53',NULL),(1,193,4970,'2012-11-07 10:47:53',NULL),(1,172,4970,'2012-11-07 10:47:53',NULL),(1,169,4970,'2012-11-07 10:47:53',NULL),(1,83,4970,'2012-11-07 10:47:53',NULL),(1,63,4970,'2012-11-07 10:47:53',NULL),(1,189,4970,'2012-11-07 10:47:53',NULL),(1,190,4970,'2012-11-07 10:47:53',NULL),(1,85,4970,'2012-11-07 10:47:53',NULL),(1,17,4970,'2012-11-07 10:47:53',NULL),(1,191,4970,'2012-11-07 10:47:53',NULL),(1,159,4970,'2012-11-07 10:47:53',NULL),(1,6,4985,'2012-11-07 10:47:56',NULL),(1,4,4985,'2012-11-07 10:47:56',NULL),(1,79,4985,'2012-11-07 10:47:56',NULL),(1,170,4985,'2012-11-07 10:47:56',NULL),(1,6,4984,'2012-11-07 10:48:08',NULL),(1,4,4984,'2012-11-07 10:48:08',NULL),(1,247,4984,'2012-11-07 10:48:08',NULL),(1,79,4984,'2012-11-07 10:48:08',NULL),(1,201,5009,'2012-11-07 10:48:16',NULL),(1,205,5009,'2012-11-07 10:48:16',NULL),(1,77,5009,'2012-11-07 10:48:16',NULL),(1,104,5009,'2012-11-07 10:48:16',NULL),(1,81,5009,'2012-11-07 10:48:16',NULL),(1,52,5009,'2012-11-07 10:48:16',NULL),(1,208,5009,'2012-11-07 10:48:16',NULL),(1,209,5009,'2012-11-07 10:48:16',NULL),(1,207,5014,'2012-11-07 10:48:17',NULL),(1,212,5014,'2012-11-07 10:48:17',NULL),(1,213,5014,'2012-11-07 10:48:17',NULL),(1,69,5014,'2012-11-07 10:48:17',NULL),(1,70,5014,'2012-11-07 10:48:17',NULL),(1,56,5014,'2012-11-07 10:48:17',NULL),(1,92,5014,'2012-11-07 10:48:17',NULL),(1,224,5014,'2012-11-07 10:48:17',NULL),(1,124,4946,'2012-11-07 10:48:19',NULL),(1,126,4946,'2012-11-07 10:48:19',NULL),(1,79,4946,'2012-11-07 10:48:19',NULL),(1,170,4946,'2012-11-07 10:48:19',NULL),(1,97,5026,'2012-11-07 10:48:40',NULL),(1,6,4952,'2012-11-07 10:48:42',NULL),(1,4,4952,'2012-11-07 10:48:42',NULL),(1,79,4952,'2012-11-07 10:48:42',NULL),(1,170,4952,'2012-11-07 10:48:42',NULL),(1,141,5016,'2012-11-07 16:20:29',1),(1,137,5016,'2012-11-07 16:20:29',1),(1,249,4948,'2012-11-08 00:21:27',1),(1,133,4948,'2012-11-08 00:21:27',1),(1,16,4948,'2012-11-08 00:21:27',1),(1,244,4948,'2012-11-08 00:21:27',1),(1,139,4948,'2012-11-08 00:21:27',1),(1,89,4948,'2012-11-08 00:21:27',1),(1,11,4948,'2012-11-08 00:21:27',1),(1,123,4948,'2012-11-08 00:21:27',1),(1,249,4947,'2012-11-08 00:21:32',1),(1,133,4947,'2012-11-08 00:21:32',1),(1,16,4947,'2012-11-08 00:21:32',1),(1,244,4947,'2012-11-08 00:21:32',1),(1,139,4947,'2012-11-08 00:21:32',1),(1,89,4947,'2012-11-08 00:21:32',1),(1,11,4947,'2012-11-08 00:21:32',1),(1,123,4947,'2012-11-08 00:21:32',1),(1,133,4894,'2012-11-08 00:22:40',1),(1,16,4894,'2012-11-08 00:22:40',1),(1,244,4894,'2012-11-08 00:22:40',1),(1,139,4894,'2012-11-08 00:22:40',1),(1,89,4894,'2012-11-08 00:22:40',1),(1,11,4894,'2012-11-08 00:22:40',1),(1,123,4894,'2012-11-08 00:22:40',1),(1,225,4894,'2012-11-08 00:22:40',1),(1,89,4887,'2012-11-08 00:22:41',1),(1,133,4895,'2012-11-08 00:22:44',1),(1,16,4895,'2012-11-08 00:22:44',1),(1,244,4895,'2012-11-08 00:22:44',1),(1,139,4895,'2012-11-08 00:22:44',1),(1,89,4895,'2012-11-08 00:22:44',1),(1,11,4895,'2012-11-08 00:22:44',1),(1,123,4895,'2012-11-08 00:22:44',1),(1,225,4895,'2012-11-08 00:22:44',1),(1,170,4899,'2012-11-08 00:22:47',1),(1,249,4891,'2012-11-08 00:22:50',1),(1,133,4891,'2012-11-08 00:22:50',1),(1,16,4891,'2012-11-08 00:22:50',1),(1,170,4891,'2012-11-08 00:22:50',1),(1,133,4898,'2012-11-08 00:23:15',1),(1,16,4898,'2012-11-08 00:23:15',1),(1,244,4898,'2012-11-08 00:23:15',1),(1,139,4898,'2012-11-08 00:23:15',1),(1,89,4898,'2012-11-08 00:23:15',1),(1,11,4898,'2012-11-08 00:23:15',1),(1,123,4898,'2012-11-08 00:23:15',1),(1,225,4898,'2012-11-08 00:23:15',1),(1,133,4896,'2012-11-08 00:23:29',1),(1,16,4896,'2012-11-08 00:23:29',1),(1,244,4896,'2012-11-08 00:23:29',1),(1,139,4896,'2012-11-08 00:23:29',1),(1,89,4896,'2012-11-08 00:23:29',1),(1,11,4896,'2012-11-08 00:23:29',1),(1,123,4896,'2012-11-08 00:23:29',1),(1,225,4896,'2012-11-08 00:23:29',1),(1,170,4902,'2012-11-08 00:23:30',1),(1,249,4893,'2012-11-08 00:23:55',1),(1,133,4893,'2012-11-08 00:23:55',1),(1,16,4893,'2012-11-08 00:23:55',1),(1,170,4893,'2012-11-08 00:23:55',1),(1,139,4892,'2012-11-08 00:23:56',1),(1,11,4892,'2012-11-08 00:23:56',1),(1,123,4892,'2012-11-08 00:23:56',1),(1,225,4892,'2012-11-08 00:23:56',1),(1,225,4900,'2012-11-08 00:23:57',1),(1,249,4890,'2012-11-08 00:23:58',1),(1,133,4890,'2012-11-08 00:23:58',1),(1,16,4890,'2012-11-08 00:23:58',1),(1,244,4890,'2012-11-08 00:23:58',1),(1,170,4901,'2012-11-08 00:24:23',1),(1,249,4897,'2012-11-08 00:24:23',1),(1,133,4897,'2012-11-08 00:24:23',1),(1,16,4897,'2012-11-08 00:24:23',1),(1,244,4897,'2012-11-08 00:24:23',1),(1,139,4897,'2012-11-08 00:24:23',1),(1,89,4897,'2012-11-08 00:24:23',1),(1,11,4897,'2012-11-08 00:24:23',1),(1,123,4897,'2012-11-08 00:24:23',1),(1,126,5057,'2012-11-08 00:47:53',1),(1,79,5057,'2012-11-08 00:47:53',1),(1,51,5055,'2012-11-08 00:47:58',1),(1,121,5055,'2012-11-08 00:47:58',1),(1,124,5069,'2012-11-08 00:48:14',1),(1,225,5056,'2012-11-08 00:48:15',1),(1,249,4977,'2012-11-08 00:50:40',1),(1,133,4977,'2012-11-08 00:50:40',1),(1,16,4977,'2012-11-08 00:50:40',1),(1,244,4977,'2012-11-08 00:50:40',1),(1,139,4977,'2012-11-08 00:50:40',1),(1,89,4977,'2012-11-08 00:50:40',1),(1,11,4977,'2012-11-08 00:50:40',1),(1,123,4977,'2012-11-08 00:50:40',1),(1,6,5017,'2012-11-08 00:50:43',1),(1,249,5017,'2012-11-08 00:50:43',1),(1,133,5017,'2012-11-08 00:50:43',1),(1,16,5017,'2012-11-08 00:50:43',1),(1,244,5017,'2012-11-08 00:50:43',1),(1,139,5017,'2012-11-08 00:50:43',1),(1,89,5017,'2012-11-08 00:50:43',1),(1,11,5017,'2012-11-08 00:50:43',1),(1,225,4945,'2012-11-08 00:50:46',1),(1,170,4950,'2012-11-08 00:51:19',1),(1,249,4981,'2012-11-08 00:51:27',1),(1,133,4981,'2012-11-08 00:51:27',1),(1,16,4981,'2012-11-08 00:51:27',1),(1,244,4981,'2012-11-08 00:51:27',1),(1,139,4981,'2012-11-08 00:51:27',1),(1,89,4981,'2012-11-08 00:51:27',1),(1,11,4981,'2012-11-08 00:51:27',1),(1,123,4981,'2012-11-08 00:51:27',1),(1,249,4969,'2012-11-08 00:52:47',1),(1,133,4969,'2012-11-08 00:52:47',1),(1,16,4969,'2012-11-08 00:52:47',1),(1,244,4969,'2012-11-08 00:52:47',1),(1,139,4969,'2012-11-08 00:52:47',1),(1,89,4969,'2012-11-08 00:52:47',1),(1,11,4969,'2012-11-08 00:52:47',1),(1,123,4969,'2012-11-08 00:52:47',1),(1,122,5023,'2012-11-08 00:52:48',1),(1,143,4889,'2012-11-08 00:54:02',1),(1,51,4889,'2012-11-08 00:54:02',1),(1,3,4889,'2012-11-08 00:54:02',1),(1,121,4889,'2012-11-08 00:54:02',1),(1,42,5073,'2012-11-08 01:18:11',1),(1,26,5073,'2012-11-08 01:18:11',1),(1,42,5058,'2012-11-08 01:18:46',1),(1,26,5058,'2012-11-08 01:18:46',1),(1,42,5074,'2012-11-08 01:18:54',1),(1,26,5074,'2012-11-08 01:18:54',1),(1,6,4976,'2012-11-08 01:21:13',1),(1,4,4976,'2012-11-08 01:21:13',1),(1,247,4976,'2012-11-08 01:21:13',1),(1,97,4976,'2012-11-08 01:21:13',1),(1,170,4978,'2012-11-08 01:21:59',1),(1,6,4980,'2012-11-08 01:22:00',1),(1,4,4980,'2012-11-08 01:22:00',1),(1,247,4980,'2012-11-08 01:22:00',1),(1,97,4980,'2012-11-08 01:22:00',1),(1,79,5024,'2012-11-08 01:23:21',1),(1,6,5119,'2012-11-08 01:46:58',1),(1,4,5119,'2012-11-08 01:46:58',1),(1,210,5118,'2012-11-08 01:47:09',1),(1,6,5117,'2012-11-08 01:47:12',1),(1,4,5117,'2012-11-08 01:47:12',1),(1,6,5121,'2012-11-08 01:47:13',1),(1,213,5059,'2012-11-08 01:48:46',1),(1,69,5059,'2012-11-08 01:48:46',1),(1,78,5059,'2012-11-08 01:48:46',1),(1,70,5059,'2012-11-08 01:48:46',1),(1,221,5071,'2012-11-08 01:49:01',1),(1,222,5072,'2012-11-08 01:49:01',1),(1,223,5070,'2012-11-08 01:49:02',1),(1,78,5019,'2012-11-08 01:52:22',1),(1,214,5019,'2012-11-08 01:52:22',1),(1,105,5019,'2012-11-08 01:52:22',1),(1,210,5019,'2012-11-08 01:52:22',1),(1,221,5020,'2012-11-08 01:52:25',1),(1,222,5020,'2012-11-08 01:52:25',1),(1,223,5020,'2012-11-08 01:52:25',1),(1,228,5020,'2012-11-08 01:52:25',1),(1,70,4973,'2012-11-08 01:53:06',1),(1,56,4973,'2012-11-08 01:53:06',1),(1,92,4973,'2012-11-08 01:53:06',1),(1,224,4973,'2012-11-08 01:53:06',1),(1,221,4973,'2012-11-08 01:53:06',1),(1,222,4973,'2012-11-08 01:53:06',1),(1,223,4973,'2012-11-08 01:53:06',1),(1,228,4973,'2012-11-08 01:53:06',1),(1,49,5029,'2012-11-08 01:53:23',1),(1,211,5029,'2012-11-08 01:53:23',1),(1,78,5029,'2012-11-08 01:53:23',1),(1,214,5029,'2012-11-08 01:53:23',1),(1,90,5025,'2012-11-08 01:53:50',1),(1,171,5115,'2012-11-08 02:17:26',1),(1,56,5115,'2012-11-08 02:17:26',1),(1,222,5115,'2012-11-08 02:17:26',1),(1,223,5115,'2012-11-08 02:17:26',1),(1,251,5060,'2012-11-08 02:19:25',1),(1,171,5060,'2012-11-08 02:19:25',1),(1,67,5060,'2012-11-08 02:19:25',1),(1,68,5060,'2012-11-08 02:19:25',1),(1,222,5061,'2012-11-08 02:19:28',1),(1,223,5061,'2012-11-08 02:19:28',1),(1,6,5061,'2012-11-08 02:19:28',1),(1,4,5061,'2012-11-08 02:19:28',1),(1,69,5062,'2012-11-08 02:19:29',1),(1,222,5062,'2012-11-08 02:19:29',1),(1,223,5062,'2012-11-08 02:19:29',1),(1,6,5062,'2012-11-08 02:19:29',1),(1,56,5063,'2012-11-08 02:19:31',1),(1,222,5063,'2012-11-08 02:19:31',1),(1,223,5063,'2012-11-08 02:19:31',1),(1,6,5063,'2012-11-08 02:19:31',1),(1,32,4982,'2012-11-08 02:23:17',1),(1,114,4982,'2012-11-08 02:23:17',1),(1,192,4982,'2012-11-08 02:23:17',1),(1,144,4982,'2012-11-08 02:23:17',1),(1,73,4982,'2012-11-08 02:23:17',1),(1,188,4982,'2012-11-08 02:23:17',1),(1,23,4982,'2012-11-08 02:23:17',1),(1,59,4982,'2012-11-08 02:23:17',1),(1,84,4982,'2012-11-08 02:23:17',1),(1,86,4982,'2012-11-08 02:23:17',1),(1,199,4982,'2012-11-08 02:23:17',1),(1,200,4982,'2012-11-08 02:23:17',1),(1,66,4982,'2012-11-08 02:23:17',1),(1,241,4982,'2012-11-08 02:23:17',1),(1,104,4982,'2012-11-08 02:23:17',1),(1,206,4982,'2012-11-08 02:23:17',1),(1,42,5028,'2012-11-08 02:23:24',1),(1,97,5028,'2012-11-08 02:23:24',1),(1,31,5028,'2012-11-08 02:23:24',1),(1,171,5028,'2012-11-08 02:23:24',1),(1,105,5028,'2012-11-08 02:23:24',1),(1,56,5028,'2012-11-08 02:23:24',1),(1,222,5028,'2012-11-08 02:23:24',1),(1,223,5028,'2012-11-08 02:23:24',1),(1,42,4983,'2012-11-08 02:23:27',NULL),(1,26,4983,'2012-11-08 02:23:27',NULL),(1,79,4983,'2012-11-08 02:23:27',NULL),(1,170,4983,'2012-11-08 02:23:27',NULL),(1,222,5008,'2012-11-08 02:24:26',1),(1,223,5008,'2012-11-08 02:24:26',1),(1,6,5008,'2012-11-08 02:24:26',1),(1,4,5008,'2012-11-08 02:24:26',1),(1,77,5143,'2012-11-08 02:46:46',1),(1,67,5143,'2012-11-08 02:46:46',1),(1,68,5143,'2012-11-08 02:46:46',1),(1,214,5143,'2012-11-08 02:46:46',1),(1,192,5149,'2012-11-08 02:46:48',1),(1,144,5149,'2012-11-08 02:46:48',1),(1,73,5149,'2012-11-08 02:46:48',1),(1,188,5149,'2012-11-08 02:46:48',1),(1,23,5149,'2012-11-08 02:46:48',1),(1,59,5149,'2012-11-08 02:46:48',1),(1,84,5149,'2012-11-08 02:46:48',1),(1,86,5149,'2012-11-08 02:46:48',1),(1,199,5149,'2012-11-08 02:46:48',1),(1,200,5149,'2012-11-08 02:46:48',1),(1,66,5149,'2012-11-08 02:46:48',1),(1,241,5149,'2012-11-08 02:46:48',1),(1,67,5149,'2012-11-08 02:46:48',1),(1,104,5149,'2012-11-08 02:46:48',1),(1,206,5149,'2012-11-08 02:46:48',1),(1,211,5149,'2012-11-08 02:46:48',1),(1,144,5156,'2012-11-08 02:46:51',1),(1,73,5156,'2012-11-08 02:46:51',1),(1,188,5156,'2012-11-08 02:46:51',1),(1,23,5156,'2012-11-08 02:46:51',1),(1,59,5156,'2012-11-08 02:46:51',1),(1,84,5156,'2012-11-08 02:46:51',1),(1,86,5156,'2012-11-08 02:46:51',1),(1,219,5156,'2012-11-08 02:46:51',1),(1,211,5146,'2012-11-08 02:46:51',1),(1,70,5146,'2012-11-08 02:46:51',1),(1,32,5142,'2012-11-08 02:46:53',1),(1,114,5142,'2012-11-08 02:46:53',1),(1,214,5147,'2012-11-08 02:47:03',1),(1,92,5147,'2012-11-08 02:47:03',1),(1,221,5147,'2012-11-08 02:47:03',1),(1,4,5147,'2012-11-08 02:47:03',1),(1,92,5140,'2012-11-08 02:47:05',1),(1,191,5155,'2012-11-08 02:47:08',1),(1,144,5155,'2012-11-08 02:47:08',1),(1,73,5155,'2012-11-08 02:47:08',1),(1,188,5155,'2012-11-08 02:47:08',1),(1,23,5155,'2012-11-08 02:47:08',1),(1,59,5155,'2012-11-08 02:47:08',1),(1,84,5155,'2012-11-08 02:47:08',1),(1,86,5155,'2012-11-08 02:47:08',1),(1,67,5154,'2012-11-08 02:47:19',1),(1,68,5154,'2012-11-08 02:47:19',1),(1,106,5139,'2012-11-08 02:47:29',1),(1,193,5139,'2012-11-08 02:47:29',1),(1,172,5139,'2012-11-08 02:47:29',1),(1,169,5139,'2012-11-08 02:47:29',1),(1,83,5139,'2012-11-08 02:47:29',1),(1,63,5139,'2012-11-08 02:47:29',1),(1,189,5139,'2012-11-08 02:47:29',1),(1,190,5139,'2012-11-08 02:47:29',1),(1,85,5139,'2012-11-08 02:47:29',1),(1,17,5139,'2012-11-08 02:47:29',1),(1,191,5139,'2012-11-08 02:47:29',1),(1,159,5139,'2012-11-08 02:47:29',1),(1,32,5139,'2012-11-08 02:47:29',1),(1,114,5139,'2012-11-08 02:47:29',1),(1,198,5139,'2012-11-08 02:47:29',1),(1,6,5139,'2012-11-08 02:47:29',1),(1,114,5141,'2012-11-08 02:47:32',1),(1,198,5141,'2012-11-08 02:47:32',1),(1,201,5141,'2012-11-08 02:47:32',1),(1,77,5141,'2012-11-08 02:47:32',1),(1,56,5152,'2012-11-08 02:47:36',1),(1,222,5152,'2012-11-08 02:47:36',1),(1,223,5152,'2012-11-08 02:47:36',1),(1,6,5152,'2012-11-08 02:47:36',1),(1,92,5150,'2012-11-08 02:47:39',1),(1,221,5150,'2012-11-08 02:47:39',1),(1,214,5145,'2012-11-08 02:47:40',1),(1,77,5153,'2012-11-08 02:47:42',1),(1,84,5116,'2012-11-08 02:47:55',1),(1,86,5116,'2012-11-08 02:47:55',1),(1,219,5116,'2012-11-08 02:47:55',1),(1,199,5116,'2012-11-08 02:47:55',1),(1,200,5116,'2012-11-08 02:47:55',1),(1,66,5116,'2012-11-08 02:47:55',1),(1,205,5116,'2012-11-08 02:47:55',1),(1,241,5116,'2012-11-08 02:47:55',1),(1,171,5122,'2012-11-08 02:47:55',1),(1,32,5122,'2012-11-08 02:47:55',1),(1,114,5122,'2012-11-08 02:47:55',1),(1,77,5122,'2012-11-08 02:47:55',1),(1,191,5064,'2012-11-08 02:49:05',1),(1,159,5064,'2012-11-08 02:49:05',1),(1,32,5064,'2012-11-08 02:49:05',1),(1,114,5064,'2012-11-08 02:49:05',1),(1,198,5064,'2012-11-08 02:49:05',1),(1,77,5064,'2012-11-08 02:49:05',1),(1,207,5064,'2012-11-08 02:49:05',1),(1,69,5064,'2012-11-08 02:49:05',1),(1,159,5068,'2012-11-08 02:49:08',1),(1,32,5068,'2012-11-08 02:49:08',1),(1,114,5068,'2012-11-08 02:49:08',1),(1,198,5068,'2012-11-08 02:49:08',1),(1,201,5068,'2012-11-08 02:49:08',1),(1,77,5068,'2012-11-08 02:49:08',1),(1,207,5068,'2012-11-08 02:49:08',1),(1,212,5068,'2012-11-08 02:49:08',1),(1,159,5067,'2012-11-08 02:49:16',1),(1,32,5067,'2012-11-08 02:49:16',1),(1,114,5067,'2012-11-08 02:49:16',1),(1,198,5067,'2012-11-08 02:49:16',1),(1,201,5067,'2012-11-08 02:49:16',1),(1,77,5067,'2012-11-08 02:49:16',1),(1,49,5067,'2012-11-08 02:49:16',1),(1,207,5067,'2012-11-08 02:49:16',1),(1,32,5065,'2012-11-08 02:49:39',1),(1,114,5065,'2012-11-08 02:49:39',1),(1,198,5065,'2012-11-08 02:49:39',1),(1,201,5065,'2012-11-08 02:49:39',1),(1,77,5065,'2012-11-08 02:49:39',1),(1,49,5065,'2012-11-08 02:49:39',1),(1,207,5065,'2012-11-08 02:49:39',1),(1,6,5065,'2012-11-08 02:49:39',1),(1,191,5066,'2012-11-08 02:49:55',1),(1,32,5066,'2012-11-08 02:49:55',1),(1,192,5066,'2012-11-08 02:49:55',1),(1,144,5066,'2012-11-08 02:49:55',1),(1,73,5066,'2012-11-08 02:49:55',1),(1,188,5066,'2012-11-08 02:49:55',1),(1,23,5066,'2012-11-08 02:49:55',1),(1,59,5066,'2012-11-08 02:49:55',1),(1,192,5018,'2012-11-08 02:53:21',1),(1,144,5018,'2012-11-08 02:53:21',1),(1,73,5018,'2012-11-08 02:53:21',1),(1,188,5018,'2012-11-08 02:53:21',1),(1,23,5018,'2012-11-08 02:53:21',1),(1,59,5018,'2012-11-08 02:53:21',1),(1,84,5018,'2012-11-08 02:53:21',1),(1,86,5018,'2012-11-08 02:53:21',1),(1,199,5018,'2012-11-08 02:53:21',1),(1,200,5018,'2012-11-08 02:53:21',1),(1,66,5018,'2012-11-08 02:53:21',1),(1,241,5018,'2012-11-08 02:53:21',1),(1,104,5018,'2012-11-08 02:53:21',1),(1,206,5018,'2012-11-08 02:53:21',1),(1,6,5018,'2012-11-08 02:53:21',1),(1,4,5018,'2012-11-08 02:53:21',1),(1,205,5021,'2012-11-08 02:53:36',1),(1,213,5021,'2012-11-08 02:53:36',1),(1,78,5021,'2012-11-08 02:53:36',1),(1,105,5021,'2012-11-08 02:53:36',1),(1,210,5021,'2012-11-08 02:53:36',1),(1,56,5021,'2012-11-08 02:53:36',1),(1,222,5021,'2012-11-08 02:53:36',1),(1,223,5021,'2012-11-08 02:53:36',1),(1,19,5022,'2012-11-08 02:54:30',1),(1,106,5022,'2012-11-08 02:54:30',1),(1,193,5022,'2012-11-08 02:54:30',1),(1,172,5022,'2012-11-08 02:54:30',1),(1,169,5022,'2012-11-08 02:54:30',1),(1,83,5022,'2012-11-08 02:54:30',1),(1,63,5022,'2012-11-08 02:54:30',1),(1,189,5022,'2012-11-08 02:54:30',1),(1,190,5022,'2012-11-08 02:54:30',1),(1,85,5022,'2012-11-08 02:54:30',1),(1,17,5022,'2012-11-08 02:54:30',1),(1,191,5022,'2012-11-08 02:54:30',1),(1,159,5022,'2012-11-08 02:54:30',1),(1,32,5022,'2012-11-08 02:54:30',1),(1,114,5022,'2012-11-08 02:54:30',1),(1,198,5022,'2012-11-08 02:54:30',1),(1,172,5010,'2012-11-08 02:54:33',1),(1,169,5010,'2012-11-08 02:54:33',1),(1,83,5010,'2012-11-08 02:54:33',1),(1,63,5010,'2012-11-08 02:54:33',1),(1,189,5010,'2012-11-08 02:54:33',1),(1,190,5010,'2012-11-08 02:54:33',1),(1,85,5010,'2012-11-08 02:54:33',1),(1,17,5010,'2012-11-08 02:54:33',1),(1,106,5148,'2012-11-08 03:17:26',1),(1,114,5148,'2012-11-08 03:17:26',1),(1,192,5148,'2012-11-08 03:17:26',1),(1,198,5148,'2012-11-08 03:17:26',1),(1,201,5148,'2012-11-08 03:17:26',1),(1,77,5148,'2012-11-08 03:17:26',1),(1,214,5148,'2012-11-08 03:17:26',1),(1,56,5148,'2012-11-08 03:17:26',1),(1,188,5144,'2012-11-08 03:17:37',1),(1,23,5144,'2012-11-08 03:17:37',1),(1,59,5144,'2012-11-08 03:17:37',1),(1,84,5144,'2012-11-08 03:17:37',1),(1,86,5144,'2012-11-08 03:17:37',1),(1,208,5144,'2012-11-08 03:17:37',1),(1,70,5144,'2012-11-08 03:17:37',1),(1,224,5144,'2012-11-08 03:17:37',1),(1,67,5120,'2012-11-08 03:18:27',NULL),(1,104,5120,'2012-11-08 03:18:27',NULL),(1,206,5120,'2012-11-08 03:18:27',NULL),(1,211,5120,'2012-11-08 03:18:27',NULL),(1,213,5120,'2012-11-08 03:18:27',NULL),(1,78,5120,'2012-11-08 03:18:27',NULL),(1,105,5120,'2012-11-08 03:18:27',NULL),(1,210,5120,'2012-11-08 03:18:27',NULL),(1,213,5196,'2012-11-08 03:46:38',1),(1,69,5196,'2012-11-08 03:46:38',1),(1,52,5196,'2012-11-08 03:46:38',1),(1,210,5196,'2012-11-08 03:46:38',1),(1,70,5196,'2012-11-08 03:46:38',1),(1,222,5196,'2012-11-08 03:46:38',1),(1,6,5196,'2012-11-08 03:46:38',1),(1,4,5196,'2012-11-08 03:46:38',1),(1,6,5179,'2012-11-08 03:46:41',1),(1,4,5179,'2012-11-08 03:46:41',1),(1,106,5180,'2012-11-08 03:46:42',1),(1,83,5180,'2012-11-08 03:46:42',1),(1,19,5197,'2012-11-08 03:46:43',1),(1,83,5197,'2012-11-08 03:46:43',1),(1,63,5198,'2012-11-08 03:46:46',1),(1,63,5192,'2012-11-08 03:46:49',1),(1,193,5188,'2012-11-08 03:46:54',1),(1,83,5188,'2012-11-08 03:46:54',1),(1,189,5188,'2012-11-08 03:46:54',1),(1,211,5188,'2012-11-08 03:46:54',1),(1,213,5188,'2012-11-08 03:46:54',1),(1,69,5188,'2012-11-08 03:46:54',1),(1,52,5188,'2012-11-08 03:46:54',1),(1,210,5188,'2012-11-08 03:46:54',1),(1,169,5183,'2012-11-08 03:46:59',1),(1,190,5183,'2012-11-08 03:46:59',1),(1,17,5183,'2012-11-08 03:46:59',1),(1,191,5183,'2012-11-08 03:46:59',1),(1,159,5183,'2012-11-08 03:46:59',1),(1,32,5183,'2012-11-08 03:46:59',1),(1,114,5183,'2012-11-08 03:46:59',1),(1,144,5183,'2012-11-08 03:46:59',1),(1,73,5183,'2012-11-08 03:46:59',1),(1,188,5183,'2012-11-08 03:46:59',1),(1,86,5183,'2012-11-08 03:46:59',1),(1,219,5183,'2012-11-08 03:46:59',1),(1,198,5183,'2012-11-08 03:46:59',1),(1,206,5183,'2012-11-08 03:46:59',1),(1,49,5183,'2012-11-08 03:46:59',1),(1,207,5183,'2012-11-08 03:46:59',1),(1,83,5193,'2012-11-08 03:47:16',1),(1,189,5193,'2012-11-08 03:47:16',1),(1,211,5193,'2012-11-08 03:47:16',1),(1,213,5193,'2012-11-08 03:47:16',1),(1,189,5176,'2012-11-08 03:47:32',1),(1,199,5151,'2012-11-08 03:48:11',NULL),(1,200,5151,'2012-11-08 03:48:11',NULL),(1,66,5151,'2012-11-08 03:48:11',NULL),(1,205,5151,'2012-11-08 03:48:11',NULL),(1,70,5177,'2012-11-08 04:17:13',1),(1,222,5177,'2012-11-08 04:17:13',1),(1,6,5177,'2012-11-08 04:17:13',1),(1,4,5177,'2012-11-08 04:17:13',1),(1,31,5187,'2012-11-08 04:17:15',1),(1,145,5187,'2012-11-08 04:17:15',1),(1,62,5187,'2012-11-08 04:17:15',1),(1,19,5187,'2012-11-08 04:17:15',1),(1,49,5195,'2012-11-08 04:17:31',1),(1,207,5195,'2012-11-08 04:17:31',1),(1,159,5182,'2012-11-08 04:17:33',1),(1,32,5182,'2012-11-08 04:17:33',1),(1,114,5182,'2012-11-08 04:17:33',1),(1,144,5182,'2012-11-08 04:17:33',1),(1,73,5182,'2012-11-08 04:17:33',1),(1,188,5182,'2012-11-08 04:17:33',1),(1,86,5182,'2012-11-08 04:17:33',1),(1,219,5182,'2012-11-08 04:17:33',1),(1,145,5194,'2012-11-08 04:17:34',1),(1,251,5194,'2012-11-08 04:17:34',1),(1,62,5194,'2012-11-08 04:17:34',1),(1,19,5194,'2012-11-08 04:17:34',1),(1,193,5181,'2012-11-08 04:17:36',1),(1,70,5181,'2012-11-08 04:17:36',1),(1,222,5181,'2012-11-08 04:17:36',1),(1,6,5181,'2012-11-08 04:17:36',1),(1,58,5178,'2012-11-08 04:17:39',1),(1,177,5178,'2012-11-08 04:17:39',1),(1,72,5178,'2012-11-08 04:17:39',1),(1,148,5178,'2012-11-08 04:17:39',1),(1,1,5178,'2012-11-08 04:17:39',1),(1,109,5178,'2012-11-08 04:17:39',1),(1,33,5178,'2012-11-08 04:17:39',1),(1,178,5178,'2012-11-08 04:17:39',1),(1,69,5175,'2012-11-08 04:17:42',1),(1,52,5175,'2012-11-08 04:17:42',1),(1,17,5191,'2012-11-08 04:17:53',1),(1,191,5191,'2012-11-08 04:17:53',1),(1,159,5191,'2012-11-08 04:17:53',1),(1,32,5191,'2012-11-08 04:17:53',1),(1,114,5191,'2012-11-08 04:17:53',1),(1,144,5191,'2012-11-08 04:17:53',1),(1,73,5191,'2012-11-08 04:17:53',1),(1,188,5191,'2012-11-08 04:17:53',1),(1,86,5191,'2012-11-08 04:17:53',1),(1,219,5191,'2012-11-08 04:17:53',1),(1,198,5191,'2012-11-08 04:17:53',1),(1,199,5191,'2012-11-08 04:17:53',1),(1,200,5191,'2012-11-08 04:17:53',1),(1,66,5191,'2012-11-08 04:17:53',1),(1,205,5191,'2012-11-08 04:17:53',1),(1,206,5191,'2012-11-08 04:17:53',1),(1,198,5189,'2012-11-08 04:17:56',1),(1,199,5189,'2012-11-08 04:17:56',1),(1,200,5189,'2012-11-08 04:17:56',1),(1,66,5189,'2012-11-08 04:17:56',1),(1,30,5185,'2012-11-08 04:18:02',1),(1,243,5185,'2012-11-08 04:18:02',1),(1,169,5185,'2012-11-08 04:18:02',1),(1,63,5185,'2012-11-08 04:18:02',1),(1,85,5185,'2012-11-08 04:18:02',1),(1,191,5185,'2012-11-08 04:18:02',1),(1,198,5185,'2012-11-08 04:18:02',1),(1,199,5185,'2012-11-08 04:18:02',1),(1,247,5186,'2012-11-08 04:18:02',1),(1,42,5186,'2012-11-08 04:18:02',1),(1,111,5186,'2012-11-08 04:18:02',1),(1,179,5186,'2012-11-08 04:18:02',1),(1,99,5186,'2012-11-08 04:18:02',1),(1,180,5186,'2012-11-08 04:18:02',1),(1,195,5186,'2012-11-08 04:18:02',1),(1,161,5186,'2012-11-08 04:18:02',1),(1,196,5186,'2012-11-08 04:18:02',1),(1,157,5186,'2012-11-08 04:18:02',1),(1,22,5186,'2012-11-08 04:18:02',1),(1,165,5186,'2012-11-08 04:18:02',1),(1,175,5186,'2012-11-08 04:18:02',1),(1,54,5186,'2012-11-08 04:18:02',1),(1,163,5186,'2012-11-08 04:18:02',1),(1,176,5186,'2012-11-08 04:18:02',1),(1,210,5199,'2012-11-08 04:18:15',1),(1,169,5184,'2012-11-08 04:18:17',1),(1,81,5184,'2012-11-08 04:18:17',1),(1,34,5190,'2012-11-08 04:48:35',1),(1,182,5190,'2012-11-08 04:48:35',1),(1,100,5190,'2012-11-08 04:48:35',1),(1,181,5190,'2012-11-08 04:48:35',1),(1,35,5190,'2012-11-08 04:48:35',1),(1,36,5190,'2012-11-08 04:48:35',1),(1,37,5190,'2012-11-08 04:48:35',1),(1,29,5190,'2012-11-08 04:48:35',1),(1,221,5243,'2012-11-09 00:49:49',1),(1,214,5243,'2012-11-09 00:49:49',1),(1,223,5228,'2012-11-09 00:49:55',1),(1,221,5228,'2012-11-09 00:49:55',1),(1,6,5228,'2012-11-09 00:49:55',1),(1,214,5228,'2012-11-09 00:49:55',1),(1,223,5229,'2012-11-09 00:50:03',1),(1,221,5229,'2012-11-09 00:50:03',1),(1,6,5229,'2012-11-09 00:50:03',1),(1,214,5229,'2012-11-09 00:50:03',1),(1,223,5227,'2012-11-09 00:50:06',1),(1,221,5227,'2012-11-09 00:50:06',1),(1,6,5227,'2012-11-09 00:50:06',1),(1,214,5227,'2012-11-09 00:50:06',1),(1,221,5244,'2012-11-09 00:50:09',1),(1,214,5244,'2012-11-09 00:50:09',1),(1,223,5226,'2012-11-09 00:50:09',1),(1,221,5226,'2012-11-09 00:50:09',1),(1,223,5239,'2012-11-09 00:50:12',1),(1,214,5238,'2012-11-09 00:50:16',1),(1,223,5230,'2012-11-09 00:50:24',1),(1,221,5230,'2012-11-09 00:50:24',1),(1,6,5230,'2012-11-09 00:50:24',1),(1,214,5230,'2012-11-09 00:50:24',1),(1,223,5231,'2012-11-09 00:50:39',1),(1,221,5231,'2012-11-09 00:50:39',1),(1,6,5231,'2012-11-09 00:50:39',1),(1,214,5231,'2012-11-09 00:50:39',1),(1,223,5242,'2012-11-09 00:50:39',1),(1,221,5242,'2012-11-09 00:50:39',1),(1,223,5241,'2012-11-09 00:50:41',1),(1,221,5241,'2012-11-09 00:50:41',1),(1,214,5240,'2012-11-09 00:50:41',1),(1,223,5237,'2012-11-09 00:50:44',1),(1,221,5225,'2012-11-09 00:50:44',1),(1,6,5233,'2012-11-09 01:31:16',1),(1,4,5233,'2012-11-09 01:31:16',1),(1,53,5233,'2012-11-09 01:31:16',1),(1,130,5233,'2012-11-09 01:31:16',1),(1,156,5233,'2012-11-09 01:31:16',1),(1,168,5233,'2012-11-09 01:31:16',1),(1,64,5233,'2012-11-09 01:31:16',1),(1,65,5233,'2012-11-09 01:31:16',1),(1,217,5286,'2012-11-09 01:42:41',1),(1,6,5287,'2012-11-09 01:42:41',NULL),(1,4,5287,'2012-11-09 01:42:41',NULL),(1,217,5288,'2012-11-09 01:42:42',1),(1,50,5289,'2012-11-09 01:42:44',1),(1,131,5289,'2012-11-09 01:42:44',1),(1,6,5291,'2012-11-09 01:42:48',1),(1,4,5291,'2012-11-09 01:42:48',1),(1,50,5291,'2012-11-09 01:42:48',1),(1,131,5291,'2012-11-09 01:42:48',1),(1,6,5292,'2012-11-09 01:43:08',1),(1,4,5292,'2012-11-09 01:43:08',1),(1,50,5292,'2012-11-09 01:43:08',1),(1,131,5292,'2012-11-09 01:43:08',1),(1,217,5309,'2012-11-09 02:36:51',1),(1,217,5323,'2012-11-09 02:36:56',1),(1,217,5316,'2012-11-09 03:07:04',1),(1,6,5326,'2012-11-09 03:37:49',NULL),(1,4,5326,'2012-11-09 03:37:49',NULL),(1,50,5326,'2012-11-09 03:37:49',NULL),(1,131,5326,'2012-11-09 03:37:49',NULL),(1,6,5313,'2012-11-09 03:37:50',1),(1,4,5313,'2012-11-09 03:37:50',1),(1,217,5362,'2012-11-09 03:47:43',1),(1,217,5354,'2012-11-09 03:47:46',1),(1,217,5369,'2012-11-09 03:47:46',1),(1,4,5361,'2012-11-09 03:48:05',1),(1,6,5311,'2012-11-09 04:08:10',1),(1,4,5311,'2012-11-09 04:08:10',1),(1,6,5317,'2012-11-09 04:08:15',1),(1,4,5317,'2012-11-09 04:08:15',1),(1,6,5321,'2012-11-09 04:08:37',1),(1,4,5321,'2012-11-09 04:08:37',1),(1,6,5348,'2012-11-09 04:17:38',1),(1,4,5348,'2012-11-09 04:17:38',1),(1,6,5350,'2012-11-09 04:17:38',1),(1,4,5350,'2012-11-09 04:17:38',1),(1,6,5347,'2012-11-09 04:47:47',1),(1,4,5347,'2012-11-09 04:47:47',1),(1,6,5349,'2012-11-09 04:47:59',1),(1,4,5349,'2012-11-09 04:47:59',1),(1,6,5364,'2012-11-09 04:48:05',1),(1,4,5364,'2012-11-09 04:48:05',1),(1,6,5363,'2012-11-09 05:18:01',1),(1,4,5363,'2012-11-09 05:18:01',1),(1,80,5322,'2012-11-09 10:43:27',1),(1,38,5322,'2012-11-09 10:43:27',1),(1,5,5322,'2012-11-09 10:43:27',1),(1,214,5322,'2012-11-09 10:43:27',1),(1,5,5325,'2012-11-09 10:43:29',1),(1,131,5325,'2012-11-09 10:43:29',1),(1,214,5325,'2012-11-09 10:43:29',1),(1,90,5325,'2012-11-09 10:43:29',1),(1,169,5314,'2012-11-09 10:43:31',1),(1,87,5314,'2012-11-09 10:43:31',1),(1,216,5314,'2012-11-09 10:43:31',1),(1,214,5314,'2012-11-09 10:43:31',1),(1,127,5367,'2012-11-09 10:50:24',1),(1,98,5367,'2012-11-09 10:50:24',1),(1,31,5367,'2012-11-09 10:50:24',1),(1,173,5367,'2012-11-09 10:50:24',1),(1,115,5368,'2012-11-09 10:50:51',1),(1,74,5368,'2012-11-09 10:50:51',1),(1,65,5368,'2012-11-09 10:50:51',1),(1,223,5368,'2012-11-09 10:50:51',1),(1,8,5234,'2012-11-09 10:55:24',1),(1,173,5234,'2012-11-09 10:55:24',1),(1,80,5234,'2012-11-09 10:55:24',1),(1,55,5234,'2012-11-09 10:55:24',1),(1,130,5234,'2012-11-09 10:55:24',1),(1,110,5234,'2012-11-09 10:55:24',1),(1,90,5234,'2012-11-09 10:55:24',1),(1,91,5234,'2012-11-09 10:55:24',1),(1,115,5236,'2012-11-09 10:55:24',1),(1,87,5236,'2012-11-09 10:55:24',1),(1,24,5236,'2012-11-09 10:55:24',1),(1,252,5236,'2012-11-09 10:55:24',1),(1,38,5236,'2012-11-09 10:55:24',1),(1,5,5236,'2012-11-09 10:55:24',1),(1,131,5236,'2012-11-09 10:55:24',1),(1,214,5236,'2012-11-09 10:55:24',1),(1,252,5235,'2012-11-09 10:55:32',1),(1,55,5235,'2012-11-09 10:55:32',1),(1,130,5235,'2012-11-09 10:55:32',1),(1,64,5235,'2012-11-09 10:55:32',1),(1,110,5235,'2012-11-09 10:55:32',1),(1,38,5235,'2012-11-09 10:55:32',1),(1,5,5235,'2012-11-09 10:55:32',1),(1,131,5235,'2012-11-09 10:55:32',1),(1,167,5232,'2012-11-09 10:55:32',1),(1,186,5232,'2012-11-09 10:55:32',1),(1,155,5232,'2012-11-09 10:55:32',1),(1,232,5232,'2012-11-09 10:55:32',1),(1,47,5232,'2012-11-09 10:55:32',1),(1,238,5232,'2012-11-09 10:55:32',1),(1,158,5232,'2012-11-09 10:55:32',1),(1,98,5232,'2012-11-09 10:55:32',1),(1,225,5290,'2012-11-09 11:04:38',1),(1,167,5290,'2012-11-09 11:04:38',1),(1,186,5290,'2012-11-09 11:04:38',1),(1,155,5290,'2012-11-09 11:04:38',1),(1,232,5290,'2012-11-09 11:04:38',1),(1,47,5290,'2012-11-09 11:04:38',1),(1,238,5290,'2012-11-09 11:04:38',1),(1,158,5290,'2012-11-09 11:04:38',1),(1,218,5312,'2012-11-09 11:13:45',1),(1,49,5312,'2012-11-09 11:13:45',1),(1,121,5312,'2012-11-09 11:13:45',1),(1,18,5312,'2012-11-09 11:13:45',1),(1,48,5312,'2012-11-09 11:13:45',1),(1,245,5312,'2012-11-09 11:13:45',1),(1,234,5312,'2012-11-09 11:13:45',1),(1,217,5312,'2012-11-09 11:13:45',1),(1,9,5318,'2012-11-09 11:14:11',1),(1,56,5318,'2012-11-09 11:14:11',1),(1,92,5318,'2012-11-09 11:14:11',1),(1,91,5318,'2012-11-09 11:14:11',1),(1,71,5345,'2012-11-09 11:20:22',1),(1,24,5345,'2012-11-09 11:20:22',1),(1,122,5345,'2012-11-09 11:20:22',1),(1,41,5345,'2012-11-09 11:20:22',1),(1,27,5315,'2012-11-09 11:43:37',1),(1,184,5315,'2012-11-09 11:43:37',1),(1,140,5315,'2012-11-09 11:43:37',1),(1,96,5315,'2012-11-09 11:43:37',1),(1,227,5315,'2012-11-09 11:43:37',1),(1,237,5315,'2012-11-09 11:43:37',1),(1,134,5315,'2012-11-09 11:43:37',1),(1,135,5315,'2012-11-09 11:43:37',1),(1,140,5358,'2012-11-09 11:50:39',1),(1,96,5358,'2012-11-09 11:50:39',1),(1,227,5358,'2012-11-09 11:50:39',1),(1,237,5358,'2012-11-09 11:50:39',1),(1,217,5351,'2012-11-09 11:50:54',1),(1,49,5351,'2012-11-09 11:50:54',1),(1,122,5351,'2012-11-09 11:50:54',1),(1,164,5351,'2012-11-09 11:50:54',1),(1,27,5285,'2012-11-09 12:05:11',1),(1,184,5285,'2012-11-09 12:05:11',1),(1,140,5285,'2012-11-09 12:05:11',1),(1,96,5285,'2012-11-09 12:05:11',1),(1,227,5285,'2012-11-09 12:05:11',1),(1,237,5285,'2012-11-09 12:05:11',1),(1,134,5285,'2012-11-09 12:05:11',1),(1,135,5285,'2012-11-09 12:05:11',1),(1,237,5324,'2012-11-09 12:13:57',1),(1,149,5324,'2012-11-09 12:13:57',1),(1,171,5324,'2012-11-09 12:13:57',1),(1,169,5324,'2012-11-09 12:13:57',1),(1,87,5324,'2012-11-09 12:13:57',1),(1,80,5324,'2012-11-09 12:13:57',1),(1,252,5324,'2012-11-09 12:13:57',1),(1,55,5324,'2012-11-09 12:13:57',1),(1,130,5324,'2012-11-09 12:13:57',1),(1,64,5324,'2012-11-09 12:13:57',1),(1,110,5324,'2012-11-09 12:13:57',1),(1,38,5324,'2012-11-09 12:13:57',1),(1,215,5324,'2012-11-09 12:13:57',1),(1,5,5324,'2012-11-09 12:13:57',1),(1,2,5324,'2012-11-09 12:13:57',1),(1,216,5324,'2012-11-09 12:13:57',1),(1,64,5310,'2012-11-09 12:13:57',1),(1,110,5310,'2012-11-09 12:13:57',1),(1,203,5310,'2012-11-09 12:13:57',1),(1,38,5310,'2012-11-09 12:13:57',1),(1,215,5310,'2012-11-09 12:13:57',1),(1,5,5310,'2012-11-09 12:13:57',1),(1,2,5310,'2012-11-09 12:13:57',1),(1,216,5310,'2012-11-09 12:13:57',1),(1,246,5366,'2012-11-09 12:20:27',1),(1,149,5366,'2012-11-09 12:20:27',1),(1,40,5366,'2012-11-09 12:20:27',1),(1,250,5366,'2012-11-09 12:20:27',1),(1,3,5319,'2012-11-09 12:44:25',1),(1,150,5319,'2012-11-09 12:44:25',1),(1,143,5319,'2012-11-09 12:44:25',1),(1,37,5319,'2012-11-09 12:44:25',1),(1,171,5319,'2012-11-09 12:44:25',1),(1,169,5319,'2012-11-09 12:44:25',1),(1,87,5319,'2012-11-09 12:44:25',1),(1,80,5319,'2012-11-09 12:44:25',1),(1,140,5320,'2012-11-09 12:44:26',1),(1,237,5320,'2012-11-09 12:44:26',1),(1,135,5320,'2012-11-09 12:44:26',1),(1,149,5320,'2012-11-09 12:44:26',1),(1,138,5320,'2012-11-09 12:44:26',1),(1,97,5320,'2012-11-09 12:44:26',1),(1,3,5320,'2012-11-09 12:44:26',1),(1,150,5320,'2012-11-09 12:44:26',1),(1,143,5320,'2012-11-09 12:44:26',1),(1,171,5320,'2012-11-09 12:44:26',1),(1,169,5320,'2012-11-09 12:44:26',1),(1,87,5320,'2012-11-09 12:44:26',1),(1,80,5320,'2012-11-09 12:44:26',1),(1,252,5320,'2012-11-09 12:44:26',1),(1,55,5320,'2012-11-09 12:44:26',1),(1,130,5320,'2012-11-09 12:44:26',1),(1,149,5355,'2012-11-09 15:51:03',1),(1,97,5355,'2012-11-09 15:51:03',1),(1,3,5355,'2012-11-09 15:51:03',1),(1,41,5355,'2012-11-09 15:51:03',1),(1,37,5355,'2012-11-09 15:51:03',1),(1,169,5355,'2012-11-09 15:51:03',1),(1,189,5355,'2012-11-09 15:51:03',1),(1,75,5355,'2012-11-09 15:51:03',1),(1,41,5357,'2012-11-09 16:21:06',1),(1,37,5357,'2012-11-09 16:21:06',1),(1,169,5357,'2012-11-09 16:21:06',1),(1,189,5357,'2012-11-09 16:21:06',1),(1,252,5357,'2012-11-09 16:21:06',1),(1,75,5357,'2012-11-09 16:21:06',1),(1,61,5357,'2012-11-09 16:21:06',1),(1,92,5357,'2012-11-09 16:21:06',1),(1,136,5352,'2012-11-09 16:21:23',1),(1,233,5352,'2012-11-09 16:21:23',1),(1,37,5352,'2012-11-09 16:21:23',1),(1,87,5352,'2012-11-09 16:21:23',1),(1,252,5352,'2012-11-09 16:21:23',1),(1,130,5352,'2012-11-09 16:21:23',1),(1,240,5352,'2012-11-09 16:21:23',1),(1,7,5352,'2012-11-09 16:21:23',1),(1,3,5346,'2012-11-09 18:21:22',1),(1,40,5346,'2012-11-09 18:21:22',1),(1,37,5346,'2012-11-09 18:21:22',1),(1,55,5346,'2012-11-09 18:21:22',1),(1,56,5346,'2012-11-09 18:21:22',1),(1,92,5346,'2012-11-09 18:21:22',1),(1,221,5346,'2012-11-09 18:21:22',1),(1,222,5346,'2012-11-09 18:21:22',1),(1,119,5359,'2012-11-09 18:51:31',1),(1,87,5359,'2012-11-09 18:51:31',1),(1,156,5359,'2012-11-09 18:51:31',1),(1,240,5359,'2012-11-09 18:51:31',1),(1,7,5359,'2012-11-09 18:51:31',1),(1,61,5359,'2012-11-09 18:51:31',1),(1,231,5359,'2012-11-09 18:51:31',1),(1,201,5359,'2012-11-09 18:51:31',1),(1,3,5360,'2012-11-09 18:51:34',1),(1,40,5360,'2012-11-09 18:51:34',1),(1,41,5360,'2012-11-09 18:51:34',1),(1,233,5360,'2012-11-09 18:51:34',1),(1,143,5360,'2012-11-09 18:51:34',1),(1,37,5360,'2012-11-09 18:51:34',1),(1,13,5360,'2012-11-09 18:51:34',1),(1,75,5360,'2012-11-09 18:51:34',1),(1,55,5360,'2012-11-09 18:51:34',1),(1,229,5360,'2012-11-09 18:51:34',1),(1,131,5360,'2012-11-09 18:51:34',1),(1,67,5360,'2012-11-09 18:51:34',1),(1,105,5360,'2012-11-09 18:51:34',1),(1,56,5360,'2012-11-09 18:51:34',1),(1,92,5360,'2012-11-09 18:51:34',1),(1,221,5360,'2012-11-09 18:51:34',1),(1,13,5365,'2012-11-09 18:51:49',1),(1,75,5365,'2012-11-09 18:51:49',1),(1,55,5365,'2012-11-09 18:51:49',1),(1,229,5365,'2012-11-09 18:51:49',1),(1,131,5365,'2012-11-09 18:51:49',1),(1,67,5365,'2012-11-09 18:51:49',1),(1,105,5365,'2012-11-09 18:51:49',1),(1,56,5365,'2012-11-09 18:51:49',1),(1,118,5353,'2012-11-09 19:51:43',1),(1,3,5353,'2012-11-09 19:51:43',1),(1,122,5353,'2012-11-09 19:51:43',1),(1,164,5353,'2012-11-09 19:51:43',1),(1,40,5353,'2012-11-09 19:51:43',1),(1,41,5353,'2012-11-09 19:51:43',1),(1,189,5353,'2012-11-09 19:51:43',1),(1,6,5353,'2012-11-09 19:51:43',1),(1,4,5353,'2012-11-09 19:51:43',1),(1,112,5353,'2012-11-09 19:51:43',1),(1,242,5353,'2012-11-09 19:51:43',1),(1,103,5353,'2012-11-09 19:51:43',1),(1,60,5353,'2012-11-09 19:51:43',1),(1,215,5353,'2012-11-09 19:51:43',1),(1,5,5353,'2012-11-09 19:51:43',1),(1,216,5353,'2012-11-09 19:51:43',1),(1,5,5356,'2012-11-09 20:21:53',1),(1,50,5356,'2012-11-09 20:21:53',1),(1,217,5356,'2012-11-09 20:21:53',1),(1,214,5356,'2012-11-09 20:21:53',1),(1,105,5356,'2012-11-09 20:21:53',1),(1,222,5356,'2012-11-09 20:21:53',1),(1,96,5356,'2012-11-09 20:21:53',1),(1,237,5356,'2012-11-09 20:21:53',1),(1,134,5356,'2012-11-09 20:21:53',1),(1,149,5356,'2012-11-09 20:21:53',1),(1,141,5356,'2012-11-09 20:21:53',1),(1,119,5356,'2012-11-09 20:21:53',1),(1,138,5356,'2012-11-09 20:21:53',1),(1,233,5356,'2012-11-09 20:21:53',1),(1,169,5356,'2012-11-09 20:21:53',1),(1,130,5356,'2012-11-09 20:21:53',1),(1,37,5538,'2012-11-10 00:46:44',1),(1,31,5538,'2012-11-10 00:46:44',1),(1,171,5538,'2012-11-10 00:46:44',1),(1,169,5538,'2012-11-10 00:46:44',1),(1,174,5539,'2012-11-10 00:46:51',1),(1,112,5539,'2012-11-10 00:46:51',1),(1,242,5539,'2012-11-10 00:46:51',1),(1,228,5539,'2012-11-10 00:46:51',1),(1,174,5540,'2012-11-10 00:46:53',1),(1,112,5540,'2012-11-10 00:46:53',1),(1,242,5540,'2012-11-10 00:46:53',1),(1,66,5540,'2012-11-10 00:46:53',1),(1,93,5541,'2012-11-10 00:46:56',1),(1,174,5541,'2012-11-10 00:46:56',1),(1,112,5541,'2012-11-10 00:46:56',1),(1,242,5541,'2012-11-10 00:46:56',1),(1,21,5542,'2012-11-10 00:47:04',1),(1,158,5542,'2012-11-10 00:47:04',1),(1,233,5542,'2012-11-10 00:47:04',1),(1,37,5542,'2012-11-10 00:47:04',1),(1,115,5543,'2012-11-10 00:47:09',1),(1,74,5543,'2012-11-10 00:47:09',1),(1,173,5543,'2012-11-10 00:47:09',1),(1,93,5543,'2012-11-10 00:47:09',1),(1,174,5543,'2012-11-10 00:47:09',1),(1,112,5543,'2012-11-10 00:47:09',1),(1,228,5543,'2012-11-10 00:47:09',1),(1,6,5543,'2012-11-10 00:47:09',1),(1,98,5544,'2012-11-10 00:47:11',1),(1,233,5544,'2012-11-10 00:47:11',1),(1,143,5544,'2012-11-10 00:47:11',1),(1,37,5544,'2012-11-10 00:47:11',1),(1,31,5544,'2012-11-10 00:47:11',1),(1,171,5544,'2012-11-10 00:47:11',1),(1,169,5544,'2012-11-10 00:47:11',1),(1,189,5544,'2012-11-10 00:47:11',1),(1,115,5545,'2012-11-10 00:47:14',1),(1,74,5545,'2012-11-10 00:47:14',1),(1,173,5545,'2012-11-10 00:47:14',1),(1,93,5545,'2012-11-10 00:47:14',1),(1,174,5545,'2012-11-10 00:47:14',1),(1,112,5545,'2012-11-10 00:47:14',1),(1,242,5545,'2012-11-10 00:47:14',1),(1,228,5545,'2012-11-10 00:47:14',1),(1,37,5546,'2012-11-10 00:47:14',1),(1,31,5546,'2012-11-10 00:47:14',1),(1,171,5546,'2012-11-10 00:47:14',1),(1,169,5546,'2012-11-10 00:47:14',1),(1,115,5546,'2012-11-10 00:47:14',1),(1,74,5546,'2012-11-10 00:47:14',1),(1,173,5546,'2012-11-10 00:47:14',1),(1,93,5546,'2012-11-10 00:47:14',1),(1,146,5547,'2012-11-10 00:47:18',1),(1,158,5547,'2012-11-10 00:47:18',1),(1,37,5547,'2012-11-10 00:47:18',1),(1,31,5547,'2012-11-10 00:47:18',1),(1,171,5547,'2012-11-10 00:47:18',1),(1,169,5547,'2012-11-10 00:47:18',1),(1,115,5547,'2012-11-10 00:47:18',1),(1,74,5547,'2012-11-10 00:47:18',1),(1,189,5552,'2012-11-10 00:47:31',1),(1,66,5552,'2012-11-10 00:47:31',1),(1,173,5553,'2012-11-10 00:47:32',1),(1,93,5553,'2012-11-10 00:47:32',1),(1,31,5554,'2012-11-10 00:47:33',1),(1,171,5554,'2012-11-10 00:47:33',1),(1,169,5555,'2012-11-10 00:47:47',1),(1,189,5555,'2012-11-10 00:47:47',1),(1,115,5537,'2012-11-10 00:47:48',1),(1,74,5537,'2012-11-10 00:47:48',1),(1,41,5618,'2012-11-10 01:46:22',1),(1,98,5618,'2012-11-10 01:46:22',1),(1,167,5620,'2012-11-10 01:46:23',1),(1,189,5620,'2012-11-10 01:46:23',1),(1,167,5622,'2012-11-10 01:46:24',1),(1,143,5622,'2012-11-10 01:46:24',1),(1,31,5622,'2012-11-10 01:46:24',1),(1,189,5622,'2012-11-10 01:46:24',1),(1,44,5624,'2012-11-10 01:46:41',1),(1,47,5624,'2012-11-10 01:46:41',1),(1,158,5624,'2012-11-10 01:46:41',1),(1,228,5624,'2012-11-10 01:46:41',1),(1,206,5655,'2012-11-10 02:46:30',1),(1,68,5655,'2012-11-10 02:46:30',1),(1,212,5655,'2012-11-10 02:46:30',1),(1,213,5655,'2012-11-10 02:46:30',1),(1,171,5658,'2012-11-10 02:46:31',1),(1,66,5658,'2012-11-10 02:46:31',1),(1,21,5659,'2012-11-10 02:46:32',1),(1,232,5659,'2012-11-10 02:46:32',1),(1,174,5659,'2012-11-10 02:46:32',1),(1,112,5659,'2012-11-10 02:46:32',1),(1,91,5660,'2012-11-10 02:46:36',1),(1,81,5654,'2012-11-10 02:46:42',1),(1,208,5654,'2012-11-10 02:46:42',1),(1,21,5652,'2012-11-10 02:46:43',1),(1,232,5652,'2012-11-10 02:46:43',1),(1,174,5652,'2012-11-10 02:46:43',1),(1,112,5652,'2012-11-10 02:46:43',1),(1,66,5652,'2012-11-10 02:46:43',1),(1,77,5652,'2012-11-10 02:46:43',1),(1,81,5652,'2012-11-10 02:46:43',1),(1,208,5652,'2012-11-10 02:46:43',1),(1,23,5621,'2012-11-10 02:46:45',1),(1,84,5621,'2012-11-10 02:46:45',1),(1,202,5621,'2012-11-10 02:46:45',1),(1,76,5621,'2012-11-10 02:46:45',1),(1,108,5621,'2012-11-10 02:46:45',1),(1,205,5621,'2012-11-10 02:46:45',1),(1,77,5621,'2012-11-10 02:46:45',1),(1,104,5621,'2012-11-10 02:46:45',1),(1,91,5649,'2012-11-10 02:46:46',1),(1,174,5662,'2012-11-10 02:46:48',1),(1,112,5662,'2012-11-10 02:46:48',1),(1,66,5662,'2012-11-10 02:46:48',1),(1,77,5662,'2012-11-10 02:46:48',1),(1,68,5663,'2012-11-10 02:46:50',1),(1,212,5663,'2012-11-10 02:46:50',1),(1,213,5663,'2012-11-10 02:46:50',1),(1,81,5663,'2012-11-10 02:46:50',1),(1,112,5651,'2012-11-10 02:46:50',1),(1,242,5651,'2012-11-10 02:46:50',1),(1,21,5665,'2012-11-10 02:46:55',1),(1,155,5665,'2012-11-10 02:46:55',1),(1,232,5665,'2012-11-10 02:46:55',1),(1,174,5665,'2012-11-10 02:46:55',1),(1,112,5665,'2012-11-10 02:46:55',1),(1,66,5665,'2012-11-10 02:46:55',1),(1,77,5665,'2012-11-10 02:46:55',1),(1,206,5665,'2012-11-10 02:46:55',1),(1,153,5623,'2012-11-10 02:47:02',1),(1,233,5623,'2012-11-10 02:47:02',1),(1,23,5623,'2012-11-10 02:47:02',1),(1,84,5623,'2012-11-10 02:47:02',1),(1,202,5623,'2012-11-10 02:47:02',1),(1,76,5623,'2012-11-10 02:47:02',1),(1,108,5623,'2012-11-10 02:47:02',1),(1,205,5623,'2012-11-10 02:47:02',1),(1,115,5666,'2012-11-10 02:47:02',1),(1,205,5666,'2012-11-10 02:47:02',1),(1,68,5666,'2012-11-10 02:47:02',1),(1,212,5666,'2012-11-10 02:47:02',1),(1,213,5666,'2012-11-10 02:47:02',1),(1,81,5666,'2012-11-10 02:47:02',1),(1,228,5666,'2012-11-10 02:47:02',1),(1,6,5666,'2012-11-10 02:47:02',1),(1,242,5619,'2012-11-10 02:47:04',1),(1,77,5664,'2012-11-10 02:47:05',1),(1,104,5664,'2012-11-10 02:47:05',1),(1,205,5617,'2012-11-10 02:47:18',1),(1,77,5548,'2012-11-10 02:48:09',1),(1,66,5549,'2012-11-10 02:48:11',1),(1,104,5550,'2012-11-10 02:48:11',1),(1,155,5551,'2012-11-10 02:48:15',1),(1,169,5556,'2012-11-10 02:48:24',1),(1,158,5656,'2012-11-10 03:16:49',1),(1,233,5656,'2012-11-10 03:16:49',1),(1,169,5656,'2012-11-10 03:16:49',1),(1,23,5656,'2012-11-10 03:16:49',1),(1,84,5656,'2012-11-10 03:16:49',1),(1,202,5656,'2012-11-10 03:16:49',1),(1,76,5656,'2012-11-10 03:16:49',1),(1,108,5656,'2012-11-10 03:16:49',1),(1,208,5653,'2012-11-10 03:17:30',1),(1,158,5714,'2012-11-10 03:47:26',1),(1,169,5714,'2012-11-10 03:47:26',1),(1,74,5714,'2012-11-10 03:47:26',1),(1,108,5714,'2012-11-10 03:47:26',1),(1,108,5704,'2012-11-10 03:47:27',1),(1,77,5704,'2012-11-10 03:47:27',1),(1,169,5709,'2012-11-10 03:47:30',1),(1,84,5709,'2012-11-10 03:47:30',1),(1,74,5709,'2012-11-10 03:47:30',1),(1,202,5709,'2012-11-10 03:47:30',1),(1,31,5650,'2012-11-10 03:47:39',NULL),(1,93,5650,'2012-11-10 03:47:39',NULL),(1,242,5650,'2012-11-10 03:47:39',NULL),(1,104,5650,'2012-11-10 03:47:39',NULL),(1,206,5723,'2012-11-10 03:47:42',1),(1,91,5723,'2012-11-10 03:47:42',1),(1,81,5726,'2012-11-10 03:47:42',1),(1,186,5705,'2012-11-10 03:47:42',1),(1,47,5705,'2012-11-10 03:47:42',1),(1,115,5705,'2012-11-10 03:47:42',1),(1,174,5705,'2012-11-10 03:47:42',1),(1,146,5706,'2012-11-10 03:47:45',1),(1,41,5706,'2012-11-10 03:47:45',1),(1,158,5708,'2012-11-10 03:47:45',1),(1,112,5708,'2012-11-10 03:47:45',1),(1,158,5719,'2012-11-10 03:47:45',1),(1,233,5720,'2012-11-10 03:47:49',1),(1,202,5707,'2012-11-10 03:47:49',1),(1,66,5707,'2012-11-10 03:47:49',1),(1,153,5721,'2012-11-10 03:47:57',1),(1,31,5721,'2012-11-10 03:47:57',1),(1,74,5721,'2012-11-10 03:47:57',1),(1,93,5721,'2012-11-10 03:47:57',1),(1,206,5718,'2012-11-10 03:48:14',1),(1,225,5712,'2012-11-10 04:17:25',NULL),(1,146,5712,'2012-11-10 04:17:25',NULL),(1,41,5712,'2012-11-10 04:17:25',NULL),(1,44,5712,'2012-11-10 04:17:25',NULL),(1,158,5712,'2012-11-10 04:17:25',NULL),(1,23,5712,'2012-11-10 04:17:25',NULL),(1,206,5712,'2012-11-10 04:17:25',NULL),(1,91,5712,'2012-11-10 04:17:25',NULL),(1,147,5703,'2012-11-10 04:18:02',NULL),(1,212,5703,'2012-11-10 04:18:02',NULL),(1,171,5725,'2012-11-10 04:18:11',1),(1,76,5725,'2012-11-10 04:18:11',1),(1,205,5725,'2012-11-10 04:18:11',1),(1,56,5725,'2012-11-10 04:18:11',1),(1,44,5715,'2012-11-10 04:18:25',1),(1,158,5715,'2012-11-10 04:18:25',1),(1,98,5715,'2012-11-10 04:18:25',1),(1,23,5715,'2012-11-10 04:18:25',1),(1,76,5710,'2012-11-10 04:47:38',1),(1,205,5710,'2012-11-10 04:47:38',1),(1,104,5710,'2012-11-10 04:47:38',1),(1,81,5710,'2012-11-10 04:47:38',1),(1,208,5710,'2012-11-10 04:47:38',1),(1,209,5710,'2012-11-10 04:47:38',1),(1,56,5710,'2012-11-10 04:47:38',1),(1,4,5710,'2012-11-10 04:47:38',1),(1,171,5727,'2012-11-10 04:47:39',1),(1,93,5727,'2012-11-10 04:47:39',1),(1,174,5727,'2012-11-10 04:47:39',1),(1,112,5727,'2012-11-10 04:47:39',1),(1,202,5727,'2012-11-10 04:47:39',1),(1,77,5727,'2012-11-10 04:47:39',1),(1,68,5727,'2012-11-10 04:47:39',1),(1,213,5727,'2012-11-10 04:47:39',1),(1,40,5724,'2012-11-10 04:47:45',1),(1,147,5724,'2012-11-10 04:47:45',1),(1,44,5724,'2012-11-10 04:47:45',1),(1,115,5724,'2012-11-10 04:47:45',1),(1,173,5724,'2012-11-10 04:47:45',1),(1,108,5724,'2012-11-10 04:47:45',1),(1,206,5724,'2012-11-10 04:47:45',1),(1,91,5724,'2012-11-10 04:47:45',1),(1,57,5657,'2012-11-10 05:17:44',1),(1,58,5657,'2012-11-10 05:17:44',1),(1,177,5657,'2012-11-10 05:17:44',1),(1,181,5657,'2012-11-10 05:17:44',1),(1,35,5657,'2012-11-10 05:17:44',1),(1,128,5657,'2012-11-10 05:17:44',1),(1,39,5657,'2012-11-10 05:17:44',1),(1,172,5657,'2012-11-10 05:17:44',1),(1,169,5657,'2012-11-10 05:17:44',1),(1,189,5657,'2012-11-10 05:17:44',1),(1,85,5657,'2012-11-10 05:17:44',1),(1,191,5657,'2012-11-10 05:17:44',1),(1,192,5657,'2012-11-10 05:17:44',1),(1,23,5657,'2012-11-10 05:17:44',1),(1,212,5657,'2012-11-10 05:17:44',1),(1,6,5657,'2012-11-10 05:17:44',1),(1,57,5661,'2012-11-10 05:17:51',1),(1,51,5661,'2012-11-10 05:17:51',1),(1,58,5661,'2012-11-10 05:17:51',1),(1,177,5661,'2012-11-10 05:17:51',1),(1,181,5661,'2012-11-10 05:17:51',1),(1,35,5661,'2012-11-10 05:17:51',1),(1,37,5661,'2012-11-10 05:17:51',1),(1,31,5661,'2012-11-10 05:17:51',1),(1,128,5661,'2012-11-10 05:17:51',1),(1,39,5661,'2012-11-10 05:17:51',1),(1,172,5661,'2012-11-10 05:17:51',1),(1,169,5661,'2012-11-10 05:17:51',1),(1,189,5661,'2012-11-10 05:17:51',1),(1,85,5661,'2012-11-10 05:17:51',1),(1,191,5661,'2012-11-10 05:17:51',1),(1,192,5661,'2012-11-10 05:17:51',1),(1,40,5722,'2012-11-10 05:18:08',NULL),(1,147,5722,'2012-11-10 05:18:08',NULL),(1,44,5722,'2012-11-10 05:18:08',NULL),(1,115,5722,'2012-11-10 05:18:08',NULL),(1,173,5722,'2012-11-10 05:18:08',NULL),(1,242,5722,'2012-11-10 05:18:08',NULL),(1,108,5722,'2012-11-10 05:18:08',NULL),(1,206,5722,'2012-11-10 05:18:08',NULL),(1,187,5716,'2012-11-10 05:18:35',1),(1,41,5716,'2012-11-10 05:18:35',1),(1,167,5716,'2012-11-10 05:18:35',1),(1,84,5716,'2012-11-10 05:18:35',1),(1,66,5716,'2012-11-10 05:18:35',1),(1,228,5716,'2012-11-10 05:18:35',1),(1,91,5716,'2012-11-10 05:18:35',1),(1,4,5716,'2012-11-10 05:18:35',1),(1,143,5711,'2012-11-10 05:47:46',1),(1,57,5711,'2012-11-10 05:47:46',1),(1,51,5711,'2012-11-10 05:47:46',1),(1,58,5711,'2012-11-10 05:47:46',1),(1,177,5711,'2012-11-10 05:47:46',1),(1,181,5711,'2012-11-10 05:47:46',1),(1,35,5711,'2012-11-10 05:47:46',1),(1,37,5711,'2012-11-10 05:47:46',1),(1,31,5711,'2012-11-10 05:47:46',1),(1,128,5711,'2012-11-10 05:47:46',1),(1,39,5711,'2012-11-10 05:47:46',1),(1,172,5711,'2012-11-10 05:47:46',1),(1,169,5711,'2012-11-10 05:47:46',1),(1,189,5711,'2012-11-10 05:47:46',1),(1,85,5711,'2012-11-10 05:47:46',1),(1,191,5711,'2012-11-10 05:47:46',1),(1,225,5713,'2012-11-10 05:47:46',1),(1,41,5713,'2012-11-10 05:47:46',1),(1,167,5713,'2012-11-10 05:47:46',1),(1,192,5713,'2012-11-10 05:47:46',1),(1,23,5713,'2012-11-10 05:47:46',1),(1,84,5713,'2012-11-10 05:47:46',1),(1,87,5713,'2012-11-10 05:47:46',1),(1,156,5713,'2012-11-10 05:47:46',1),(1,240,5713,'2012-11-10 05:47:46',1),(1,7,5713,'2012-11-10 05:47:46',1),(1,61,5713,'2012-11-10 05:47:46',1),(1,231,5713,'2012-11-10 05:47:46',1),(1,66,5713,'2012-11-10 05:47:46',1),(1,201,5713,'2012-11-10 05:47:46',1),(1,212,5713,'2012-11-10 05:47:46',1),(1,224,5713,'2012-11-10 05:47:46',1),(1,167,5717,'2012-11-10 05:48:41',1),(1,47,5717,'2012-11-10 05:48:41',1),(1,158,5717,'2012-11-10 05:48:41',1),(1,192,5717,'2012-11-10 05:48:41',1),(1,23,5717,'2012-11-10 05:48:41',1),(1,84,5717,'2012-11-10 05:48:41',1),(1,115,5717,'2012-11-10 05:48:41',1),(1,87,5717,'2012-11-10 05:48:41',1),(1,173,5717,'2012-11-10 05:48:41',1),(1,156,5717,'2012-11-10 05:48:41',1),(1,242,5717,'2012-11-10 05:48:41',1),(1,108,5717,'2012-11-10 05:48:41',1),(1,240,5717,'2012-11-10 05:48:41',1),(1,7,5717,'2012-11-10 05:48:41',1),(1,61,5717,'2012-11-10 05:48:41',1),(1,231,5717,'2012-11-10 05:48:41',1),(1,89,5783,'2012-11-11 00:17:21',1),(1,82,5783,'2012-11-11 00:17:21',1),(1,11,5783,'2012-11-11 00:17:21',1),(1,123,5783,'2012-11-11 00:17:21',1),(1,124,5783,'2012-11-11 00:17:21',1),(1,26,5783,'2012-11-11 00:17:21',1),(1,187,5783,'2012-11-11 00:17:21',1),(1,126,5783,'2012-11-11 00:17:21',1),(1,93,5784,'2012-11-11 00:17:24',1),(1,174,5784,'2012-11-11 00:17:24',1),(1,112,5784,'2012-11-11 00:17:24',1),(1,133,5784,'2012-11-11 00:17:24',1),(1,16,5784,'2012-11-11 00:17:24',1),(1,244,5784,'2012-11-11 00:17:24',1),(1,25,5784,'2012-11-11 00:17:24',1),(1,139,5784,'2012-11-11 00:17:24',1),(1,40,5785,'2012-11-11 00:17:24',1),(1,170,5785,'2012-11-11 00:17:24',1),(1,225,5785,'2012-11-11 00:17:24',1),(1,146,5785,'2012-11-11 00:17:24',1),(1,41,5785,'2012-11-11 00:17:24',1),(1,239,5785,'2012-11-11 00:17:24',1),(1,153,5785,'2012-11-11 00:17:24',1),(1,21,5785,'2012-11-11 00:17:24',1),(1,127,5786,'2012-11-11 00:17:25',1),(1,186,5786,'2012-11-11 00:17:25',1),(1,155,5786,'2012-11-11 00:17:25',1),(1,171,5786,'2012-11-11 00:17:25',1),(1,106,5786,'2012-11-11 00:17:25',1),(1,83,5786,'2012-11-11 00:17:25',1),(1,190,5786,'2012-11-11 00:17:25',1),(1,17,5786,'2012-11-11 00:17:25',1),(1,159,5795,'2012-11-11 00:50:09',1),(1,114,5795,'2012-11-11 00:50:09',1),(1,80,5790,'2012-11-11 00:50:12',1),(1,21,5791,'2012-11-11 00:50:13',1),(1,127,5792,'2012-11-11 00:50:16',1),(1,186,5792,'2012-11-11 00:50:16',1),(1,155,5793,'2012-11-11 00:50:18',1),(1,171,5793,'2012-11-11 00:50:18',1),(1,106,5794,'2012-11-11 00:50:26',1),(1,83,5794,'2012-11-11 00:50:26',1),(1,211,5796,'2012-11-11 00:50:30',1),(1,139,5778,'2012-11-11 00:50:32',1),(1,89,5778,'2012-11-11 00:50:32',1),(1,82,5778,'2012-11-11 00:50:32',1),(1,11,5778,'2012-11-11 00:50:32',1),(1,190,5797,'2012-11-11 00:50:33',1),(1,17,5797,'2012-11-11 00:50:33',1),(1,93,5789,'2012-11-11 00:50:36',1),(1,126,5779,'2012-11-11 00:50:39',1),(1,40,5779,'2012-11-11 00:50:39',1),(1,170,5779,'2012-11-11 00:50:39',1),(1,225,5779,'2012-11-11 00:50:39',1),(1,123,5780,'2012-11-11 00:50:43',1),(1,124,5780,'2012-11-11 00:50:43',1),(1,26,5780,'2012-11-11 00:50:43',1),(1,187,5780,'2012-11-11 00:50:43',1),(1,146,5781,'2012-11-11 00:50:48',1),(1,41,5781,'2012-11-11 00:50:48',1),(1,239,5781,'2012-11-11 00:50:48',1),(1,153,5781,'2012-11-11 00:50:48',1),(1,126,5782,'2012-11-11 00:50:57',1),(1,40,5782,'2012-11-11 00:50:57',1),(1,170,5782,'2012-11-11 00:50:57',1),(1,225,5782,'2012-11-11 00:50:57',1),(1,211,5787,'2012-11-11 00:51:15',1),(1,93,5787,'2012-11-11 00:51:15',1),(1,174,5787,'2012-11-11 00:51:15',1),(1,112,5787,'2012-11-11 00:51:15',1),(1,133,5787,'2012-11-11 00:51:15',1),(1,16,5787,'2012-11-11 00:51:15',1),(1,244,5787,'2012-11-11 00:51:15',1),(1,25,5787,'2012-11-11 00:51:15',1),(1,174,5788,'2012-11-11 00:51:18',1),(1,231,5859,'2012-11-11 01:47:17',1),(1,198,5859,'2012-11-11 01:47:17',1),(1,174,5865,'2012-11-11 01:47:20',1),(1,150,5860,'2012-11-11 01:47:29',NULL),(1,79,5860,'2012-11-11 01:47:29',NULL),(1,44,5860,'2012-11-11 01:47:29',NULL),(1,8,5860,'2012-11-11 01:47:29',NULL),(1,252,5860,'2012-11-11 01:47:29',NULL),(1,93,5860,'2012-11-11 01:47:29',NULL),(1,116,5860,'2012-11-11 01:47:29',NULL),(1,174,5860,'2012-11-11 01:47:29',NULL),(1,117,5861,'2012-11-11 01:47:30',1),(1,112,5861,'2012-11-11 01:47:30',1),(1,202,5861,'2012-11-11 01:47:30',1),(1,76,5861,'2012-11-11 01:47:30',1),(1,205,5862,'2012-11-11 01:47:32',1),(1,77,5862,'2012-11-11 01:47:32',1),(1,227,5862,'2012-11-11 01:47:32',1),(1,150,5862,'2012-11-11 01:47:32',1),(1,79,5862,'2012-11-11 01:47:32',1),(1,44,5862,'2012-11-11 01:47:32',1),(1,8,5862,'2012-11-11 01:47:32',1),(1,252,5862,'2012-11-11 01:47:32',1),(1,117,5863,'2012-11-11 01:47:33',1),(1,112,5863,'2012-11-11 01:47:33',1),(1,202,5863,'2012-11-11 01:47:33',1),(1,76,5863,'2012-11-11 01:47:33',1),(1,205,5864,'2012-11-11 01:47:36',1),(1,93,5858,'2012-11-11 01:47:39',1),(1,116,5858,'2012-11-11 01:47:39',1),(1,198,5907,'2012-11-11 02:46:55',1),(1,93,5892,'2012-11-11 02:46:56',1),(1,116,5892,'2012-11-11 02:46:56',1),(1,174,5892,'2012-11-11 02:46:56',1),(1,117,5892,'2012-11-11 02:46:56',1),(1,112,5892,'2012-11-11 02:46:56',1),(1,202,5892,'2012-11-11 02:46:56',1),(1,76,5892,'2012-11-11 02:46:56',1),(1,231,5892,'2012-11-11 02:46:56',1),(1,113,5897,'2012-11-11 02:46:57',1),(1,227,5897,'2012-11-11 02:46:57',1),(1,246,5897,'2012-11-11 02:46:57',1),(1,150,5897,'2012-11-11 02:46:57',1),(1,79,5897,'2012-11-11 02:46:57',1),(1,44,5897,'2012-11-11 02:46:57',1),(1,8,5897,'2012-11-11 02:46:57',1),(1,252,5897,'2012-11-11 02:46:57',1),(1,113,5898,'2012-11-11 02:47:11',1),(1,227,5898,'2012-11-11 02:47:11',1),(1,246,5898,'2012-11-11 02:47:11',1),(1,150,5898,'2012-11-11 02:47:11',1),(1,79,5898,'2012-11-11 02:47:11',1),(1,44,5898,'2012-11-11 02:47:11',1),(1,8,5898,'2012-11-11 02:47:11',1),(1,252,5898,'2012-11-11 02:47:11',1),(1,93,5898,'2012-11-11 02:47:11',1),(1,116,5898,'2012-11-11 02:47:11',1),(1,174,5898,'2012-11-11 02:47:11',1),(1,117,5898,'2012-11-11 02:47:11',1),(1,112,5898,'2012-11-11 02:47:11',1),(1,202,5898,'2012-11-11 02:47:11',1),(1,76,5898,'2012-11-11 02:47:11',1),(1,231,5898,'2012-11-11 02:47:11',1),(1,104,5899,'2012-11-11 02:47:11',1),(1,207,5899,'2012-11-11 02:47:11',1),(1,116,5900,'2012-11-11 02:47:11',1),(1,174,5900,'2012-11-11 02:47:11',1),(1,117,5900,'2012-11-11 02:47:11',1),(1,112,5900,'2012-11-11 02:47:11',1),(1,198,5901,'2012-11-11 02:47:22',1),(1,113,5902,'2012-11-11 02:47:25',1),(1,227,5902,'2012-11-11 02:47:25',1),(1,246,5902,'2012-11-11 02:47:25',1),(1,150,5902,'2012-11-11 02:47:25',1),(1,79,5902,'2012-11-11 02:47:25',1),(1,44,5902,'2012-11-11 02:47:25',1),(1,8,5902,'2012-11-11 02:47:25',1),(1,252,5902,'2012-11-11 02:47:25',1),(1,93,5902,'2012-11-11 02:47:25',1),(1,116,5902,'2012-11-11 02:47:25',1),(1,174,5902,'2012-11-11 02:47:25',1),(1,117,5902,'2012-11-11 02:47:25',1),(1,112,5902,'2012-11-11 02:47:25',1),(1,202,5902,'2012-11-11 02:47:25',1),(1,76,5902,'2012-11-11 02:47:25',1),(1,231,5902,'2012-11-11 02:47:25',1),(1,211,5903,'2012-11-11 02:47:30',1),(1,116,5903,'2012-11-11 02:47:30',1),(1,174,5903,'2012-11-11 02:47:30',1),(1,117,5903,'2012-11-11 02:47:30',1),(1,112,5904,'2012-11-11 02:47:33',1),(1,202,5904,'2012-11-11 02:47:33',1),(1,76,5904,'2012-11-11 02:47:33',1),(1,231,5904,'2012-11-11 02:47:33',1),(1,198,5894,'2012-11-11 02:47:36',1),(1,77,5893,'2012-11-11 02:47:38',1),(1,198,5893,'2012-11-11 02:47:38',1),(1,76,5890,'2012-11-11 02:47:39',1),(1,231,5890,'2012-11-11 02:47:39',1),(1,205,5891,'2012-11-11 02:47:40',1),(1,77,5891,'2012-11-11 02:47:40',1),(1,93,5891,'2012-11-11 02:47:40',1),(1,116,5891,'2012-11-11 02:47:40',1),(1,174,5891,'2012-11-11 02:47:40',1),(1,117,5891,'2012-11-11 02:47:40',1),(1,112,5891,'2012-11-11 02:47:40',1),(1,202,5891,'2012-11-11 02:47:40',1),(1,205,5905,'2012-11-11 02:47:41',1),(1,77,5905,'2012-11-11 02:47:41',1),(1,93,5905,'2012-11-11 02:47:41',1),(1,116,5905,'2012-11-11 02:47:41',1),(1,174,5905,'2012-11-11 02:47:41',1),(1,117,5905,'2012-11-11 02:47:41',1),(1,112,5905,'2012-11-11 02:47:41',1),(1,202,5905,'2012-11-11 02:47:41',1),(1,200,5895,'2012-11-11 02:47:55',1),(1,198,5895,'2012-11-11 02:47:55',1),(1,112,5896,'2012-11-11 03:18:16',1),(1,202,5896,'2012-11-11 03:18:16',1),(1,76,5896,'2012-11-11 03:18:16',1),(1,231,5896,'2012-11-11 03:18:16',1),(1,44,5945,'2012-11-11 03:47:05',1),(1,252,5964,'2012-11-11 03:47:05',1),(1,202,5964,'2012-11-11 03:47:05',1),(1,198,5964,'2012-11-11 03:47:05',1),(1,104,5964,'2012-11-11 03:47:05',1),(1,211,5964,'2012-11-11 03:47:05',1),(1,3,5964,'2012-11-11 03:47:05',1),(1,79,5964,'2012-11-11 03:47:05',1),(1,44,5964,'2012-11-11 03:47:05',1),(1,79,5947,'2012-11-11 03:47:06',1),(1,44,5947,'2012-11-11 03:47:06',1),(1,200,5948,'2012-11-11 03:47:20',1),(1,104,5948,'2012-11-11 03:47:20',1),(1,79,5949,'2012-11-11 03:47:20',1),(1,44,5949,'2012-11-11 03:47:20',1),(1,3,5950,'2012-11-11 03:47:21',1),(1,122,5950,'2012-11-11 03:47:21',1),(1,150,5950,'2012-11-11 03:47:21',1),(1,164,5950,'2012-11-11 03:47:21',1),(1,113,5952,'2012-11-11 03:47:23',1),(1,27,5952,'2012-11-11 03:47:23',1),(1,140,5952,'2012-11-11 03:47:23',1),(1,96,5952,'2012-11-11 03:47:23',1),(1,227,5952,'2012-11-11 03:47:23',1),(1,237,5952,'2012-11-11 03:47:23',1),(1,134,5952,'2012-11-11 03:47:23',1),(1,135,5952,'2012-11-11 03:47:23',1),(1,246,5952,'2012-11-11 03:47:23',1),(1,149,5952,'2012-11-11 03:47:23',1),(1,118,5952,'2012-11-11 03:47:23',1),(1,141,5952,'2012-11-11 03:47:23',1),(1,119,5952,'2012-11-11 03:47:23',1),(1,136,5952,'2012-11-11 03:47:23',1),(1,138,5952,'2012-11-11 03:47:23',1),(1,97,5952,'2012-11-11 03:47:23',1),(1,252,5955,'2012-11-11 03:47:23',1),(1,104,5955,'2012-11-11 03:47:23',1),(1,211,5955,'2012-11-11 03:47:23',1),(1,3,5955,'2012-11-11 03:47:23',1),(1,202,5944,'2012-11-11 03:47:28',1),(1,79,5944,'2012-11-11 03:47:28',1),(1,200,5963,'2012-11-11 03:47:39',1),(1,241,5963,'2012-11-11 03:47:39',1),(1,205,5906,'2012-11-11 03:47:40',NULL),(1,77,5906,'2012-11-11 03:47:40',NULL),(1,207,5906,'2012-11-11 03:47:40',NULL),(1,93,5906,'2012-11-11 03:47:40',NULL),(1,44,5959,'2012-11-11 03:47:44',1),(1,164,5960,'2012-11-11 03:47:45',1),(1,202,5961,'2012-11-11 03:47:45',1),(1,76,5962,'2012-11-11 03:47:51',1),(1,122,5962,'2012-11-11 03:47:51',1),(1,150,5962,'2012-11-11 03:47:51',1),(1,164,5962,'2012-11-11 03:47:51',1),(1,122,5968,'2012-11-11 03:47:54',1),(1,150,5968,'2012-11-11 03:47:54',1),(1,76,5967,'2012-11-11 03:47:57',1),(1,122,5967,'2012-11-11 03:47:57',1),(1,150,5967,'2012-11-11 03:47:57',1),(1,164,5967,'2012-11-11 03:47:57',1),(1,93,5951,'2012-11-11 04:17:23',1),(1,76,5951,'2012-11-11 04:17:23',1),(1,200,5951,'2012-11-11 04:17:23',1),(1,205,5951,'2012-11-11 04:17:23',1),(1,77,5951,'2012-11-11 04:17:23',1),(1,241,5951,'2012-11-11 04:17:23',1),(1,207,5951,'2012-11-11 04:17:23',1),(1,122,5951,'2012-11-11 04:17:23',1),(1,252,5953,'2012-11-11 04:17:31',1),(1,116,5953,'2012-11-11 04:17:31',1),(1,202,5953,'2012-11-11 04:17:31',1),(1,198,5953,'2012-11-11 04:17:31',1),(1,104,5953,'2012-11-11 04:17:31',1),(1,211,5953,'2012-11-11 04:17:31',1),(1,3,5953,'2012-11-11 04:17:31',1),(1,150,5953,'2012-11-11 04:17:31',1),(1,113,5954,'2012-11-11 04:17:39',1),(1,27,5954,'2012-11-11 04:17:39',1),(1,140,5954,'2012-11-11 04:17:39',1),(1,96,5954,'2012-11-11 04:17:39',1),(1,227,5954,'2012-11-11 04:17:39',1),(1,237,5954,'2012-11-11 04:17:39',1),(1,134,5954,'2012-11-11 04:17:39',1),(1,135,5954,'2012-11-11 04:17:39',1),(1,246,5954,'2012-11-11 04:17:39',1),(1,149,5954,'2012-11-11 04:17:39',1),(1,118,5954,'2012-11-11 04:17:39',1),(1,141,5954,'2012-11-11 04:17:39',1),(1,119,5954,'2012-11-11 04:17:39',1),(1,136,5954,'2012-11-11 04:17:39',1),(1,138,5954,'2012-11-11 04:17:39',1),(1,97,5954,'2012-11-11 04:17:39',1),(1,8,5965,'2012-11-11 04:18:00',1),(1,252,5965,'2012-11-11 04:18:00',1),(1,116,5965,'2012-11-11 04:18:00',1),(1,202,5965,'2012-11-11 04:18:00',1),(1,198,5965,'2012-11-11 04:18:00',1),(1,104,5965,'2012-11-11 04:18:00',1),(1,211,5965,'2012-11-11 04:18:00',1),(1,3,5965,'2012-11-11 04:18:00',1),(1,93,5956,'2012-11-11 04:18:09',1),(1,76,5956,'2012-11-11 04:18:09',1),(1,200,5956,'2012-11-11 04:18:09',1),(1,205,5956,'2012-11-11 04:18:09',1),(1,93,5946,'2012-11-11 04:18:14',1),(1,76,5946,'2012-11-11 04:18:14',1),(1,200,5946,'2012-11-11 04:18:14',1),(1,205,5946,'2012-11-11 04:18:14',1),(1,8,5966,'2012-11-11 04:47:30',1),(1,252,5966,'2012-11-11 04:47:30',1),(1,116,5966,'2012-11-11 04:47:30',1),(1,112,5966,'2012-11-11 04:47:30',1),(1,202,5966,'2012-11-11 04:47:30',1),(1,231,5966,'2012-11-11 04:47:30',1),(1,198,5966,'2012-11-11 04:47:30',1),(1,104,5966,'2012-11-11 04:47:30',1),(1,8,5957,'2012-11-11 05:17:46',1),(1,252,5957,'2012-11-11 05:17:46',1),(1,116,5957,'2012-11-11 05:17:46',1),(1,112,5957,'2012-11-11 05:17:46',1),(1,202,5957,'2012-11-11 05:17:46',1),(1,231,5957,'2012-11-11 05:17:46',1),(1,198,5957,'2012-11-11 05:17:46',1),(1,77,5957,'2012-11-11 05:17:46',1),(1,69,5958,'2012-11-11 13:54:33',1),(1,86,5958,'2012-11-11 13:54:33',1),(1,174,5958,'2012-11-11 13:54:33',1),(1,117,5958,'2012-11-11 13:54:33',1),(1,112,5958,'2012-11-11 13:54:33',1),(1,202,5958,'2012-11-11 13:54:33',1),(1,76,5958,'2012-11-11 13:54:33',1),(1,231,5958,'2012-11-11 13:54:33',1),(1,219,5958,'2012-11-11 13:54:33',1),(1,198,5958,'2012-11-11 13:54:33',1),(1,200,5958,'2012-11-11 13:54:33',1),(1,205,5958,'2012-11-11 13:54:33',1),(1,77,5958,'2012-11-11 13:54:33',1),(1,241,5958,'2012-11-11 13:54:33',1),(1,104,5958,'2012-11-11 13:54:33',1),(1,207,5958,'2012-11-11 13:54:33',1),(1,48,6031,'2012-11-12 04:17:49',1),(1,18,6029,'2012-11-12 04:18:03',1),(1,48,6134,'2012-11-12 04:46:16',1),(1,46,6134,'2012-11-12 04:46:16',1),(1,18,6138,'2012-11-12 04:46:28',1),(1,231,6138,'2012-11-12 04:46:28',1),(1,18,6146,'2012-11-12 04:46:44',1),(1,231,6146,'2012-11-12 04:46:44',1),(1,18,6106,'2012-11-12 04:47:10',1),(1,48,6106,'2012-11-12 04:47:10',1),(1,46,6099,'2012-11-12 04:47:25',1),(1,231,6099,'2012-11-12 04:47:25',1),(1,18,6145,'2012-11-12 04:47:26',1),(1,231,6145,'2012-11-12 04:47:26',1),(1,18,6032,'2012-11-12 04:48:03',1),(1,48,6032,'2012-11-12 04:48:03',1),(1,231,6028,'2012-11-12 04:48:10',1),(1,231,6030,'2012-11-12 04:48:10',1),(1,46,6033,'2012-11-12 04:48:22',1),(1,231,6033,'2012-11-12 04:48:22',1),(1,46,6034,'2012-11-12 04:48:24',1),(1,231,6034,'2012-11-12 04:48:24',1),(1,18,6035,'2012-11-12 04:48:32',1),(1,48,6035,'2012-11-12 04:48:32',1),(1,18,6036,'2012-11-12 04:48:36',1),(1,18,6037,'2012-11-12 04:48:37',1),(1,48,6037,'2012-11-12 04:48:37',1),(1,73,6144,'2012-11-12 05:16:27',1),(1,48,6188,'2012-11-12 05:16:37',1),(1,46,6188,'2012-11-12 05:16:37',1),(1,12,6198,'2012-11-12 05:16:45',1),(1,101,6199,'2012-11-12 05:16:46',1),(1,18,6207,'2012-11-12 05:16:48',1),(1,231,6207,'2012-11-12 05:16:48',1),(1,101,6131,'2012-11-12 05:17:00',1),(1,231,6100,'2012-11-12 05:17:03',1),(1,48,6189,'2012-11-12 05:17:14',1),(1,46,6189,'2012-11-12 05:17:14',1),(1,48,6195,'2012-11-12 05:17:16',1),(1,46,6195,'2012-11-12 05:17:16',1),(1,18,6105,'2012-11-12 05:17:17',1),(1,46,6140,'2012-11-12 05:17:30',1),(1,18,6202,'2012-11-12 05:17:31',1),(1,231,6202,'2012-11-12 05:17:31',1),(1,121,6187,'2012-11-12 05:17:35',1),(1,245,6187,'2012-11-12 05:17:35',1),(1,121,6021,'2012-11-12 05:17:49',1),(1,18,6021,'2012-11-12 05:17:49',1),(1,48,6021,'2012-11-12 05:17:49',1),(1,245,6021,'2012-11-12 05:17:49',1),(1,121,6022,'2012-11-12 05:18:02',1),(1,48,6022,'2012-11-12 05:18:02',1),(1,245,6022,'2012-11-12 05:18:02',1),(1,46,6022,'2012-11-12 05:18:02',1),(1,121,6023,'2012-11-12 05:18:03',1),(1,18,6023,'2012-11-12 05:18:03',1),(1,48,6023,'2012-11-12 05:18:03',1),(1,245,6023,'2012-11-12 05:18:03',1),(1,151,6023,'2012-11-12 05:18:03',1),(1,28,6023,'2012-11-12 05:18:03',1),(1,46,6023,'2012-11-12 05:18:03',1),(1,101,6023,'2012-11-12 05:18:03',1),(1,121,6024,'2012-11-12 05:18:03',1),(1,18,6024,'2012-11-12 05:18:03',1),(1,48,6024,'2012-11-12 05:18:03',1),(1,245,6024,'2012-11-12 05:18:03',1),(1,151,6024,'2012-11-12 05:18:03',1),(1,28,6024,'2012-11-12 05:18:03',1),(1,46,6024,'2012-11-12 05:18:03',1),(1,73,6024,'2012-11-12 05:18:03',1),(1,121,6027,'2012-11-12 05:18:16',1),(1,18,6027,'2012-11-12 05:18:16',1),(1,48,6027,'2012-11-12 05:18:16',1),(1,245,6027,'2012-11-12 05:18:16',1),(1,151,6027,'2012-11-12 05:18:16',1),(1,28,6027,'2012-11-12 05:18:16',1),(1,46,6027,'2012-11-12 05:18:16',1),(1,73,6027,'2012-11-12 05:18:16',1),(1,121,6025,'2012-11-12 05:18:23',1),(1,18,6025,'2012-11-12 05:18:23',1),(1,48,6025,'2012-11-12 05:18:23',1),(1,245,6025,'2012-11-12 05:18:23',1),(1,151,6025,'2012-11-12 05:18:23',1),(1,12,6025,'2012-11-12 05:18:23',1),(1,28,6025,'2012-11-12 05:18:23',1),(1,46,6025,'2012-11-12 05:18:23',1),(1,231,6186,'2012-11-12 05:46:14',1),(1,121,6132,'2012-11-12 05:46:19',1),(1,18,6132,'2012-11-12 05:46:19',1),(1,48,6132,'2012-11-12 05:46:19',1),(1,245,6132,'2012-11-12 05:46:19',1),(1,151,6132,'2012-11-12 05:46:19',1),(1,12,6132,'2012-11-12 05:46:19',1),(1,28,6132,'2012-11-12 05:46:19',1),(1,46,6132,'2012-11-12 05:46:19',1),(1,101,6200,'2012-11-12 05:46:47',1),(1,121,6148,'2012-11-12 05:46:50',1),(1,18,6148,'2012-11-12 05:46:50',1),(1,48,6148,'2012-11-12 05:46:50',1),(1,245,6148,'2012-11-12 05:46:50',1),(1,151,6148,'2012-11-12 05:46:50',1),(1,12,6148,'2012-11-12 05:46:50',1),(1,28,6148,'2012-11-12 05:46:50',1),(1,46,6148,'2012-11-12 05:46:50',1),(1,121,6142,'2012-11-12 05:47:04',1),(1,101,6142,'2012-11-12 05:47:04',1),(1,166,6142,'2012-11-12 05:47:04',1),(1,231,6142,'2012-11-12 05:47:04',1),(1,121,6101,'2012-11-12 05:47:06',1),(1,18,6101,'2012-11-12 05:47:06',1),(1,48,6101,'2012-11-12 05:47:06',1),(1,245,6101,'2012-11-12 05:47:06',1),(1,151,6101,'2012-11-12 05:47:06',1),(1,12,6101,'2012-11-12 05:47:06',1),(1,28,6101,'2012-11-12 05:47:06',1),(1,46,6101,'2012-11-12 05:47:06',1),(1,121,6147,'2012-11-12 05:47:11',1),(1,18,6147,'2012-11-12 05:47:11',1),(1,48,6147,'2012-11-12 05:47:11',1),(1,245,6147,'2012-11-12 05:47:11',1),(1,151,6147,'2012-11-12 05:47:11',1),(1,12,6147,'2012-11-12 05:47:11',1),(1,28,6147,'2012-11-12 05:47:11',1),(1,46,6147,'2012-11-12 05:47:11',1),(1,121,6102,'2012-11-12 05:47:13',1),(1,101,6102,'2012-11-12 05:47:13',1),(1,166,6102,'2012-11-12 05:47:13',1),(1,231,6102,'2012-11-12 05:47:13',1),(1,121,6103,'2012-11-12 05:47:14',1),(1,18,6103,'2012-11-12 05:47:14',1),(1,48,6103,'2012-11-12 05:47:14',1),(1,245,6103,'2012-11-12 05:47:14',1),(1,151,6103,'2012-11-12 05:47:14',1),(1,12,6103,'2012-11-12 05:47:14',1),(1,28,6103,'2012-11-12 05:47:14',1),(1,46,6103,'2012-11-12 05:47:14',1),(1,121,6104,'2012-11-12 05:47:20',1),(1,101,6104,'2012-11-12 05:47:20',1),(1,166,6104,'2012-11-12 05:47:20',1),(1,231,6104,'2012-11-12 05:47:20',1),(1,73,6020,'2012-11-12 05:47:39',1),(1,101,6020,'2012-11-12 05:47:39',1),(1,166,6020,'2012-11-12 05:47:39',1),(1,231,6020,'2012-11-12 05:47:39',1),(1,18,6136,'2012-11-12 05:47:43',1),(1,48,6136,'2012-11-12 05:47:43',1),(1,245,6136,'2012-11-12 05:47:43',1),(1,151,6136,'2012-11-12 05:47:43',1),(1,12,6136,'2012-11-12 05:47:43',1),(1,28,6136,'2012-11-12 05:47:43',1),(1,46,6136,'2012-11-12 05:47:43',1),(1,73,6136,'2012-11-12 05:47:43',1),(1,121,6026,'2012-11-12 05:48:35',1),(1,18,6026,'2012-11-12 05:48:35',1),(1,48,6026,'2012-11-12 05:48:35',1),(1,245,6026,'2012-11-12 05:48:35',1),(1,151,6026,'2012-11-12 05:48:35',1),(1,12,6026,'2012-11-12 05:48:35',1),(1,28,6026,'2012-11-12 05:48:35',1),(1,46,6026,'2012-11-12 05:48:35',1),(1,121,6038,'2012-11-12 05:48:48',1),(1,101,6038,'2012-11-12 05:48:48',1),(1,166,6038,'2012-11-12 05:48:48',1),(1,231,6038,'2012-11-12 05:48:48',1),(1,73,6019,'2012-11-12 05:48:50',1),(1,101,6019,'2012-11-12 05:48:50',1),(1,166,6019,'2012-11-12 05:48:50',1),(1,231,6019,'2012-11-12 05:48:50',1),(1,48,6196,'2012-11-12 06:16:42',1),(1,245,6196,'2012-11-12 06:16:42',1),(1,151,6196,'2012-11-12 06:16:42',1),(1,12,6196,'2012-11-12 06:16:42',1),(1,28,6196,'2012-11-12 06:16:42',1),(1,46,6196,'2012-11-12 06:16:42',1),(1,73,6196,'2012-11-12 06:16:42',1),(1,101,6196,'2012-11-12 06:16:42',1),(1,197,6139,'2012-11-12 06:17:09',1),(1,235,6139,'2012-11-12 06:17:09',1),(1,194,6139,'2012-11-12 06:17:09',1),(1,226,6139,'2012-11-12 06:17:09',1),(1,197,6143,'2012-11-12 06:17:18',1),(1,235,6143,'2012-11-12 06:17:18',1),(1,194,6143,'2012-11-12 06:17:18',1),(1,226,6143,'2012-11-12 06:17:18',1),(1,197,6135,'2012-11-12 06:17:40',1),(1,235,6135,'2012-11-12 06:17:40',1),(1,194,6135,'2012-11-12 06:17:40',1),(1,226,6135,'2012-11-12 06:17:40',1),(1,197,6209,'2012-11-12 06:46:18',1),(1,235,6209,'2012-11-12 06:46:18',1),(1,194,6209,'2012-11-12 06:46:18',1),(1,73,6209,'2012-11-12 06:46:18',1),(1,235,6190,'2012-11-12 06:46:23',1),(1,194,6190,'2012-11-12 06:46:23',1),(1,73,6190,'2012-11-12 06:46:23',1),(1,101,6190,'2012-11-12 06:46:23',1),(1,121,6133,'2012-11-12 06:47:15',NULL),(1,18,6133,'2012-11-12 06:47:15',NULL),(1,166,6133,'2012-11-12 06:47:15',NULL),(1,231,6133,'2012-11-12 06:47:15',NULL),(1,247,6191,'2012-11-12 06:47:17',1),(1,48,6191,'2012-11-12 06:47:17',1),(1,245,6191,'2012-11-12 06:47:17',1),(1,151,6191,'2012-11-12 06:47:17',1),(1,12,6191,'2012-11-12 06:47:17',1),(1,28,6191,'2012-11-12 06:47:17',1),(1,46,6191,'2012-11-12 06:47:17',1),(1,234,6191,'2012-11-12 06:47:17',1),(1,247,6208,'2012-11-12 06:47:18',1),(1,48,6208,'2012-11-12 06:47:18',1),(1,245,6208,'2012-11-12 06:47:18',1),(1,151,6208,'2012-11-12 06:47:18',1),(1,197,6208,'2012-11-12 06:47:18',1),(1,12,6208,'2012-11-12 06:47:18',1),(1,28,6208,'2012-11-12 06:47:18',1),(1,46,6208,'2012-11-12 06:47:18',1),(1,73,6201,'2012-11-12 06:47:34',1),(1,101,6201,'2012-11-12 06:47:34',1),(1,226,6201,'2012-11-12 06:47:34',1),(1,174,6201,'2012-11-12 06:47:34',1),(1,73,6205,'2012-11-12 06:47:37',1),(1,101,6205,'2012-11-12 06:47:37',1),(1,226,6205,'2012-11-12 06:47:37',1),(1,174,6205,'2012-11-12 06:47:37',1),(1,154,6206,'2012-11-12 07:17:02',1),(1,234,6206,'2012-11-12 07:17:02',1),(1,235,6206,'2012-11-12 07:17:02',1),(1,194,6206,'2012-11-12 07:17:02',1),(1,247,6193,'2012-11-12 07:17:24',1),(1,48,6193,'2012-11-12 07:17:24',1),(1,245,6193,'2012-11-12 07:17:24',1),(1,151,6193,'2012-11-12 07:17:24',1),(1,197,6193,'2012-11-12 07:17:24',1),(1,12,6193,'2012-11-12 07:17:24',1),(1,28,6193,'2012-11-12 07:17:24',1),(1,46,6193,'2012-11-12 07:17:24',1),(1,121,6185,'2012-11-12 07:17:24',1),(1,18,6185,'2012-11-12 07:17:24',1),(1,154,6185,'2012-11-12 07:17:24',1),(1,234,6185,'2012-11-12 07:17:24',1),(1,235,6185,'2012-11-12 07:17:24',1),(1,194,6185,'2012-11-12 07:17:24',1),(1,73,6185,'2012-11-12 07:17:24',1),(1,101,6185,'2012-11-12 07:17:24',1),(1,247,6141,'2012-11-12 07:17:32',1),(1,121,6141,'2012-11-12 07:17:32',1),(1,18,6141,'2012-11-12 07:17:32',1),(1,48,6141,'2012-11-12 07:17:32',1),(1,245,6141,'2012-11-12 07:17:32',1),(1,151,6141,'2012-11-12 07:17:32',1),(1,197,6141,'2012-11-12 07:17:32',1),(1,12,6141,'2012-11-12 07:17:32',1),(1,154,6141,'2012-11-12 07:17:32',1),(1,28,6141,'2012-11-12 07:17:32',1),(1,46,6141,'2012-11-12 07:17:32',1),(1,234,6141,'2012-11-12 07:17:32',1),(1,235,6141,'2012-11-12 07:17:32',1),(1,194,6141,'2012-11-12 07:17:32',1),(1,73,6141,'2012-11-12 07:17:32',1),(1,101,6141,'2012-11-12 07:17:32',1),(1,73,6203,'2012-11-12 07:17:45',1),(1,101,6203,'2012-11-12 07:17:45',1),(1,226,6203,'2012-11-12 07:17:45',1),(1,174,6203,'2012-11-12 07:17:45',1),(1,247,6204,'2012-11-12 07:17:48',1),(1,48,6204,'2012-11-12 07:17:48',1),(1,245,6204,'2012-11-12 07:17:48',1),(1,151,6204,'2012-11-12 07:17:48',1),(1,197,6204,'2012-11-12 07:17:48',1),(1,12,6204,'2012-11-12 07:17:48',1),(1,28,6204,'2012-11-12 07:17:48',1),(1,46,6204,'2012-11-12 07:17:48',1),(1,247,6197,'2012-11-12 07:46:46',1),(1,121,6197,'2012-11-12 07:46:46',1),(1,18,6197,'2012-11-12 07:46:46',1),(1,48,6197,'2012-11-12 07:46:46',1),(1,245,6197,'2012-11-12 07:46:46',1),(1,151,6197,'2012-11-12 07:46:46',1),(1,197,6197,'2012-11-12 07:46:46',1),(1,12,6197,'2012-11-12 07:46:46',1),(1,154,6197,'2012-11-12 07:46:46',1),(1,28,6197,'2012-11-12 07:46:46',1),(1,46,6197,'2012-11-12 07:46:46',1),(1,234,6197,'2012-11-12 07:46:46',1),(1,235,6197,'2012-11-12 07:46:46',1),(1,194,6197,'2012-11-12 07:46:46',1),(1,73,6197,'2012-11-12 07:46:46',1),(1,101,6197,'2012-11-12 07:46:46',1),(1,247,6137,'2012-11-12 07:47:45',1),(1,121,6137,'2012-11-12 07:47:45',1),(1,18,6137,'2012-11-12 07:47:45',1),(1,48,6137,'2012-11-12 07:47:45',1),(1,245,6137,'2012-11-12 07:47:45',1),(1,151,6137,'2012-11-12 07:47:45',1),(1,197,6137,'2012-11-12 07:47:45',1),(1,12,6137,'2012-11-12 07:47:45',1),(1,154,6137,'2012-11-12 07:47:45',1),(1,28,6137,'2012-11-12 07:47:45',1),(1,46,6137,'2012-11-12 07:47:45',1),(1,234,6137,'2012-11-12 07:47:45',1),(1,235,6137,'2012-11-12 07:47:45',1),(1,194,6137,'2012-11-12 07:47:45',1),(1,73,6137,'2012-11-12 07:47:45',1),(1,101,6137,'2012-11-12 07:47:45',1),(1,247,6194,'2012-11-12 08:17:12',1),(1,121,6194,'2012-11-12 08:17:12',1),(1,18,6194,'2012-11-12 08:17:12',1),(1,48,6194,'2012-11-12 08:17:12',1),(1,245,6194,'2012-11-12 08:17:12',1),(1,151,6194,'2012-11-12 08:17:12',1),(1,197,6194,'2012-11-12 08:17:12',1),(1,12,6194,'2012-11-12 08:17:12',1),(1,154,6194,'2012-11-12 08:17:12',1),(1,28,6194,'2012-11-12 08:17:12',1),(1,46,6194,'2012-11-12 08:17:12',1),(1,234,6194,'2012-11-12 08:17:12',1),(1,235,6194,'2012-11-12 08:17:12',1),(1,194,6194,'2012-11-12 08:17:12',1),(1,73,6194,'2012-11-12 08:17:12',1),(1,101,6194,'2012-11-12 08:17:12',1),(1,247,6192,'2012-11-12 08:17:18',1),(1,121,6192,'2012-11-12 08:17:18',1),(1,18,6192,'2012-11-12 08:17:18',1),(1,48,6192,'2012-11-12 08:17:18',1),(1,245,6192,'2012-11-12 08:17:18',1),(1,151,6192,'2012-11-12 08:17:18',1),(1,197,6192,'2012-11-12 08:17:18',1),(1,12,6192,'2012-11-12 08:17:18',1),(1,154,6192,'2012-11-12 08:17:18',1),(1,28,6192,'2012-11-12 08:17:18',1),(1,46,6192,'2012-11-12 08:17:18',1),(1,234,6192,'2012-11-12 08:17:18',1),(1,235,6192,'2012-11-12 08:17:18',1),(1,194,6192,'2012-11-12 08:17:18',1),(1,73,6192,'2012-11-12 08:17:18',1),(1,93,6192,'2012-11-12 08:17:18',1),(1,68,6262,'2012-11-13 00:46:17',1),(1,213,6262,'2012-11-13 00:46:17',1),(1,81,6262,'2012-11-13 00:46:17',1),(1,208,6262,'2012-11-13 00:46:17',1),(1,68,6261,'2012-11-13 00:46:17',1),(1,213,6261,'2012-11-13 00:46:17',1),(1,81,6261,'2012-11-13 00:46:17',1),(1,208,6261,'2012-11-13 00:46:17',1),(1,13,6263,'2012-11-13 00:46:17',1),(1,75,6263,'2012-11-13 00:46:17',1),(1,55,6263,'2012-11-13 00:46:17',1),(1,132,6263,'2012-11-13 00:46:17',1),(1,229,6263,'2012-11-13 00:46:17',1),(1,2,6263,'2012-11-13 00:46:17',1),(1,131,6263,'2012-11-13 00:46:17',1),(1,67,6263,'2012-11-13 00:46:17',1),(1,13,6264,'2012-11-13 00:46:17',1),(1,75,6264,'2012-11-13 00:46:17',1),(1,55,6264,'2012-11-13 00:46:17',1),(1,132,6264,'2012-11-13 00:46:17',1),(1,229,6264,'2012-11-13 00:46:17',1),(1,2,6264,'2012-11-13 00:46:17',1),(1,131,6264,'2012-11-13 00:46:17',1),(1,67,6264,'2012-11-13 00:46:17',1),(1,13,6266,'2012-11-13 00:46:21',1),(1,75,6266,'2012-11-13 00:46:21',1),(1,55,6266,'2012-11-13 00:46:21',1),(1,132,6266,'2012-11-13 00:46:21',1),(1,229,6266,'2012-11-13 00:46:21',1),(1,2,6266,'2012-11-13 00:46:21',1),(1,131,6266,'2012-11-13 00:46:21',1),(1,67,6266,'2012-11-13 00:46:21',1),(1,13,6265,'2012-11-13 00:46:21',1),(1,75,6265,'2012-11-13 00:46:21',1),(1,55,6265,'2012-11-13 00:46:21',1),(1,132,6265,'2012-11-13 00:46:21',1),(1,229,6265,'2012-11-13 00:46:21',1),(1,2,6265,'2012-11-13 00:46:21',1),(1,131,6265,'2012-11-13 00:46:21',1),(1,67,6265,'2012-11-13 00:46:21',1),(1,13,6267,'2012-11-13 00:46:21',1),(1,75,6267,'2012-11-13 00:46:21',1),(1,55,6267,'2012-11-13 00:46:21',1),(1,132,6267,'2012-11-13 00:46:21',1),(1,229,6267,'2012-11-13 00:46:21',1),(1,2,6267,'2012-11-13 00:46:21',1),(1,131,6267,'2012-11-13 00:46:21',1),(1,67,6267,'2012-11-13 00:46:21',1),(1,209,6268,'2012-11-13 00:46:24',1),(1,91,6269,'2012-11-13 00:46:32',1),(1,68,6270,'2012-11-13 00:46:34',1),(1,213,6271,'2012-11-13 00:46:35',1),(1,210,6272,'2012-11-13 00:46:39',1),(1,91,6272,'2012-11-13 00:46:39',1),(1,210,6273,'2012-11-13 00:46:45',1),(1,91,6273,'2012-11-13 00:46:45',1),(1,209,6274,'2012-11-13 00:46:46',1),(1,210,6274,'2012-11-13 00:46:46',1),(1,229,6275,'2012-11-13 00:46:48',1),(1,2,6275,'2012-11-13 00:46:48',1),(1,81,6276,'2012-11-13 00:46:48',1),(1,131,6277,'2012-11-13 00:46:57',1),(1,67,6277,'2012-11-13 00:46:57',1),(1,68,6278,'2012-11-13 00:47:01',1),(1,213,6278,'2012-11-13 00:47:01',1),(1,81,6278,'2012-11-13 00:47:01',1),(1,208,6278,'2012-11-13 00:47:01',1),(1,68,6279,'2012-11-13 00:47:04',1),(1,213,6279,'2012-11-13 00:47:04',1),(1,81,6279,'2012-11-13 00:47:04',1),(1,208,6279,'2012-11-13 00:47:04',1),(1,13,6260,'2012-11-13 00:47:05',1),(1,75,6260,'2012-11-13 00:47:05',1),(1,55,6260,'2012-11-13 00:47:05',1),(1,132,6260,'2012-11-13 00:47:05',1),(1,219,6345,'2012-11-13 01:46:16',1),(1,219,6340,'2012-11-13 01:46:27',1),(1,219,6387,'2012-11-13 02:46:13',1),(1,219,6381,'2012-11-13 02:46:37',1),(1,219,6385,'2012-11-13 02:46:42',1),(1,219,6438,'2012-11-13 03:46:34',1),(1,219,6439,'2012-11-13 03:46:35',1),(1,219,6440,'2012-11-13 03:46:37',1),(1,219,6426,'2012-11-13 03:47:02',1),(1,6,6346,'2012-11-13 04:16:55',1),(1,4,6346,'2012-11-13 04:16:55',1),(1,6,6347,'2012-11-13 04:16:55',1),(1,4,6347,'2012-11-13 04:16:55',1),(1,6,6375,'2012-11-13 04:46:53',1),(1,4,6375,'2012-11-13 04:46:53',1),(1,6,6379,'2012-11-13 04:47:07',1),(1,4,6379,'2012-11-13 04:47:07',1),(1,6,6429,'2012-11-13 05:16:51',1),(1,4,6429,'2012-11-13 05:16:51',1),(1,6,6428,'2012-11-13 05:16:51',1),(1,4,6428,'2012-11-13 05:16:51',1),(1,198,6447,'2012-11-13 05:17:11',1),(1,219,6447,'2012-11-13 05:17:11',1),(1,198,6427,'2012-11-13 05:17:14',1),(1,219,6427,'2012-11-13 05:17:14',1),(1,6,6374,'2012-11-13 05:17:33',1),(1,4,6374,'2012-11-13 05:17:33',1),(1,6,6373,'2012-11-13 05:17:36',1),(1,4,6373,'2012-11-13 05:17:36',1),(1,6,6450,'2012-11-13 05:47:03',1),(1,4,6450,'2012-11-13 05:47:03',1),(1,198,6344,'2012-11-13 05:47:12',1),(1,6,6344,'2012-11-13 05:47:12',1),(1,4,6344,'2012-11-13 05:47:12',1),(1,219,6344,'2012-11-13 05:47:12',1),(1,198,6441,'2012-11-13 05:47:15',1),(1,6,6441,'2012-11-13 05:47:15',1),(1,4,6441,'2012-11-13 05:47:15',1),(1,219,6441,'2012-11-13 05:47:15',1),(1,198,6380,'2012-11-13 05:47:16',1),(1,6,6380,'2012-11-13 05:47:16',1),(1,4,6380,'2012-11-13 05:47:16',1),(1,219,6380,'2012-11-13 05:47:16',1),(1,198,6342,'2012-11-13 05:47:32',1),(1,6,6342,'2012-11-13 05:47:32',1),(1,4,6342,'2012-11-13 05:47:32',1),(1,219,6342,'2012-11-13 05:47:32',1),(1,198,6383,'2012-11-13 05:47:35',1),(1,6,6383,'2012-11-13 05:47:35',1),(1,4,6383,'2012-11-13 05:47:35',1),(1,219,6383,'2012-11-13 05:47:35',1),(1,198,6384,'2012-11-13 05:47:38',1),(1,6,6384,'2012-11-13 05:47:38',1),(1,4,6384,'2012-11-13 05:47:38',1),(1,219,6384,'2012-11-13 05:47:38',1),(1,198,6376,'2012-11-13 05:47:43',1),(1,6,6376,'2012-11-13 05:47:43',1),(1,4,6376,'2012-11-13 05:47:43',1),(1,219,6376,'2012-11-13 05:47:43',1),(1,198,6442,'2012-11-13 05:47:47',1),(1,219,6442,'2012-11-13 05:47:47',1),(1,66,6341,'2012-11-13 06:17:09',1),(1,201,6341,'2012-11-13 06:17:09',1),(1,206,6341,'2012-11-13 06:17:09',1),(1,212,6341,'2012-11-13 06:17:09',1),(1,224,6341,'2012-11-13 06:17:09',1),(1,228,6341,'2012-11-13 06:17:09',1),(1,6,6341,'2012-11-13 06:17:09',1),(1,4,6341,'2012-11-13 06:17:09',1),(1,66,6343,'2012-11-13 06:17:11',1),(1,201,6343,'2012-11-13 06:17:11',1),(1,206,6343,'2012-11-13 06:17:11',1),(1,212,6343,'2012-11-13 06:17:11',1),(1,224,6343,'2012-11-13 06:17:11',1),(1,228,6343,'2012-11-13 06:17:11',1),(1,6,6343,'2012-11-13 06:17:11',1),(1,4,6343,'2012-11-13 06:17:11',1),(1,198,6444,'2012-11-13 06:17:44',1),(1,6,6444,'2012-11-13 06:17:44',1),(1,4,6444,'2012-11-13 06:17:44',1),(1,219,6444,'2012-11-13 06:17:44',1),(1,198,6448,'2012-11-13 06:46:59',1),(1,66,6448,'2012-11-13 06:46:59',1),(1,201,6448,'2012-11-13 06:46:59',1),(1,206,6448,'2012-11-13 06:46:59',1),(1,212,6448,'2012-11-13 06:46:59',1),(1,224,6448,'2012-11-13 06:46:59',1),(1,228,6448,'2012-11-13 06:46:59',1),(1,6,6448,'2012-11-13 06:46:59',1),(1,66,6377,'2012-11-13 06:47:04',1),(1,201,6377,'2012-11-13 06:47:04',1),(1,206,6377,'2012-11-13 06:47:04',1),(1,212,6377,'2012-11-13 06:47:04',1),(1,224,6377,'2012-11-13 06:47:04',1),(1,228,6377,'2012-11-13 06:47:04',1),(1,6,6377,'2012-11-13 06:47:04',1),(1,4,6377,'2012-11-13 06:47:04',1),(1,198,6431,'2012-11-13 06:47:10',1),(1,66,6431,'2012-11-13 06:47:10',1),(1,201,6431,'2012-11-13 06:47:10',1),(1,206,6431,'2012-11-13 06:47:10',1),(1,212,6431,'2012-11-13 06:47:10',1),(1,224,6431,'2012-11-13 06:47:10',1),(1,228,6431,'2012-11-13 06:47:10',1),(1,6,6431,'2012-11-13 06:47:10',1),(1,66,6386,'2012-11-13 06:47:43',1),(1,201,6386,'2012-11-13 06:47:43',1),(1,206,6386,'2012-11-13 06:47:43',1),(1,212,6386,'2012-11-13 06:47:43',1),(1,224,6386,'2012-11-13 06:47:43',1),(1,228,6386,'2012-11-13 06:47:43',1),(1,6,6386,'2012-11-13 06:47:43',1),(1,4,6386,'2012-11-13 06:47:43',1),(1,66,6388,'2012-11-13 06:47:46',1),(1,201,6388,'2012-11-13 06:47:46',1),(1,206,6388,'2012-11-13 06:47:46',1),(1,212,6388,'2012-11-13 06:47:46',1),(1,224,6388,'2012-11-13 06:47:46',1),(1,228,6388,'2012-11-13 06:47:46',1),(1,6,6388,'2012-11-13 06:47:46',1),(1,4,6388,'2012-11-13 06:47:46',1),(1,198,6372,'2012-11-13 06:47:52',1),(1,66,6372,'2012-11-13 06:47:52',1),(1,201,6372,'2012-11-13 06:47:52',1),(1,206,6372,'2012-11-13 06:47:52',1),(1,212,6372,'2012-11-13 06:47:52',1),(1,224,6372,'2012-11-13 06:47:52',1),(1,228,6372,'2012-11-13 06:47:52',1),(1,6,6372,'2012-11-13 06:47:52',1),(1,198,6436,'2012-11-13 07:17:13',1),(1,66,6436,'2012-11-13 07:17:13',1),(1,201,6436,'2012-11-13 07:17:13',1),(1,206,6436,'2012-11-13 07:17:13',1),(1,212,6436,'2012-11-13 07:17:13',1),(1,224,6436,'2012-11-13 07:17:13',1),(1,228,6436,'2012-11-13 07:17:13',1),(1,6,6436,'2012-11-13 07:17:13',1),(1,198,6446,'2012-11-13 07:47:25',1),(1,66,6446,'2012-11-13 07:47:25',1),(1,201,6446,'2012-11-13 07:47:25',1),(1,206,6446,'2012-11-13 07:47:25',1),(1,212,6446,'2012-11-13 07:47:25',1),(1,224,6446,'2012-11-13 07:47:25',1),(1,228,6446,'2012-11-13 07:47:25',1),(1,6,6446,'2012-11-13 07:47:25',1),(1,198,6445,'2012-11-13 07:47:55',1),(1,66,6445,'2012-11-13 07:47:55',1),(1,201,6445,'2012-11-13 07:47:55',1),(1,206,6445,'2012-11-13 07:47:55',1),(1,212,6445,'2012-11-13 07:47:55',1),(1,224,6445,'2012-11-13 07:47:55',1),(1,228,6445,'2012-11-13 07:47:55',1),(1,6,6445,'2012-11-13 07:47:55',1),(1,198,6449,'2012-11-13 08:17:55',1),(1,66,6449,'2012-11-13 08:17:55',1),(1,201,6449,'2012-11-13 08:17:55',1),(1,206,6449,'2012-11-13 08:17:55',1),(1,212,6449,'2012-11-13 08:17:55',1),(1,224,6449,'2012-11-13 08:17:55',1),(1,228,6449,'2012-11-13 08:17:55',1),(1,6,6449,'2012-11-13 08:17:55',1),(1,212,6389,'2012-11-13 09:17:55',NULL),(1,224,6389,'2012-11-13 09:17:55',NULL),(1,6,6389,'2012-11-13 09:17:55',NULL),(1,4,6389,'2012-11-13 09:17:55',NULL),(1,198,6430,'2012-11-13 12:17:35',1),(1,66,6430,'2012-11-13 12:17:35',1),(1,201,6430,'2012-11-13 12:17:35',1),(1,206,6430,'2012-11-13 12:17:35',1),(1,198,6433,'2012-11-13 12:18:02',1),(1,66,6433,'2012-11-13 12:18:02',1),(1,201,6433,'2012-11-13 12:18:02',1),(1,206,6433,'2012-11-13 12:18:02',1),(1,198,6435,'2012-11-13 12:48:09',1),(1,66,6435,'2012-11-13 12:48:09',1),(1,201,6435,'2012-11-13 12:48:09',1),(1,206,6435,'2012-11-13 12:48:09',1),(1,198,6443,'2012-11-13 12:48:18',1),(1,66,6443,'2012-11-13 12:48:18',1),(1,201,6443,'2012-11-13 12:48:18',1),(1,206,6443,'2012-11-13 12:48:18',1),(1,6,6619,'2012-11-14 02:46:36',1),(1,6,6584,'2012-11-14 02:46:39',1),(1,4,6587,'2012-11-14 02:47:02',1),(1,6,6508,'2012-11-14 02:47:55',1),(1,4,6509,'2012-11-14 02:47:57',1),(1,6,6510,'2012-11-14 02:47:58',1),(1,6,6511,'2012-11-14 02:48:00',1),(1,6,6512,'2012-11-14 02:48:08',1),(1,4,6512,'2012-11-14 02:48:08',1),(1,6,6513,'2012-11-14 02:48:12',1),(1,4,6513,'2012-11-14 02:48:12',1),(1,4,6516,'2012-11-14 02:48:30',1),(1,4,6623,'2012-11-14 03:16:59',1),(1,6,6613,'2012-11-14 03:17:39',1),(1,6,6514,'2012-11-14 03:18:47',1),(1,4,6514,'2012-11-14 03:18:47',1),(1,6,6515,'2012-11-14 03:18:50',1),(1,4,6515,'2012-11-14 03:18:50',1),(1,6,6517,'2012-11-14 03:18:52',1),(1,4,6517,'2012-11-14 03:18:52',1),(1,6,6687,'2012-11-14 03:46:58',1),(1,4,6676,'2012-11-14 03:47:09',1),(1,6,6677,'2012-11-14 03:47:12',1),(1,6,6585,'2012-11-14 03:47:13',1),(1,4,6585,'2012-11-14 03:47:13',1),(1,4,6678,'2012-11-14 03:47:14',1),(1,6,6586,'2012-11-14 03:47:34',1),(1,4,6586,'2012-11-14 03:47:34',1),(1,6,6668,'2012-11-14 04:16:37',1),(1,4,6668,'2012-11-14 04:16:37',1),(1,6,6614,'2012-11-14 04:16:39',1),(1,4,6614,'2012-11-14 04:16:39',1),(1,6,6626,'2012-11-14 04:16:46',1),(1,4,6626,'2012-11-14 04:16:46',1),(1,6,6669,'2012-11-14 04:16:48',1),(1,4,6669,'2012-11-14 04:16:48',1),(1,6,6617,'2012-11-14 04:17:09',1),(1,4,6617,'2012-11-14 04:17:09',1),(1,6,6630,'2012-11-14 04:18:11',1),(1,4,6630,'2012-11-14 04:18:11',1),(1,6,6680,'2012-11-14 04:47:31',1),(1,4,6680,'2012-11-14 04:47:31',1),(1,6,6684,'2012-11-14 04:47:35',1),(1,4,6684,'2012-11-14 04:47:35',1),(1,6,6688,'2012-11-14 04:47:46',1),(1,4,6688,'2012-11-14 04:47:46',1),(1,6,6673,'2012-11-14 05:18:04',1),(1,4,6673,'2012-11-14 05:18:04',1),(1,113,6502,'2012-11-14 10:19:43',1),(1,96,6502,'2012-11-14 10:19:43',1),(1,89,6502,'2012-11-14 10:19:43',1),(1,82,6502,'2012-11-14 10:19:43',1),(1,113,6518,'2012-11-14 10:20:09',1),(1,96,6518,'2012-11-14 10:20:09',1),(1,89,6518,'2012-11-14 10:20:09',1),(1,82,6518,'2012-11-14 10:20:09',1),(1,79,6519,'2012-11-14 10:20:36',1),(1,225,6519,'2012-11-14 10:20:36',1),(1,146,6519,'2012-11-14 10:20:36',1),(1,29,6519,'2012-11-14 10:20:36',1),(1,159,6621,'2012-11-14 13:49:07',1),(1,114,6621,'2012-11-14 13:49:07',1),(1,144,6621,'2012-11-14 13:49:07',1),(1,80,6621,'2012-11-14 13:49:07',1),(1,215,6520,'2012-11-14 13:51:51',1),(1,164,6520,'2012-11-14 13:51:51',1),(1,178,6520,'2012-11-14 13:51:51',1),(1,243,6520,'2012-11-14 13:51:51',1),(1,171,6501,'2012-11-14 13:52:04',1),(1,62,6501,'2012-11-14 13:52:04',1),(1,193,6501,'2012-11-14 13:52:04',1),(1,114,6501,'2012-11-14 13:52:04',1),(1,215,6583,'2012-11-14 14:18:51',1),(1,164,6583,'2012-11-14 14:18:51',1),(1,178,6583,'2012-11-14 14:18:51',1),(1,243,6583,'2012-11-14 14:18:51',1),(1,215,6618,'2012-11-14 14:18:53',1),(1,164,6618,'2012-11-14 14:18:53',1),(1,178,6618,'2012-11-14 14:18:53',1),(1,243,6618,'2012-11-14 14:18:53',1),(1,215,6679,'2012-11-14 14:19:13',1),(1,164,6679,'2012-11-14 14:19:13',1),(1,178,6679,'2012-11-14 14:19:13',1),(1,243,6679,'2012-11-14 14:19:13',1),(1,140,6588,'2012-11-14 14:50:26',1),(1,134,6588,'2012-11-14 14:50:26',1),(1,236,6588,'2012-11-14 14:50:26',1),(1,145,6588,'2012-11-14 14:50:26',1),(1,108,6670,'2012-11-14 15:18:56',1),(1,142,6670,'2012-11-14 15:18:56',1),(1,240,6670,'2012-11-14 15:18:56',1),(1,78,6670,'2012-11-14 15:18:56',1),(1,140,6622,'2012-11-14 15:19:37',1),(1,134,6622,'2012-11-14 15:19:37',1),(1,236,6622,'2012-11-14 15:19:37',1),(1,145,6622,'2012-11-14 15:19:37',1),(1,78,6625,'2012-11-14 15:19:44',1),(1,70,6625,'2012-11-14 15:19:44',1),(1,92,6625,'2012-11-14 15:19:44',1),(1,221,6625,'2012-11-14 15:19:44',1),(1,115,6378,'2012-11-14 15:30:12',1),(1,8,6378,'2012-11-14 15:30:12',1),(1,87,6378,'2012-11-14 15:30:12',1),(1,173,6378,'2012-11-14 15:30:12',1),(1,252,6378,'2012-11-14 15:30:12',1),(1,116,6378,'2012-11-14 15:30:12',1),(1,117,6378,'2012-11-14 15:30:12',1),(1,112,6378,'2012-11-14 15:30:12',1),(1,156,6378,'2012-11-14 15:30:12',1),(1,242,6378,'2012-11-14 15:30:12',1),(1,202,6378,'2012-11-14 15:30:12',1),(1,76,6378,'2012-11-14 15:30:12',1),(1,185,6378,'2012-11-14 15:30:12',1),(1,108,6378,'2012-11-14 15:30:12',1),(1,142,6378,'2012-11-14 15:30:12',1),(1,240,6378,'2012-11-14 15:30:12',1),(1,7,6382,'2012-11-14 15:30:41',1),(1,102,6382,'2012-11-14 15:30:41',1),(1,204,6382,'2012-11-14 15:30:41',1),(1,199,6382,'2012-11-14 15:30:41',1),(1,200,6382,'2012-11-14 15:30:41',1),(1,205,6382,'2012-11-14 15:30:41',1),(1,77,6382,'2012-11-14 15:30:41',1),(1,241,6382,'2012-11-14 15:30:41',1),(1,104,6382,'2012-11-14 15:30:41',1),(1,207,6382,'2012-11-14 15:30:41',1),(1,211,6382,'2012-11-14 15:30:41',1),(1,69,6382,'2012-11-14 15:30:41',1),(1,52,6382,'2012-11-14 15:30:41',1),(1,78,6382,'2012-11-14 15:30:41',1),(1,70,6382,'2012-11-14 15:30:41',1),(1,92,6382,'2012-11-14 15:30:41',1),(1,180,6627,'2012-11-14 15:49:29',1),(1,185,6627,'2012-11-14 15:49:29',1),(1,108,6627,'2012-11-14 15:49:29',1),(1,240,6627,'2012-11-14 15:49:29',1),(1,78,6627,'2012-11-14 15:49:29',1),(1,70,6627,'2012-11-14 15:49:29',1),(1,92,6627,'2012-11-14 15:49:29',1),(1,221,6627,'2012-11-14 15:49:29',1),(1,158,6582,'2012-11-14 15:49:35',1),(1,180,6582,'2012-11-14 15:49:35',1),(1,54,6582,'2012-11-14 15:49:35',1),(1,86,6582,'2012-11-14 15:49:35',1),(1,117,6582,'2012-11-14 15:49:35',1),(1,112,6582,'2012-11-14 15:49:35',1),(1,185,6582,'2012-11-14 15:49:35',1),(1,108,6582,'2012-11-14 15:49:35',1),(1,240,6690,'2012-11-14 15:50:24',1),(1,78,6690,'2012-11-14 15:50:24',1),(1,92,6690,'2012-11-14 15:50:24',1),(1,221,6690,'2012-11-14 15:50:24',1),(1,54,6624,'2012-11-14 15:50:26',1),(1,86,6624,'2012-11-14 15:50:26',1),(1,117,6624,'2012-11-14 15:50:26',1),(1,112,6624,'2012-11-14 15:50:26',1),(1,156,6624,'2012-11-14 15:50:26',1),(1,242,6624,'2012-11-14 15:50:26',1),(1,202,6624,'2012-11-14 15:50:26',1),(1,76,6624,'2012-11-14 15:50:26',1),(1,180,6683,'2012-11-14 15:50:38',1),(1,175,6683,'2012-11-14 15:50:38',1),(1,108,6683,'2012-11-14 15:50:38',1),(1,70,6683,'2012-11-14 15:50:38',1),(1,156,6686,'2012-11-14 15:50:40',1),(1,242,6686,'2012-11-14 15:50:40',1),(1,202,6686,'2012-11-14 15:50:40',1),(1,76,6686,'2012-11-14 15:50:40',1),(1,54,6581,'2012-11-14 15:51:05',1),(1,86,6581,'2012-11-14 15:51:05',1),(1,117,6581,'2012-11-14 15:51:05',1),(1,112,6581,'2012-11-14 15:51:05',1),(1,156,6581,'2012-11-14 15:51:05',1),(1,242,6581,'2012-11-14 15:51:05',1),(1,202,6581,'2012-11-14 15:51:05',1),(1,76,6581,'2012-11-14 15:51:05',1),(1,117,6681,'2012-11-14 15:51:08',1),(1,112,6681,'2012-11-14 15:51:08',1),(1,185,6681,'2012-11-14 15:51:08',1),(1,108,6681,'2012-11-14 15:51:08',1),(1,115,6505,'2012-11-14 15:51:38',1),(1,8,6505,'2012-11-14 15:51:38',1),(1,87,6505,'2012-11-14 15:51:38',1),(1,173,6505,'2012-11-14 15:51:38',1),(1,252,6505,'2012-11-14 15:51:38',1),(1,116,6505,'2012-11-14 15:51:38',1),(1,117,6505,'2012-11-14 15:51:38',1),(1,112,6505,'2012-11-14 15:51:38',1),(1,144,6506,'2012-11-14 15:51:41',1),(1,84,6506,'2012-11-14 15:51:41',1),(1,115,6506,'2012-11-14 15:51:41',1),(1,8,6506,'2012-11-14 15:51:41',1),(1,87,6506,'2012-11-14 15:51:41',1),(1,173,6506,'2012-11-14 15:51:41',1),(1,252,6506,'2012-11-14 15:51:41',1),(1,116,6506,'2012-11-14 15:51:41',1),(1,175,6507,'2012-11-14 15:51:57',1),(1,144,6507,'2012-11-14 15:51:57',1),(1,115,6507,'2012-11-14 15:51:57',1),(1,8,6507,'2012-11-14 15:51:57',1),(1,87,6507,'2012-11-14 15:51:57',1),(1,173,6507,'2012-11-14 15:51:57',1),(1,252,6507,'2012-11-14 15:51:57',1),(1,116,6507,'2012-11-14 15:51:57',1),(1,47,6504,'2012-11-14 15:52:16',1),(1,158,6504,'2012-11-14 15:52:16',1),(1,180,6504,'2012-11-14 15:52:16',1),(1,54,6504,'2012-11-14 15:52:16',1),(1,240,6504,'2012-11-14 15:52:16',1),(1,78,6504,'2012-11-14 15:52:16',1),(1,70,6504,'2012-11-14 15:52:16',1),(1,92,6504,'2012-11-14 15:52:16',1),(1,47,6503,'2012-11-14 15:52:36',1),(1,158,6503,'2012-11-14 15:52:36',1),(1,180,6503,'2012-11-14 15:52:36',1),(1,54,6503,'2012-11-14 15:52:36',1),(1,240,6503,'2012-11-14 15:52:36',1),(1,78,6503,'2012-11-14 15:52:36',1),(1,70,6503,'2012-11-14 15:52:36',1),(1,92,6503,'2012-11-14 15:52:36',1),(1,144,6432,'2012-11-14 16:01:29',1),(1,84,6432,'2012-11-14 16:01:29',1),(1,86,6432,'2012-11-14 16:01:29',1),(1,115,6432,'2012-11-14 16:01:29',1),(1,8,6432,'2012-11-14 16:01:29',1),(1,87,6432,'2012-11-14 16:01:29',1),(1,173,6432,'2012-11-14 16:01:29',1),(1,252,6432,'2012-11-14 16:01:29',1),(1,116,6432,'2012-11-14 16:01:29',1),(1,117,6432,'2012-11-14 16:01:29',1),(1,112,6432,'2012-11-14 16:01:29',1),(1,156,6432,'2012-11-14 16:01:29',1),(1,242,6432,'2012-11-14 16:01:29',1),(1,202,6432,'2012-11-14 16:01:29',1),(1,76,6432,'2012-11-14 16:01:29',1),(1,185,6432,'2012-11-14 16:01:29',1),(1,33,6437,'2012-11-14 16:01:40',1),(1,178,6437,'2012-11-14 16:01:40',1),(1,30,6437,'2012-11-14 16:01:40',1),(1,243,6437,'2012-11-14 16:01:40',1),(1,192,6437,'2012-11-14 16:01:40',1),(1,144,6437,'2012-11-14 16:01:40',1),(1,188,6437,'2012-11-14 16:01:40',1),(1,23,6437,'2012-11-14 16:01:40',1),(1,84,6437,'2012-11-14 16:01:40',1),(1,115,6437,'2012-11-14 16:01:40',1),(1,8,6437,'2012-11-14 16:01:40',1),(1,87,6437,'2012-11-14 16:01:40',1),(1,173,6437,'2012-11-14 16:01:40',1),(1,252,6437,'2012-11-14 16:01:40',1),(1,116,6437,'2012-11-14 16:01:40',1),(1,142,6437,'2012-11-14 16:01:40',1),(1,178,6616,'2012-11-14 16:19:49',1),(1,30,6616,'2012-11-14 16:19:49',1),(1,243,6616,'2012-11-14 16:19:49',1),(1,192,6616,'2012-11-14 16:19:49',1),(1,144,6616,'2012-11-14 16:19:49',1),(1,188,6616,'2012-11-14 16:19:49',1),(1,23,6616,'2012-11-14 16:19:49',1),(1,84,6616,'2012-11-14 16:19:49',1),(1,115,6616,'2012-11-14 16:19:49',1),(1,8,6616,'2012-11-14 16:19:49',1),(1,87,6616,'2012-11-14 16:19:49',1),(1,173,6616,'2012-11-14 16:19:49',1),(1,252,6616,'2012-11-14 16:19:49',1),(1,116,6616,'2012-11-14 16:19:49',1),(1,69,6616,'2012-11-14 16:19:49',1),(1,52,6616,'2012-11-14 16:19:49',1),(1,3,6620,'2012-11-14 16:20:23',1),(1,232,6620,'2012-11-14 16:20:23',1),(1,47,6620,'2012-11-14 16:20:23',1),(1,158,6620,'2012-11-14 16:20:23',1),(1,22,6620,'2012-11-14 16:20:23',1),(1,175,6620,'2012-11-14 16:20:23',1),(1,54,6620,'2012-11-14 16:20:23',1),(1,33,6620,'2012-11-14 16:20:23',1),(1,236,6620,'2012-11-14 16:20:23',1),(1,145,6620,'2012-11-14 16:20:23',1),(1,117,6620,'2012-11-14 16:20:23',1),(1,112,6620,'2012-11-14 16:20:23',1),(1,156,6620,'2012-11-14 16:20:23',1),(1,242,6620,'2012-11-14 16:20:23',1),(1,202,6620,'2012-11-14 16:20:23',1),(1,70,6620,'2012-11-14 16:20:23',1),(1,180,6615,'2012-11-14 16:20:37',1),(1,185,6615,'2012-11-14 16:20:37',1),(1,108,6615,'2012-11-14 16:20:37',1),(1,240,6615,'2012-11-14 16:20:37',1),(1,78,6615,'2012-11-14 16:20:37',1),(1,70,6615,'2012-11-14 16:20:37',1),(1,92,6615,'2012-11-14 16:20:37',1),(1,221,6615,'2012-11-14 16:20:37',1),(1,140,6628,'2012-11-14 16:20:39',NULL),(1,134,6628,'2012-11-14 16:20:39',NULL),(1,236,6628,'2012-11-14 16:20:39',NULL),(1,145,6628,'2012-11-14 16:20:39',NULL),(1,134,6629,'2012-11-14 16:21:21',1),(1,149,6629,'2012-11-14 16:21:21',1),(1,3,6629,'2012-11-14 16:21:21',1),(1,232,6629,'2012-11-14 16:21:21',1),(1,158,6629,'2012-11-14 16:21:21',1),(1,22,6629,'2012-11-14 16:21:21',1),(1,175,6629,'2012-11-14 16:21:21',1),(1,236,6629,'2012-11-14 16:21:21',1),(1,47,6434,'2012-11-14 16:35:14',1),(1,33,6434,'2012-11-14 16:35:14',1),(1,178,6434,'2012-11-14 16:35:14',1),(1,30,6434,'2012-11-14 16:35:14',1),(1,243,6434,'2012-11-14 16:35:14',1),(1,192,6434,'2012-11-14 16:35:14',1),(1,144,6434,'2012-11-14 16:35:14',1),(1,188,6434,'2012-11-14 16:35:14',1),(1,23,6434,'2012-11-14 16:35:14',1),(1,84,6434,'2012-11-14 16:35:14',1),(1,115,6434,'2012-11-14 16:35:14',1),(1,8,6434,'2012-11-14 16:35:14',1),(1,87,6434,'2012-11-14 16:35:14',1),(1,173,6434,'2012-11-14 16:35:14',1),(1,252,6434,'2012-11-14 16:35:14',1),(1,116,6434,'2012-11-14 16:35:14',1),(1,7,6671,'2012-11-14 16:50:50',1),(1,102,6671,'2012-11-14 16:50:50',1),(1,204,6671,'2012-11-14 16:50:50',1),(1,199,6671,'2012-11-14 16:50:50',1),(1,200,6671,'2012-11-14 16:50:50',1),(1,205,6671,'2012-11-14 16:50:50',1),(1,77,6671,'2012-11-14 16:50:50',1),(1,241,6671,'2012-11-14 16:50:50',1),(1,118,6672,'2012-11-14 16:50:59',1),(1,3,6672,'2012-11-14 16:50:59',1),(1,232,6672,'2012-11-14 16:50:59',1),(1,47,6672,'2012-11-14 16:50:59',1),(1,158,6672,'2012-11-14 16:50:59',1),(1,180,6672,'2012-11-14 16:50:59',1),(1,22,6672,'2012-11-14 16:50:59',1),(1,175,6672,'2012-11-14 16:50:59',1),(1,54,6672,'2012-11-14 16:50:59',1),(1,33,6672,'2012-11-14 16:50:59',1),(1,236,6672,'2012-11-14 16:50:59',1),(1,145,6672,'2012-11-14 16:50:59',1),(1,86,6672,'2012-11-14 16:50:59',1),(1,117,6672,'2012-11-14 16:50:59',1),(1,112,6672,'2012-11-14 16:50:59',1),(1,156,6672,'2012-11-14 16:50:59',1),(1,243,6674,'2012-11-14 16:51:02',1),(1,192,6674,'2012-11-14 16:51:02',1),(1,144,6674,'2012-11-14 16:51:02',1),(1,188,6674,'2012-11-14 16:51:02',1),(1,23,6674,'2012-11-14 16:51:02',1),(1,84,6674,'2012-11-14 16:51:02',1),(1,115,6674,'2012-11-14 16:51:02',1),(1,8,6674,'2012-11-14 16:51:02',1),(1,111,6691,'2012-11-14 16:51:31',1),(1,7,6691,'2012-11-14 16:51:31',1),(1,102,6691,'2012-11-14 16:51:31',1),(1,204,6691,'2012-11-14 16:51:31',1),(1,199,6691,'2012-11-14 16:51:31',1),(1,200,6691,'2012-11-14 16:51:31',1),(1,205,6691,'2012-11-14 16:51:31',1),(1,77,6691,'2012-11-14 16:51:31',1),(1,30,6675,'2012-11-14 16:51:37',1),(1,13,6675,'2012-11-14 16:51:37',1),(1,75,6675,'2012-11-14 16:51:37',1),(1,55,6675,'2012-11-14 16:51:37',1),(1,132,6675,'2012-11-14 16:51:37',1),(1,229,6675,'2012-11-14 16:51:37',1),(1,2,6675,'2012-11-14 16:51:37',1),(1,131,6675,'2012-11-14 16:51:37',1),(1,67,6675,'2012-11-14 16:51:37',1),(1,68,6675,'2012-11-14 16:51:37',1),(1,213,6675,'2012-11-14 16:51:37',1),(1,81,6675,'2012-11-14 16:51:37',1),(1,208,6675,'2012-11-14 16:51:37',1),(1,209,6675,'2012-11-14 16:51:37',1),(1,210,6675,'2012-11-14 16:51:37',1),(1,56,6675,'2012-11-14 16:51:37',1),(1,118,6689,'2012-11-14 16:52:17',1),(1,3,6689,'2012-11-14 16:52:17',1),(1,232,6689,'2012-11-14 16:52:17',1),(1,47,6689,'2012-11-14 16:52:17',1),(1,158,6689,'2012-11-14 16:52:17',1),(1,180,6689,'2012-11-14 16:52:17',1),(1,22,6689,'2012-11-14 16:52:17',1),(1,175,6689,'2012-11-14 16:52:17',1),(1,54,6689,'2012-11-14 16:52:17',1),(1,33,6689,'2012-11-14 16:52:17',1),(1,236,6689,'2012-11-14 16:52:17',1),(1,145,6689,'2012-11-14 16:52:17',1),(1,86,6689,'2012-11-14 16:52:17',1),(1,117,6689,'2012-11-14 16:52:17',1),(1,112,6689,'2012-11-14 16:52:17',1),(1,156,6689,'2012-11-14 16:52:17',1),(1,84,6682,'2012-11-14 17:51:45',1),(1,86,6682,'2012-11-14 17:51:45',1),(1,115,6682,'2012-11-14 17:51:45',1),(1,8,6682,'2012-11-14 17:51:45',1),(1,13,6682,'2012-11-14 17:51:45',1),(1,117,6682,'2012-11-14 17:51:45',1),(1,112,6682,'2012-11-14 17:51:45',1),(1,2,6682,'2012-11-14 17:51:45',1),(1,30,6685,'2012-11-14 18:22:06',1),(1,243,6685,'2012-11-14 18:22:06',1),(1,236,6685,'2012-11-14 18:22:06',1),(1,145,6685,'2012-11-14 18:22:06',1),(1,17,6685,'2012-11-14 18:22:06',1),(1,192,6685,'2012-11-14 18:22:06',1),(1,217,6685,'2012-11-14 18:22:06',1),(1,199,6685,'2012-11-14 18:22:06',1),(1,149,6667,'2012-11-14 19:22:53',1),(1,118,6667,'2012-11-14 19:22:53',1),(1,3,6667,'2012-11-14 19:22:53',1),(1,44,6667,'2012-11-14 19:22:53',1),(1,232,6667,'2012-11-14 19:22:53',1),(1,47,6667,'2012-11-14 19:22:53',1),(1,158,6667,'2012-11-14 19:22:53',1),(1,98,6667,'2012-11-14 19:22:53',1),(1,205,6751,'2012-11-15 00:47:08',1),(1,66,6752,'2012-11-15 00:47:11',1),(1,201,6752,'2012-11-15 00:47:11',1),(1,236,6753,'2012-11-15 00:47:14',1),(1,229,6753,'2012-11-15 00:47:14',1),(1,236,6754,'2012-11-15 00:47:17',1),(1,229,6754,'2012-11-15 00:47:17',1),(1,236,6755,'2012-11-15 00:47:17',1),(1,80,6755,'2012-11-15 00:47:17',1),(1,205,6756,'2012-11-15 00:47:30',1),(1,201,6748,'2012-11-15 00:47:57',1),(1,205,6749,'2012-11-15 00:47:58',1),(1,66,6750,'2012-11-15 00:48:01',1),(1,16,6757,'2012-11-15 01:17:28',1),(1,236,6757,'2012-11-15 01:17:28',1),(1,202,6824,'2012-11-15 01:46:27',1),(1,55,6825,'2012-11-15 01:46:38',1),(1,202,6825,'2012-11-15 01:46:38',1),(1,55,6826,'2012-11-15 01:46:39',1),(1,202,6826,'2012-11-15 01:46:39',1),(1,104,6827,'2012-11-15 01:46:42',1),(1,98,6761,'2012-11-15 02:17:35',1),(1,180,6761,'2012-11-15 02:17:35',1),(1,33,6761,'2012-11-15 02:17:35',1),(1,236,6761,'2012-11-15 02:17:35',1),(1,180,6742,'2012-11-15 02:17:45',1),(1,33,6742,'2012-11-15 02:17:45',1),(1,236,6742,'2012-11-15 02:17:45',1),(1,221,6742,'2012-11-15 02:17:45',1),(1,89,6758,'2012-11-15 02:17:50',1),(1,11,6758,'2012-11-15 02:17:50',1),(1,180,6758,'2012-11-15 02:17:50',1),(1,33,6758,'2012-11-15 02:17:50',1),(1,16,6759,'2012-11-15 02:17:55',1),(1,89,6759,'2012-11-15 02:17:55',1),(1,11,6759,'2012-11-15 02:17:55',1),(1,98,6759,'2012-11-15 02:17:55',1),(1,136,6760,'2012-11-15 02:17:58',1),(1,137,6760,'2012-11-15 02:17:58',1),(1,42,6760,'2012-11-15 02:17:58',1),(1,3,6760,'2012-11-15 02:17:58',1),(1,141,6743,'2012-11-15 02:17:59',1),(1,136,6743,'2012-11-15 02:17:59',1),(1,137,6743,'2012-11-15 02:17:59',1),(1,42,6743,'2012-11-15 02:17:59',1),(1,3,6743,'2012-11-15 02:17:59',1),(1,139,6743,'2012-11-15 02:17:59',1),(1,89,6743,'2012-11-15 02:17:59',1),(1,11,6743,'2012-11-15 02:17:59',1),(1,25,6746,'2012-11-15 02:18:06',1),(1,27,6746,'2012-11-15 02:18:06',1),(1,141,6746,'2012-11-15 02:18:06',1),(1,136,6746,'2012-11-15 02:18:06',1),(1,137,6746,'2012-11-15 02:18:06',1),(1,42,6746,'2012-11-15 02:18:06',1),(1,3,6746,'2012-11-15 02:18:06',1),(1,139,6746,'2012-11-15 02:18:06',1),(1,115,6855,'2012-11-15 02:46:27',1),(1,173,6855,'2012-11-15 02:46:27',1),(1,173,6823,'2012-11-15 02:46:48',1),(1,116,6823,'2012-11-15 02:46:48',1),(1,55,6823,'2012-11-15 02:46:48',1),(1,92,6823,'2012-11-15 02:46:48',1),(1,112,6857,'2012-11-15 02:46:56',1),(1,198,6857,'2012-11-15 02:46:56',1),(1,132,6870,'2012-11-15 02:47:12',1),(1,222,6870,'2012-11-15 02:47:12',1),(1,173,6829,'2012-11-15 02:47:13',1),(1,116,6829,'2012-11-15 02:47:13',1),(1,55,6829,'2012-11-15 02:47:13',1),(1,92,6829,'2012-11-15 02:47:13',1),(1,55,6867,'2012-11-15 02:47:15',1),(1,92,6867,'2012-11-15 02:47:15',1),(1,109,6866,'2012-11-15 03:17:13',1),(1,251,6866,'2012-11-15 03:17:13',1),(1,106,6866,'2012-11-15 03:17:13',1),(1,190,6866,'2012-11-15 03:17:13',1),(1,41,6858,'2012-11-15 03:17:17',1),(1,233,6858,'2012-11-15 03:17:17',1),(1,99,6858,'2012-11-15 03:17:17',1),(1,176,6858,'2012-11-15 03:17:17',1),(1,246,6861,'2012-11-15 03:17:26',1),(1,136,6861,'2012-11-15 03:17:26',1),(1,139,6861,'2012-11-15 03:17:26',1),(1,124,6861,'2012-11-15 03:17:26',1),(1,136,6862,'2012-11-15 03:17:27',1),(1,124,6862,'2012-11-15 03:17:27',1),(1,86,6862,'2012-11-15 03:17:27',1),(1,210,6862,'2012-11-15 03:17:27',1),(1,47,6828,'2012-11-15 03:17:38',1),(1,175,6828,'2012-11-15 03:17:38',1),(1,54,6828,'2012-11-15 03:17:38',1),(1,109,6828,'2012-11-15 03:17:38',1),(1,243,6828,'2012-11-15 03:17:38',1),(1,251,6828,'2012-11-15 03:17:38',1),(1,106,6828,'2012-11-15 03:17:38',1),(1,83,6828,'2012-11-15 03:17:38',1),(1,42,6822,'2012-11-15 03:17:40',1),(1,47,6822,'2012-11-15 03:17:40',1),(1,175,6822,'2012-11-15 03:17:40',1),(1,54,6822,'2012-11-15 03:17:40',1),(1,109,6822,'2012-11-15 03:17:40',1),(1,243,6822,'2012-11-15 03:17:40',1),(1,251,6822,'2012-11-15 03:17:40',1),(1,106,6822,'2012-11-15 03:17:40',1),(1,175,6744,'2012-11-15 03:18:38',1),(1,54,6744,'2012-11-15 03:18:38',1),(1,109,6744,'2012-11-15 03:18:38',1),(1,243,6744,'2012-11-15 03:18:38',1),(1,251,6744,'2012-11-15 03:18:38',1),(1,106,6744,'2012-11-15 03:18:38',1),(1,83,6744,'2012-11-15 03:18:38',1),(1,190,6744,'2012-11-15 03:18:38',1),(1,136,6745,'2012-11-15 03:18:40',1),(1,124,6745,'2012-11-15 03:18:40',1),(1,41,6745,'2012-11-15 03:18:40',1),(1,233,6745,'2012-11-15 03:18:40',1),(1,99,6745,'2012-11-15 03:18:40',1),(1,176,6745,'2012-11-15 03:18:40',1),(1,72,6745,'2012-11-15 03:18:40',1),(1,148,6745,'2012-11-15 03:18:40',1),(1,47,6747,'2012-11-15 03:18:44',1),(1,175,6747,'2012-11-15 03:18:44',1),(1,54,6747,'2012-11-15 03:18:44',1),(1,109,6747,'2012-11-15 03:18:44',1),(1,243,6747,'2012-11-15 03:18:44',1),(1,251,6747,'2012-11-15 03:18:44',1),(1,106,6747,'2012-11-15 03:18:44',1),(1,83,6747,'2012-11-15 03:18:44',1),(1,134,6932,'2012-11-15 03:46:30',1),(1,3,6932,'2012-11-15 03:46:30',1),(1,175,6932,'2012-11-15 03:46:30',1),(1,131,6932,'2012-11-15 03:46:30',1),(1,221,6910,'2012-11-15 03:46:32',1),(1,6,6910,'2012-11-15 03:46:32',1),(1,6,6920,'2012-11-15 03:46:44',1),(1,55,6923,'2012-11-15 03:46:47',1),(1,112,6923,'2012-11-15 03:46:47',1),(1,103,6923,'2012-11-15 03:46:47',1),(1,6,6923,'2012-11-15 03:46:47',1),(1,252,6868,'2012-11-15 03:46:52',NULL),(1,116,6868,'2012-11-15 03:46:52',NULL),(1,55,6868,'2012-11-15 03:46:52',NULL),(1,112,6868,'2012-11-15 03:46:52',NULL),(1,232,6924,'2012-11-15 03:47:03',1),(1,236,6924,'2012-11-15 03:47:03',1),(1,175,6926,'2012-11-15 03:47:07',1),(1,131,6926,'2012-11-15 03:47:07',1),(1,208,6929,'2012-11-15 03:47:14',1),(1,221,6929,'2012-11-15 03:47:14',1),(1,6,6871,'2012-11-15 03:47:21',1),(1,98,6931,'2012-11-15 03:47:29',1),(1,175,6931,'2012-11-15 03:47:29',1),(1,136,6911,'2012-11-15 03:47:35',1),(1,232,6911,'2012-11-15 03:47:35',1),(1,6,6859,'2012-11-15 03:47:39',1),(1,6,6863,'2012-11-15 03:47:46',1),(1,136,6917,'2012-11-15 04:16:49',1),(1,232,6917,'2012-11-15 04:16:49',1),(1,87,6917,'2012-11-15 04:16:49',1),(1,229,6917,'2012-11-15 04:16:49',1),(1,6,6921,'2012-11-15 04:16:52',1),(1,6,6922,'2012-11-15 04:17:01',1),(1,55,6927,'2012-11-15 04:17:22',1),(1,112,6927,'2012-11-15 04:17:22',1),(1,103,6927,'2012-11-15 04:17:22',1),(1,6,6927,'2012-11-15 04:17:22',1),(1,42,6930,'2012-11-15 04:17:25',1),(1,98,6930,'2012-11-15 04:17:25',1),(1,33,6930,'2012-11-15 04:17:25',1),(1,116,6930,'2012-11-15 04:17:25',1),(1,134,6915,'2012-11-15 04:17:34',1),(1,55,6912,'2012-11-15 04:17:39',1),(1,112,6912,'2012-11-15 04:17:39',1),(1,103,6912,'2012-11-15 04:17:39',1),(1,6,6912,'2012-11-15 04:17:39',1),(1,160,6854,'2012-11-15 07:47:50',1),(1,96,6854,'2012-11-15 07:47:50',1),(1,237,6854,'2012-11-15 07:47:50',1),(1,97,6854,'2012-11-15 07:47:50',1),(1,122,6854,'2012-11-15 07:47:50',1),(1,126,6854,'2012-11-15 07:47:50',1),(1,79,6854,'2012-11-15 07:47:50',1),(1,225,6854,'2012-11-15 07:47:50',1),(1,118,6869,'2012-11-15 07:47:53',1),(1,239,6869,'2012-11-15 07:47:53',1),(1,127,6869,'2012-11-15 07:47:53',1),(1,196,6869,'2012-11-15 07:47:53',1),(1,165,6869,'2012-11-15 07:47:53',1),(1,163,6869,'2012-11-15 07:47:53',1),(1,6,6869,'2012-11-15 07:47:53',1),(1,4,6869,'2012-11-15 07:47:53',1),(1,97,6864,'2012-11-15 07:48:24',1),(1,122,6864,'2012-11-15 07:48:24',1),(1,126,6864,'2012-11-15 07:48:24',1),(1,79,6864,'2012-11-15 07:48:24',1),(1,225,6864,'2012-11-15 07:48:24',1),(1,239,6864,'2012-11-15 07:48:24',1),(1,127,6864,'2012-11-15 07:48:24',1),(1,196,6864,'2012-11-15 07:48:24',1),(1,122,6913,'2012-11-15 08:17:17',1),(1,126,6913,'2012-11-15 08:17:17',1),(1,79,6913,'2012-11-15 08:17:17',1),(1,225,6913,'2012-11-15 08:17:17',1),(1,239,6913,'2012-11-15 08:17:17',1),(1,127,6913,'2012-11-15 08:17:17',1),(1,196,6913,'2012-11-15 08:17:17',1),(1,64,6913,'2012-11-15 08:17:17',1),(1,126,6918,'2012-11-15 08:17:30',1),(1,79,6918,'2012-11-15 08:17:30',1),(1,225,6918,'2012-11-15 08:17:30',1),(1,239,6918,'2012-11-15 08:17:30',1),(1,127,6918,'2012-11-15 08:17:30',1),(1,196,6918,'2012-11-15 08:17:30',1),(1,176,6918,'2012-11-15 08:17:30',1),(1,64,6918,'2012-11-15 08:17:30',1),(1,160,6919,'2012-11-15 08:17:43',1),(1,96,6919,'2012-11-15 08:17:43',1),(1,118,6919,'2012-11-15 08:17:43',1),(1,119,6919,'2012-11-15 08:17:43',1),(1,151,6919,'2012-11-15 08:17:43',1),(1,232,6919,'2012-11-15 08:17:43',1),(1,165,6919,'2012-11-15 08:17:43',1),(1,163,6919,'2012-11-15 08:17:43',1),(1,176,6919,'2012-11-15 08:17:43',1),(1,32,6919,'2012-11-15 08:17:43',1),(1,226,6919,'2012-11-15 08:17:43',1),(1,174,6919,'2012-11-15 08:17:43',1),(1,166,6919,'2012-11-15 08:17:43',1),(1,112,6919,'2012-11-15 08:17:43',1),(1,64,6919,'2012-11-15 08:17:43',1),(1,7,6919,'2012-11-15 08:17:43',1),(1,247,6856,'2012-11-15 08:18:06',1),(1,237,6856,'2012-11-15 08:18:06',1),(1,118,6856,'2012-11-15 08:18:06',1),(1,119,6856,'2012-11-15 08:18:06',1),(1,151,6856,'2012-11-15 08:18:06',1),(1,232,6856,'2012-11-15 08:18:06',1),(1,165,6856,'2012-11-15 08:18:06',1),(1,163,6856,'2012-11-15 08:18:06',1),(1,226,6856,'2012-11-15 08:18:06',1),(1,174,6856,'2012-11-15 08:18:06',1),(1,166,6856,'2012-11-15 08:18:06',1),(1,112,6856,'2012-11-15 08:18:06',1),(1,207,6856,'2012-11-15 08:18:06',1),(1,221,6856,'2012-11-15 08:18:06',1),(1,6,6856,'2012-11-15 08:18:06',1),(1,4,6856,'2012-11-15 08:18:06',1),(1,237,6909,'2012-11-15 08:18:10',1),(1,97,6909,'2012-11-15 08:18:10',1),(1,98,6909,'2012-11-15 08:18:10',1),(1,196,6909,'2012-11-15 08:18:10',1),(1,178,6909,'2012-11-15 08:18:10',1),(1,53,6909,'2012-11-15 08:18:10',1),(1,241,6909,'2012-11-15 08:18:10',1),(1,70,6909,'2012-11-15 08:18:10',1),(1,118,6860,'2012-11-15 08:18:27',1),(1,119,6860,'2012-11-15 08:18:27',1),(1,151,6860,'2012-11-15 08:18:27',1),(1,232,6860,'2012-11-15 08:18:27',1),(1,165,6860,'2012-11-15 08:18:27',1),(1,163,6860,'2012-11-15 08:18:27',1),(1,176,6860,'2012-11-15 08:18:27',1),(1,32,6860,'2012-11-15 08:18:27',1),(1,226,6860,'2012-11-15 08:18:27',1),(1,174,6860,'2012-11-15 08:18:27',1),(1,166,6860,'2012-11-15 08:18:27',1),(1,112,6860,'2012-11-15 08:18:27',1),(1,64,6860,'2012-11-15 08:18:27',1),(1,7,6860,'2012-11-15 08:18:27',1),(1,204,6860,'2012-11-15 08:18:27',1),(1,207,6860,'2012-11-15 08:18:27',1),(1,118,6865,'2012-11-15 08:18:29',1),(1,232,6865,'2012-11-15 08:18:29',1),(1,165,6865,'2012-11-15 08:18:29',1),(1,163,6865,'2012-11-15 08:18:29',1),(1,174,6865,'2012-11-15 08:18:29',1),(1,166,6865,'2012-11-15 08:18:29',1),(1,112,6865,'2012-11-15 08:18:29',1),(1,6,6865,'2012-11-15 08:18:29',1),(1,118,6914,'2012-11-15 08:47:46',1),(1,119,6914,'2012-11-15 08:47:46',1),(1,151,6914,'2012-11-15 08:47:46',1),(1,232,6914,'2012-11-15 08:47:46',1),(1,235,6914,'2012-11-15 08:47:46',1),(1,165,6914,'2012-11-15 08:47:46',1),(1,163,6914,'2012-11-15 08:47:46',1),(1,176,6914,'2012-11-15 08:47:46',1),(1,32,6914,'2012-11-15 08:47:46',1),(1,73,6914,'2012-11-15 08:47:46',1),(1,226,6914,'2012-11-15 08:47:46',1),(1,174,6914,'2012-11-15 08:47:46',1),(1,166,6914,'2012-11-15 08:47:46',1),(1,112,6914,'2012-11-15 08:47:46',1),(1,64,6914,'2012-11-15 08:47:46',1),(1,7,6914,'2012-11-15 08:47:46',1),(1,120,6928,'2012-11-15 08:47:49',NULL),(1,122,6928,'2012-11-15 08:47:49',NULL),(1,126,6928,'2012-11-15 08:47:49',NULL),(1,79,6928,'2012-11-15 08:47:49',NULL),(1,225,6928,'2012-11-15 08:47:49',NULL),(1,239,6928,'2012-11-15 08:47:49',NULL),(1,127,6928,'2012-11-15 08:47:49',NULL),(1,158,6928,'2012-11-15 08:47:49',NULL),(1,107,6916,'2012-11-15 08:48:09',1),(1,103,6916,'2012-11-15 08:48:09',1),(1,204,6916,'2012-11-15 08:48:09',1),(1,207,6916,'2012-11-15 08:48:09',1),(1,56,6916,'2012-11-15 08:48:09',1),(1,221,6916,'2012-11-15 08:48:09',1),(1,6,6916,'2012-11-15 08:48:09',1),(1,4,6916,'2012-11-15 08:48:09',1),(1,97,6925,'2012-11-15 08:48:16',1),(1,98,6925,'2012-11-15 08:48:16',1),(1,196,6925,'2012-11-15 08:48:16',1),(1,178,6925,'2012-11-15 08:48:16',1),(1,14,6925,'2012-11-15 08:48:16',1),(1,53,6925,'2012-11-15 08:48:16',1),(1,241,6925,'2012-11-15 08:48:16',1),(1,211,6925,'2012-11-15 08:48:16',1),(1,94,6908,'2012-11-15 09:17:53',1),(1,160,6908,'2012-11-15 09:17:53',1),(1,113,6908,'2012-11-15 09:17:53',1),(1,97,6908,'2012-11-15 09:17:53',1),(1,98,6908,'2012-11-15 09:17:53',1),(1,196,6908,'2012-11-15 09:17:53',1),(1,178,6908,'2012-11-15 09:17:53',1),(1,62,6908,'2012-11-15 09:17:53',1),(1,193,6908,'2012-11-15 09:17:53',1),(1,83,6908,'2012-11-15 09:17:53',1),(1,13,6908,'2012-11-15 09:17:53',1),(1,14,6908,'2012-11-15 09:17:53',1),(1,53,6908,'2012-11-15 09:17:53',1),(1,231,6908,'2012-11-15 09:17:53',1),(1,241,6908,'2012-11-15 09:17:53',1),(1,211,6908,'2012-11-15 09:17:53',1),(1,203,6996,'2012-11-16 03:24:24',1),(1,4,7064,'2012-11-16 03:49:34',1),(1,234,7065,'2012-11-16 03:49:55',1),(1,129,7065,'2012-11-16 03:49:55',1),(1,11,7063,'2012-11-16 03:50:22',1),(1,122,7063,'2012-11-16 03:50:22',1),(1,203,7063,'2012-11-16 03:50:22',1),(1,4,7063,'2012-11-16 03:50:22',1),(1,120,7069,'2012-11-16 03:50:22',1),(1,11,7069,'2012-11-16 03:50:22',1),(1,122,7069,'2012-11-16 03:50:22',1),(1,203,7069,'2012-11-16 03:50:22',1),(1,141,6994,'2012-11-16 03:54:58',1),(1,69,6994,'2012-11-16 03:54:58',1),(1,246,6995,'2012-11-16 03:55:06',1),(1,120,6995,'2012-11-16 03:55:06',1),(1,129,6997,'2012-11-16 03:55:07',1),(1,203,6997,'2012-11-16 03:55:07',1),(1,120,6998,'2012-11-16 03:55:09',1),(1,11,6998,'2012-11-16 03:55:09',1),(1,203,6998,'2012-11-16 03:55:09',1),(1,4,6998,'2012-11-16 03:55:09',1),(1,120,6999,'2012-11-16 03:55:10',1),(1,121,6999,'2012-11-16 03:55:10',1),(1,11,6999,'2012-11-16 03:55:10',1),(1,122,6999,'2012-11-16 03:55:10',1),(1,120,7000,'2012-11-16 03:55:12',1),(1,121,7000,'2012-11-16 03:55:12',1),(1,11,7000,'2012-11-16 03:55:12',1),(1,122,7000,'2012-11-16 03:55:12',1),(1,11,7001,'2012-11-16 03:55:13',1),(1,122,7001,'2012-11-16 03:55:13',1),(1,203,7001,'2012-11-16 03:55:13',1),(1,4,7001,'2012-11-16 03:55:13',1),(1,203,6992,'2012-11-16 03:55:23',1),(1,4,6992,'2012-11-16 03:55:23',1),(1,203,6993,'2012-11-16 03:55:23',1),(1,4,6993,'2012-11-16 03:55:23',1),(1,129,6991,'2012-11-16 03:55:25',1),(1,11,7002,'2012-11-16 03:55:26',1),(1,122,7002,'2012-11-16 03:55:26',1),(1,203,7002,'2012-11-16 03:55:26',1),(1,4,7002,'2012-11-16 03:55:26',1),(1,122,6988,'2012-11-16 03:55:29',1),(1,129,6989,'2012-11-16 03:55:32',1),(1,122,6990,'2012-11-16 03:55:35',1),(1,171,7160,'2012-11-16 04:19:13',1),(1,168,7170,'2012-11-16 04:19:27',1),(1,4,7158,'2012-11-16 04:19:28',1),(1,4,7101,'2012-11-16 04:19:31',1),(1,120,7103,'2012-11-16 04:19:43',1),(1,11,7103,'2012-11-16 04:19:43',1),(1,122,7103,'2012-11-16 04:19:43',1),(1,226,7103,'2012-11-16 04:19:43',1),(1,4,7105,'2012-11-16 04:20:15',1),(1,122,7108,'2012-11-16 04:20:18',1),(1,168,7108,'2012-11-16 04:20:18',1),(1,234,7159,'2012-11-16 04:20:18',1),(1,139,7066,'2012-11-16 04:20:20',1),(1,11,7066,'2012-11-16 04:20:20',1),(1,4,7067,'2012-11-16 04:20:32',1),(1,168,7110,'2012-11-16 04:20:48',1),(1,4,7110,'2012-11-16 04:20:48',1),(1,122,7112,'2012-11-16 04:21:01',1),(1,216,7167,'2012-11-16 04:48:50',1),(1,4,7167,'2012-11-16 04:48:50',1),(1,167,7162,'2012-11-16 04:49:16',1),(1,155,7162,'2012-11-16 04:49:16',1),(1,168,7169,'2012-11-16 04:49:31',1),(1,69,7169,'2012-11-16 04:49:31',1),(1,21,7104,'2012-11-16 04:49:47',1),(1,167,7104,'2012-11-16 04:49:47',1),(1,155,7104,'2012-11-16 04:49:47',1),(1,171,7104,'2012-11-16 04:49:47',1),(1,21,7163,'2012-11-16 04:50:17',1),(1,209,7163,'2012-11-16 04:50:17',1),(1,147,7149,'2012-11-16 04:50:30',1),(1,153,7149,'2012-11-16 04:50:30',1),(1,21,7150,'2012-11-16 04:50:35',1),(1,209,7150,'2012-11-16 04:50:35',1),(1,69,7096,'2012-11-16 04:51:10',1),(1,4,7096,'2012-11-16 04:51:10',1),(1,167,7097,'2012-11-16 04:51:11',1),(1,155,7097,'2012-11-16 04:51:11',1),(1,117,7097,'2012-11-16 04:51:11',1),(1,216,7097,'2012-11-16 04:51:11',1),(1,168,7099,'2012-11-16 04:51:23',1),(1,216,7099,'2012-11-16 04:51:23',1),(1,220,6986,'2012-11-16 04:55:04',1),(1,164,6986,'2012-11-16 04:55:04',1),(1,40,6986,'2012-11-16 04:55:04',1),(1,170,6986,'2012-11-16 04:55:04',1),(1,146,6986,'2012-11-16 04:55:04',1),(1,147,6986,'2012-11-16 04:55:04',1),(1,153,6986,'2012-11-16 04:55:04',1),(1,21,6986,'2012-11-16 04:55:04',1),(1,220,6985,'2012-11-16 04:55:08',1),(1,164,6985,'2012-11-16 04:55:08',1),(1,40,6985,'2012-11-16 04:55:08',1),(1,170,6985,'2012-11-16 04:55:08',1),(1,146,6985,'2012-11-16 04:55:08',1),(1,147,6985,'2012-11-16 04:55:08',1),(1,153,6985,'2012-11-16 04:55:08',1),(1,21,6985,'2012-11-16 04:55:08',1),(1,150,6984,'2012-11-16 04:55:18',1),(1,220,6984,'2012-11-16 04:55:18',1),(1,164,6984,'2012-11-16 04:55:18',1),(1,40,6984,'2012-11-16 04:55:18',1),(1,170,6984,'2012-11-16 04:55:18',1),(1,146,6984,'2012-11-16 04:55:18',1),(1,147,6984,'2012-11-16 04:55:18',1),(1,153,6984,'2012-11-16 04:55:18',1),(1,123,6983,'2012-11-16 04:55:32',1),(1,220,6983,'2012-11-16 04:55:32',1),(1,164,6983,'2012-11-16 04:55:32',1),(1,40,6983,'2012-11-16 04:55:32',1),(1,170,6983,'2012-11-16 04:55:32',1),(1,146,6983,'2012-11-16 04:55:32',1),(1,147,6983,'2012-11-16 04:55:32',1),(1,153,6983,'2012-11-16 04:55:32',1),(1,220,6987,'2012-11-16 04:55:44',1),(1,164,6987,'2012-11-16 04:55:44',1),(1,40,6987,'2012-11-16 04:55:44',1),(1,170,6987,'2012-11-16 04:55:44',1),(1,146,6987,'2012-11-16 04:55:44',1),(1,147,6987,'2012-11-16 04:55:44',1),(1,153,6987,'2012-11-16 04:55:44',1),(1,4,6987,'2012-11-16 04:55:44',1),(1,155,7168,'2012-11-16 05:19:14',1),(1,117,7168,'2012-11-16 05:19:14',1),(1,216,7168,'2012-11-16 05:19:14',1),(1,4,7168,'2012-11-16 05:19:14',1),(1,155,7161,'2012-11-16 05:19:18',1),(1,117,7161,'2012-11-16 05:19:18',1),(1,216,7161,'2012-11-16 05:19:18',1),(1,4,7161,'2012-11-16 05:19:18',1),(1,11,7154,'2012-11-16 05:19:36',1),(1,167,7154,'2012-11-16 05:19:36',1),(1,234,7154,'2012-11-16 05:19:36',1),(1,229,7154,'2012-11-16 05:19:36',1),(1,167,7100,'2012-11-16 05:21:25',1),(1,155,7100,'2012-11-16 05:21:25',1),(1,117,7100,'2012-11-16 05:21:25',1),(1,216,7100,'2012-11-16 05:21:25',1),(1,170,7165,'2012-11-16 05:50:28',1),(1,146,7165,'2012-11-16 05:50:28',1),(1,8,7165,'2012-11-16 05:50:28',1),(1,6,7165,'2012-11-16 05:50:28',1),(1,164,7095,'2012-11-16 05:50:59',NULL),(1,40,7095,'2012-11-16 05:50:59',NULL),(1,170,7095,'2012-11-16 05:50:59',NULL),(1,146,7095,'2012-11-16 05:50:59',NULL),(1,119,7155,'2012-11-16 06:50:22',NULL),(1,146,7155,'2012-11-16 06:50:22',NULL),(1,171,7155,'2012-11-16 06:50:22',NULL),(1,6,7155,'2012-11-16 06:50:22',NULL),(1,71,7151,'2012-11-16 10:51:53',1),(1,155,7151,'2012-11-16 10:51:53',1),(1,157,7151,'2012-11-16 10:51:53',1),(1,39,7151,'2012-11-16 10:51:53',1),(1,158,7068,'2012-11-16 11:52:03',NULL),(1,51,7068,'2012-11-16 11:52:03',NULL),(1,194,7068,'2012-11-16 11:52:03',NULL),(1,159,7068,'2012-11-16 11:52:03',NULL),(1,24,7068,'2012-11-16 11:52:03',NULL),(1,166,7068,'2012-11-16 11:52:03',NULL),(1,107,7068,'2012-11-16 11:52:03',NULL),(1,103,7068,'2012-11-16 11:52:03',NULL),(1,232,7111,'2012-11-16 11:52:38',1),(1,158,7111,'2012-11-16 11:52:38',1),(1,51,7111,'2012-11-16 11:52:38',1),(1,194,7111,'2012-11-16 11:52:38',1),(1,178,7111,'2012-11-16 11:52:38',1),(1,159,7111,'2012-11-16 11:52:38',1),(1,24,7111,'2012-11-16 11:52:38',1),(1,166,7111,'2012-11-16 11:52:38',1),(1,252,7157,'2012-11-16 12:21:01',1),(1,101,7157,'2012-11-16 12:21:01',1),(1,226,7157,'2012-11-16 12:21:01',1),(1,129,7157,'2012-11-16 12:21:01',1),(1,174,7157,'2012-11-16 12:21:01',1),(1,117,7157,'2012-11-16 12:21:01',1),(1,166,7157,'2012-11-16 12:21:01',1),(1,107,7157,'2012-11-16 12:21:01',1),(1,156,7157,'2012-11-16 12:21:01',1),(1,168,7157,'2012-11-16 12:21:01',1),(1,203,7157,'2012-11-16 12:21:01',1),(1,76,7157,'2012-11-16 12:21:01',1),(1,7,7157,'2012-11-16 12:21:01',1),(1,103,7157,'2012-11-16 12:21:01',1),(1,38,7157,'2012-11-16 12:21:01',1),(1,60,7157,'2012-11-16 12:21:01',1),(1,235,7102,'2012-11-16 12:21:29',1),(1,194,7102,'2012-11-16 12:21:29',1),(1,111,7102,'2012-11-16 12:21:29',1),(1,99,7102,'2012-11-16 12:21:29',1),(1,180,7102,'2012-11-16 12:21:29',1),(1,58,7102,'2012-11-16 12:21:29',1),(1,177,7102,'2012-11-16 12:21:29',1),(1,148,7102,'2012-11-16 12:21:29',1),(1,178,7102,'2012-11-16 12:21:29',1),(1,182,7102,'2012-11-16 12:21:29',1),(1,181,7102,'2012-11-16 12:21:29',1),(1,35,7102,'2012-11-16 12:21:29',1),(1,37,7102,'2012-11-16 12:21:29',1),(1,29,7102,'2012-11-16 12:21:29',1),(1,30,7102,'2012-11-16 12:21:29',1),(1,31,7102,'2012-11-16 12:21:29',1),(1,61,7166,'2012-11-16 12:21:38',1),(1,5,7166,'2012-11-16 12:21:38',1),(1,229,7166,'2012-11-16 12:21:38',1),(1,2,7166,'2012-11-16 12:21:38',1),(1,216,7166,'2012-11-16 12:21:38',1),(1,50,7166,'2012-11-16 12:21:38',1),(1,218,7166,'2012-11-16 12:21:38',1),(1,219,7166,'2012-11-16 12:21:38',1),(1,198,7166,'2012-11-16 12:21:38',1),(1,201,7166,'2012-11-16 12:21:38',1),(1,67,7166,'2012-11-16 12:21:38',1),(1,206,7166,'2012-11-16 12:21:38',1),(1,211,7166,'2012-11-16 12:21:38',1),(1,212,7166,'2012-11-16 12:21:38',1),(1,69,7166,'2012-11-16 12:21:38',1),(1,52,7166,'2012-11-16 12:21:38',1),(1,57,7106,'2012-11-16 12:22:13',1),(1,77,7106,'2012-11-16 12:22:13',1),(1,208,7106,'2012-11-16 12:22:13',1),(1,209,7106,'2012-11-16 12:22:13',1),(1,214,7106,'2012-11-16 12:22:13',1),(1,105,7106,'2012-11-16 12:22:13',1),(1,56,7106,'2012-11-16 12:22:13',1),(1,92,7106,'2012-11-16 12:22:13',1),(1,246,7109,'2012-11-16 12:22:13',1),(1,118,7109,'2012-11-16 12:22:13',1),(1,141,7109,'2012-11-16 12:22:13',1),(1,119,7109,'2012-11-16 12:22:13',1),(1,137,7109,'2012-11-16 12:22:13',1),(1,42,7109,'2012-11-16 12:22:13',1),(1,97,7109,'2012-11-16 12:22:13',1),(1,139,7109,'2012-11-16 12:22:13',1),(1,208,7070,'2012-11-16 12:22:29',1),(1,209,7070,'2012-11-16 12:22:29',1),(1,214,7070,'2012-11-16 12:22:29',1),(1,105,7070,'2012-11-16 12:22:29',1),(1,56,7070,'2012-11-16 12:22:29',1),(1,92,7070,'2012-11-16 12:22:29',1),(1,224,7070,'2012-11-16 12:22:29',1),(1,228,7070,'2012-11-16 12:22:29',1),(1,145,7098,'2012-11-16 12:22:52',1),(1,248,7098,'2012-11-16 12:22:52',1),(1,171,7098,'2012-11-16 12:22:52',1),(1,62,7098,'2012-11-16 12:22:52',1),(1,128,7098,'2012-11-16 12:22:52',1),(1,193,7098,'2012-11-16 12:22:52',1),(1,169,7098,'2012-11-16 12:22:52',1),(1,189,7098,'2012-11-16 12:22:52',1),(1,85,7098,'2012-11-16 12:22:52',1),(1,191,7098,'2012-11-16 12:22:52',1),(1,159,7098,'2012-11-16 12:22:52',1),(1,32,7098,'2012-11-16 12:22:52',1),(1,115,7098,'2012-11-16 12:22:52',1),(1,8,7098,'2012-11-16 12:22:52',1),(1,74,7098,'2012-11-16 12:22:52',1),(1,24,7098,'2012-11-16 12:22:52',1),(1,82,7172,'2012-11-16 12:50:53',1),(1,120,7172,'2012-11-16 12:50:53',1),(1,121,7172,'2012-11-16 12:50:53',1),(1,11,7172,'2012-11-16 12:50:53',1),(1,122,7172,'2012-11-16 12:50:53',1),(1,46,7172,'2012-11-16 12:50:53',1),(1,232,7172,'2012-11-16 12:50:53',1),(1,248,7172,'2012-11-16 12:50:53',1),(1,216,7156,'2012-11-16 12:51:05',1),(1,50,7156,'2012-11-16 12:51:05',1),(1,218,7156,'2012-11-16 12:51:05',1),(1,219,7156,'2012-11-16 12:51:05',1),(1,198,7156,'2012-11-16 12:51:05',1),(1,201,7156,'2012-11-16 12:51:05',1),(1,67,7156,'2012-11-16 12:51:05',1),(1,206,7156,'2012-11-16 12:51:05',1),(1,247,7164,'2012-11-16 12:51:41',1),(1,125,7164,'2012-11-16 12:51:41',1),(1,145,7164,'2012-11-16 12:51:41',1),(1,115,7164,'2012-11-16 12:51:41',1),(1,8,7164,'2012-11-16 12:51:41',1),(1,211,7164,'2012-11-16 12:51:41',1),(1,212,7164,'2012-11-16 12:51:41',1),(1,69,7164,'2012-11-16 12:51:41',1),(1,235,7153,'2012-11-16 12:52:06',1),(1,194,7153,'2012-11-16 12:52:06',1),(1,111,7153,'2012-11-16 12:52:06',1),(1,99,7153,'2012-11-16 12:52:06',1),(1,180,7153,'2012-11-16 12:52:06',1),(1,58,7153,'2012-11-16 12:52:06',1),(1,177,7153,'2012-11-16 12:52:06',1),(1,148,7153,'2012-11-16 12:52:06',1),(1,178,7153,'2012-11-16 12:52:06',1),(1,182,7153,'2012-11-16 12:52:06',1),(1,181,7153,'2012-11-16 12:52:06',1),(1,35,7153,'2012-11-16 12:52:06',1),(1,37,7153,'2012-11-16 12:52:06',1),(1,29,7153,'2012-11-16 12:52:06',1),(1,30,7153,'2012-11-16 12:52:06',1),(1,31,7153,'2012-11-16 12:52:06',1),(1,194,7173,'2012-11-16 12:52:17',1),(1,111,7173,'2012-11-16 12:52:17',1),(1,99,7173,'2012-11-16 12:52:17',1),(1,180,7173,'2012-11-16 12:52:17',1),(1,58,7173,'2012-11-16 12:52:17',1),(1,177,7173,'2012-11-16 12:52:17',1),(1,148,7173,'2012-11-16 12:52:17',1),(1,178,7173,'2012-11-16 12:52:17',1),(1,158,7107,'2012-11-16 12:52:18',1),(1,51,7107,'2012-11-16 12:52:18',1),(1,209,7107,'2012-11-16 12:52:18',1),(1,214,7107,'2012-11-16 12:52:18',1),(1,105,7107,'2012-11-16 12:52:18',1),(1,92,7107,'2012-11-16 12:52:18',1),(1,224,7107,'2012-11-16 12:52:18',1),(1,228,7107,'2012-11-16 12:52:18',1),(1,119,7152,'2012-11-16 13:22:53',NULL),(1,137,7152,'2012-11-16 13:22:53',NULL),(1,42,7152,'2012-11-16 13:22:53',NULL),(1,97,7152,'2012-11-16 13:22:53',NULL),(1,139,7152,'2012-11-16 13:22:53',NULL),(1,143,7152,'2012-11-16 13:22:53',NULL),(1,57,7152,'2012-11-16 13:22:53',NULL),(1,234,7152,'2012-11-16 13:22:53',NULL),(1,82,7171,'2012-11-16 13:23:08',1),(1,120,7171,'2012-11-16 13:23:08',1),(1,121,7171,'2012-11-16 13:23:08',1),(1,11,7171,'2012-11-16 13:23:08',1),(1,122,7171,'2012-11-16 13:23:08',1),(1,46,7171,'2012-11-16 13:23:08',1),(1,232,7171,'2012-11-16 13:23:08',1),(1,235,7171,'2012-11-16 13:23:08',1),(1,221,7348,'2012-11-17 04:55:27',1),(1,6,7348,'2012-11-17 04:55:27',1),(1,192,7305,'2012-11-17 04:59:11',1),(1,90,7305,'2012-11-17 04:59:11',1),(1,192,7311,'2012-11-17 04:59:13',1),(1,241,7311,'2012-11-17 04:59:13',1),(1,208,7311,'2012-11-17 04:59:13',1),(1,90,7311,'2012-11-17 04:59:13',1),(1,192,7310,'2012-11-17 04:59:27',1),(1,241,7310,'2012-11-17 04:59:27',1),(1,208,7310,'2012-11-17 04:59:27',1),(1,90,7310,'2012-11-17 04:59:27',1),(1,140,7306,'2012-11-17 04:59:37',1),(1,77,7306,'2012-11-17 04:59:37',1),(1,20,7241,'2012-11-17 05:00:11',1),(1,59,7241,'2012-11-17 05:00:11',1),(1,185,7241,'2012-11-17 05:00:11',1),(1,231,7241,'2012-11-17 05:00:11',1),(1,20,7242,'2012-11-17 05:00:22',1),(1,59,7242,'2012-11-17 05:00:22',1),(1,173,7242,'2012-11-17 05:00:22',1),(1,185,7242,'2012-11-17 05:00:22',1),(1,132,7242,'2012-11-17 05:00:22',1),(1,5,7242,'2012-11-17 05:00:22',1),(1,231,7242,'2012-11-17 05:00:22',1),(1,241,7242,'2012-11-17 05:00:22',1),(1,118,7243,'2012-11-17 05:00:26',1),(1,234,7243,'2012-11-17 05:00:26',1),(1,216,7243,'2012-11-17 05:00:26',1),(1,6,7243,'2012-11-17 05:00:26',1),(1,118,7224,'2012-11-17 05:00:42',1),(1,234,7224,'2012-11-17 05:00:42',1),(1,13,7224,'2012-11-17 05:00:42',1),(1,53,7224,'2012-11-17 05:00:42',1),(1,229,7224,'2012-11-17 05:00:42',1),(1,2,7224,'2012-11-17 05:00:42',1),(1,216,7224,'2012-11-17 05:00:42',1),(1,77,7224,'2012-11-17 05:00:42',1),(1,192,7240,'2012-11-17 05:00:43',1),(1,208,7240,'2012-11-17 05:00:43',1),(1,90,7240,'2012-11-17 05:00:43',1),(1,221,7240,'2012-11-17 05:00:43',1),(1,229,7232,'2012-11-17 05:01:11',1),(1,208,7232,'2012-11-17 05:01:11',1),(1,77,7233,'2012-11-17 05:01:13',1),(1,241,7233,'2012-11-17 05:01:13',1),(1,208,7234,'2012-11-17 05:01:24',1),(1,221,7234,'2012-11-17 05:01:24',1),(1,77,7235,'2012-11-17 05:01:27',1),(1,241,7235,'2012-11-17 05:01:27',1),(1,208,7237,'2012-11-17 05:01:32',1),(1,221,7237,'2012-11-17 05:01:32',1),(1,192,7238,'2012-11-17 05:01:40',1),(1,208,7238,'2012-11-17 05:01:40',1),(1,90,7238,'2012-11-17 05:01:40',1),(1,221,7238,'2012-11-17 05:01:40',1),(1,192,7239,'2012-11-17 05:01:51',1),(1,208,7239,'2012-11-17 05:01:51',1),(1,90,7239,'2012-11-17 05:01:51',1),(1,221,7239,'2012-11-17 05:01:51',1),(1,221,7404,'2012-11-17 05:23:07',1),(1,6,7404,'2012-11-17 05:23:07',1),(1,20,7407,'2012-11-17 05:23:20',1),(1,140,7407,'2012-11-17 05:23:20',1),(1,118,7407,'2012-11-17 05:23:20',1),(1,234,7407,'2012-11-17 05:23:20',1),(1,59,7407,'2012-11-17 05:23:20',1),(1,173,7407,'2012-11-17 05:23:20',1),(1,13,7407,'2012-11-17 05:23:20',1),(1,14,7407,'2012-11-17 05:23:20',1),(1,53,7407,'2012-11-17 05:23:20',1),(1,185,7407,'2012-11-17 05:23:20',1),(1,132,7407,'2012-11-17 05:23:20',1),(1,215,7407,'2012-11-17 05:23:20',1),(1,5,7407,'2012-11-17 05:23:20',1),(1,231,7407,'2012-11-17 05:23:20',1),(1,229,7407,'2012-11-17 05:23:20',1),(1,2,7407,'2012-11-17 05:23:20',1),(1,208,7412,'2012-11-17 05:24:00',1),(1,90,7412,'2012-11-17 05:24:00',1),(1,221,7411,'2012-11-17 05:24:10',1),(1,6,7411,'2012-11-17 05:24:10',1),(1,218,7414,'2012-11-17 05:24:25',1),(1,66,7414,'2012-11-17 05:24:25',1),(1,221,7391,'2012-11-17 05:24:27',1),(1,6,7391,'2012-11-17 05:24:27',1),(1,221,7408,'2012-11-17 05:24:35',1),(1,6,7408,'2012-11-17 05:24:35',1),(1,20,7338,'2012-11-17 05:25:06',1),(1,118,7338,'2012-11-17 05:25:06',1),(1,234,7338,'2012-11-17 05:25:06',1),(1,59,7338,'2012-11-17 05:25:06',1),(1,173,7338,'2012-11-17 05:25:06',1),(1,13,7338,'2012-11-17 05:25:06',1),(1,14,7338,'2012-11-17 05:25:06',1),(1,53,7338,'2012-11-17 05:25:06',1),(1,185,7338,'2012-11-17 05:25:06',1),(1,132,7338,'2012-11-17 05:25:06',1),(1,215,7338,'2012-11-17 05:25:06',1),(1,5,7338,'2012-11-17 05:25:06',1),(1,231,7338,'2012-11-17 05:25:06',1),(1,229,7338,'2012-11-17 05:25:06',1),(1,2,7338,'2012-11-17 05:25:06',1),(1,216,7338,'2012-11-17 05:25:06',1),(1,140,7339,'2012-11-17 05:25:16',1),(1,77,7339,'2012-11-17 05:25:16',1),(1,192,7340,'2012-11-17 05:25:27',1),(1,241,7340,'2012-11-17 05:25:27',1),(1,208,7340,'2012-11-17 05:25:27',1),(1,90,7340,'2012-11-17 05:25:27',1),(1,20,7342,'2012-11-17 05:25:41',1),(1,140,7342,'2012-11-17 05:25:41',1),(1,118,7342,'2012-11-17 05:25:41',1),(1,234,7342,'2012-11-17 05:25:41',1),(1,59,7342,'2012-11-17 05:25:41',1),(1,173,7342,'2012-11-17 05:25:41',1),(1,13,7342,'2012-11-17 05:25:41',1),(1,14,7342,'2012-11-17 05:25:41',1),(1,53,7342,'2012-11-17 05:25:41',1),(1,185,7342,'2012-11-17 05:25:41',1),(1,132,7342,'2012-11-17 05:25:41',1),(1,215,7342,'2012-11-17 05:25:41',1),(1,5,7342,'2012-11-17 05:25:41',1),(1,231,7342,'2012-11-17 05:25:41',1),(1,229,7342,'2012-11-17 05:25:41',1),(1,2,7342,'2012-11-17 05:25:41',1),(1,192,7343,'2012-11-17 05:25:42',1),(1,241,7343,'2012-11-17 05:25:42',1),(1,208,7343,'2012-11-17 05:25:42',1),(1,90,7343,'2012-11-17 05:25:42',1),(1,192,7344,'2012-11-17 05:25:44',1),(1,241,7344,'2012-11-17 05:25:44',1),(1,208,7344,'2012-11-17 05:25:44',1),(1,90,7344,'2012-11-17 05:25:44',1),(1,202,7346,'2012-11-17 05:25:47',1),(1,185,7346,'2012-11-17 05:25:47',1),(1,132,7346,'2012-11-17 05:25:47',1),(1,215,7346,'2012-11-17 05:25:47',1),(1,5,7346,'2012-11-17 05:25:47',1),(1,231,7346,'2012-11-17 05:25:47',1),(1,229,7346,'2012-11-17 05:25:47',1),(1,2,7346,'2012-11-17 05:25:47',1),(1,192,7337,'2012-11-17 05:25:58',1),(1,216,7337,'2012-11-17 05:25:58',1),(1,77,7337,'2012-11-17 05:25:58',1),(1,241,7337,'2012-11-17 05:25:58',1),(1,221,7351,'2012-11-17 05:26:00',1),(1,6,7351,'2012-11-17 05:26:00',1),(1,216,7336,'2012-11-17 05:26:01',1),(1,77,7336,'2012-11-17 05:26:01',1),(1,202,7308,'2012-11-17 05:30:05',1),(1,185,7308,'2012-11-17 05:30:05',1),(1,132,7308,'2012-11-17 05:30:05',1),(1,215,7308,'2012-11-17 05:30:05',1),(1,5,7308,'2012-11-17 05:30:05',1),(1,231,7308,'2012-11-17 05:30:05',1),(1,229,7308,'2012-11-17 05:30:05',1),(1,2,7308,'2012-11-17 05:30:05',1),(1,202,7309,'2012-11-17 05:30:30',1),(1,185,7309,'2012-11-17 05:30:30',1),(1,132,7309,'2012-11-17 05:30:30',1),(1,215,7309,'2012-11-17 05:30:30',1),(1,5,7309,'2012-11-17 05:30:30',1),(1,231,7309,'2012-11-17 05:30:30',1),(1,229,7309,'2012-11-17 05:30:30',1),(1,2,7309,'2012-11-17 05:30:30',1),(1,85,7226,'2012-11-17 05:31:18',1),(1,191,7226,'2012-11-17 05:31:18',1),(1,114,7226,'2012-11-17 05:31:18',1),(1,80,7226,'2012-11-17 05:31:18',1),(1,116,7226,'2012-11-17 05:31:18',1),(1,242,7226,'2012-11-17 05:31:18',1),(1,202,7226,'2012-11-17 05:31:18',1),(1,50,7226,'2012-11-17 05:31:18',1),(1,85,7225,'2012-11-17 05:31:18',1),(1,191,7225,'2012-11-17 05:31:18',1),(1,114,7225,'2012-11-17 05:31:18',1),(1,80,7225,'2012-11-17 05:31:18',1),(1,116,7225,'2012-11-17 05:31:18',1),(1,242,7225,'2012-11-17 05:31:18',1),(1,202,7225,'2012-11-17 05:31:18',1),(1,50,7225,'2012-11-17 05:31:18',1),(1,202,7227,'2012-11-17 05:31:31',1),(1,185,7227,'2012-11-17 05:31:31',1),(1,132,7227,'2012-11-17 05:31:31',1),(1,215,7227,'2012-11-17 05:31:31',1),(1,5,7227,'2012-11-17 05:31:31',1),(1,231,7227,'2012-11-17 05:31:31',1),(1,229,7227,'2012-11-17 05:31:31',1),(1,2,7227,'2012-11-17 05:31:31',1),(1,20,7399,'2012-11-17 05:53:44',1),(1,140,7399,'2012-11-17 05:53:44',1),(1,118,7399,'2012-11-17 05:53:44',1),(1,234,7399,'2012-11-17 05:53:44',1),(1,85,7399,'2012-11-17 05:53:44',1),(1,191,7399,'2012-11-17 05:53:44',1),(1,114,7399,'2012-11-17 05:53:44',1),(1,192,7399,'2012-11-17 05:53:44',1),(1,59,7399,'2012-11-17 05:53:44',1),(1,173,7399,'2012-11-17 05:53:44',1),(1,80,7399,'2012-11-17 05:53:44',1),(1,116,7399,'2012-11-17 05:53:44',1),(1,13,7399,'2012-11-17 05:53:44',1),(1,14,7399,'2012-11-17 05:53:44',1),(1,53,7399,'2012-11-17 05:53:44',1),(1,242,7399,'2012-11-17 05:53:44',1),(1,20,7394,'2012-11-17 05:54:23',1),(1,140,7394,'2012-11-17 05:54:23',1),(1,118,7394,'2012-11-17 05:54:23',1),(1,234,7394,'2012-11-17 05:54:23',1),(1,85,7394,'2012-11-17 05:54:23',1),(1,191,7394,'2012-11-17 05:54:23',1),(1,114,7394,'2012-11-17 05:54:23',1),(1,192,7394,'2012-11-17 05:54:23',1),(1,59,7394,'2012-11-17 05:54:23',1),(1,173,7394,'2012-11-17 05:54:23',1),(1,80,7394,'2012-11-17 05:54:23',1),(1,116,7394,'2012-11-17 05:54:23',1),(1,13,7394,'2012-11-17 05:54:23',1),(1,14,7394,'2012-11-17 05:54:23',1),(1,53,7394,'2012-11-17 05:54:23',1),(1,242,7394,'2012-11-17 05:54:23',1),(1,202,7347,'2012-11-17 05:56:17',1),(1,185,7347,'2012-11-17 05:56:17',1),(1,132,7347,'2012-11-17 05:56:17',1),(1,215,7347,'2012-11-17 05:56:17',1),(1,5,7347,'2012-11-17 05:56:17',1),(1,231,7347,'2012-11-17 05:56:17',1),(1,229,7347,'2012-11-17 05:56:17',1),(1,2,7347,'2012-11-17 05:56:17',1),(1,202,7403,'2012-11-17 06:24:26',1),(1,218,7403,'2012-11-17 06:24:26',1),(1,70,7403,'2012-11-17 06:24:26',1),(1,221,7403,'2012-11-17 06:24:26',1),(1,5,7397,'2012-11-17 06:24:26',1),(1,231,7397,'2012-11-17 06:24:26',1),(1,229,7397,'2012-11-17 06:24:26',1),(1,2,7397,'2012-11-17 06:24:26',1),(1,216,7397,'2012-11-17 06:24:26',1),(1,50,7397,'2012-11-17 06:24:26',1),(1,77,7397,'2012-11-17 06:24:26',1),(1,241,7397,'2012-11-17 06:24:26',1),(1,13,7409,'2012-11-17 06:24:41',1),(1,53,7409,'2012-11-17 06:24:41',1),(1,242,7409,'2012-11-17 06:24:41',1),(1,202,7409,'2012-11-17 06:24:41',1),(1,5,7410,'2012-11-17 06:25:05',1),(1,231,7410,'2012-11-17 06:25:05',1),(1,229,7410,'2012-11-17 06:25:05',1),(1,2,7410,'2012-11-17 06:25:05',1),(1,53,7349,'2012-11-17 06:27:13',1),(1,202,7349,'2012-11-17 06:27:13',1),(1,185,7349,'2012-11-17 06:27:13',1),(1,218,7349,'2012-11-17 06:27:13',1),(1,66,7349,'2012-11-17 06:27:13',1),(1,208,7349,'2012-11-17 06:27:13',1),(1,70,7349,'2012-11-17 06:27:13',1),(1,221,7349,'2012-11-17 06:27:13',1),(1,53,7352,'2012-11-17 06:27:24',1),(1,202,7352,'2012-11-17 06:27:24',1),(1,185,7352,'2012-11-17 06:27:24',1),(1,218,7352,'2012-11-17 06:27:24',1),(1,66,7352,'2012-11-17 06:27:24',1),(1,208,7352,'2012-11-17 06:27:24',1),(1,70,7352,'2012-11-17 06:27:24',1),(1,221,7352,'2012-11-17 06:27:24',1),(1,216,7350,'2012-11-17 06:27:30',NULL),(1,50,7350,'2012-11-17 06:27:30',NULL),(1,77,7350,'2012-11-17 06:27:30',NULL),(1,241,7350,'2012-11-17 06:27:30',NULL),(1,202,7405,'2012-11-17 06:56:05',1),(1,185,7405,'2012-11-17 06:56:05',1),(1,218,7405,'2012-11-17 06:56:05',1),(1,66,7405,'2012-11-17 06:56:05',1),(1,208,7405,'2012-11-17 06:56:05',1),(1,70,7405,'2012-11-17 06:56:05',1),(1,221,7405,'2012-11-17 06:56:05',1),(1,6,7405,'2012-11-17 06:56:05',1),(1,85,7398,'2012-11-17 06:56:08',1),(1,191,7398,'2012-11-17 06:56:08',1),(1,59,7398,'2012-11-17 06:56:08',1),(1,116,7398,'2012-11-17 06:56:08',1),(1,202,7398,'2012-11-17 06:56:08',1),(1,185,7398,'2012-11-17 06:56:08',1),(1,218,7398,'2012-11-17 06:56:08',1),(1,66,7398,'2012-11-17 06:56:08',1),(1,77,7396,'2012-11-17 06:56:38',1),(1,241,7396,'2012-11-17 06:56:38',1),(1,49,7396,'2012-11-17 06:56:38',1),(1,78,7396,'2012-11-17 06:56:38',1),(1,140,7406,'2012-11-17 06:56:49',1),(1,114,7406,'2012-11-17 06:56:49',1),(1,77,7406,'2012-11-17 06:56:49',1),(1,241,7406,'2012-11-17 06:56:49',1),(1,208,7392,'2012-11-17 06:56:58',1),(1,70,7392,'2012-11-17 06:56:58',1),(1,221,7392,'2012-11-17 06:56:58',1),(1,6,7392,'2012-11-17 06:56:58',1),(1,85,7393,'2012-11-17 07:27:19',1),(1,191,7393,'2012-11-17 07:27:19',1),(1,59,7393,'2012-11-17 07:27:19',1),(1,84,7393,'2012-11-17 07:27:19',1),(1,86,7393,'2012-11-17 07:27:19',1),(1,87,7393,'2012-11-17 07:27:19',1),(1,173,7393,'2012-11-17 07:27:19',1),(1,80,7393,'2012-11-17 07:27:19',1),(1,116,7390,'2012-11-17 07:27:46',1),(1,13,7390,'2012-11-17 07:27:46',1),(1,14,7390,'2012-11-17 07:27:46',1),(1,55,7390,'2012-11-17 07:27:46',1),(1,53,7390,'2012-11-17 07:27:46',1),(1,242,7390,'2012-11-17 07:27:46',1),(1,202,7390,'2012-11-17 07:27:46',1),(1,185,7390,'2012-11-17 07:27:46',1),(1,132,7395,'2012-11-17 07:27:51',1),(1,215,7395,'2012-11-17 07:27:51',1),(1,5,7395,'2012-11-17 07:27:51',1),(1,231,7395,'2012-11-17 07:27:51',1),(1,229,7395,'2012-11-17 07:27:51',1),(1,2,7395,'2012-11-17 07:27:51',1),(1,216,7395,'2012-11-17 07:27:51',1),(1,50,7395,'2012-11-17 07:27:51',1),(1,176,7341,'2012-11-17 14:06:27',1),(1,78,7304,'2012-11-17 14:11:19',1),(1,90,7307,'2012-11-17 14:11:33',1),(1,176,7228,'2012-11-17 14:11:53',1),(1,243,7229,'2012-11-17 14:12:02',1),(1,118,7230,'2012-11-17 14:12:18',1),(1,236,7231,'2012-11-17 14:12:37',1),(1,78,7236,'2012-11-17 14:12:53',1),(1,55,7400,'2012-11-17 14:36:31',1),(1,78,7401,'2012-11-17 14:36:45',1),(1,118,7402,'2012-11-17 14:36:59',1),(1,3,7413,'2012-11-17 14:37:24',1),(1,243,7345,'2012-11-17 14:38:44',1),(1,176,7353,'2012-11-17 14:39:43',1),(1,144,7478,'2012-11-18 00:54:40',1),(1,13,7478,'2012-11-18 00:54:40',1),(1,65,7478,'2012-11-18 00:54:40',1),(1,60,7478,'2012-11-18 00:54:40',1),(1,225,7474,'2012-11-18 00:54:43',1),(1,179,7474,'2012-11-18 00:54:43',1),(1,90,7469,'2012-11-18 00:54:46',1),(1,90,7468,'2012-11-18 00:54:54',1),(1,162,7466,'2012-11-18 00:54:56',1),(1,179,7466,'2012-11-18 00:54:56',1),(1,196,7466,'2012-11-18 00:54:56',1),(1,165,7466,'2012-11-18 00:54:56',1),(1,176,7466,'2012-11-18 00:54:56',1),(1,34,7466,'2012-11-18 00:54:56',1),(1,242,7466,'2012-11-18 00:54:56',1),(1,5,7466,'2012-11-18 00:54:56',1),(1,162,7467,'2012-11-18 00:55:00',1),(1,179,7467,'2012-11-18 00:55:00',1),(1,196,7467,'2012-11-18 00:55:00',1),(1,165,7467,'2012-11-18 00:55:00',1),(1,176,7467,'2012-11-18 00:55:00',1),(1,34,7467,'2012-11-18 00:55:00',1),(1,14,7467,'2012-11-18 00:55:00',1),(1,168,7467,'2012-11-18 00:55:00',1),(1,13,7470,'2012-11-18 00:55:03',1),(1,165,7473,'2012-11-18 00:55:06',1),(1,85,7473,'2012-11-18 00:55:06',1),(1,149,7465,'2012-11-18 00:55:09',1),(1,118,7465,'2012-11-18 00:55:09',1),(1,124,7465,'2012-11-18 00:55:09',1),(1,18,7465,'2012-11-18 00:55:09',1),(1,26,7465,'2012-11-18 00:55:09',1),(1,225,7465,'2012-11-18 00:55:09',1),(1,152,7465,'2012-11-18 00:55:09',1),(1,28,7465,'2012-11-18 00:55:09',1),(1,109,7483,'2012-11-18 00:55:09',1),(1,85,7483,'2012-11-18 00:55:09',1),(1,144,7483,'2012-11-18 00:55:09',1),(1,13,7483,'2012-11-18 00:55:09',1),(1,179,7479,'2012-11-18 00:55:12',1),(1,196,7479,'2012-11-18 00:55:12',1),(1,165,7479,'2012-11-18 00:55:12',1),(1,176,7479,'2012-11-18 00:55:12',1),(1,195,7480,'2012-11-18 00:55:23',1),(1,109,7480,'2012-11-18 00:55:23',1),(1,85,7480,'2012-11-18 00:55:23',1),(1,144,7480,'2012-11-18 00:55:23',1),(1,195,7481,'2012-11-18 00:55:26',1),(1,109,7481,'2012-11-18 00:55:26',1),(1,85,7481,'2012-11-18 00:55:26',1),(1,144,7481,'2012-11-18 00:55:26',1),(1,28,7482,'2012-11-18 00:55:26',1),(1,179,7482,'2012-11-18 00:55:26',1),(1,165,7482,'2012-11-18 00:55:26',1),(1,176,7482,'2012-11-18 00:55:26',1),(1,85,7482,'2012-11-18 00:55:26',1),(1,144,7482,'2012-11-18 00:55:26',1),(1,13,7482,'2012-11-18 00:55:26',1),(1,65,7482,'2012-11-18 00:55:26',1),(1,60,7475,'2012-11-18 00:55:30',1),(1,90,7475,'2012-11-18 00:55:30',1),(1,165,7476,'2012-11-18 00:55:30',1),(1,162,7477,'2012-11-18 00:55:33',1),(1,34,7477,'2012-11-18 00:55:33',1),(1,179,7484,'2012-11-18 00:55:41',1),(1,165,7484,'2012-11-18 00:55:41',1),(1,176,7484,'2012-11-18 00:55:41',1),(1,109,7484,'2012-11-18 00:55:41',1),(1,85,7484,'2012-11-18 00:55:41',1),(1,144,7484,'2012-11-18 00:55:41',1),(1,13,7484,'2012-11-18 00:55:41',1),(1,65,7484,'2012-11-18 00:55:41',1),(1,65,7471,'2012-11-18 00:55:44',1),(1,65,7472,'2012-11-18 00:55:53',1),(1,60,7472,'2012-11-18 00:55:53',1),(1,38,7547,'2012-11-18 01:27:34',1),(1,149,7552,'2012-11-18 01:27:37',1),(1,3,7552,'2012-11-18 01:27:37',1),(1,109,7552,'2012-11-18 01:27:37',1),(1,85,7552,'2012-11-18 01:27:37',1),(1,85,7551,'2012-11-18 01:27:47',1),(1,149,7550,'2012-11-18 01:27:49',1),(1,3,7550,'2012-11-18 01:27:49',1),(1,197,7550,'2012-11-18 01:27:49',1),(1,225,7550,'2012-11-18 01:27:49',1),(1,28,7545,'2012-11-18 01:27:51',1),(1,109,7545,'2012-11-18 01:27:51',1),(1,86,7546,'2012-11-18 01:27:52',1),(1,7,7546,'2012-11-18 01:27:52',1),(1,20,7588,'2012-11-18 02:22:49',1),(1,118,7588,'2012-11-18 02:22:49',1),(1,135,7548,'2012-11-18 02:35:03',1),(1,3,7548,'2012-11-18 02:35:03',1),(1,28,7548,'2012-11-18 02:35:03',1),(1,175,7548,'2012-11-18 02:35:03',1),(1,72,7548,'2012-11-18 02:35:03',1),(1,36,7548,'2012-11-18 02:35:03',1),(1,243,7548,'2012-11-18 02:35:03',1),(1,106,7548,'2012-11-18 02:35:03',1),(1,149,7549,'2012-11-18 02:35:17',1),(1,118,7549,'2012-11-18 02:35:17',1),(1,3,7549,'2012-11-18 02:35:17',1),(1,28,7549,'2012-11-18 02:35:17',1),(1,175,7549,'2012-11-18 02:35:17',1),(1,72,7549,'2012-11-18 02:35:17',1),(1,63,7549,'2012-11-18 02:35:17',1),(1,112,7549,'2012-11-18 02:35:17',1),(1,28,7583,'2012-11-18 02:58:35',1),(1,72,7583,'2012-11-18 02:58:35',1),(1,243,7583,'2012-11-18 02:58:35',1),(1,106,7583,'2012-11-18 02:58:35',1),(1,3,7584,'2012-11-18 02:58:36',1),(1,28,7584,'2012-11-18 02:58:36',1),(1,175,7584,'2012-11-18 02:58:36',1),(1,72,7584,'2012-11-18 02:58:36',1),(1,118,7585,'2012-11-18 02:58:37',1),(1,118,7586,'2012-11-18 02:58:50',1),(1,3,7586,'2012-11-18 02:58:50',1),(1,28,7586,'2012-11-18 02:58:50',1),(1,175,7586,'2012-11-18 02:58:50',1),(1,72,7586,'2012-11-18 02:58:50',1),(1,236,7586,'2012-11-18 02:58:50',1),(1,63,7586,'2012-11-18 02:58:50',1),(1,174,7586,'2012-11-18 02:58:50',1),(1,135,7587,'2012-11-18 02:58:53',1),(1,118,7587,'2012-11-18 02:58:53',1),(1,3,7587,'2012-11-18 02:58:53',1),(1,28,7587,'2012-11-18 02:58:53',1),(1,175,7587,'2012-11-18 02:58:53',1),(1,72,7587,'2012-11-18 02:58:53',1),(1,236,7587,'2012-11-18 02:58:53',1),(1,63,7587,'2012-11-18 02:58:53',1),(1,165,7589,'2012-11-18 02:58:54',1),(1,33,7589,'2012-11-18 02:58:54',1),(1,34,7589,'2012-11-18 02:58:54',1),(1,36,7589,'2012-11-18 02:58:54',1),(1,243,7589,'2012-11-18 02:58:54',1),(1,192,7589,'2012-11-18 02:58:54',1),(1,144,7589,'2012-11-18 02:58:54',1),(1,221,7589,'2012-11-18 02:58:54',1),(1,63,7591,'2012-11-18 02:58:56',1),(1,112,7591,'2012-11-18 02:58:56',1),(1,33,7592,'2012-11-18 02:59:07',1),(1,34,7592,'2012-11-18 02:59:07',1),(1,36,7592,'2012-11-18 02:59:07',1),(1,243,7592,'2012-11-18 02:59:07',1),(1,192,7592,'2012-11-18 02:59:07',1),(1,144,7592,'2012-11-18 02:59:07',1),(1,168,7592,'2012-11-18 02:59:07',1),(1,76,7592,'2012-11-18 02:59:07',1),(1,3,7593,'2012-11-18 02:59:08',1),(1,36,7594,'2012-11-18 02:59:10',1),(1,243,7594,'2012-11-18 02:59:10',1),(1,28,7581,'2012-11-18 02:59:11',1),(1,112,7579,'2012-11-18 02:59:13',1),(1,223,7579,'2012-11-18 02:59:13',1),(1,33,7580,'2012-11-18 02:59:16',1),(1,36,7580,'2012-11-18 02:59:16',1),(1,243,7580,'2012-11-18 02:59:16',1),(1,192,7580,'2012-11-18 02:59:16',1),(1,26,7577,'2012-11-18 02:59:30',1),(1,33,7577,'2012-11-18 02:59:30',1),(1,34,7577,'2012-11-18 02:59:30',1),(1,36,7577,'2012-11-18 02:59:30',1),(1,4,7639,'2012-11-18 03:31:31',1),(1,5,7640,'2012-11-18 03:31:31',1),(1,65,7642,'2012-11-18 03:31:42',1),(1,202,7642,'2012-11-18 03:31:42',1),(1,132,7642,'2012-11-18 03:31:42',1),(1,38,7642,'2012-11-18 03:31:42',1),(1,135,7631,'2012-11-18 03:31:55',1),(1,17,7631,'2012-11-18 03:31:55',1),(1,65,7631,'2012-11-18 03:31:55',1),(1,202,7631,'2012-11-18 03:31:55',1),(1,132,7655,'2012-11-18 03:32:01',1),(1,38,7655,'2012-11-18 03:32:01',1),(1,41,7653,'2012-11-18 03:32:14',1),(1,215,7653,'2012-11-18 03:32:14',1),(1,114,7590,'2012-11-18 03:37:55',NULL),(1,112,7590,'2012-11-18 03:37:55',NULL),(1,242,7590,'2012-11-18 03:37:55',NULL),(1,70,7590,'2012-11-18 03:37:55',NULL),(1,233,7654,'2012-11-18 04:09:44',1),(1,175,7654,'2012-11-18 04:09:44',1),(1,176,7654,'2012-11-18 04:09:44',1),(1,106,7654,'2012-11-18 04:09:44',1),(1,173,7654,'2012-11-18 04:09:44',1),(1,129,7654,'2012-11-18 04:09:44',1),(1,55,7654,'2012-11-18 04:09:44',1),(1,64,7654,'2012-11-18 04:09:44',1),(1,28,7636,'2012-11-18 04:09:47',1),(1,196,7636,'2012-11-18 04:09:47',1),(1,190,7636,'2012-11-18 04:09:47',1),(1,191,7636,'2012-11-18 04:09:47',1),(1,114,7636,'2012-11-18 04:09:47',1),(1,112,7636,'2012-11-18 04:09:47',1),(1,53,7636,'2012-11-18 04:09:47',1),(1,242,7636,'2012-11-18 04:09:47',1),(1,237,7637,'2012-11-18 04:09:50',1),(1,225,7637,'2012-11-18 04:09:50',1),(1,41,7637,'2012-11-18 04:09:50',1),(1,87,7637,'2012-11-18 04:09:50',1),(1,80,7637,'2012-11-18 04:09:50',1),(1,117,7637,'2012-11-18 04:09:50',1),(1,156,7637,'2012-11-18 04:09:50',1),(1,168,7637,'2012-11-18 04:09:50',1),(1,26,7638,'2012-11-18 04:09:59',1),(1,233,7638,'2012-11-18 04:09:59',1),(1,165,7638,'2012-11-18 04:09:59',1),(1,175,7638,'2012-11-18 04:09:59',1),(1,176,7638,'2012-11-18 04:09:59',1),(1,109,7638,'2012-11-18 04:09:59',1),(1,106,7638,'2012-11-18 04:09:59',1),(1,83,7638,'2012-11-18 04:09:59',1),(1,173,7638,'2012-11-18 04:09:59',1),(1,116,7638,'2012-11-18 04:09:59',1),(1,129,7638,'2012-11-18 04:09:59',1),(1,55,7638,'2012-11-18 04:09:59',1),(1,168,7638,'2012-11-18 04:09:59',1),(1,64,7638,'2012-11-18 04:09:59',1),(1,65,7638,'2012-11-18 04:09:59',1),(1,202,7638,'2012-11-18 04:09:59',1),(1,165,7632,'2012-11-18 04:10:12',1),(1,109,7632,'2012-11-18 04:10:12',1),(1,203,7632,'2012-11-18 04:10:12',1),(1,132,7632,'2012-11-18 04:10:12',1),(1,204,7632,'2012-11-18 04:10:12',1),(1,38,7632,'2012-11-18 04:10:12',1),(1,10,7632,'2012-11-18 04:10:12',1),(1,60,7632,'2012-11-18 04:10:12',1),(1,5,7641,'2012-11-18 04:10:13',1),(1,87,7647,'2012-11-18 04:10:27',1),(1,117,7647,'2012-11-18 04:10:27',1),(1,90,7647,'2012-11-18 04:10:27',1),(1,4,7647,'2012-11-18 04:10:27',1),(1,243,7635,'2012-11-18 04:10:30',1),(1,17,7635,'2012-11-18 04:10:30',1),(1,65,7635,'2012-11-18 04:10:30',1),(1,202,7635,'2012-11-18 04:10:30',1),(1,96,7646,'2012-11-18 04:10:33',1),(1,28,7646,'2012-11-18 04:10:33',1),(1,191,7646,'2012-11-18 04:10:33',1),(1,53,7646,'2012-11-18 04:10:33',1),(1,203,7645,'2012-11-18 04:10:36',1),(1,132,7645,'2012-11-18 04:10:36',1),(1,38,7645,'2012-11-18 04:10:36',1),(1,10,7645,'2012-11-18 04:10:36',1),(1,203,7643,'2012-11-18 04:10:36',1),(1,10,7643,'2012-11-18 04:10:36',1),(1,190,7644,'2012-11-18 04:10:51',1),(1,191,7644,'2012-11-18 04:10:51',1),(1,114,7644,'2012-11-18 04:10:51',1),(1,112,7644,'2012-11-18 04:10:51',1),(1,53,7644,'2012-11-18 04:10:51',1),(1,242,7644,'2012-11-18 04:10:51',1),(1,5,7644,'2012-11-18 04:10:51',1),(1,90,7644,'2012-11-18 04:10:51',1),(1,185,7651,'2012-11-18 04:10:53',1),(1,132,7649,'2012-11-18 04:10:56',1),(1,38,7649,'2012-11-18 04:10:56',1),(1,197,7652,'2012-11-18 04:10:58',1),(1,41,7652,'2012-11-18 04:10:58',1),(1,185,7650,'2012-11-18 04:10:59',1),(1,215,7650,'2012-11-18 04:10:59',1),(1,152,7648,'2012-11-18 04:11:04',NULL),(1,100,7648,'2012-11-18 04:11:04',NULL),(1,63,7648,'2012-11-18 04:11:04',NULL),(1,70,7648,'2012-11-18 04:11:04',NULL),(1,221,7648,'2012-11-18 04:11:04',NULL),(1,222,7648,'2012-11-18 04:11:04',NULL),(1,223,7648,'2012-11-18 04:11:04',NULL),(1,4,7648,'2012-11-18 04:11:04',NULL),(1,124,7582,'2012-11-18 04:15:47',1),(1,225,7582,'2012-11-18 04:15:47',1),(1,41,7582,'2012-11-18 04:15:47',1),(1,28,7582,'2012-11-18 04:15:47',1),(1,162,7582,'2012-11-18 04:15:47',1),(1,34,7582,'2012-11-18 04:15:47',1),(1,85,7582,'2012-11-18 04:15:47',1),(1,192,7582,'2012-11-18 04:15:47',1),(1,59,7582,'2012-11-18 04:15:47',1),(1,86,7582,'2012-11-18 04:15:47',1),(1,87,7582,'2012-11-18 04:15:47',1),(1,80,7582,'2012-11-18 04:15:47',1),(1,93,7582,'2012-11-18 04:15:47',1),(1,117,7582,'2012-11-18 04:15:47',1),(1,156,7582,'2012-11-18 04:15:47',1),(1,168,7582,'2012-11-18 04:15:47',1),(1,197,7578,'2012-11-18 04:16:43',1),(1,225,7578,'2012-11-18 04:16:43',1),(1,41,7578,'2012-11-18 04:16:43',1),(1,28,7578,'2012-11-18 04:16:43',1),(1,162,7578,'2012-11-18 04:16:43',1),(1,34,7578,'2012-11-18 04:16:43',1),(1,85,7578,'2012-11-18 04:16:43',1),(1,17,7578,'2012-11-18 04:16:43',1),(1,192,7578,'2012-11-18 04:16:43',1),(1,59,7578,'2012-11-18 04:16:43',1),(1,86,7578,'2012-11-18 04:16:43',1),(1,87,7578,'2012-11-18 04:16:43',1),(1,80,7578,'2012-11-18 04:16:43',1),(1,93,7578,'2012-11-18 04:16:43',1),(1,117,7578,'2012-11-18 04:16:43',1),(1,156,7578,'2012-11-18 04:16:43',1),(1,26,7633,'2012-11-18 04:46:51',1),(1,233,7633,'2012-11-18 04:46:51',1),(1,165,7633,'2012-11-18 04:46:51',1),(1,175,7633,'2012-11-18 04:46:51',1),(1,176,7633,'2012-11-18 04:46:51',1),(1,109,7633,'2012-11-18 04:46:51',1),(1,106,7633,'2012-11-18 04:46:51',1),(1,83,7633,'2012-11-18 04:46:51',1),(1,144,7633,'2012-11-18 04:46:51',1),(1,173,7633,'2012-11-18 04:46:51',1),(1,116,7633,'2012-11-18 04:46:51',1),(1,129,7633,'2012-11-18 04:46:51',1),(1,55,7633,'2012-11-18 04:46:51',1),(1,130,7633,'2012-11-18 04:46:51',1),(1,168,7633,'2012-11-18 04:46:51',1),(1,64,7633,'2012-11-18 04:46:51',1),(1,96,7634,'2012-11-18 04:47:23',1),(1,134,7634,'2012-11-18 04:47:23',1),(1,3,7634,'2012-11-18 04:47:23',1),(1,124,7634,'2012-11-18 04:47:23',1),(1,197,7634,'2012-11-18 04:47:23',1),(1,225,7634,'2012-11-18 04:47:23',1),(1,41,7634,'2012-11-18 04:47:23',1),(1,28,7634,'2012-11-18 04:47:23',1),(1,162,7634,'2012-11-18 04:47:23',1),(1,34,7634,'2012-11-18 04:47:23',1),(1,85,7634,'2012-11-18 04:47:23',1),(1,17,7634,'2012-11-18 04:47:23',1),(1,192,7634,'2012-11-18 04:47:23',1),(1,59,7634,'2012-11-18 04:47:23',1),(1,86,7634,'2012-11-18 04:47:23',1),(1,87,7634,'2012-11-18 04:47:23',1),(1,160,7707,'2012-11-19 00:22:16',1),(1,16,7707,'2012-11-19 00:22:16',1),(1,88,7707,'2012-11-19 00:22:16',1),(1,113,7707,'2012-11-19 00:22:16',1),(1,149,7707,'2012-11-19 00:22:16',1),(1,141,7707,'2012-11-19 00:22:16',1),(1,138,7707,'2012-11-19 00:22:16',1),(1,235,7707,'2012-11-19 00:22:16',1),(1,22,7713,'2012-11-19 00:22:32',1),(1,36,7713,'2012-11-19 00:22:32',1),(1,160,7718,'2012-11-19 00:22:45',1),(1,16,7718,'2012-11-19 00:22:45',1),(1,149,7718,'2012-11-19 00:22:45',1),(1,141,7718,'2012-11-19 00:22:45',1),(1,138,7719,'2012-11-19 00:22:46',1),(1,235,7719,'2012-11-19 00:22:46',1),(1,22,7719,'2012-11-19 00:22:46',1),(1,36,7719,'2012-11-19 00:22:46',1),(1,128,7708,'2012-11-19 00:59:24',1),(1,193,7709,'2012-11-19 00:59:26',1),(1,215,7710,'2012-11-19 00:59:38',1),(1,14,7711,'2012-11-19 00:59:41',1),(1,13,7712,'2012-11-19 00:59:41',1),(1,107,7712,'2012-11-19 00:59:41',1),(1,15,7714,'2012-11-19 00:59:51',1),(1,203,7714,'2012-11-19 00:59:51',1),(1,160,7715,'2012-11-19 00:59:52',1),(1,133,7715,'2012-11-19 00:59:52',1),(1,5,7716,'2012-11-19 00:59:54',1),(1,169,7717,'2012-11-19 00:59:55',1),(1,114,7717,'2012-11-19 00:59:55',1),(1,22,7720,'2012-11-19 01:00:06',1),(1,36,7720,'2012-11-19 01:00:06',1),(1,251,7720,'2012-11-19 01:00:06',1),(1,107,7720,'2012-11-19 01:00:06',1),(1,235,7721,'2012-11-19 01:00:09',1),(1,1,7721,'2012-11-19 01:00:09',1),(1,114,7721,'2012-11-19 01:00:09',1),(1,15,7721,'2012-11-19 01:00:09',1),(1,160,7722,'2012-11-19 01:00:12',1),(1,16,7722,'2012-11-19 01:00:12',1),(1,95,7722,'2012-11-19 01:00:12',1),(1,88,7722,'2012-11-19 01:00:12',1),(1,113,7722,'2012-11-19 01:00:12',1),(1,149,7722,'2012-11-19 01:00:12',1),(1,141,7722,'2012-11-19 01:00:12',1),(1,138,7722,'2012-11-19 01:00:12',1),(1,138,7723,'2012-11-19 01:00:22',1),(1,235,7723,'2012-11-19 01:00:22',1),(1,1,7723,'2012-11-19 01:00:22',1),(1,128,7723,'2012-11-19 01:00:22',1),(1,47,7706,'2012-11-19 01:00:23',1),(1,22,7706,'2012-11-19 01:00:23',1),(1,100,7706,'2012-11-19 01:00:23',1),(1,36,7706,'2012-11-19 01:00:23',1),(1,251,7706,'2012-11-19 01:00:23',1),(1,19,7706,'2012-11-19 01:00:23',1),(1,193,7706,'2012-11-19 01:00:23',1),(1,73,7706,'2012-11-19 01:00:23',1),(1,160,7724,'2012-11-19 01:00:24',1),(1,16,7724,'2012-11-19 01:00:24',1),(1,95,7724,'2012-11-19 01:00:24',1),(1,88,7724,'2012-11-19 01:00:24',1),(1,113,7724,'2012-11-19 01:00:24',1),(1,149,7724,'2012-11-19 01:00:24',1),(1,141,7724,'2012-11-19 01:00:24',1),(1,138,7724,'2012-11-19 01:00:24',1),(1,160,7725,'2012-11-19 01:00:28',1),(1,133,7725,'2012-11-19 01:00:28',1),(1,16,7725,'2012-11-19 01:00:28',1),(1,95,7725,'2012-11-19 01:00:28',1),(1,88,7725,'2012-11-19 01:00:28',1),(1,113,7725,'2012-11-19 01:00:28',1),(1,149,7725,'2012-11-19 01:00:28',1),(1,141,7725,'2012-11-19 01:00:28',1),(1,1,7792,'2012-11-19 01:33:22',1),(1,100,7792,'2012-11-19 01:33:22',1),(1,36,7786,'2012-11-19 01:33:27',1),(1,243,7786,'2012-11-19 01:33:27',1),(1,19,7791,'2012-11-19 01:33:33',1),(1,249,7788,'2012-11-19 01:33:36',1),(1,94,7788,'2012-11-19 01:33:36',1),(1,113,7788,'2012-11-19 01:33:36',1),(1,237,7788,'2012-11-19 01:33:36',1),(1,246,7788,'2012-11-19 01:33:36',1),(1,118,7788,'2012-11-19 01:33:36',1),(1,119,7788,'2012-11-19 01:33:36',1),(1,138,7788,'2012-11-19 01:33:36',1),(1,235,7790,'2012-11-19 01:33:36',1),(1,179,7790,'2012-11-19 01:33:36',1),(1,195,7790,'2012-11-19 01:33:36',1),(1,161,7790,'2012-11-19 01:33:36',1),(1,89,7789,'2012-11-19 01:33:39',1),(1,126,7789,'2012-11-19 01:33:39',1),(1,45,7789,'2012-11-19 01:33:39',1),(1,12,7789,'2012-11-19 01:33:39',1),(1,154,7789,'2012-11-19 01:33:39',1),(1,186,7789,'2012-11-19 01:33:39',1),(1,47,7789,'2012-11-19 01:33:39',1),(1,234,7789,'2012-11-19 01:33:39',1),(1,193,7787,'2012-11-19 01:33:53',1),(1,196,7793,'2012-11-19 01:33:53',1),(1,22,7793,'2012-11-19 01:33:53',1),(1,163,7793,'2012-11-19 01:33:53',1),(1,72,7793,'2012-11-19 01:33:53',1),(1,204,7835,'2012-11-19 02:30:49',1),(1,76,7824,'2012-11-19 03:05:38',1),(1,204,7824,'2012-11-19 03:05:38',1),(1,236,7824,'2012-11-19 03:05:38',1),(1,53,7824,'2012-11-19 03:05:38',1),(1,219,7825,'2012-11-19 03:05:47',1),(1,201,7821,'2012-11-19 03:05:51',1),(1,91,7821,'2012-11-19 03:05:51',1),(1,33,7821,'2012-11-19 03:05:51',1),(1,236,7821,'2012-11-19 03:05:51',1),(1,160,7827,'2012-11-19 03:05:58',1),(1,88,7827,'2012-11-19 03:05:58',1),(1,183,7827,'2012-11-19 03:05:58',1),(1,113,7827,'2012-11-19 03:05:58',1),(1,140,7827,'2012-11-19 03:05:58',1),(1,235,7827,'2012-11-19 03:05:58',1),(1,111,7827,'2012-11-19 03:05:58',1),(1,196,7827,'2012-11-19 03:05:58',1),(1,58,7828,'2012-11-19 03:06:01',1),(1,204,7828,'2012-11-19 03:06:01',1),(1,100,7826,'2012-11-19 03:06:04',1),(1,36,7826,'2012-11-19 03:06:04',1),(1,236,7826,'2012-11-19 03:06:04',1),(1,251,7826,'2012-11-19 03:06:04',1),(1,63,7826,'2012-11-19 03:06:04',1),(1,114,7826,'2012-11-19 03:06:04',1),(1,201,7826,'2012-11-19 03:06:04',1),(1,92,7826,'2012-11-19 03:06:04',1),(1,62,7823,'2012-11-19 03:06:05',1),(1,15,7823,'2012-11-19 03:06:05',1),(1,53,7823,'2012-11-19 03:06:05',1),(1,64,7823,'2012-11-19 03:06:05',1),(1,141,7819,'2012-11-19 03:06:06',1),(1,138,7819,'2012-11-19 03:06:06',1),(1,62,7819,'2012-11-19 03:06:06',1),(1,115,7819,'2012-11-19 03:06:06',1),(1,80,7819,'2012-11-19 03:06:06',1),(1,174,7819,'2012-11-19 03:06:06',1),(1,15,7819,'2012-11-19 03:06:06',1),(1,112,7819,'2012-11-19 03:06:06',1),(1,53,7819,'2012-11-19 03:06:06',1),(1,168,7819,'2012-11-19 03:06:06',1),(1,64,7819,'2012-11-19 03:06:06',1),(1,76,7819,'2012-11-19 03:06:06',1),(1,132,7819,'2012-11-19 03:06:06',1),(1,102,7819,'2012-11-19 03:06:06',1),(1,204,7819,'2012-11-19 03:06:06',1),(1,219,7819,'2012-11-19 03:06:06',1),(1,76,7820,'2012-11-19 03:06:07',1),(1,204,7820,'2012-11-19 03:06:07',1),(1,169,7834,'2012-11-19 03:06:18',1),(1,73,7834,'2012-11-19 03:06:18',1),(1,92,7832,'2012-11-19 03:06:19',1),(1,95,7832,'2012-11-19 03:06:19',1),(1,88,7832,'2012-11-19 03:06:19',1),(1,25,7832,'2012-11-19 03:06:19',1),(1,183,7832,'2012-11-19 03:06:19',1),(1,113,7832,'2012-11-19 03:06:19',1),(1,140,7832,'2012-11-19 03:06:19',1),(1,119,7832,'2012-11-19 03:06:19',1),(1,25,7822,'2012-11-19 03:06:20',1),(1,183,7822,'2012-11-19 03:06:20',1),(1,113,7822,'2012-11-19 03:06:20',1),(1,140,7822,'2012-11-19 03:06:20',1),(1,134,7822,'2012-11-19 03:06:20',1),(1,118,7822,'2012-11-19 03:06:20',1),(1,119,7822,'2012-11-19 03:06:20',1),(1,186,7822,'2012-11-19 03:06:20',1),(1,47,7822,'2012-11-19 03:06:20',1),(1,235,7822,'2012-11-19 03:06:20',1),(1,111,7822,'2012-11-19 03:06:20',1),(1,99,7822,'2012-11-19 03:06:20',1),(1,180,7822,'2012-11-19 03:06:20',1),(1,196,7822,'2012-11-19 03:06:20',1),(1,72,7822,'2012-11-19 03:06:20',1),(1,33,7822,'2012-11-19 03:06:20',1),(1,4,7833,'2012-11-19 03:06:31',1),(1,184,7818,'2012-11-19 03:06:32',1),(1,177,7818,'2012-11-19 03:06:32',1),(1,145,7818,'2012-11-19 03:06:32',1),(1,5,7818,'2012-11-19 03:06:32',1),(1,221,7831,'2012-11-19 03:06:34',1),(1,91,7831,'2012-11-19 03:06:34',1),(1,183,7829,'2012-11-19 03:06:36',1),(1,113,7829,'2012-11-19 03:06:36',1),(1,140,7829,'2012-11-19 03:06:36',1),(1,96,7829,'2012-11-19 03:06:36',1),(1,134,7829,'2012-11-19 03:06:36',1),(1,118,7829,'2012-11-19 03:06:36',1),(1,119,7829,'2012-11-19 03:06:36',1),(1,186,7829,'2012-11-19 03:06:36',1),(1,126,7888,'2012-11-19 03:29:38',1),(1,178,7888,'2012-11-19 03:29:38',1),(1,15,7888,'2012-11-19 03:29:38',1),(1,70,7888,'2012-11-19 03:29:38',1),(1,10,7879,'2012-11-19 03:29:48',1),(1,104,7876,'2012-11-19 03:29:52',1),(1,88,7876,'2012-11-19 03:29:52',1),(1,184,7876,'2012-11-19 03:29:52',1),(1,138,7876,'2012-11-19 03:29:52',1),(1,48,7876,'2012-11-19 03:29:52',1),(1,71,7876,'2012-11-19 03:29:52',1),(1,161,7876,'2012-11-19 03:29:52',1),(1,8,7876,'2012-11-19 03:29:52',1),(1,95,7884,'2012-11-19 03:30:02',1),(1,227,7884,'2012-11-19 03:30:02',1),(1,134,7884,'2012-11-19 03:30:02',1),(1,58,7884,'2012-11-19 03:30:02',1),(1,107,7893,'2012-11-19 03:30:11',1),(1,53,7893,'2012-11-19 03:30:11',1),(1,95,7878,'2012-11-19 04:07:17',1),(1,227,7878,'2012-11-19 04:07:17',1),(1,134,7878,'2012-11-19 04:07:17',1),(1,126,7878,'2012-11-19 04:07:17',1),(1,44,7878,'2012-11-19 04:07:17',1),(1,179,7878,'2012-11-19 04:07:17',1),(1,195,7878,'2012-11-19 04:07:17',1),(1,58,7878,'2012-11-19 04:07:17',1),(1,1,7878,'2012-11-19 04:07:17',1),(1,178,7878,'2012-11-19 04:07:17',1),(1,30,7878,'2012-11-19 04:07:17',1),(1,251,7878,'2012-11-19 04:07:17',1),(1,15,7878,'2012-11-19 04:07:17',1),(1,69,7878,'2012-11-19 04:07:17',1),(1,70,7878,'2012-11-19 04:07:17',1),(1,6,7878,'2012-11-19 04:07:17',1),(1,88,7896,'2012-11-19 04:07:20',1),(1,140,7896,'2012-11-19 04:07:20',1),(1,227,7896,'2012-11-19 04:07:20',1),(1,134,7896,'2012-11-19 04:07:20',1),(1,126,7896,'2012-11-19 04:07:20',1),(1,44,7896,'2012-11-19 04:07:20',1),(1,179,7896,'2012-11-19 04:07:20',1),(1,195,7896,'2012-11-19 04:07:20',1),(1,96,7874,'2012-11-19 04:07:23',1),(1,118,7874,'2012-11-19 04:07:23',1),(1,119,7874,'2012-11-19 04:07:23',1),(1,138,7874,'2012-11-19 04:07:23',1),(1,48,7874,'2012-11-19 04:07:23',1),(1,71,7874,'2012-11-19 04:07:23',1),(1,154,7874,'2012-11-19 04:07:23',1),(1,186,7874,'2012-11-19 04:07:23',1),(1,155,7874,'2012-11-19 04:07:23',1),(1,180,7874,'2012-11-19 04:07:23',1),(1,161,7874,'2012-11-19 04:07:23',1),(1,54,7874,'2012-11-19 04:07:23',1),(1,148,7874,'2012-11-19 04:07:23',1),(1,243,7874,'2012-11-19 04:07:23',1),(1,62,7874,'2012-11-19 04:07:23',1),(1,193,7874,'2012-11-19 04:07:23',1),(1,184,7877,'2012-11-19 04:07:27',1),(1,237,7877,'2012-11-19 04:07:27',1),(1,138,7877,'2012-11-19 04:07:27',1),(1,48,7877,'2012-11-19 04:07:27',1),(1,71,7877,'2012-11-19 04:07:27',1),(1,180,7877,'2012-11-19 04:07:27',1),(1,161,7877,'2012-11-19 04:07:27',1),(1,54,7877,'2012-11-19 04:07:27',1),(1,196,7873,'2012-11-19 04:07:30',1),(1,58,7873,'2012-11-19 04:07:30',1),(1,1,7873,'2012-11-19 04:07:30',1),(1,178,7873,'2012-11-19 04:07:30',1),(1,30,7873,'2012-11-19 04:07:30',1),(1,251,7873,'2012-11-19 04:07:30',1),(1,15,7873,'2012-11-19 04:07:30',1),(1,69,7873,'2012-11-19 04:07:30',1),(1,94,7889,'2012-11-19 04:07:36',1),(1,133,7889,'2012-11-19 04:07:36',1),(1,244,7889,'2012-11-19 04:07:36',1),(1,184,7889,'2012-11-19 04:07:36',1),(1,149,7889,'2012-11-19 04:07:36',1),(1,45,7889,'2012-11-19 04:07:36',1),(1,47,7889,'2012-11-19 04:07:36',1),(1,234,7889,'2012-11-19 04:07:36',1),(1,10,7890,'2012-11-19 04:07:39',1),(1,215,7890,'2012-11-19 04:07:39',1),(1,53,7886,'2012-11-19 04:07:39',1),(1,130,7886,'2012-11-19 04:07:39',1),(1,204,7886,'2012-11-19 04:07:39',1),(1,9,7886,'2012-11-19 04:07:39',1),(1,215,7887,'2012-11-19 04:07:42',1),(1,219,7887,'2012-11-19 04:07:42',1),(1,201,7887,'2012-11-19 04:07:42',1),(1,104,7887,'2012-11-19 04:07:42',1),(1,14,7883,'2012-11-19 04:07:42',1),(1,204,7883,'2012-11-19 04:07:42',1),(1,8,7882,'2012-11-19 04:07:43',1),(1,107,7882,'2012-11-19 04:07:43',1),(1,53,7882,'2012-11-19 04:07:43',1),(1,10,7882,'2012-11-19 04:07:43',1),(1,104,7880,'2012-11-19 04:07:45',1),(1,198,7881,'2012-11-19 04:07:46',1),(1,247,7885,'2012-11-19 04:07:48',1),(1,133,7885,'2012-11-19 04:07:48',1),(1,149,7885,'2012-11-19 04:07:48',1),(1,37,7885,'2012-11-19 04:07:48',1),(1,80,7891,'2012-11-19 04:07:49',1),(1,107,7891,'2012-11-19 04:07:49',1),(1,104,7892,'2012-11-19 04:07:51',1),(1,215,7894,'2012-11-19 04:07:54',1),(1,104,7894,'2012-11-19 04:07:54',1),(1,237,7895,'2012-11-19 04:07:55',1),(1,141,7895,'2012-11-19 04:07:55',1),(1,98,7895,'2012-11-19 04:07:55',1),(1,181,7895,'2012-11-19 04:07:55',1),(1,248,7895,'2012-11-19 04:07:55',1),(1,63,7895,'2012-11-19 04:07:55',1),(1,190,7895,'2012-11-19 04:07:55',1),(1,188,7895,'2012-11-19 04:07:55',1),(1,8,7895,'2012-11-19 04:07:55',1),(1,174,7895,'2012-11-19 04:07:55',1),(1,75,7895,'2012-11-19 04:07:55',1),(1,64,7895,'2012-11-19 04:07:55',1),(1,185,7895,'2012-11-19 04:07:55',1),(1,132,7895,'2012-11-19 04:07:55',1),(1,10,7895,'2012-11-19 04:07:55',1),(1,60,7895,'2012-11-19 04:07:55',1),(1,63,7875,'2012-11-19 04:07:57',1),(1,8,7875,'2012-11-19 04:07:57',1),(1,47,7830,'2012-11-19 04:20:57',NULL),(1,234,7830,'2012-11-19 04:20:57',NULL),(1,235,7830,'2012-11-19 04:20:57',NULL),(1,111,7830,'2012-11-19 04:20:57',NULL),(1,51,7872,'2012-11-19 04:44:44',1),(1,235,7872,'2012-11-19 04:44:44',1),(1,111,7872,'2012-11-19 04:44:44',1),(1,37,7872,'2012-11-19 04:44:44',1),(1,53,7872,'2012-11-19 04:44:44',1),(1,130,7872,'2012-11-19 04:44:44',1),(1,142,7872,'2012-11-19 04:44:44',1),(1,204,7872,'2012-11-19 04:44:44',1),(1,129,7963,'2012-11-20 00:46:44',1),(1,117,7963,'2012-11-20 00:46:44',1),(1,166,7963,'2012-11-20 00:46:44',1),(1,55,7963,'2012-11-20 00:46:44',1),(1,173,7958,'2012-11-20 00:46:48',1),(1,129,7958,'2012-11-20 00:46:48',1),(1,117,7958,'2012-11-20 00:46:48',1),(1,166,7958,'2012-11-20 00:46:48',1),(1,129,7957,'2012-11-20 00:46:53',1),(1,117,7957,'2012-11-20 00:46:53',1),(1,88,7956,'2012-11-20 00:46:56',1),(1,129,7955,'2012-11-20 00:46:58',1),(1,117,7955,'2012-11-20 00:46:58',1),(1,6,7951,'2012-11-20 00:47:07',1),(1,55,7949,'2012-11-20 00:47:10',1),(1,116,7950,'2012-11-20 00:47:10',1),(1,116,7959,'2012-11-20 00:47:14',1),(1,129,7959,'2012-11-20 00:47:14',1),(1,117,7959,'2012-11-20 00:47:14',1),(1,55,7959,'2012-11-20 00:47:14',1),(1,166,7948,'2012-11-20 00:47:23',1),(1,144,7954,'2012-11-20 01:17:03',1),(1,55,7954,'2012-11-20 01:17:03',1),(1,83,7953,'2012-11-20 01:17:03',1),(1,55,7953,'2012-11-20 01:17:03',1),(1,134,7952,'2012-11-20 01:17:06',1),(1,192,7952,'2012-11-20 01:17:06',1),(1,88,8031,'2012-11-20 01:46:13',1),(1,6,8027,'2012-11-20 01:46:16',1),(1,192,8032,'2012-11-20 01:46:28',1),(1,129,8032,'2012-11-20 01:46:28',1),(1,88,8033,'2012-11-20 01:46:28',1),(1,106,8033,'2012-11-20 01:46:28',1),(1,17,8067,'2012-11-20 02:46:22',1),(1,59,8067,'2012-11-20 02:46:22',1),(1,246,8030,'2012-11-20 02:46:22',1),(1,59,8030,'2012-11-20 02:46:22',1),(1,4,8030,'2012-11-20 02:46:22',1),(1,117,8030,'2012-11-20 02:46:22',1),(1,17,8070,'2012-11-20 02:46:34',1),(1,59,8070,'2012-11-20 02:46:34',1),(1,220,8034,'2012-11-20 02:46:38',1),(1,29,8034,'2012-11-20 02:46:38',1),(1,17,8034,'2012-11-20 02:46:38',1),(1,144,8034,'2012-11-20 02:46:38',1),(1,29,8074,'2012-11-20 02:46:39',1),(1,17,8074,'2012-11-20 02:46:39',1),(1,106,8075,'2012-11-20 02:46:39',1),(1,29,8064,'2012-11-20 02:46:55',1),(1,166,8073,'2012-11-20 02:46:58',1),(1,59,8060,'2012-11-20 02:47:05',1),(1,117,8060,'2012-11-20 02:47:05',1),(1,123,7960,'2012-11-20 02:47:27',1),(1,220,7960,'2012-11-20 02:47:27',1),(1,17,7960,'2012-11-20 02:47:27',1),(1,59,7960,'2012-11-20 02:47:27',1),(1,246,7961,'2012-11-20 02:47:34',1),(1,59,7961,'2012-11-20 02:47:34',1),(1,4,7961,'2012-11-20 02:47:34',1),(1,117,7961,'2012-11-20 02:47:34',1),(1,34,8069,'2012-11-20 03:16:46',NULL),(1,29,8069,'2012-11-20 03:16:46',NULL),(1,17,8069,'2012-11-20 03:16:46',NULL),(1,144,8069,'2012-11-20 03:16:46',NULL),(1,123,8071,'2012-11-20 03:16:46',1),(1,59,8071,'2012-11-20 03:16:46',1),(1,4,8071,'2012-11-20 03:16:46',1),(1,117,8071,'2012-11-20 03:16:46',1),(1,6,8072,'2012-11-20 03:16:49',1),(1,4,8072,'2012-11-20 03:16:49',1),(1,42,8072,'2012-11-20 03:16:49',1),(1,123,8072,'2012-11-20 03:16:49',1),(1,180,8072,'2012-11-20 03:16:49',1),(1,188,8072,'2012-11-20 03:16:49',1),(1,59,8072,'2012-11-20 03:16:49',1),(1,80,8072,'2012-11-20 03:16:49',1),(1,116,8072,'2012-11-20 03:16:49',1),(1,117,8072,'2012-11-20 03:16:49',1),(1,75,8072,'2012-11-20 03:16:49',1),(1,132,8072,'2012-11-20 03:16:49',1),(1,61,8072,'2012-11-20 03:16:49',1),(1,5,8072,'2012-11-20 03:16:49',1),(1,104,8072,'2012-11-20 03:16:49',1),(1,206,8072,'2012-11-20 03:16:49',1),(1,180,8029,'2012-11-20 03:16:56',1),(1,34,8029,'2012-11-20 03:16:56',1),(1,29,8029,'2012-11-20 03:16:56',1),(1,106,8029,'2012-11-20 03:16:56',1),(1,85,8029,'2012-11-20 03:16:56',1),(1,17,8029,'2012-11-20 03:16:56',1),(1,6,8029,'2012-11-20 03:16:56',1),(1,4,8029,'2012-11-20 03:16:56',1),(1,6,8059,'2012-11-20 03:17:09',1),(1,4,8059,'2012-11-20 03:17:09',1),(1,42,8059,'2012-11-20 03:17:09',1),(1,123,8059,'2012-11-20 03:17:09',1),(1,232,8059,'2012-11-20 03:17:09',1),(1,180,8059,'2012-11-20 03:17:09',1),(1,106,8059,'2012-11-20 03:17:09',1),(1,85,8059,'2012-11-20 03:17:09',1),(1,192,8059,'2012-11-20 03:17:09',1),(1,188,8059,'2012-11-20 03:17:09',1),(1,59,8059,'2012-11-20 03:17:09',1),(1,80,8059,'2012-11-20 03:17:09',1),(1,116,8059,'2012-11-20 03:17:09',1),(1,117,8059,'2012-11-20 03:17:09',1),(1,75,8059,'2012-11-20 03:17:09',1),(1,132,8059,'2012-11-20 03:17:09',1),(1,46,8061,'2012-11-20 03:17:14',1),(1,232,8061,'2012-11-20 03:17:14',1),(1,106,8061,'2012-11-20 03:17:14',1),(1,192,8061,'2012-11-20 03:17:14',1),(1,61,8063,'2012-11-20 03:17:23',1),(1,5,8063,'2012-11-20 03:17:23',1),(1,104,8063,'2012-11-20 03:17:23',1),(1,206,8063,'2012-11-20 03:17:23',1),(1,6,7962,'2012-11-20 03:17:25',1),(1,4,7962,'2012-11-20 03:17:25',1),(1,123,7962,'2012-11-20 03:17:25',1),(1,232,7962,'2012-11-20 03:17:25',1),(1,180,7962,'2012-11-20 03:17:25',1),(1,106,7962,'2012-11-20 03:17:25',1),(1,85,7962,'2012-11-20 03:17:25',1),(1,192,7962,'2012-11-20 03:17:25',1),(1,61,8062,'2012-11-20 03:17:29',1),(1,5,8062,'2012-11-20 03:17:29',1),(1,104,8062,'2012-11-20 03:17:29',1),(1,206,8062,'2012-11-20 03:17:29',1),(1,188,7964,'2012-11-20 03:17:32',1),(1,59,7964,'2012-11-20 03:17:32',1),(1,80,7964,'2012-11-20 03:17:32',1),(1,116,7964,'2012-11-20 03:17:32',1),(1,129,7964,'2012-11-20 03:17:32',1),(1,117,7964,'2012-11-20 03:17:32',1),(1,75,7964,'2012-11-20 03:17:32',1),(1,132,7964,'2012-11-20 03:17:32',1),(1,6,7965,'2012-11-20 03:18:01',1),(1,4,7965,'2012-11-20 03:18:01',1),(1,180,7965,'2012-11-20 03:18:01',1),(1,106,7965,'2012-11-20 03:18:01',1),(1,85,7965,'2012-11-20 03:18:01',1),(1,192,7965,'2012-11-20 03:18:01',1),(1,188,7965,'2012-11-20 03:18:01',1),(1,59,7965,'2012-11-20 03:18:01',1),(1,6,7966,'2012-11-20 03:18:02',1),(1,4,7966,'2012-11-20 03:18:02',1),(1,34,7966,'2012-11-20 03:18:02',1),(1,29,7966,'2012-11-20 03:18:02',1),(1,106,7966,'2012-11-20 03:18:02',1),(1,85,7966,'2012-11-20 03:18:02',1),(1,17,7966,'2012-11-20 03:18:02',1),(1,192,7966,'2012-11-20 03:18:02',1),(1,6,7947,'2012-11-20 03:18:13',1),(1,4,7947,'2012-11-20 03:18:13',1),(1,180,7947,'2012-11-20 03:18:13',1),(1,34,7947,'2012-11-20 03:18:13',1),(1,29,7947,'2012-11-20 03:18:13',1),(1,106,7947,'2012-11-20 03:18:13',1),(1,85,7947,'2012-11-20 03:18:13',1),(1,17,7947,'2012-11-20 03:18:13',1),(1,104,8122,'2012-11-20 03:46:21',1),(1,29,8126,'2012-11-20 03:46:24',1),(1,106,8126,'2012-11-20 03:46:24',1),(1,85,8126,'2012-11-20 03:46:24',1),(1,17,8126,'2012-11-20 03:46:24',1),(1,40,8128,'2012-11-20 03:46:31',1),(1,167,8128,'2012-11-20 03:46:31',1),(1,6,8128,'2012-11-20 03:46:31',1),(1,4,8128,'2012-11-20 03:46:31',1),(1,6,8136,'2012-11-20 03:46:35',1),(1,4,8136,'2012-11-20 03:46:35',1),(1,29,8130,'2012-11-20 03:46:38',1),(1,106,8130,'2012-11-20 03:46:38',1),(1,85,8130,'2012-11-20 03:46:38',1),(1,17,8130,'2012-11-20 03:46:38',1),(1,106,8124,'2012-11-20 03:46:40',1),(1,85,8124,'2012-11-20 03:46:40',1),(1,17,8124,'2012-11-20 03:46:40',1),(1,173,8124,'2012-11-20 03:46:40',1),(1,166,8133,'2012-11-20 03:46:47',1),(1,5,8133,'2012-11-20 03:46:47',1),(1,104,8123,'2012-11-20 03:46:47',1),(1,134,8118,'2012-11-20 03:46:55',1),(1,106,8118,'2012-11-20 03:46:55',1),(1,85,8118,'2012-11-20 03:46:55',1),(1,17,8118,'2012-11-20 03:46:55',1),(1,209,8134,'2012-11-20 03:46:59',1),(1,122,8129,'2012-11-20 03:47:07',1),(1,123,8129,'2012-11-20 03:47:07',1),(1,246,8127,'2012-11-20 03:47:09',1),(1,122,8127,'2012-11-20 03:47:09',1),(1,123,8127,'2012-11-20 03:47:09',1),(1,116,8127,'2012-11-20 03:47:09',1),(1,180,8131,'2012-11-20 03:47:09',1),(1,29,8131,'2012-11-20 03:47:09',1),(1,116,8028,'2012-11-20 03:47:09',1),(1,132,8028,'2012-11-20 03:47:09',1),(1,241,8028,'2012-11-20 03:47:09',1),(1,122,8028,'2012-11-20 03:47:09',1),(1,123,8028,'2012-11-20 03:47:09',1),(1,40,8028,'2012-11-20 03:47:09',1),(1,188,8028,'2012-11-20 03:47:09',1),(1,173,8028,'2012-11-20 03:47:09',1),(1,141,8125,'2012-11-20 03:47:19',1),(1,173,8125,'2012-11-20 03:47:19',1),(1,173,8121,'2012-11-20 03:47:21',1),(1,209,8135,'2012-11-20 03:47:32',1),(1,29,8135,'2012-11-20 03:47:32',1),(1,209,8115,'2012-11-20 04:16:28',1),(1,6,8115,'2012-11-20 04:16:28',1),(1,4,8115,'2012-11-20 04:16:28',1),(1,134,8115,'2012-11-20 04:16:28',1),(1,170,8115,'2012-11-20 04:16:28',1),(1,167,8115,'2012-11-20 04:16:28',1),(1,180,8115,'2012-11-20 04:16:28',1),(1,29,8115,'2012-11-20 04:16:28',1),(1,106,8115,'2012-11-20 04:16:28',1),(1,85,8115,'2012-11-20 04:16:28',1),(1,17,8115,'2012-11-20 04:16:28',1),(1,87,8115,'2012-11-20 04:16:28',1),(1,80,8115,'2012-11-20 04:16:28',1),(1,117,8115,'2012-11-20 04:16:28',1),(1,166,8115,'2012-11-20 04:16:28',1),(1,5,8115,'2012-11-20 04:16:28',1),(1,209,8065,'2012-11-20 04:16:33',1),(1,116,8065,'2012-11-20 04:16:33',1),(1,129,8065,'2012-11-20 04:16:33',1),(1,117,8065,'2012-11-20 04:16:33',1),(1,166,8065,'2012-11-20 04:16:33',1),(1,132,8065,'2012-11-20 04:16:33',1),(1,61,8065,'2012-11-20 04:16:33',1),(1,5,8065,'2012-11-20 04:16:33',1),(1,116,8066,'2012-11-20 04:16:40',1),(1,132,8066,'2012-11-20 04:16:40',1),(1,241,8066,'2012-11-20 04:16:40',1),(1,123,8066,'2012-11-20 04:16:40',1),(1,220,8066,'2012-11-20 04:16:40',1),(1,40,8066,'2012-11-20 04:16:40',1),(1,188,8066,'2012-11-20 04:16:40',1),(1,173,8066,'2012-11-20 04:16:40',1),(1,116,8068,'2012-11-20 04:16:51',1),(1,129,8068,'2012-11-20 04:16:51',1),(1,117,8068,'2012-11-20 04:16:51',1),(1,166,8068,'2012-11-20 04:16:51',1),(1,55,8068,'2012-11-20 04:16:51',1),(1,132,8068,'2012-11-20 04:16:51',1),(1,61,8068,'2012-11-20 04:16:51',1),(1,5,8068,'2012-11-20 04:16:51',1),(1,6,8137,'2012-11-20 04:16:51',1),(1,4,8137,'2012-11-20 04:16:51',1),(1,40,8137,'2012-11-20 04:16:51',1),(1,170,8137,'2012-11-20 04:16:51',1),(1,167,8137,'2012-11-20 04:16:51',1),(1,180,8137,'2012-11-20 04:16:51',1),(1,29,8137,'2012-11-20 04:16:51',1),(1,106,8137,'2012-11-20 04:16:51',1),(1,83,8137,'2012-11-20 04:16:51',1),(1,85,8137,'2012-11-20 04:16:51',1),(1,17,8137,'2012-11-20 04:16:51',1),(1,188,8137,'2012-11-20 04:16:51',1),(1,86,8137,'2012-11-20 04:16:51',1),(1,87,8137,'2012-11-20 04:16:51',1),(1,173,8137,'2012-11-20 04:16:51',1),(1,80,8137,'2012-11-20 04:16:51',1),(1,116,8117,'2012-11-20 04:16:55',1),(1,129,8117,'2012-11-20 04:16:55',1),(1,117,8117,'2012-11-20 04:16:55',1),(1,166,8117,'2012-11-20 04:16:55',1),(1,55,8117,'2012-11-20 04:16:55',1),(1,132,8117,'2012-11-20 04:16:55',1),(1,61,8117,'2012-11-20 04:16:55',1),(1,5,8117,'2012-11-20 04:16:55',1),(1,116,8076,'2012-11-20 04:17:06',1),(1,129,8076,'2012-11-20 04:17:06',1),(1,132,8076,'2012-11-20 04:17:06',1),(1,61,8076,'2012-11-20 04:17:06',1),(1,241,8076,'2012-11-20 04:17:06',1),(1,206,8076,'2012-11-20 04:17:06',1),(1,123,8076,'2012-11-20 04:17:06',1),(1,220,8076,'2012-11-20 04:17:06',1),(1,116,8114,'2012-11-20 04:46:22',NULL),(1,129,8114,'2012-11-20 04:46:22',NULL),(1,117,8114,'2012-11-20 04:46:22',NULL),(1,166,8114,'2012-11-20 04:46:22',NULL),(1,55,8114,'2012-11-20 04:46:22',NULL),(1,132,8114,'2012-11-20 04:46:22',NULL),(1,61,8114,'2012-11-20 04:46:22',NULL),(1,5,8114,'2012-11-20 04:46:22',NULL),(1,141,8113,'2012-11-20 04:46:33',1),(1,123,8113,'2012-11-20 04:46:33',1),(1,220,8113,'2012-11-20 04:46:33',1),(1,232,8113,'2012-11-20 04:46:33',1),(1,144,8113,'2012-11-20 04:46:33',1),(1,59,8113,'2012-11-20 04:46:33',1),(1,75,8113,'2012-11-20 04:46:33',1),(1,209,8113,'2012-11-20 04:46:33',1),(1,6,8119,'2012-11-20 04:47:04',1),(1,4,8119,'2012-11-20 04:47:04',1),(1,167,8119,'2012-11-20 04:47:04',1),(1,180,8119,'2012-11-20 04:47:04',1),(1,29,8119,'2012-11-20 04:47:04',1),(1,106,8119,'2012-11-20 04:47:04',1),(1,83,8119,'2012-11-20 04:47:04',1),(1,85,8119,'2012-11-20 04:47:04',1),(1,6,8120,'2012-11-20 04:47:05',1),(1,4,8120,'2012-11-20 04:47:05',1),(1,167,8120,'2012-11-20 04:47:05',1),(1,180,8120,'2012-11-20 04:47:05',1),(1,29,8120,'2012-11-20 04:47:05',1),(1,106,8120,'2012-11-20 04:47:05',1),(1,83,8120,'2012-11-20 04:47:05',1),(1,85,8120,'2012-11-20 04:47:05',1),(1,17,8120,'2012-11-20 04:47:05',1),(1,188,8120,'2012-11-20 04:47:05',1),(1,86,8120,'2012-11-20 04:47:05',1),(1,87,8120,'2012-11-20 04:47:05',1),(1,173,8120,'2012-11-20 04:47:05',1),(1,80,8120,'2012-11-20 04:47:05',1),(1,241,8120,'2012-11-20 04:47:05',1),(1,104,8120,'2012-11-20 04:47:05',1),(1,17,8132,'2012-11-20 05:17:22',1),(1,188,8132,'2012-11-20 05:17:22',1),(1,86,8132,'2012-11-20 05:17:22',1),(1,87,8132,'2012-11-20 05:17:22',1),(1,173,8132,'2012-11-20 05:17:22',1),(1,80,8132,'2012-11-20 05:17:22',1),(1,241,8132,'2012-11-20 05:17:22',1),(1,104,8132,'2012-11-20 05:17:22',1),(1,220,8116,'2012-11-20 05:17:36',1),(1,232,8116,'2012-11-20 05:17:36',1),(1,111,8116,'2012-11-20 05:17:36',1),(1,192,8116,'2012-11-20 05:17:36',1),(1,144,8116,'2012-11-20 05:17:36',1),(1,59,8116,'2012-11-20 05:17:36',1),(1,75,8116,'2012-11-20 05:17:36',1),(1,206,8116,'2012-11-20 05:17:36',1),(1,134,8272,'2012-11-21 02:16:14',1),(1,82,8272,'2012-11-21 02:16:14',1),(1,244,8202,'2012-11-21 02:16:22',1),(1,113,8202,'2012-11-21 02:16:22',1),(1,140,8202,'2012-11-21 02:16:22',1),(1,149,8202,'2012-11-21 02:16:22',1),(1,138,8202,'2012-11-21 02:16:22',1),(1,120,8202,'2012-11-21 02:16:22',1),(1,234,8202,'2012-11-21 02:16:22',1),(1,1,8202,'2012-11-21 02:16:22',1),(1,32,8271,'2012-11-21 02:16:28',1),(1,113,8205,'2012-11-21 02:16:31',1),(1,140,8205,'2012-11-21 02:16:31',1),(1,149,8205,'2012-11-21 02:16:31',1),(1,138,8205,'2012-11-21 02:16:31',1),(1,120,8205,'2012-11-21 02:16:31',1),(1,234,8205,'2012-11-21 02:16:31',1),(1,1,8205,'2012-11-21 02:16:31',1),(1,32,8205,'2012-11-21 02:16:31',1),(1,140,8206,'2012-11-21 02:16:33',1),(1,96,8206,'2012-11-21 02:16:33',1),(1,149,8206,'2012-11-21 02:16:33',1),(1,141,8206,'2012-11-21 02:16:33',1),(1,138,8206,'2012-11-21 02:16:33',1),(1,120,8206,'2012-11-21 02:16:33',1),(1,150,8206,'2012-11-21 02:16:33',1),(1,234,8206,'2012-11-21 02:16:33',1),(1,90,8188,'2012-11-21 02:16:41',1),(1,4,8189,'2012-11-21 02:16:41',1),(1,207,8190,'2012-11-21 02:16:41',1),(1,171,8191,'2012-11-21 02:16:42',1),(1,207,8192,'2012-11-21 02:16:48',1),(1,90,8192,'2012-11-21 02:16:48',1),(1,207,8193,'2012-11-21 02:16:50',1),(1,90,8193,'2012-11-21 02:16:50',1),(1,207,8195,'2012-11-21 02:16:52',1),(1,90,8195,'2012-11-21 02:16:52',1),(1,207,8194,'2012-11-21 02:16:52',1),(1,90,8194,'2012-11-21 02:16:52',1),(1,43,8196,'2012-11-21 02:16:59',1),(1,246,8197,'2012-11-21 02:17:00',1),(1,121,8197,'2012-11-21 02:17:00',1),(1,213,8303,'2012-11-21 02:46:12',1),(1,244,8314,'2012-11-21 02:46:12',1),(1,123,8314,'2012-11-21 02:46:12',1),(1,24,8314,'2012-11-21 02:46:12',1),(1,4,8314,'2012-11-21 02:46:12',1),(1,207,8314,'2012-11-21 02:46:12',1),(1,211,8314,'2012-11-21 02:46:12',1),(1,81,8314,'2012-11-21 02:46:12',1),(1,210,8314,'2012-11-21 02:46:12',1),(1,208,8313,'2012-11-21 02:46:12',1),(1,68,8306,'2012-11-21 02:46:12',1),(1,208,8306,'2012-11-21 02:46:12',1),(1,88,8268,'2012-11-21 02:46:16',NULL),(1,134,8268,'2012-11-21 02:46:16',NULL),(1,1,8268,'2012-11-21 02:46:16',NULL),(1,33,8268,'2012-11-21 02:46:16',NULL),(1,100,8268,'2012-11-21 02:46:16',NULL),(1,236,8268,'2012-11-21 02:46:16',NULL),(1,74,8268,'2012-11-21 02:46:16',NULL),(1,101,8268,'2012-11-21 02:46:16',NULL),(1,81,8270,'2012-11-21 02:46:16',1),(1,208,8270,'2012-11-21 02:46:16',1),(1,210,8270,'2012-11-21 02:46:16',1),(1,4,8270,'2012-11-21 02:46:16',1),(1,27,8269,'2012-11-21 02:46:17',1),(1,189,8269,'2012-11-21 02:46:17',1),(1,159,8269,'2012-11-21 02:46:17',1),(1,24,8269,'2012-11-21 02:46:17',1),(1,252,8269,'2012-11-21 02:46:17',1),(1,226,8269,'2012-11-21 02:46:17',1),(1,219,8269,'2012-11-21 02:46:17',1),(1,49,8269,'2012-11-21 02:46:17',1),(1,88,8305,'2012-11-21 02:46:20',1),(1,27,8305,'2012-11-21 02:46:20',1),(1,134,8305,'2012-11-21 02:46:20',1),(1,122,8305,'2012-11-21 02:46:20',1),(1,220,8305,'2012-11-21 02:46:20',1),(1,1,8305,'2012-11-21 02:46:20',1),(1,33,8305,'2012-11-21 02:46:20',1),(1,100,8305,'2012-11-21 02:46:20',1),(1,157,8300,'2012-11-21 02:46:22',1),(1,163,8300,'2012-11-21 02:46:22',1),(1,58,8300,'2012-11-21 02:46:22',1),(1,178,8300,'2012-11-21 02:46:22',1),(1,140,8315,'2012-11-21 02:46:22',1),(1,96,8315,'2012-11-21 02:46:22',1),(1,246,8315,'2012-11-21 02:46:22',1),(1,149,8315,'2012-11-21 02:46:22',1),(1,141,8315,'2012-11-21 02:46:22',1),(1,138,8315,'2012-11-21 02:46:22',1),(1,120,8315,'2012-11-21 02:46:22',1),(1,121,8315,'2012-11-21 02:46:22',1),(1,150,8315,'2012-11-21 02:46:22',1),(1,234,8315,'2012-11-21 02:46:22',1),(1,58,8315,'2012-11-21 02:46:22',1),(1,145,8315,'2012-11-21 02:46:22',1),(1,171,8315,'2012-11-21 02:46:22',1),(1,62,8315,'2012-11-21 02:46:22',1),(1,32,8315,'2012-11-21 02:46:22',1),(1,23,8315,'2012-11-21 02:46:22',1),(1,236,8307,'2012-11-21 02:46:22',1),(1,189,8307,'2012-11-21 02:46:22',1),(1,159,8307,'2012-11-21 02:46:22',1),(1,74,8307,'2012-11-21 02:46:22',1),(1,24,8307,'2012-11-21 02:46:22',1),(1,252,8307,'2012-11-21 02:46:22',1),(1,101,8307,'2012-11-21 02:46:22',1),(1,226,8307,'2012-11-21 02:46:22',1),(1,145,8201,'2012-11-21 02:46:28',1),(1,252,8201,'2012-11-21 02:46:28',1),(1,101,8201,'2012-11-21 02:46:28',1),(1,226,8201,'2012-11-21 02:46:28',1),(1,195,8200,'2012-11-21 02:46:28',1),(1,178,8200,'2012-11-21 02:46:28',1),(1,31,8200,'2012-11-21 02:46:28',1),(1,190,8200,'2012-11-21 02:46:28',1),(1,68,8203,'2012-11-21 02:46:30',1),(1,213,8203,'2012-11-21 02:46:30',1),(1,81,8203,'2012-11-21 02:46:30',1),(1,208,8203,'2012-11-21 02:46:30',1),(1,150,8275,'2012-11-21 02:46:31',1),(1,164,8275,'2012-11-21 02:46:31',1),(1,234,8275,'2012-11-21 02:46:31',1),(1,195,8275,'2012-11-21 02:46:31',1),(1,24,8274,'2012-11-21 02:46:32',1),(1,145,8273,'2012-11-21 02:46:36',1),(1,171,8273,'2012-11-21 02:46:36',1),(1,68,8309,'2012-11-21 02:46:37',1),(1,208,8309,'2012-11-21 02:46:37',1),(1,90,8301,'2012-11-21 02:46:40',1),(1,150,8316,'2012-11-21 02:46:40',1),(1,245,8316,'2012-11-21 02:46:40',1),(1,164,8316,'2012-11-21 02:46:40',1),(1,234,8316,'2012-11-21 02:46:40',1),(1,88,8204,'2012-11-21 02:46:44',1),(1,134,8204,'2012-11-21 02:46:44',1),(1,1,8204,'2012-11-21 02:46:44',1),(1,33,8204,'2012-11-21 02:46:44',1),(1,100,8204,'2012-11-21 02:46:44',1),(1,236,8204,'2012-11-21 02:46:44',1),(1,101,8204,'2012-11-21 02:46:44',1),(1,90,8204,'2012-11-21 02:46:44',1),(1,219,8304,'2012-11-21 02:46:46',1),(1,49,8304,'2012-11-21 02:46:46',1),(1,68,8304,'2012-11-21 02:46:46',1),(1,213,8304,'2012-11-21 02:46:46',1),(1,81,8304,'2012-11-21 02:46:46',1),(1,208,8304,'2012-11-21 02:46:46',1),(1,210,8304,'2012-11-21 02:46:46',1),(1,4,8304,'2012-11-21 02:46:46',1),(1,159,8207,'2012-11-21 02:46:46',1),(1,24,8207,'2012-11-21 02:46:46',1),(1,252,8207,'2012-11-21 02:46:46',1),(1,226,8207,'2012-11-21 02:46:46',1),(1,219,8207,'2012-11-21 02:46:46',1),(1,49,8207,'2012-11-21 02:46:46',1),(1,207,8207,'2012-11-21 02:46:46',1),(1,211,8207,'2012-11-21 02:46:46',1),(1,113,8311,'2012-11-21 02:46:49',1),(1,123,8311,'2012-11-21 02:46:49',1),(1,71,8311,'2012-11-21 02:46:49',1),(1,159,8311,'2012-11-21 02:46:49',1),(1,24,8311,'2012-11-21 02:46:49',1),(1,252,8311,'2012-11-21 02:46:49',1),(1,226,8311,'2012-11-21 02:46:49',1),(1,219,8311,'2012-11-21 02:46:49',1),(1,49,8311,'2012-11-21 02:46:49',1),(1,207,8311,'2012-11-21 02:46:49',1),(1,211,8311,'2012-11-21 02:46:49',1),(1,68,8311,'2012-11-21 02:46:49',1),(1,213,8311,'2012-11-21 02:46:49',1),(1,81,8311,'2012-11-21 02:46:49',1),(1,208,8311,'2012-11-21 02:46:49',1),(1,209,8311,'2012-11-21 02:46:49',1),(1,210,8317,'2012-11-21 02:46:49',1),(1,4,8317,'2012-11-21 02:46:49',1),(1,207,8312,'2012-11-21 02:46:55',1),(1,211,8312,'2012-11-21 02:46:55',1),(1,81,8302,'2012-11-21 02:46:56',1),(1,208,8302,'2012-11-21 02:46:56',1),(1,210,8302,'2012-11-21 02:46:56',1),(1,4,8302,'2012-11-21 02:46:56',1),(1,219,8198,'2012-11-21 02:47:04',1),(1,49,8198,'2012-11-21 02:47:04',1),(1,68,8198,'2012-11-21 02:47:04',1),(1,213,8198,'2012-11-21 02:47:04',1),(1,178,8199,'2012-11-21 02:47:06',1),(1,31,8199,'2012-11-21 02:47:06',1),(1,236,8199,'2012-11-21 02:47:06',1),(1,190,8199,'2012-11-21 02:47:06',1),(1,31,8375,'2012-11-21 03:16:19',1),(1,236,8375,'2012-11-21 03:16:19',1),(1,31,8308,'2012-11-21 03:16:40',NULL),(1,236,8308,'2012-11-21 03:16:40',NULL),(1,145,8308,'2012-11-21 03:16:40',NULL),(1,190,8308,'2012-11-21 03:16:40',NULL),(1,195,8310,'2012-11-21 03:16:51',1),(1,37,8310,'2012-11-21 03:16:51',1),(1,219,8310,'2012-11-21 03:16:51',1),(1,49,8310,'2012-11-21 03:16:51',1),(1,62,8377,'2012-11-21 03:46:12',1),(1,128,8377,'2012-11-21 03:46:12',1),(1,189,8377,'2012-11-21 03:46:12',1),(1,190,8377,'2012-11-21 03:46:12',1),(1,159,8377,'2012-11-21 03:46:12',1),(1,32,8377,'2012-11-21 03:46:12',1),(1,23,8377,'2012-11-21 03:46:12',1),(1,74,8377,'2012-11-21 03:46:12',1),(1,24,8355,'2012-11-21 03:46:12',1),(1,215,8355,'2012-11-21 03:46:12',1),(1,231,8355,'2012-11-21 03:46:12',1),(1,219,8355,'2012-11-21 03:46:12',1),(1,49,8355,'2012-11-21 03:46:12',1),(1,81,8355,'2012-11-21 03:46:12',1),(1,209,8355,'2012-11-21 03:46:12',1),(1,223,8355,'2012-11-21 03:46:12',1),(1,213,8369,'2012-11-21 03:46:12',1),(1,81,8369,'2012-11-21 03:46:12',1),(1,209,8369,'2012-11-21 03:46:12',1),(1,78,8369,'2012-11-21 03:46:12',1),(1,140,8376,'2012-11-21 03:46:13',1),(1,96,8376,'2012-11-21 03:46:13',1),(1,134,8376,'2012-11-21 03:46:13',1),(1,246,8376,'2012-11-21 03:46:13',1),(1,149,8376,'2012-11-21 03:46:13',1),(1,141,8376,'2012-11-21 03:46:13',1),(1,120,8376,'2012-11-21 03:46:13',1),(1,121,8376,'2012-11-21 03:46:13',1),(1,122,8376,'2012-11-21 03:46:13',1),(1,123,8376,'2012-11-21 03:46:13',1),(1,220,8376,'2012-11-21 03:46:13',1),(1,195,8376,'2012-11-21 03:46:13',1),(1,1,8376,'2012-11-21 03:46:13',1),(1,33,8376,'2012-11-21 03:46:13',1),(1,100,8376,'2012-11-21 03:46:13',1),(1,37,8376,'2012-11-21 03:46:13',1),(1,145,8374,'2012-11-21 03:46:20',1),(1,171,8374,'2012-11-21 03:46:20',1),(1,6,8373,'2012-11-21 03:46:20',1),(1,145,8357,'2012-11-21 03:46:21',1),(1,171,8357,'2012-11-21 03:46:21',1),(1,6,8357,'2012-11-21 03:46:21',1),(1,4,8357,'2012-11-21 03:46:21',1),(1,140,8359,'2012-11-21 03:46:29',1),(1,96,8359,'2012-11-21 03:46:29',1),(1,134,8359,'2012-11-21 03:46:29',1),(1,246,8359,'2012-11-21 03:46:29',1),(1,149,8359,'2012-11-21 03:46:29',1),(1,141,8359,'2012-11-21 03:46:29',1),(1,82,8359,'2012-11-21 03:46:29',1),(1,120,8359,'2012-11-21 03:46:29',1),(1,121,8359,'2012-11-21 03:46:29',1),(1,122,8359,'2012-11-21 03:46:29',1),(1,123,8359,'2012-11-21 03:46:29',1),(1,220,8359,'2012-11-21 03:46:29',1),(1,195,8359,'2012-11-21 03:46:29',1),(1,1,8359,'2012-11-21 03:46:29',1),(1,33,8359,'2012-11-21 03:46:29',1),(1,100,8359,'2012-11-21 03:46:29',1),(1,68,8358,'2012-11-21 03:46:29',1),(1,36,8358,'2012-11-21 03:46:29',1),(1,31,8358,'2012-11-21 03:46:29',1),(1,236,8358,'2012-11-21 03:46:29',1),(1,145,8358,'2012-11-21 03:46:29',1),(1,171,8358,'2012-11-21 03:46:29',1),(1,6,8358,'2012-11-21 03:46:29',1),(1,4,8358,'2012-11-21 03:46:29',1),(1,4,8360,'2012-11-21 03:46:29',1),(1,213,8361,'2012-11-21 03:46:30',1),(1,213,8362,'2012-11-21 03:46:38',1),(1,145,8363,'2012-11-21 03:46:38',1),(1,171,8363,'2012-11-21 03:46:38',1),(1,6,8363,'2012-11-21 03:46:38',1),(1,4,8363,'2012-11-21 03:46:38',1),(1,31,8365,'2012-11-21 03:46:38',1),(1,236,8365,'2012-11-21 03:46:38',1),(1,31,8364,'2012-11-21 03:46:38',1),(1,236,8364,'2012-11-21 03:46:38',1),(1,27,8356,'2012-11-21 03:47:03',1),(1,62,8356,'2012-11-21 03:47:03',1),(1,128,8356,'2012-11-21 03:47:03',1),(1,189,8356,'2012-11-21 03:47:03',1),(1,190,8356,'2012-11-21 03:47:03',1),(1,159,8356,'2012-11-21 03:47:03',1),(1,32,8356,'2012-11-21 03:47:03',1),(1,23,8356,'2012-11-21 03:47:03',1),(1,113,8367,'2012-11-21 04:16:49',1),(1,27,8367,'2012-11-21 04:16:49',1),(1,140,8370,'2012-11-21 04:16:49',1),(1,96,8370,'2012-11-21 04:16:49',1),(1,134,8370,'2012-11-21 04:16:49',1),(1,246,8370,'2012-11-21 04:16:49',1),(1,149,8370,'2012-11-21 04:16:49',1),(1,141,8370,'2012-11-21 04:16:49',1),(1,82,8370,'2012-11-21 04:16:49',1),(1,120,8370,'2012-11-21 04:16:49',1),(1,121,8370,'2012-11-21 04:16:49',1),(1,122,8370,'2012-11-21 04:16:49',1),(1,123,8370,'2012-11-21 04:16:49',1),(1,220,8370,'2012-11-21 04:16:49',1),(1,195,8370,'2012-11-21 04:16:49',1),(1,1,8370,'2012-11-21 04:16:49',1),(1,33,8370,'2012-11-21 04:16:49',1),(1,100,8370,'2012-11-21 04:16:49',1),(1,159,8366,'2012-11-21 04:16:49',1),(1,32,8366,'2012-11-21 04:16:49',1),(1,23,8366,'2012-11-21 04:16:49',1),(1,213,8366,'2012-11-21 04:16:49',1),(1,62,8368,'2012-11-21 04:16:49',1),(1,128,8368,'2012-11-21 04:16:49',1),(1,189,8368,'2012-11-21 04:16:49',1),(1,190,8368,'2012-11-21 04:16:49',1),(1,36,8371,'2012-11-21 04:16:57',1),(1,37,8371,'2012-11-21 04:16:57',1),(1,31,8371,'2012-11-21 04:16:57',1),(1,236,8371,'2012-11-21 04:16:57',1),(1,145,8371,'2012-11-21 04:16:57',1),(1,171,8371,'2012-11-21 04:16:57',1),(1,6,8371,'2012-11-21 04:16:57',1),(1,4,8371,'2012-11-21 04:16:57',1),(1,31,8372,'2012-11-21 04:16:57',1),(1,236,8372,'2012-11-21 04:16:57',1),(1,30,8354,'2012-11-21 04:16:57',1),(1,74,8354,'2012-11-21 04:16:57',1),(1,24,8354,'2012-11-21 04:16:57',1),(1,215,8354,'2012-11-21 04:16:57',1),(1,231,8354,'2012-11-21 04:16:57',1),(1,219,8354,'2012-11-21 04:16:57',1),(1,206,8354,'2012-11-21 04:16:57',1),(1,49,8354,'2012-11-21 04:16:57',1),(1,81,8378,'2012-11-21 04:16:58',1),(1,209,8378,'2012-11-21 04:16:58',1),(1,78,8378,'2012-11-21 04:16:58',1),(1,223,8378,'2012-11-21 04:16:58',1),(1,4,8451,'2012-11-22 00:46:14',1),(1,8,8452,'2012-11-22 01:16:16',1),(1,6,8452,'2012-11-22 01:16:16',1),(1,6,8450,'2012-11-22 01:16:16',1),(1,8,8453,'2012-11-22 01:16:17',1),(1,6,8453,'2012-11-22 01:16:17',1),(1,6,8456,'2012-11-22 01:16:25',1),(1,193,8455,'2012-11-22 01:16:25',1),(1,8,8455,'2012-11-22 01:16:25',1),(1,222,8457,'2012-11-22 01:16:25',1),(1,248,8457,'2012-11-22 01:16:25',1),(1,221,8460,'2012-11-22 01:16:33',1),(1,222,8460,'2012-11-22 01:16:33',1),(1,248,8460,'2012-11-22 01:16:33',1),(1,193,8460,'2012-11-22 01:16:33',1),(1,221,8458,'2012-11-22 01:16:33',1),(1,222,8458,'2012-11-22 01:16:33',1),(1,193,8458,'2012-11-22 01:16:33',1),(1,8,8458,'2012-11-22 01:16:33',1),(1,221,8459,'2012-11-22 01:16:33',1),(1,222,8459,'2012-11-22 01:16:33',1),(1,248,8459,'2012-11-22 01:16:33',1),(1,193,8459,'2012-11-22 01:16:33',1),(1,222,8461,'2012-11-22 01:16:34',1),(1,248,8461,'2012-11-22 01:16:34',1),(1,193,8461,'2012-11-22 01:16:34',1),(1,8,8461,'2012-11-22 01:16:34',1),(1,56,8462,'2012-11-22 01:16:41',1),(1,92,8462,'2012-11-22 01:16:41',1),(1,221,8462,'2012-11-22 01:16:41',1),(1,222,8462,'2012-11-22 01:16:41',1),(1,248,8462,'2012-11-22 01:16:41',1),(1,193,8462,'2012-11-22 01:16:41',1),(1,8,8462,'2012-11-22 01:16:41',1),(1,6,8462,'2012-11-22 01:16:41',1),(1,92,8463,'2012-11-22 01:16:41',1),(1,221,8463,'2012-11-22 01:16:41',1),(1,222,8463,'2012-11-22 01:16:41',1),(1,248,8463,'2012-11-22 01:16:41',1),(1,221,8464,'2012-11-22 01:16:41',1),(1,146,8464,'2012-11-22 01:16:41',1),(1,194,8464,'2012-11-22 01:16:41',1),(1,181,8464,'2012-11-22 01:16:41',1),(1,193,8464,'2012-11-22 01:16:41',1),(1,63,8464,'2012-11-22 01:16:41',1),(1,115,8464,'2012-11-22 01:16:41',1),(1,8,8464,'2012-11-22 01:16:41',1),(1,70,8465,'2012-11-22 01:16:42',1),(1,221,8465,'2012-11-22 01:16:42',1),(1,222,8465,'2012-11-22 01:16:42',1),(1,146,8465,'2012-11-22 01:16:42',1),(1,194,8465,'2012-11-22 01:16:42',1),(1,181,8465,'2012-11-22 01:16:42',1),(1,248,8465,'2012-11-22 01:16:42',1),(1,193,8465,'2012-11-22 01:16:42',1),(1,6,8468,'2012-11-22 01:16:49',1),(1,4,8511,'2012-11-22 01:46:14',1),(1,4,8514,'2012-11-22 01:46:14',1),(1,63,8516,'2012-11-22 01:46:14',1),(1,115,8516,'2012-11-22 01:46:14',1),(1,8,8516,'2012-11-22 01:46:14',1),(1,6,8516,'2012-11-22 01:46:14',1),(1,8,8513,'2012-11-22 01:46:14',1),(1,6,8513,'2012-11-22 01:46:14',1),(1,222,8515,'2012-11-22 01:46:23',NULL),(1,146,8515,'2012-11-22 01:46:23',NULL),(1,194,8515,'2012-11-22 01:46:23',NULL),(1,181,8515,'2012-11-22 01:46:23',NULL),(1,248,8515,'2012-11-22 01:46:23',NULL),(1,193,8515,'2012-11-22 01:46:23',NULL),(1,63,8515,'2012-11-22 01:46:23',NULL),(1,115,8515,'2012-11-22 01:46:23',NULL),(1,63,8512,'2012-11-22 01:46:24',1),(1,115,8512,'2012-11-22 01:46:24',1),(1,56,8509,'2012-11-22 01:46:24',1),(1,221,8509,'2012-11-22 01:46:24',1),(1,222,8509,'2012-11-22 01:46:24',1),(1,146,8509,'2012-11-22 01:46:24',1),(1,194,8509,'2012-11-22 01:46:24',1),(1,181,8509,'2012-11-22 01:46:24',1),(1,248,8509,'2012-11-22 01:46:24',1),(1,193,8509,'2012-11-22 01:46:24',1),(1,146,8510,'2012-11-22 01:46:24',1),(1,194,8510,'2012-11-22 01:46:24',1),(1,181,8510,'2012-11-22 01:46:24',1),(1,248,8510,'2012-11-22 01:46:24',1),(1,63,8454,'2012-11-22 01:46:31',1),(1,115,8454,'2012-11-22 01:46:31',1),(1,222,8466,'2012-11-22 01:46:53',1),(1,146,8466,'2012-11-22 01:46:53',1),(1,194,8466,'2012-11-22 01:46:53',1),(1,181,8466,'2012-11-22 01:46:53',1),(1,248,8466,'2012-11-22 01:46:53',1),(1,193,8466,'2012-11-22 01:46:53',1),(1,63,8466,'2012-11-22 01:46:53',1),(1,115,8466,'2012-11-22 01:46:53',1),(1,4,8449,'2012-11-22 01:46:53',1),(1,224,8467,'2012-11-22 01:46:53',1),(1,221,8467,'2012-11-22 01:46:53',1),(1,222,8467,'2012-11-22 01:46:53',1),(1,146,8467,'2012-11-22 01:46:53',1),(1,194,8467,'2012-11-22 01:46:53',1),(1,181,8467,'2012-11-22 01:46:53',1),(1,248,8467,'2012-11-22 01:46:53',1),(1,193,8467,'2012-11-22 01:46:53',1),(1,6,8540,'2012-11-22 02:46:13',1),(1,4,8540,'2012-11-22 02:46:13',1),(1,228,8534,'2012-11-22 02:46:13',1),(1,146,8535,'2012-11-22 02:46:21',1),(1,194,8535,'2012-11-22 02:46:21',1),(1,181,8535,'2012-11-22 02:46:21',1),(1,248,8535,'2012-11-22 02:46:21',1),(1,193,8535,'2012-11-22 02:46:21',1),(1,63,8535,'2012-11-22 02:46:21',1),(1,115,8535,'2012-11-22 02:46:21',1),(1,8,8535,'2012-11-22 02:46:21',1),(1,146,8536,'2012-11-22 02:46:21',1),(1,194,8536,'2012-11-22 02:46:21',1),(1,181,8536,'2012-11-22 02:46:21',1),(1,248,8536,'2012-11-22 02:46:21',1),(1,193,8536,'2012-11-22 02:46:21',1),(1,63,8536,'2012-11-22 02:46:21',1),(1,115,8536,'2012-11-22 02:46:21',1),(1,8,8536,'2012-11-22 02:46:21',1),(1,6,8537,'2012-11-22 02:46:21',1),(1,4,8537,'2012-11-22 02:46:21',1),(1,224,8545,'2012-11-22 02:46:22',1),(1,115,8544,'2012-11-22 02:46:29',1),(1,8,8544,'2012-11-22 02:46:29',1),(1,6,8544,'2012-11-22 02:46:29',1),(1,202,8544,'2012-11-22 02:46:29',1),(1,6,8543,'2012-11-22 02:46:31',1),(1,4,8543,'2012-11-22 02:46:31',1),(1,224,8533,'2012-11-22 02:46:38',1),(1,228,8533,'2012-11-22 02:46:38',1),(1,6,8550,'2012-11-22 02:46:38',1),(1,4,8541,'2012-11-22 03:16:15',1),(1,92,8541,'2012-11-22 03:16:15',1),(1,221,8541,'2012-11-22 03:16:15',1),(1,228,8541,'2012-11-22 03:16:15',1),(1,194,8538,'2012-11-22 03:16:31',1),(1,115,8538,'2012-11-22 03:16:31',1),(1,8,8538,'2012-11-22 03:16:31',1),(1,6,8538,'2012-11-22 03:16:31',1),(1,4,8538,'2012-11-22 03:16:31',1),(1,92,8538,'2012-11-22 03:16:31',1),(1,221,8538,'2012-11-22 03:16:31',1),(1,228,8538,'2012-11-22 03:16:31',1),(1,181,8539,'2012-11-22 03:16:31',NULL),(1,248,8539,'2012-11-22 03:16:31',NULL),(1,193,8539,'2012-11-22 03:16:31',NULL),(1,63,8539,'2012-11-22 03:16:31',NULL),(1,194,8546,'2012-11-22 03:16:39',1),(1,181,8546,'2012-11-22 03:16:39',1),(1,248,8546,'2012-11-22 03:16:39',1),(1,193,8546,'2012-11-22 03:16:39',1),(1,63,8546,'2012-11-22 03:16:39',1),(1,115,8546,'2012-11-22 03:16:39',1),(1,8,8546,'2012-11-22 03:16:39',1),(1,6,8546,'2012-11-22 03:16:39',1),(1,194,8548,'2012-11-22 03:16:47',1),(1,115,8548,'2012-11-22 03:16:47',1),(1,8,8548,'2012-11-22 03:16:47',1),(1,6,8548,'2012-11-22 03:16:47',1),(1,115,8549,'2012-11-22 03:16:47',1),(1,8,8549,'2012-11-22 03:16:47',1),(1,6,8549,'2012-11-22 03:16:47',1),(1,56,8549,'2012-11-22 03:16:47',1),(1,194,8569,'2012-11-22 03:46:12',1),(1,181,8569,'2012-11-22 03:46:12',1),(1,248,8569,'2012-11-22 03:46:12',1),(1,193,8569,'2012-11-22 03:46:12',1),(1,63,8569,'2012-11-22 03:46:12',1),(1,115,8569,'2012-11-22 03:46:12',1),(1,8,8569,'2012-11-22 03:46:12',1),(1,6,8569,'2012-11-22 03:46:12',1),(1,56,8586,'2012-11-22 03:46:13',1),(1,223,8586,'2012-11-22 03:46:13',1),(1,4,8576,'2012-11-22 03:46:21',1),(1,228,8577,'2012-11-22 03:46:23',1),(1,96,8588,'2012-11-22 03:46:28',1),(1,134,8588,'2012-11-22 03:46:28',1),(1,8,8583,'2012-11-22 03:46:37',1),(1,6,8583,'2012-11-22 03:46:37',1),(1,134,8580,'2012-11-22 03:46:38',1),(1,146,8580,'2012-11-22 03:46:38',1),(1,70,8579,'2012-11-22 03:46:45',1),(1,224,8579,'2012-11-22 03:46:45',1),(1,228,8575,'2012-11-22 04:16:22',1),(1,8,8587,'2012-11-22 04:16:30',1),(1,134,8593,'2012-11-22 04:16:33',1),(1,146,8593,'2012-11-22 04:16:33',1),(1,194,8593,'2012-11-22 04:16:33',1),(1,181,8593,'2012-11-22 04:16:33',1),(1,248,8593,'2012-11-22 04:16:33',1),(1,193,8593,'2012-11-22 04:16:33',1),(1,63,8593,'2012-11-22 04:16:33',1),(1,115,8593,'2012-11-22 04:16:33',1),(1,8,8582,'2012-11-22 04:16:38',1),(1,6,8582,'2012-11-22 04:16:38',1),(1,92,8582,'2012-11-22 04:16:38',1),(1,223,8582,'2012-11-22 04:16:38',1),(1,8,8592,'2012-11-22 04:16:39',1),(1,6,8592,'2012-11-22 04:16:39',1),(1,4,8592,'2012-11-22 04:16:39',1),(1,222,8592,'2012-11-22 04:16:39',1),(1,223,8589,'2012-11-22 04:16:54',1),(1,228,8589,'2012-11-22 04:16:54',1),(1,96,8578,'2012-11-22 04:16:55',1),(1,6,8578,'2012-11-22 04:16:55',1),(1,4,8578,'2012-11-22 04:16:55',1),(1,222,8578,'2012-11-22 04:16:55',1),(1,6,8584,'2012-11-22 04:16:55',1),(1,4,8584,'2012-11-22 04:16:55',1),(1,222,8584,'2012-11-22 04:16:55',1),(1,228,8584,'2012-11-22 04:16:55',1),(1,96,8572,'2012-11-22 04:16:55',1),(1,6,8572,'2012-11-22 04:16:55',1),(1,4,8572,'2012-11-22 04:16:55',1),(1,222,8572,'2012-11-22 04:16:55',1),(1,134,8585,'2012-11-22 04:46:32',1),(1,146,8585,'2012-11-22 04:46:32',1),(1,194,8585,'2012-11-22 04:46:32',1),(1,181,8585,'2012-11-22 04:46:32',1),(1,248,8585,'2012-11-22 04:46:32',1),(1,193,8585,'2012-11-22 04:46:32',1),(1,63,8585,'2012-11-22 04:46:32',1),(1,115,8585,'2012-11-22 04:46:32',1),(1,146,8573,'2012-11-22 04:46:50',1),(1,194,8573,'2012-11-22 04:46:50',1),(1,181,8573,'2012-11-22 04:46:50',1),(1,248,8573,'2012-11-22 04:46:50',1),(1,193,8573,'2012-11-22 04:46:50',1),(1,63,8573,'2012-11-22 04:46:50',1),(1,115,8573,'2012-11-22 04:46:50',1),(1,8,8573,'2012-11-22 04:46:50',1),(1,96,8570,'2012-11-22 04:47:05',1),(1,222,8570,'2012-11-22 04:47:05',1),(1,6,8570,'2012-11-22 04:47:05',1),(1,4,8570,'2012-11-22 04:47:05',1),(1,134,8571,'2012-11-22 05:46:53',1),(1,146,8571,'2012-11-22 05:46:53',1),(1,194,8571,'2012-11-22 05:46:53',1),(1,181,8571,'2012-11-22 05:46:53',1),(1,248,8571,'2012-11-22 05:46:53',1),(1,193,8571,'2012-11-22 05:46:53',1),(1,63,8571,'2012-11-22 05:46:53',1),(1,115,8571,'2012-11-22 05:46:53',1),(1,96,8591,'2012-11-22 05:46:54',1),(1,146,8591,'2012-11-22 05:46:54',1),(1,194,8591,'2012-11-22 05:46:54',1),(1,181,8591,'2012-11-22 05:46:54',1),(1,248,8591,'2012-11-22 05:46:54',1),(1,193,8591,'2012-11-22 05:46:54',1),(1,63,8591,'2012-11-22 05:46:54',1),(1,115,8591,'2012-11-22 05:46:54',1),(1,10,8542,'2012-11-22 08:46:40',1),(1,90,8542,'2012-11-22 08:46:40',1),(1,237,8542,'2012-11-22 08:46:40',1),(1,134,8542,'2012-11-22 08:46:40',1),(1,146,8542,'2012-11-22 08:46:40',1),(1,248,8542,'2012-11-22 08:46:40',1),(1,193,8542,'2012-11-22 08:46:40',1),(1,169,8542,'2012-11-22 08:46:40',1),(1,63,8542,'2012-11-22 08:46:40',1),(1,73,8542,'2012-11-22 08:46:40',1),(1,115,8542,'2012-11-22 08:46:40',1),(1,8,8542,'2012-11-22 08:46:40',1),(1,13,8542,'2012-11-22 08:46:40',1),(1,112,8542,'2012-11-22 08:46:40',1),(1,65,8542,'2012-11-22 08:46:40',1),(1,6,8542,'2012-11-22 08:46:40',1),(1,237,8547,'2012-11-22 08:47:04',1),(1,134,8547,'2012-11-22 08:47:04',1),(1,146,8547,'2012-11-22 08:47:04',1),(1,194,8547,'2012-11-22 08:47:04',1),(1,248,8547,'2012-11-22 08:47:04',1),(1,193,8547,'2012-11-22 08:47:04',1),(1,169,8547,'2012-11-22 08:47:04',1),(1,63,8547,'2012-11-22 08:47:04',1),(1,73,8547,'2012-11-22 08:47:04',1),(1,115,8547,'2012-11-22 08:47:04',1),(1,8,8547,'2012-11-22 08:47:04',1),(1,13,8547,'2012-11-22 08:47:04',1),(1,112,8547,'2012-11-22 08:47:04',1),(1,65,8547,'2012-11-22 08:47:04',1),(1,6,8547,'2012-11-22 08:47:04',1),(1,4,8547,'2012-11-22 08:47:04',1),(1,96,8590,'2012-11-22 09:16:35',1),(1,40,8590,'2012-11-22 09:16:35',1),(1,170,8590,'2012-11-22 09:16:35',1),(1,46,8590,'2012-11-22 09:16:35',1),(1,167,8590,'2012-11-22 09:16:35',1),(1,232,8590,'2012-11-22 09:16:35',1),(1,111,8590,'2012-11-22 09:16:35',1),(1,180,8590,'2012-11-22 09:16:35',1),(1,34,8590,'2012-11-22 09:16:35',1),(1,29,8590,'2012-11-22 09:16:35',1),(1,106,8590,'2012-11-22 09:16:35',1),(1,83,8590,'2012-11-22 09:16:35',1),(1,85,8590,'2012-11-22 09:16:35',1),(1,17,8590,'2012-11-22 09:16:35',1),(1,192,8590,'2012-11-22 09:16:35',1),(1,144,8590,'2012-11-22 09:16:35',1),(1,188,8581,'2012-11-22 09:16:35',1),(1,59,8581,'2012-11-22 09:16:35',1),(1,86,8581,'2012-11-22 09:16:35',1),(1,87,8581,'2012-11-22 09:16:35',1),(1,173,8581,'2012-11-22 09:16:35',1),(1,80,8581,'2012-11-22 09:16:35',1),(1,116,8581,'2012-11-22 09:16:35',1),(1,129,8581,'2012-11-22 09:16:35',1),(1,117,8581,'2012-11-22 09:16:35',1),(1,166,8581,'2012-11-22 09:16:35',1),(1,75,8581,'2012-11-22 09:16:35',1),(1,55,8581,'2012-11-22 09:16:35',1),(1,132,8581,'2012-11-22 09:16:35',1),(1,61,8581,'2012-11-22 09:16:35',1),(1,5,8581,'2012-11-22 09:16:35',1),(1,241,8581,'2012-11-22 09:16:35',1),(1,25,8574,'2012-11-22 15:47:10',1),(1,125,8574,'2012-11-22 15:47:10',1),(1,118,8574,'2012-11-22 15:47:10',1),(1,119,8574,'2012-11-22 15:47:10',1),(1,136,8574,'2012-11-22 15:47:10',1),(1,137,8574,'2012-11-22 15:47:10',1),(1,97,8574,'2012-11-22 15:47:10',1),(1,139,8574,'2012-11-22 15:47:10',1),(1,11,8574,'2012-11-22 15:47:10',1),(1,151,8574,'2012-11-22 15:47:10',1),(1,187,8574,'2012-11-22 15:47:10',1),(1,143,8574,'2012-11-22 15:47:10',1),(1,182,8574,'2012-11-22 15:47:10',1),(1,70,8574,'2012-11-22 15:47:10',1),(1,223,8574,'2012-11-22 15:47:10',1),(1,91,8574,'2012-11-22 15:47:10',1),(1,4,8621,'2012-11-23 00:46:15',1),(1,165,8622,'2012-11-23 00:46:15',1),(1,175,8622,'2012-11-23 00:46:15',1),(1,176,8623,'2012-11-23 00:46:15',1),(1,109,8623,'2012-11-23 00:46:15',1),(1,176,8624,'2012-11-23 00:46:15',1),(1,109,8624,'2012-11-23 00:46:15',1),(1,176,8625,'2012-11-23 00:46:23',1),(1,109,8625,'2012-11-23 00:46:23',1),(1,18,8628,'2012-11-23 00:46:23',1),(1,26,8628,'2012-11-23 00:46:23',1),(1,176,8628,'2012-11-23 00:46:23',1),(1,109,8628,'2012-11-23 00:46:23',1),(1,233,8627,'2012-11-23 00:46:23',1),(1,165,8627,'2012-11-23 00:46:23',1),(1,109,8626,'2012-11-23 00:46:23',1),(1,41,8631,'2012-11-23 00:46:31',1),(1,152,8631,'2012-11-23 00:46:31',1),(1,28,8631,'2012-11-23 00:46:31',1),(1,162,8631,'2012-11-23 00:46:31',1),(1,41,8629,'2012-11-23 00:46:31',1),(1,152,8629,'2012-11-23 00:46:31',1),(1,28,8629,'2012-11-23 00:46:31',1),(1,162,8629,'2012-11-23 00:46:31',1),(1,152,8630,'2012-11-23 00:46:31',1),(1,28,8630,'2012-11-23 00:46:31',1),(1,162,8630,'2012-11-23 00:46:31',1),(1,233,8630,'2012-11-23 00:46:31',1),(1,225,8632,'2012-11-23 00:46:31',1),(1,41,8632,'2012-11-23 00:46:31',1),(1,152,8632,'2012-11-23 00:46:31',1),(1,28,8632,'2012-11-23 00:46:31',1),(1,162,8632,'2012-11-23 00:46:31',1),(1,233,8632,'2012-11-23 00:46:31',1),(1,165,8632,'2012-11-23 00:46:31',1),(1,175,8632,'2012-11-23 00:46:31',1),(1,41,8633,'2012-11-23 00:46:40',1),(1,152,8633,'2012-11-23 00:46:40',1),(1,28,8633,'2012-11-23 00:46:40',1),(1,162,8633,'2012-11-23 00:46:40',1),(1,26,8634,'2012-11-23 00:46:40',1),(1,152,8634,'2012-11-23 00:46:40',1),(1,28,8634,'2012-11-23 00:46:40',1),(1,162,8634,'2012-11-23 00:46:40',1),(1,233,8634,'2012-11-23 00:46:40',1),(1,165,8634,'2012-11-23 00:46:40',1),(1,175,8634,'2012-11-23 00:46:40',1),(1,176,8634,'2012-11-23 00:46:40',1),(1,135,8635,'2012-11-23 00:46:40',1),(1,26,8635,'2012-11-23 00:46:40',1),(1,41,8635,'2012-11-23 00:46:40',1),(1,152,8635,'2012-11-23 00:46:40',1),(1,28,8635,'2012-11-23 00:46:40',1),(1,162,8635,'2012-11-23 00:46:40',1),(1,175,8635,'2012-11-23 00:46:40',1),(1,176,8635,'2012-11-23 00:46:40',1),(1,26,8636,'2012-11-23 00:46:40',1),(1,41,8636,'2012-11-23 00:46:40',1),(1,152,8636,'2012-11-23 00:46:40',1),(1,28,8636,'2012-11-23 00:46:40',1),(1,162,8636,'2012-11-23 00:46:40',1),(1,233,8636,'2012-11-23 00:46:40',1),(1,165,8636,'2012-11-23 00:46:40',1),(1,175,8636,'2012-11-23 00:46:40',1),(1,18,8637,'2012-11-23 00:46:49',1),(1,152,8637,'2012-11-23 00:46:49',1),(1,28,8637,'2012-11-23 00:46:49',1),(1,162,8637,'2012-11-23 00:46:49',1),(1,175,8637,'2012-11-23 00:46:49',1),(1,176,8637,'2012-11-23 00:46:49',1),(1,109,8637,'2012-11-23 00:46:49',1),(1,4,8637,'2012-11-23 00:46:49',1),(1,175,8639,'2012-11-23 00:46:49',1),(1,4,8638,'2012-11-23 00:46:49',1),(1,4,8620,'2012-11-23 00:46:49',1),(1,41,8681,'2012-11-23 01:46:13',1),(1,152,8681,'2012-11-23 01:46:13',1),(1,28,8681,'2012-11-23 01:46:13',1),(1,162,8681,'2012-11-23 01:46:13',1),(1,109,8683,'2012-11-23 01:46:13',1),(1,4,8683,'2012-11-23 01:46:13',1),(1,176,8684,'2012-11-23 01:46:13',1),(1,109,8684,'2012-11-23 01:46:13',1),(1,4,8682,'2012-11-23 01:46:13',1),(1,26,8685,'2012-11-23 01:46:21',1),(1,18,8686,'2012-11-23 01:46:21',1),(1,41,8686,'2012-11-23 01:46:21',1),(1,152,8686,'2012-11-23 01:46:21',1),(1,28,8686,'2012-11-23 01:46:21',1),(1,162,8686,'2012-11-23 01:46:21',1),(1,233,8686,'2012-11-23 01:46:21',1),(1,165,8686,'2012-11-23 01:46:21',1),(1,175,8686,'2012-11-23 01:46:21',1),(1,233,8687,'2012-11-23 01:46:21',1),(1,165,8687,'2012-11-23 01:46:21',1),(1,175,8687,'2012-11-23 01:46:21',1),(1,4,8687,'2012-11-23 01:46:21',1),(1,41,8680,'2012-11-23 01:46:21',1),(1,152,8680,'2012-11-23 01:46:21',1),(1,28,8680,'2012-11-23 01:46:21',1),(1,162,8680,'2012-11-23 01:46:21',1),(1,233,8680,'2012-11-23 01:46:21',1),(1,165,8680,'2012-11-23 01:46:21',1),(1,175,8680,'2012-11-23 01:46:21',1),(1,176,8680,'2012-11-23 01:46:21',1),(1,224,8705,'2012-11-23 02:46:13',1),(1,151,8706,'2012-11-23 02:46:13',1),(1,197,8706,'2012-11-23 02:46:13',1),(1,225,8706,'2012-11-23 02:46:13',1),(1,41,8706,'2012-11-23 02:46:13',1),(1,152,8706,'2012-11-23 02:46:13',1),(1,28,8706,'2012-11-23 02:46:13',1),(1,162,8706,'2012-11-23 02:46:13',1),(1,233,8706,'2012-11-23 02:46:13',1),(1,70,8708,'2012-11-23 02:46:13',1),(1,92,8708,'2012-11-23 02:46:13',1),(1,151,8709,'2012-11-23 02:46:21',1),(1,197,8709,'2012-11-23 02:46:21',1),(1,225,8709,'2012-11-23 02:46:21',1),(1,41,8709,'2012-11-23 02:46:21',1),(1,152,8709,'2012-11-23 02:46:21',1),(1,28,8709,'2012-11-23 02:46:21',1),(1,162,8709,'2012-11-23 02:46:21',1),(1,233,8709,'2012-11-23 02:46:21',1),(1,228,8711,'2012-11-23 02:46:22',1),(1,91,8711,'2012-11-23 02:46:22',1),(1,223,8712,'2012-11-23 02:46:22',1),(1,228,8712,'2012-11-23 02:46:22',1),(1,91,8712,'2012-11-23 02:46:22',1),(1,4,8712,'2012-11-23 02:46:22',1),(1,197,8713,'2012-11-23 02:46:29',1),(1,41,8713,'2012-11-23 02:46:29',1),(1,152,8713,'2012-11-23 02:46:29',1),(1,28,8713,'2012-11-23 02:46:29',1),(1,162,8713,'2012-11-23 02:46:29',1),(1,233,8713,'2012-11-23 02:46:29',1),(1,165,8713,'2012-11-23 02:46:29',1),(1,175,8713,'2012-11-23 02:46:29',1),(1,176,8713,'2012-11-23 02:46:29',1),(1,109,8713,'2012-11-23 02:46:29',1),(1,182,8713,'2012-11-23 02:46:29',1),(1,204,8713,'2012-11-23 02:46:29',1),(1,104,8713,'2012-11-23 02:46:29',1),(1,90,8713,'2012-11-23 02:46:29',1),(1,70,8713,'2012-11-23 02:46:29',1),(1,92,8713,'2012-11-23 02:46:29',1),(1,197,8714,'2012-11-23 02:46:30',1),(1,225,8714,'2012-11-23 02:46:30',1),(1,41,8714,'2012-11-23 02:46:30',1),(1,152,8714,'2012-11-23 02:46:30',1),(1,197,8715,'2012-11-23 02:46:31',1),(1,225,8715,'2012-11-23 02:46:31',1),(1,41,8715,'2012-11-23 02:46:31',1),(1,152,8715,'2012-11-23 02:46:31',1),(1,28,8715,'2012-11-23 02:46:31',1),(1,162,8715,'2012-11-23 02:46:31',1),(1,233,8715,'2012-11-23 02:46:31',1),(1,4,8715,'2012-11-23 02:46:31',1),(1,151,8716,'2012-11-23 02:46:31',1),(1,197,8716,'2012-11-23 02:46:31',1),(1,225,8716,'2012-11-23 02:46:31',1),(1,41,8716,'2012-11-23 02:46:31',1),(1,152,8716,'2012-11-23 02:46:31',1),(1,28,8716,'2012-11-23 02:46:31',1),(1,162,8716,'2012-11-23 02:46:31',1),(1,233,8716,'2012-11-23 02:46:31',1),(1,165,8716,'2012-11-23 02:46:31',1),(1,175,8716,'2012-11-23 02:46:31',1),(1,176,8716,'2012-11-23 02:46:31',1),(1,109,8716,'2012-11-23 02:46:31',1),(1,182,8716,'2012-11-23 02:46:31',1),(1,204,8716,'2012-11-23 02:46:31',1),(1,104,8716,'2012-11-23 02:46:31',1),(1,90,8716,'2012-11-23 02:46:31',1),(1,133,8719,'2012-11-23 02:46:39',1),(1,224,8719,'2012-11-23 02:46:39',1),(1,224,8704,'2012-11-23 02:46:39',1),(1,4,8720,'2012-11-23 02:46:45',1),(1,90,8721,'2012-11-23 02:46:45',1),(1,204,8721,'2012-11-23 02:46:45',1),(1,165,8707,'2012-11-23 03:16:15',1),(1,175,8707,'2012-11-23 03:16:15',1),(1,176,8707,'2012-11-23 03:16:15',1),(1,109,8707,'2012-11-23 03:16:15',1),(1,182,8707,'2012-11-23 03:16:15',1),(1,228,8707,'2012-11-23 03:16:15',1),(1,91,8707,'2012-11-23 03:16:15',1),(1,104,8707,'2012-11-23 03:16:15',1),(1,187,8710,'2012-11-23 03:16:25',NULL),(1,143,8710,'2012-11-23 03:16:25',NULL),(1,70,8710,'2012-11-23 03:16:25',NULL),(1,92,8710,'2012-11-23 03:16:25',NULL),(1,133,8718,'2012-11-23 03:16:39',1),(1,197,8718,'2012-11-23 03:16:39',1),(1,225,8718,'2012-11-23 03:16:39',1),(1,41,8718,'2012-11-23 03:16:39',1),(1,28,8717,'2012-11-23 03:16:39',1),(1,162,8717,'2012-11-23 03:16:39',1),(1,233,8717,'2012-11-23 03:16:39',1),(1,90,8717,'2012-11-23 03:16:39',1),(1,104,8741,'2012-11-23 03:46:12',1),(1,90,8741,'2012-11-23 03:46:12',1),(1,223,8741,'2012-11-23 03:46:12',1),(1,228,8741,'2012-11-23 03:46:12',1),(1,139,8762,'2012-11-23 03:46:12',1),(1,197,8762,'2012-11-23 03:46:12',1),(1,91,8763,'2012-11-23 03:46:12',1),(1,4,8763,'2012-11-23 03:46:12',1),(1,104,8740,'2012-11-23 03:46:12',1),(1,90,8740,'2012-11-23 03:46:12',1),(1,223,8740,'2012-11-23 03:46:12',1),(1,228,8740,'2012-11-23 03:46:12',1),(1,151,8757,'2012-11-23 03:46:21',1),(1,4,8757,'2012-11-23 03:46:21',1),(1,181,8745,'2012-11-23 03:46:21',1),(1,204,8746,'2012-11-23 03:46:21',1),(1,151,8748,'2012-11-23 03:46:29',1),(1,4,8748,'2012-11-23 03:46:29',1),(1,4,8755,'2012-11-23 03:46:45',1),(1,97,8756,'2012-11-23 03:46:45',1),(1,3,8756,'2012-11-23 03:46:45',1),(1,139,8764,'2012-11-23 03:46:53',1),(1,197,8764,'2012-11-23 03:46:53',1),(1,151,8744,'2012-11-23 03:46:54',1),(1,104,8747,'2012-11-23 04:16:31',1),(1,90,8747,'2012-11-23 04:16:31',1),(1,223,8747,'2012-11-23 04:16:31',1),(1,228,8747,'2012-11-23 04:16:31',1),(1,104,8750,'2012-11-23 04:16:35',1),(1,90,8750,'2012-11-23 04:16:35',1),(1,223,8750,'2012-11-23 04:16:35',1),(1,228,8750,'2012-11-23 04:16:35',1),(1,241,8753,'2012-11-23 04:16:39',1),(1,25,8753,'2012-11-23 04:16:39',1),(1,151,8753,'2012-11-23 04:16:39',1),(1,165,8753,'2012-11-23 04:16:39',1),(1,241,8761,'2012-11-23 04:16:48',1),(1,104,8761,'2012-11-23 04:16:48',1),(1,90,8761,'2012-11-23 04:16:48',1),(1,223,8761,'2012-11-23 04:16:48',1),(1,228,8761,'2012-11-23 04:16:48',1),(1,91,8761,'2012-11-23 04:16:48',1),(1,151,8761,'2012-11-23 04:16:48',1),(1,165,8761,'2012-11-23 04:16:48',1),(1,104,8760,'2012-11-23 04:16:55',1),(1,90,8760,'2012-11-23 04:16:55',1),(1,223,8760,'2012-11-23 04:16:55',1),(1,228,8760,'2012-11-23 04:16:55',1),(1,241,8742,'2012-11-23 04:16:56',1),(1,104,8742,'2012-11-23 04:16:56',1),(1,90,8742,'2012-11-23 04:16:56',1),(1,223,8742,'2012-11-23 04:16:56',1),(1,228,8742,'2012-11-23 04:16:56',1),(1,91,8742,'2012-11-23 04:16:56',1),(1,3,8742,'2012-11-23 04:16:56',1),(1,151,8742,'2012-11-23 04:16:56',1),(1,241,8754,'2012-11-23 04:46:42',1),(1,104,8754,'2012-11-23 04:46:42',1),(1,90,8754,'2012-11-23 04:46:42',1),(1,223,8754,'2012-11-23 04:46:42',1),(1,228,8754,'2012-11-23 04:46:42',1),(1,91,8754,'2012-11-23 04:46:42',1),(1,165,8754,'2012-11-23 04:46:42',1),(1,4,8754,'2012-11-23 04:46:42',1),(1,241,8751,'2012-11-23 05:16:43',1),(1,104,8751,'2012-11-23 05:16:43',1),(1,90,8751,'2012-11-23 05:16:43',1),(1,223,8751,'2012-11-23 05:16:43',1),(1,228,8751,'2012-11-23 05:16:43',1),(1,91,8751,'2012-11-23 05:16:43',1),(1,137,8751,'2012-11-23 05:16:43',1),(1,26,8751,'2012-11-23 05:16:43',1),(1,247,8758,'2012-11-23 05:46:28',1),(1,94,8758,'2012-11-23 05:46:28',1),(1,160,8758,'2012-11-23 05:46:28',1),(1,16,8758,'2012-11-23 05:46:28',1),(1,244,8758,'2012-11-23 05:46:28',1),(1,95,8758,'2012-11-23 05:46:28',1),(1,88,8758,'2012-11-23 05:46:28',1),(1,113,8758,'2012-11-23 05:46:28',1),(1,184,8758,'2012-11-23 05:46:28',1),(1,140,8758,'2012-11-23 05:46:28',1),(1,227,8758,'2012-11-23 05:46:28',1),(1,246,8758,'2012-11-23 05:46:28',1),(1,89,8758,'2012-11-23 05:46:28',1),(1,126,8758,'2012-11-23 05:46:28',1),(1,79,8758,'2012-11-23 05:46:28',1),(1,44,8758,'2012-11-23 05:46:28',1),(1,45,8749,'2012-11-23 05:46:37',1),(1,12,8749,'2012-11-23 05:46:37',1),(1,154,8749,'2012-11-23 05:46:37',1),(1,47,8749,'2012-11-23 05:46:37',1),(1,51,8749,'2012-11-23 05:46:37',1),(1,179,8749,'2012-11-23 05:46:37',1),(1,161,8749,'2012-11-23 05:46:37',1),(1,165,8749,'2012-11-23 05:46:37',1),(1,177,8749,'2012-11-23 05:46:37',1),(1,72,8749,'2012-11-23 05:46:37',1),(1,148,8749,'2012-11-23 05:46:37',1),(1,35,8749,'2012-11-23 05:46:37',1),(1,251,8749,'2012-11-23 05:46:37',1),(1,172,8749,'2012-11-23 05:46:37',1),(1,191,8749,'2012-11-23 05:46:37',1),(1,84,8749,'2012-11-23 05:46:37',1),(1,241,8752,'2012-11-23 05:46:45',1),(1,104,8752,'2012-11-23 05:46:45',1),(1,90,8752,'2012-11-23 05:46:45',1),(1,223,8752,'2012-11-23 05:46:45',1),(1,228,8752,'2012-11-23 05:46:45',1),(1,91,8752,'2012-11-23 05:46:45',1),(1,135,8752,'2012-11-23 05:46:45',1),(1,137,8752,'2012-11-23 05:46:45',1),(1,135,8759,'2012-11-23 05:46:53',1),(1,137,8759,'2012-11-23 05:46:53',1),(1,3,8759,'2012-11-23 05:46:53',1),(1,214,8759,'2012-11-23 05:46:53',1),(1,105,8759,'2012-11-23 05:46:53',1),(1,210,8759,'2012-11-23 05:46:53',1),(1,90,8759,'2012-11-23 05:46:53',1),(1,223,8759,'2012-11-23 05:46:53',1),(1,93,8743,'2012-11-23 05:47:08',1),(1,15,8743,'2012-11-23 05:47:08',1),(1,156,8743,'2012-11-23 05:47:08',1),(1,203,8743,'2012-11-23 05:47:08',1),(1,185,8743,'2012-11-23 05:47:08',1),(1,108,8743,'2012-11-23 05:47:08',1),(1,102,8743,'2012-11-23 05:47:08',1),(1,103,8743,'2012-11-23 05:47:08',1),(1,38,8743,'2012-11-23 05:47:08',1),(1,60,8743,'2012-11-23 05:47:08',1),(1,198,8743,'2012-11-23 05:47:08',1),(1,212,8743,'2012-11-23 05:47:08',1),(1,69,8743,'2012-11-23 05:47:08',1),(1,52,8743,'2012-11-23 05:47:08',1),(1,214,8743,'2012-11-23 05:47:08',1),(1,105,8743,'2012-11-23 05:47:08',1),(1,152,8795,'2012-11-24 00:46:19',1),(1,119,8793,'2012-11-24 00:46:19',1),(1,3,8793,'2012-11-24 00:46:19',1),(1,124,8794,'2012-11-24 00:46:19',1),(1,152,8794,'2012-11-24 00:46:19',1),(1,25,8792,'2012-11-24 00:46:19',1),(1,124,8792,'2012-11-24 00:46:19',1),(1,119,8796,'2012-11-24 00:46:31',1),(1,3,8796,'2012-11-24 00:46:31',1),(1,119,8797,'2012-11-24 00:46:31',1),(1,3,8797,'2012-11-24 00:46:31',1),(1,124,8797,'2012-11-24 00:46:31',1),(1,152,8797,'2012-11-24 00:46:31',1),(1,118,8799,'2012-11-24 00:46:31',1),(1,119,8799,'2012-11-24 00:46:31',1),(1,3,8799,'2012-11-24 00:46:31',1),(1,124,8799,'2012-11-24 00:46:31',1),(1,224,8798,'2012-11-24 00:46:31',1),(1,135,8798,'2012-11-24 00:46:31',1),(1,119,8798,'2012-11-24 00:46:31',1),(1,3,8798,'2012-11-24 00:46:31',1),(1,125,8800,'2012-11-24 00:46:39',1),(1,119,8800,'2012-11-24 00:46:39',1),(1,3,8800,'2012-11-24 00:46:39',1),(1,152,8800,'2012-11-24 00:46:39',1),(1,135,8802,'2012-11-24 00:46:39',1),(1,119,8802,'2012-11-24 00:46:39',1),(1,3,8802,'2012-11-24 00:46:39',1),(1,124,8802,'2012-11-24 00:46:39',1),(1,152,8807,'2012-11-24 00:46:51',1),(1,135,8808,'2012-11-24 00:46:59',1),(1,124,8790,'2012-11-24 00:46:59',1),(1,3,8791,'2012-11-24 00:46:59',1),(1,124,8791,'2012-11-24 00:46:59',1),(1,152,8809,'2012-11-24 00:47:00',1),(1,249,8801,'2012-11-24 01:16:40',1),(1,160,8801,'2012-11-24 01:16:40',1),(1,183,8801,'2012-11-24 01:16:40',1),(1,135,8801,'2012-11-24 01:16:40',1),(1,119,8801,'2012-11-24 01:16:40',1),(1,3,8801,'2012-11-24 01:16:40',1),(1,124,8801,'2012-11-24 01:16:40',1),(1,152,8801,'2012-11-24 01:16:40',1),(1,135,8851,'2012-11-24 01:46:14',1),(1,124,8852,'2012-11-24 01:46:14',1),(1,152,8852,'2012-11-24 01:46:14',1),(1,3,8854,'2012-11-24 01:46:14',1),(1,135,8850,'2012-11-24 01:46:21',1),(1,118,8850,'2012-11-24 01:46:21',1),(1,119,8850,'2012-11-24 01:46:21',1),(1,3,8850,'2012-11-24 01:46:21',1),(1,247,8856,'2012-11-24 01:46:21',1),(1,135,8856,'2012-11-24 01:46:21',1),(1,118,8856,'2012-11-24 01:46:21',1),(1,119,8856,'2012-11-24 01:46:21',1),(1,124,8853,'2012-11-24 01:46:21',1),(1,152,8853,'2012-11-24 01:46:21',1),(1,25,8803,'2012-11-24 01:46:43',1),(1,125,8803,'2012-11-24 01:46:43',1),(1,135,8803,'2012-11-24 01:46:43',1),(1,118,8803,'2012-11-24 01:46:43',1),(1,119,8803,'2012-11-24 01:46:43',1),(1,3,8803,'2012-11-24 01:46:43',1),(1,124,8803,'2012-11-24 01:46:43',1),(1,152,8803,'2012-11-24 01:46:43',1),(1,133,8805,'2012-11-24 02:16:55',1),(1,25,8805,'2012-11-24 02:16:55',1),(1,135,8805,'2012-11-24 02:16:55',1),(1,118,8805,'2012-11-24 02:16:55',1),(1,119,8805,'2012-11-24 02:16:55',1),(1,3,8805,'2012-11-24 02:16:55',1),(1,124,8805,'2012-11-24 02:16:55',1),(1,152,8805,'2012-11-24 02:16:55',1),(1,160,8883,'2012-11-24 02:46:12',1),(1,135,8883,'2012-11-24 02:46:12',1),(1,118,8883,'2012-11-24 02:46:12',1),(1,119,8883,'2012-11-24 02:46:12',1),(1,160,8887,'2012-11-24 02:46:12',1),(1,119,8887,'2012-11-24 02:46:12',1),(1,124,8887,'2012-11-24 02:46:12',1),(1,152,8887,'2012-11-24 02:46:12',1),(1,124,8891,'2012-11-24 02:46:12',1),(1,152,8891,'2012-11-24 02:46:12',1),(1,3,8890,'2012-11-24 02:46:20',1),(1,133,8889,'2012-11-24 02:46:21',1),(1,135,8880,'2012-11-24 02:46:23',1),(1,118,8880,'2012-11-24 02:46:23',1),(1,133,8881,'2012-11-24 02:46:30',1),(1,119,8881,'2012-11-24 02:46:30',1),(1,3,8881,'2012-11-24 02:46:30',1),(1,124,8881,'2012-11-24 02:46:30',1),(1,160,8886,'2012-11-24 02:46:38',1),(1,135,8886,'2012-11-24 02:46:38',1),(1,118,8886,'2012-11-24 02:46:38',1),(1,152,8886,'2012-11-24 02:46:38',1),(1,135,8888,'2012-11-24 02:46:38',1),(1,118,8888,'2012-11-24 02:46:38',1),(1,119,8874,'2012-11-24 02:46:38',1),(1,247,8877,'2012-11-24 02:46:46',1),(1,160,8877,'2012-11-24 02:46:46',1),(1,160,8879,'2012-11-24 03:16:47',NULL),(1,135,8879,'2012-11-24 03:16:47',NULL),(1,118,8879,'2012-11-24 03:16:47',NULL),(1,152,8879,'2012-11-24 03:16:47',NULL),(1,160,8804,'2012-11-24 03:17:00',1),(1,133,8804,'2012-11-24 03:17:00',1),(1,135,8804,'2012-11-24 03:17:00',1),(1,118,8804,'2012-11-24 03:17:00',1),(1,119,8804,'2012-11-24 03:17:00',1),(1,3,8804,'2012-11-24 03:17:00',1),(1,124,8804,'2012-11-24 03:17:00',1),(1,152,8804,'2012-11-24 03:17:00',1),(1,249,8806,'2012-11-24 03:17:02',1),(1,160,8806,'2012-11-24 03:17:02',1),(1,133,8806,'2012-11-24 03:17:02',1),(1,135,8806,'2012-11-24 03:17:02',1),(1,118,8806,'2012-11-24 03:17:02',1),(1,119,8806,'2012-11-24 03:17:02',1),(1,3,8806,'2012-11-24 03:17:02',1),(1,124,8806,'2012-11-24 03:17:02',1),(1,3,8925,'2012-11-24 03:46:13',1),(1,124,8925,'2012-11-24 03:46:13',1),(1,160,8884,'2012-11-24 03:46:16',1),(1,133,8884,'2012-11-24 03:46:16',1),(1,135,8884,'2012-11-24 03:46:16',1),(1,118,8884,'2012-11-24 03:46:16',1),(1,119,8884,'2012-11-24 03:46:16',1),(1,3,8884,'2012-11-24 03:46:16',1),(1,124,8884,'2012-11-24 03:46:16',1),(1,152,8884,'2012-11-24 03:46:16',1),(1,152,8924,'2012-11-24 03:46:21',1),(1,160,8919,'2012-11-24 03:46:21',1),(1,125,8919,'2012-11-24 03:46:21',1),(1,124,8919,'2012-11-24 03:46:21',1),(1,152,8919,'2012-11-24 03:46:21',1),(1,125,8926,'2012-11-24 03:46:21',1),(1,124,8926,'2012-11-24 03:46:21',1),(1,160,8855,'2012-11-24 03:46:26',1),(1,133,8855,'2012-11-24 03:46:26',1),(1,135,8855,'2012-11-24 03:46:26',1),(1,118,8855,'2012-11-24 03:46:26',1),(1,119,8855,'2012-11-24 03:46:26',1),(1,3,8855,'2012-11-24 03:46:26',1),(1,124,8855,'2012-11-24 03:46:26',1),(1,152,8855,'2012-11-24 03:46:26',1),(1,160,8857,'2012-11-24 03:46:30',1),(1,133,8857,'2012-11-24 03:46:30',1),(1,135,8857,'2012-11-24 03:46:30',1),(1,118,8857,'2012-11-24 03:46:30',1),(1,119,8857,'2012-11-24 03:46:30',1),(1,3,8857,'2012-11-24 03:46:30',1),(1,124,8857,'2012-11-24 03:46:30',1),(1,152,8857,'2012-11-24 03:46:30',1),(1,152,8914,'2012-11-24 03:46:40',1),(1,125,8913,'2012-11-24 03:46:47',1),(1,125,8916,'2012-11-24 03:46:56',1),(1,3,8916,'2012-11-24 03:46:56',1),(1,124,8916,'2012-11-24 03:46:56',1),(1,152,8916,'2012-11-24 03:46:56',1),(1,133,8931,'2012-11-24 04:16:15',1),(1,135,8931,'2012-11-24 04:16:15',1),(1,118,8931,'2012-11-24 04:16:15',1),(1,119,8931,'2012-11-24 04:16:15',1),(1,133,8875,'2012-11-24 04:16:27',1),(1,125,8875,'2012-11-24 04:16:27',1),(1,135,8875,'2012-11-24 04:16:27',1),(1,118,8875,'2012-11-24 04:16:27',1),(1,119,8875,'2012-11-24 04:16:27',1),(1,3,8875,'2012-11-24 04:16:27',1),(1,124,8875,'2012-11-24 04:16:27',1),(1,152,8875,'2012-11-24 04:16:27',1),(1,125,8929,'2012-11-24 04:16:31',1),(1,3,8929,'2012-11-24 04:16:31',1),(1,124,8929,'2012-11-24 04:16:31',1),(1,152,8929,'2012-11-24 04:16:31',1),(1,247,8933,'2012-11-24 04:16:33',1),(1,152,8933,'2012-11-24 04:16:33',1),(1,133,8878,'2012-11-24 04:16:36',1),(1,125,8878,'2012-11-24 04:16:36',1),(1,135,8878,'2012-11-24 04:16:36',1),(1,118,8878,'2012-11-24 04:16:36',1),(1,119,8878,'2012-11-24 04:16:36',1),(1,3,8878,'2012-11-24 04:16:36',1),(1,124,8878,'2012-11-24 04:16:36',1),(1,152,8878,'2012-11-24 04:16:36',1),(1,133,8876,'2012-11-24 04:16:45',1),(1,125,8876,'2012-11-24 04:16:45',1),(1,135,8876,'2012-11-24 04:16:45',1),(1,118,8876,'2012-11-24 04:16:45',1),(1,119,8876,'2012-11-24 04:16:45',1),(1,3,8876,'2012-11-24 04:16:45',1),(1,124,8876,'2012-11-24 04:16:45',1),(1,152,8876,'2012-11-24 04:16:45',1),(1,160,8915,'2012-11-24 04:16:50',1),(1,133,8923,'2012-11-24 04:46:17',1),(1,25,8923,'2012-11-24 04:46:17',1),(1,125,8923,'2012-11-24 04:46:17',1),(1,135,8923,'2012-11-24 04:46:17',1),(1,118,8923,'2012-11-24 04:46:17',1),(1,119,8923,'2012-11-24 04:46:17',1),(1,3,8923,'2012-11-24 04:46:17',1),(1,124,8923,'2012-11-24 04:46:17',1),(1,133,8930,'2012-11-24 04:46:38',1),(1,25,8930,'2012-11-24 04:46:38',1),(1,125,8930,'2012-11-24 04:46:38',1),(1,135,8930,'2012-11-24 04:46:38',1),(1,118,8930,'2012-11-24 04:46:38',1),(1,119,8930,'2012-11-24 04:46:38',1),(1,3,8930,'2012-11-24 04:46:38',1),(1,124,8930,'2012-11-24 04:46:38',1),(1,25,8910,'2012-11-24 04:46:42',1),(1,125,8910,'2012-11-24 04:46:42',1),(1,135,8910,'2012-11-24 04:46:42',1),(1,118,8910,'2012-11-24 04:46:42',1),(1,247,8934,'2012-11-24 04:46:44',1),(1,152,8934,'2012-11-24 04:46:44',1),(1,119,8932,'2012-11-24 04:46:45',1),(1,3,8932,'2012-11-24 04:46:45',1),(1,247,8917,'2012-11-24 05:17:00',1),(1,152,8917,'2012-11-24 05:17:00',1),(1,25,8922,'2012-11-24 05:17:10',1),(1,125,8922,'2012-11-24 05:17:10',1),(1,135,8922,'2012-11-24 05:17:10',1),(1,118,8922,'2012-11-24 05:17:10',1),(1,65,8928,'2012-11-24 06:16:23',NULL),(1,132,8928,'2012-11-24 06:16:23',NULL),(1,9,8928,'2012-11-24 06:16:23',NULL),(1,10,8928,'2012-11-24 06:16:23',NULL),(1,61,8928,'2012-11-24 06:16:23',NULL),(1,5,8928,'2012-11-24 06:16:23',NULL),(1,224,8928,'2012-11-24 06:16:23',NULL),(1,4,8928,'2012-11-24 06:16:23',NULL),(1,112,8911,'2012-11-24 06:46:57',1),(1,65,8911,'2012-11-24 06:46:57',1),(1,132,8911,'2012-11-24 06:46:57',1),(1,9,8911,'2012-11-24 06:46:57',1),(1,10,8911,'2012-11-24 06:46:57',1),(1,61,8911,'2012-11-24 06:46:57',1),(1,5,8911,'2012-11-24 06:46:57',1),(1,224,8911,'2012-11-24 06:46:57',1),(1,55,8920,'2012-11-24 07:17:08',NULL),(1,9,8920,'2012-11-24 07:17:08',NULL),(1,10,8920,'2012-11-24 07:17:08',NULL),(1,61,8920,'2012-11-24 07:17:08',NULL),(1,5,8920,'2012-11-24 07:17:08',NULL),(1,224,8920,'2012-11-24 07:17:08',NULL),(1,4,8920,'2012-11-24 07:17:08',NULL),(1,133,8920,'2012-11-24 07:17:08',NULL),(1,55,8921,'2012-11-24 07:47:12',1),(1,202,8921,'2012-11-24 07:47:12',1),(1,9,8921,'2012-11-24 07:47:12',1),(1,10,8921,'2012-11-24 07:47:12',1),(1,61,8921,'2012-11-24 07:47:12',1),(1,5,8921,'2012-11-24 07:47:12',1),(1,224,8921,'2012-11-24 07:47:12',1),(1,4,8921,'2012-11-24 07:47:12',1),(1,112,8882,'2012-11-24 09:16:59',1),(1,65,8882,'2012-11-24 09:16:59',1),(1,10,8882,'2012-11-24 09:16:59',1),(1,61,8882,'2012-11-24 09:16:59',1),(1,5,8882,'2012-11-24 09:16:59',1),(1,224,8882,'2012-11-24 09:16:59',1),(1,91,8882,'2012-11-24 09:16:59',1),(1,141,8882,'2012-11-24 09:16:59',1),(1,138,8882,'2012-11-24 09:16:59',1),(1,82,8882,'2012-11-24 09:16:59',1),(1,120,8882,'2012-11-24 09:16:59',1),(1,121,8882,'2012-11-24 09:16:59',1),(1,122,8882,'2012-11-24 09:16:59',1),(1,123,8882,'2012-11-24 09:16:59',1),(1,150,8882,'2012-11-24 09:16:59',1),(1,48,8882,'2012-11-24 09:16:59',1),(1,112,8885,'2012-11-24 09:16:59',1),(1,65,8885,'2012-11-24 09:16:59',1),(1,10,8885,'2012-11-24 09:16:59',1),(1,61,8885,'2012-11-24 09:16:59',1),(1,5,8885,'2012-11-24 09:16:59',1),(1,224,8885,'2012-11-24 09:16:59',1),(1,91,8885,'2012-11-24 09:16:59',1),(1,141,8885,'2012-11-24 09:16:59',1),(1,138,8885,'2012-11-24 09:16:59',1),(1,82,8885,'2012-11-24 09:16:59',1),(1,120,8885,'2012-11-24 09:16:59',1),(1,121,8885,'2012-11-24 09:16:59',1),(1,122,8885,'2012-11-24 09:16:59',1),(1,123,8885,'2012-11-24 09:16:59',1),(1,150,8885,'2012-11-24 09:16:59',1),(1,48,8885,'2012-11-24 09:16:59',1),(1,245,8918,'2012-11-24 09:46:47',1),(1,220,8918,'2012-11-24 09:46:47',1),(1,164,8918,'2012-11-24 09:46:47',1),(1,239,8918,'2012-11-24 09:46:47',1),(1,43,8918,'2012-11-24 09:46:47',1),(1,147,8918,'2012-11-24 09:46:47',1),(1,153,8918,'2012-11-24 09:46:47',1),(1,21,8918,'2012-11-24 09:46:47',1),(1,127,8918,'2012-11-24 09:46:47',1),(1,71,8918,'2012-11-24 09:46:47',1),(1,28,8918,'2012-11-24 09:46:47',1),(1,186,8918,'2012-11-24 09:46:47',1),(1,155,8918,'2012-11-24 09:46:47',1),(1,158,8918,'2012-11-24 09:46:47',1),(1,98,8918,'2012-11-24 09:46:47',1),(1,57,8918,'2012-11-24 09:46:47',1),(1,112,8927,'2012-11-24 09:46:54',1),(1,65,8927,'2012-11-24 09:46:54',1),(1,10,8927,'2012-11-24 09:46:54',1),(1,61,8927,'2012-11-24 09:46:54',1),(1,5,8927,'2012-11-24 09:46:54',1),(1,224,8927,'2012-11-24 09:46:54',1),(1,91,8927,'2012-11-24 09:46:54',1),(1,141,8927,'2012-11-24 09:46:54',1),(1,138,8927,'2012-11-24 09:46:54',1),(1,82,8927,'2012-11-24 09:46:54',1),(1,120,8927,'2012-11-24 09:46:54',1),(1,121,8927,'2012-11-24 09:46:54',1),(1,122,8927,'2012-11-24 09:46:54',1),(1,123,8927,'2012-11-24 09:46:54',1),(1,150,8927,'2012-11-24 09:46:54',1),(1,48,8927,'2012-11-24 09:46:54',1),(1,55,8912,'2012-11-24 09:47:11',1),(1,202,8912,'2012-11-24 09:47:11',1),(1,220,8912,'2012-11-24 09:47:11',1),(1,164,8912,'2012-11-24 09:47:11',1),(1,239,8912,'2012-11-24 09:47:11',1),(1,43,8912,'2012-11-24 09:47:11',1),(1,147,8912,'2012-11-24 09:47:11',1),(1,153,8912,'2012-11-24 09:47:11',1),(1,21,8912,'2012-11-24 09:47:11',1),(1,127,8912,'2012-11-24 09:47:11',1),(1,71,8912,'2012-11-24 09:47:11',1),(1,28,8912,'2012-11-24 09:47:11',1),(1,186,8912,'2012-11-24 09:47:11',1),(1,155,8912,'2012-11-24 09:47:11',1),(1,158,8912,'2012-11-24 09:47:11',1),(1,98,8912,'2012-11-24 09:47:11',1),(1,54,8975,'2012-11-25 01:46:18',1),(1,152,8972,'2012-11-25 01:46:18',1),(1,57,8972,'2012-11-25 01:46:18',1),(1,235,8972,'2012-11-25 01:46:18',1),(1,54,8972,'2012-11-25 01:46:18',1),(1,163,8972,'2012-11-25 01:46:18',1),(1,58,8972,'2012-11-25 01:46:18',1),(1,1,8972,'2012-11-25 01:46:18',1),(1,33,8972,'2012-11-25 01:46:18',1),(1,6,8978,'2012-11-25 01:46:28',1),(1,219,8970,'2012-11-25 01:46:28',1),(1,67,8970,'2012-11-25 01:46:28',1),(1,207,8970,'2012-11-25 01:46:28',1),(1,91,8970,'2012-11-25 01:46:28',1),(1,67,8965,'2012-11-25 01:46:44',1),(1,206,8965,'2012-11-25 01:46:44',1),(1,49,8965,'2012-11-25 01:46:44',1),(1,211,8965,'2012-11-25 01:46:44',1),(1,145,8966,'2012-11-25 01:46:52',1),(1,219,8966,'2012-11-25 01:46:52',1),(1,201,8966,'2012-11-25 01:46:52',1),(1,67,8966,'2012-11-25 01:46:52',1),(1,58,9021,'2012-11-25 02:16:15',1),(1,1,9021,'2012-11-25 02:16:15',1),(1,152,9023,'2012-11-25 02:16:15',NULL),(1,57,9023,'2012-11-25 02:16:15',NULL),(1,235,9023,'2012-11-25 02:16:15',NULL),(1,54,9023,'2012-11-25 02:16:15',NULL),(1,163,9023,'2012-11-25 02:16:15',NULL),(1,58,9023,'2012-11-25 02:16:15',NULL),(1,1,9023,'2012-11-25 02:16:15',NULL),(1,33,9023,'2012-11-25 02:16:15',NULL),(1,145,9027,'2012-11-25 02:16:15',1),(1,219,9027,'2012-11-25 02:16:15',1),(1,201,9027,'2012-11-25 02:16:15',1),(1,67,9027,'2012-11-25 02:16:15',1),(1,152,8974,'2012-11-25 02:16:20',1),(1,57,8974,'2012-11-25 02:16:20',1),(1,235,8974,'2012-11-25 02:16:20',1),(1,54,8974,'2012-11-25 02:16:20',1),(1,163,8974,'2012-11-25 02:16:20',1),(1,58,8974,'2012-11-25 02:16:20',1),(1,1,8974,'2012-11-25 02:16:20',1),(1,33,8974,'2012-11-25 02:16:20',1),(1,152,8973,'2012-11-25 02:16:20',1),(1,57,8973,'2012-11-25 02:16:20',1),(1,235,8973,'2012-11-25 02:16:20',1),(1,54,8973,'2012-11-25 02:16:20',1),(1,163,8973,'2012-11-25 02:16:20',1),(1,58,8973,'2012-11-25 02:16:20',1),(1,1,8973,'2012-11-25 02:16:20',1),(1,33,8973,'2012-11-25 02:16:20',1),(1,152,9024,'2012-11-25 02:16:26',1),(1,57,9024,'2012-11-25 02:16:26',1),(1,235,9024,'2012-11-25 02:16:26',1),(1,54,9024,'2012-11-25 02:16:26',1),(1,163,9024,'2012-11-25 02:16:26',1),(1,58,9024,'2012-11-25 02:16:26',1),(1,1,9024,'2012-11-25 02:16:26',1),(1,33,9024,'2012-11-25 02:16:26',1),(1,145,9025,'2012-11-25 02:16:27',1),(1,219,9025,'2012-11-25 02:16:27',1),(1,201,9025,'2012-11-25 02:16:27',1),(1,67,9025,'2012-11-25 02:16:27',1),(1,1,9020,'2012-11-25 02:16:27',1),(1,201,9026,'2012-11-25 02:16:28',1),(1,67,9026,'2012-11-25 02:16:28',1),(1,6,8977,'2012-11-25 02:16:33',1),(1,211,8976,'2012-11-25 02:16:33',1),(1,152,8971,'2012-11-25 02:16:40',1),(1,57,8971,'2012-11-25 02:16:40',1),(1,235,8971,'2012-11-25 02:16:40',1),(1,54,8971,'2012-11-25 02:16:40',1),(1,163,8971,'2012-11-25 02:16:40',1),(1,58,8971,'2012-11-25 02:16:40',1),(1,1,8971,'2012-11-25 02:16:40',1),(1,33,8971,'2012-11-25 02:16:40',1),(1,201,8960,'2012-11-25 02:16:41',1),(1,67,8960,'2012-11-25 02:16:41',1),(1,201,8979,'2012-11-25 02:16:42',1),(1,67,8979,'2012-11-25 02:16:42',1),(1,201,8961,'2012-11-25 02:16:42',1),(1,67,8961,'2012-11-25 02:16:42',1),(1,201,8962,'2012-11-25 02:16:51',1),(1,67,8962,'2012-11-25 02:16:51',1),(1,201,8964,'2012-11-25 02:16:53',1),(1,67,8964,'2012-11-25 02:16:53',1),(1,33,8963,'2012-11-25 02:16:53',1),(1,152,8969,'2012-11-25 02:17:00',1),(1,57,8969,'2012-11-25 02:17:00',1),(1,235,8969,'2012-11-25 02:17:00',1),(1,54,8969,'2012-11-25 02:17:00',1),(1,163,8969,'2012-11-25 02:17:00',1),(1,58,8969,'2012-11-25 02:17:00',1),(1,1,8969,'2012-11-25 02:17:00',1),(1,33,8969,'2012-11-25 02:17:00',1),(1,145,8968,'2012-11-25 02:17:00',1),(1,219,8968,'2012-11-25 02:17:00',1),(1,201,8968,'2012-11-25 02:17:00',1),(1,67,8968,'2012-11-25 02:17:00',1),(1,145,8967,'2012-11-25 02:17:00',1),(1,219,8967,'2012-11-25 02:17:00',1),(1,201,8967,'2012-11-25 02:17:00',1),(1,67,8967,'2012-11-25 02:17:00',1),(1,152,9050,'2012-11-25 02:46:13',1),(1,57,9050,'2012-11-25 02:46:13',1),(1,235,9050,'2012-11-25 02:46:13',1),(1,54,9050,'2012-11-25 02:46:13',1),(1,58,9052,'2012-11-25 02:46:13',1),(1,201,9061,'2012-11-25 02:46:13',1),(1,67,9061,'2012-11-25 02:46:13',1),(1,58,9022,'2012-11-25 02:46:17',1),(1,58,9053,'2012-11-25 02:46:27',1),(1,58,9054,'2012-11-25 02:46:49',1),(1,145,9057,'2012-11-25 03:16:15',1),(1,219,9057,'2012-11-25 03:16:15',1),(1,211,9057,'2012-11-25 03:16:15',1),(1,6,9057,'2012-11-25 03:16:15',1),(1,152,9060,'2012-11-25 03:16:26',1),(1,57,9060,'2012-11-25 03:16:26',1),(1,235,9060,'2012-11-25 03:16:26',1),(1,54,9060,'2012-11-25 03:16:26',1),(1,152,9056,'2012-11-25 03:16:28',1),(1,57,9056,'2012-11-25 03:16:28',1),(1,235,9056,'2012-11-25 03:16:28',1),(1,54,9056,'2012-11-25 03:16:28',1),(1,206,9056,'2012-11-25 03:16:28',1),(1,49,9056,'2012-11-25 03:16:28',1),(1,222,9056,'2012-11-25 03:16:28',1),(1,4,9056,'2012-11-25 03:16:28',1),(1,152,9044,'2012-11-25 03:16:39',1),(1,57,9044,'2012-11-25 03:16:39',1),(1,235,9044,'2012-11-25 03:16:39',1),(1,54,9044,'2012-11-25 03:16:39',1),(1,206,9044,'2012-11-25 03:16:39',1),(1,49,9044,'2012-11-25 03:16:39',1),(1,222,9044,'2012-11-25 03:16:39',1),(1,4,9044,'2012-11-25 03:16:39',1),(1,211,9058,'2012-11-25 03:16:48',1),(1,222,9058,'2012-11-25 03:16:48',1),(1,6,9058,'2012-11-25 03:16:48',1),(1,4,9058,'2012-11-25 03:16:48',1),(1,152,9055,'2012-11-25 03:16:50',1),(1,57,9055,'2012-11-25 03:16:50',1),(1,235,9055,'2012-11-25 03:16:50',1),(1,54,9055,'2012-11-25 03:16:50',1),(1,206,9055,'2012-11-25 03:16:50',1),(1,49,9055,'2012-11-25 03:16:50',1),(1,222,9055,'2012-11-25 03:16:50',1),(1,4,9055,'2012-11-25 03:16:50',1),(1,152,9059,'2012-11-25 03:16:51',1),(1,57,9059,'2012-11-25 03:16:51',1),(1,235,9059,'2012-11-25 03:16:51',1),(1,54,9059,'2012-11-25 03:16:51',1),(1,206,9059,'2012-11-25 03:16:51',1),(1,49,9059,'2012-11-25 03:16:51',1),(1,222,9059,'2012-11-25 03:16:51',1),(1,4,9059,'2012-11-25 03:16:51',1),(1,145,9046,'2012-11-25 03:46:31',NULL),(1,219,9046,'2012-11-25 03:46:31',NULL),(1,206,9046,'2012-11-25 03:46:31',NULL),(1,49,9046,'2012-11-25 03:46:31',NULL),(1,145,9095,'2012-11-25 04:16:16',1),(1,219,9095,'2012-11-25 04:16:16',1),(1,206,9095,'2012-11-25 04:16:16',1),(1,49,9095,'2012-11-25 04:16:16',1),(1,145,9097,'2012-11-25 04:16:25',1),(1,219,9097,'2012-11-25 04:16:25',1),(1,206,9097,'2012-11-25 04:16:25',1),(1,49,9097,'2012-11-25 04:16:25',1),(1,145,9099,'2012-11-25 04:16:49',1),(1,219,9099,'2012-11-25 04:16:49',1),(1,206,9099,'2012-11-25 04:16:49',1),(1,49,9099,'2012-11-25 04:16:49',1),(1,145,9086,'2012-11-25 04:16:49',1),(1,219,9086,'2012-11-25 04:16:49',1),(1,206,9086,'2012-11-25 04:16:49',1),(1,49,9086,'2012-11-25 04:16:49',1),(1,145,9090,'2012-11-25 04:16:49',1),(1,219,9090,'2012-11-25 04:16:49',1),(1,206,9090,'2012-11-25 04:16:49',1),(1,49,9090,'2012-11-25 04:16:49',1),(1,206,9047,'2012-11-25 04:46:48',1),(1,49,9047,'2012-11-25 04:46:48',1),(1,145,9104,'2012-11-25 04:47:02',1),(1,219,9104,'2012-11-25 04:47:02',1),(1,206,9104,'2012-11-25 04:47:02',1),(1,49,9104,'2012-11-25 04:47:02',1),(1,206,9051,'2012-11-25 04:47:04',1),(1,49,9051,'2012-11-25 04:47:04',1),(1,206,9045,'2012-11-25 04:47:06',1),(1,49,9045,'2012-11-25 04:47:06',1),(1,206,9102,'2012-11-25 05:16:21',1),(1,49,9102,'2012-11-25 05:16:21',1),(1,206,9088,'2012-11-25 05:16:29',1),(1,49,9088,'2012-11-25 05:16:29',1),(1,206,9092,'2012-11-25 05:16:37',1),(1,49,9092,'2012-11-25 05:16:37',1),(1,33,9087,'2012-11-25 05:46:41',1),(1,1,9093,'2012-11-25 05:46:47',1),(1,206,9093,'2012-11-25 05:46:47',1),(1,206,9084,'2012-11-25 05:46:47',1),(1,49,9084,'2012-11-25 05:46:47',1),(1,1,9082,'2012-11-25 05:46:50',1),(1,33,9083,'2012-11-25 05:46:54',1),(1,1,9094,'2012-11-25 05:47:05',1),(1,206,9094,'2012-11-25 05:47:05',1),(1,1,9096,'2012-11-25 05:47:12',1),(1,57,9103,'2012-11-25 10:16:42',1),(1,235,9103,'2012-11-25 10:16:42',1),(1,54,9103,'2012-11-25 10:16:42',1),(1,145,9103,'2012-11-25 10:16:42',1),(1,219,9103,'2012-11-25 10:16:42',1),(1,211,9103,'2012-11-25 10:16:42',1),(1,222,9103,'2012-11-25 10:16:42',1),(1,6,9103,'2012-11-25 10:16:42',1),(1,57,9091,'2012-11-25 10:16:48',1),(1,235,9091,'2012-11-25 10:16:48',1),(1,54,9091,'2012-11-25 10:16:48',1),(1,145,9091,'2012-11-25 10:16:48',1),(1,219,9091,'2012-11-25 10:16:48',1),(1,211,9091,'2012-11-25 10:16:48',1),(1,222,9091,'2012-11-25 10:16:48',1),(1,6,9091,'2012-11-25 10:16:48',1),(1,244,9049,'2012-11-25 16:17:32',1),(1,113,9049,'2012-11-25 16:17:32',1),(1,184,9049,'2012-11-25 16:17:32',1),(1,140,9049,'2012-11-25 16:17:32',1),(1,227,9049,'2012-11-25 16:17:32',1),(1,246,9049,'2012-11-25 16:17:32',1),(1,139,9049,'2012-11-25 16:17:32',1),(1,89,9049,'2012-11-25 16:17:32',1),(1,126,9049,'2012-11-25 16:17:32',1),(1,79,9049,'2012-11-25 16:17:32',1),(1,44,9049,'2012-11-25 16:17:32',1),(1,93,9049,'2012-11-25 16:17:32',1),(1,15,9049,'2012-11-25 16:17:32',1),(1,156,9049,'2012-11-25 16:17:32',1),(1,203,9049,'2012-11-25 16:17:32',1),(1,185,9049,'2012-11-25 16:17:32',1),(1,91,9048,'2012-11-25 16:17:33',1),(1,4,9048,'2012-11-25 16:17:33',1),(1,244,9048,'2012-11-25 16:17:33',1),(1,113,9048,'2012-11-25 16:17:33',1),(1,184,9048,'2012-11-25 16:17:33',1),(1,140,9048,'2012-11-25 16:17:33',1),(1,227,9048,'2012-11-25 16:17:33',1),(1,246,9048,'2012-11-25 16:17:33',1),(1,139,9048,'2012-11-25 16:17:33',1),(1,89,9048,'2012-11-25 16:17:33',1),(1,126,9048,'2012-11-25 16:17:33',1),(1,79,9048,'2012-11-25 16:17:33',1),(1,44,9048,'2012-11-25 16:17:33',1),(1,93,9048,'2012-11-25 16:17:33',1),(1,15,9048,'2012-11-25 16:17:33',1),(1,156,9048,'2012-11-25 16:17:33',1),(1,91,9089,'2012-11-25 16:47:10',1),(1,4,9089,'2012-11-25 16:47:10',1),(1,244,9089,'2012-11-25 16:47:10',1),(1,113,9089,'2012-11-25 16:47:10',1),(1,184,9089,'2012-11-25 16:47:10',1),(1,140,9089,'2012-11-25 16:47:10',1),(1,227,9089,'2012-11-25 16:47:10',1),(1,246,9089,'2012-11-25 16:47:10',1),(1,139,9089,'2012-11-25 16:47:10',1),(1,89,9089,'2012-11-25 16:47:10',1),(1,126,9089,'2012-11-25 16:47:10',1),(1,79,9089,'2012-11-25 16:47:10',1),(1,44,9089,'2012-11-25 16:47:10',1),(1,93,9089,'2012-11-25 16:47:10',1),(1,15,9089,'2012-11-25 16:47:10',1),(1,156,9089,'2012-11-25 16:47:10',1),(1,108,9100,'2012-11-25 16:47:15',1),(1,102,9100,'2012-11-25 16:47:15',1),(1,103,9100,'2012-11-25 16:47:15',1),(1,204,9100,'2012-11-25 16:47:15',1),(1,38,9100,'2012-11-25 16:47:15',1),(1,60,9100,'2012-11-25 16:47:15',1),(1,198,9100,'2012-11-25 16:47:15',1),(1,241,9100,'2012-11-25 16:47:15',1),(1,203,9080,'2012-11-25 16:47:31',1),(1,185,9080,'2012-11-25 16:47:31',1),(1,108,9080,'2012-11-25 16:47:31',1),(1,102,9080,'2012-11-25 16:47:31',1),(1,103,9080,'2012-11-25 16:47:31',1),(1,204,9080,'2012-11-25 16:47:31',1),(1,38,9080,'2012-11-25 16:47:31',1),(1,60,9080,'2012-11-25 16:47:31',1),(1,91,9081,'2012-11-25 17:17:27',1),(1,4,9081,'2012-11-25 17:17:27',1),(1,244,9081,'2012-11-25 17:17:27',1),(1,113,9081,'2012-11-25 17:17:27',1),(1,184,9081,'2012-11-25 17:17:27',1),(1,140,9081,'2012-11-25 17:17:27',1),(1,227,9081,'2012-11-25 17:17:27',1),(1,246,9081,'2012-11-25 17:17:27',1),(1,139,9081,'2012-11-25 17:17:27',1),(1,89,9081,'2012-11-25 17:17:27',1),(1,126,9081,'2012-11-25 17:17:27',1),(1,79,9081,'2012-11-25 17:17:27',1),(1,44,9081,'2012-11-25 17:17:27',1),(1,93,9081,'2012-11-25 17:17:27',1),(1,15,9081,'2012-11-25 17:17:27',1),(1,156,9081,'2012-11-25 17:17:27',1),(1,91,9098,'2012-11-25 17:17:29',1),(1,4,9098,'2012-11-25 17:17:29',1),(1,244,9098,'2012-11-25 17:17:29',1),(1,113,9098,'2012-11-25 17:17:29',1),(1,184,9098,'2012-11-25 17:17:29',1),(1,140,9098,'2012-11-25 17:17:29',1),(1,227,9098,'2012-11-25 17:17:29',1),(1,246,9098,'2012-11-25 17:17:29',1),(1,139,9098,'2012-11-25 17:17:29',1),(1,89,9098,'2012-11-25 17:17:29',1),(1,126,9098,'2012-11-25 17:17:29',1),(1,79,9098,'2012-11-25 17:17:29',1),(1,44,9098,'2012-11-25 17:17:29',1),(1,93,9098,'2012-11-25 17:17:29',1),(1,15,9098,'2012-11-25 17:17:29',1),(1,156,9098,'2012-11-25 17:17:29',1),(1,203,9101,'2012-11-25 17:17:52',1),(1,185,9101,'2012-11-25 17:17:52',1),(1,108,9101,'2012-11-25 17:17:52',1),(1,102,9101,'2012-11-25 17:17:52',1),(1,103,9101,'2012-11-25 17:17:52',1),(1,204,9101,'2012-11-25 17:17:52',1),(1,38,9101,'2012-11-25 17:17:52',1),(1,60,9101,'2012-11-25 17:17:52',1),(1,203,9085,'2012-11-25 17:17:52',1),(1,185,9085,'2012-11-25 17:17:52',1),(1,108,9085,'2012-11-25 17:17:52',1),(1,102,9085,'2012-11-25 17:17:52',1),(1,103,9085,'2012-11-25 17:17:52',1),(1,204,9085,'2012-11-25 17:17:52',1),(1,38,9085,'2012-11-25 17:17:52',1),(1,60,9085,'2012-11-25 17:17:52',1),(1,113,9141,'2012-11-26 00:16:22',1),(1,184,9141,'2012-11-26 00:16:22',1),(1,140,9141,'2012-11-26 00:16:22',1),(1,227,9141,'2012-11-26 00:16:22',1),(1,246,9141,'2012-11-26 00:16:22',1),(1,139,9141,'2012-11-26 00:16:22',1),(1,89,9141,'2012-11-26 00:16:22',1),(1,126,9141,'2012-11-26 00:16:22',1),(1,102,9142,'2012-11-26 00:16:25',1),(1,103,9142,'2012-11-26 00:16:25',1),(1,204,9142,'2012-11-26 00:16:25',1),(1,38,9142,'2012-11-26 00:16:25',1),(1,60,9142,'2012-11-26 00:16:25',1),(1,198,9142,'2012-11-26 00:16:25',1),(1,241,9142,'2012-11-26 00:16:25',1),(1,104,9142,'2012-11-26 00:16:25',1),(1,228,9138,'2012-11-26 00:46:16',1),(1,91,9138,'2012-11-26 00:46:16',1),(1,6,9138,'2012-11-26 00:46:16',1),(1,4,9138,'2012-11-26 00:46:16',1),(1,16,9138,'2012-11-26 00:46:16',1),(1,244,9138,'2012-11-26 00:46:16',1),(1,95,9138,'2012-11-26 00:46:16',1),(1,88,9138,'2012-11-26 00:46:16',1),(1,212,9139,'2012-11-26 00:46:23',1),(1,69,9139,'2012-11-26 00:46:23',1),(1,52,9139,'2012-11-26 00:46:23',1),(1,223,9139,'2012-11-26 00:46:23',1),(1,79,9140,'2012-11-26 00:46:24',1),(1,44,9140,'2012-11-26 00:46:24',1),(1,93,9140,'2012-11-26 00:46:24',1),(1,15,9140,'2012-11-26 00:46:24',1),(1,156,9140,'2012-11-26 00:46:24',1),(1,203,9140,'2012-11-26 00:46:24',1),(1,185,9140,'2012-11-26 00:46:24',1),(1,108,9140,'2012-11-26 00:46:24',1),(1,228,9143,'2012-11-26 00:46:35',1),(1,91,9143,'2012-11-26 00:46:35',1),(1,6,9143,'2012-11-26 00:46:35',1),(1,4,9143,'2012-11-26 00:46:35',1),(1,16,9143,'2012-11-26 00:46:35',1),(1,244,9143,'2012-11-26 00:46:35',1),(1,95,9143,'2012-11-26 00:46:35',1),(1,88,9143,'2012-11-26 00:46:35',1),(1,204,9131,'2012-11-26 00:46:36',1),(1,38,9131,'2012-11-26 00:46:36',1),(1,113,9132,'2012-11-26 00:46:38',1),(1,184,9146,'2012-11-26 00:46:40',1),(1,140,9147,'2012-11-26 00:46:44',1),(1,60,9148,'2012-11-26 00:46:45',1),(1,198,9148,'2012-11-26 00:46:45',1),(1,241,9130,'2012-11-26 00:46:48',1),(1,104,9130,'2012-11-26 00:46:48',1),(1,212,9149,'2012-11-26 00:46:49',1),(1,69,9149,'2012-11-26 00:46:49',1),(1,113,9134,'2012-11-26 00:46:55',1),(1,184,9134,'2012-11-26 00:46:55',1),(1,140,9134,'2012-11-26 00:46:55',1),(1,227,9134,'2012-11-26 00:46:55',1),(1,246,9135,'2012-11-26 00:46:56',1),(1,139,9135,'2012-11-26 00:46:56',1),(1,89,9135,'2012-11-26 00:46:56',1),(1,126,9135,'2012-11-26 00:46:56',1),(1,79,9136,'2012-11-26 00:46:57',1),(1,44,9136,'2012-11-26 00:46:57',1),(1,93,9136,'2012-11-26 00:46:57',1),(1,15,9136,'2012-11-26 00:46:57',1),(1,227,9144,'2012-11-26 00:47:02',1),(1,156,9137,'2012-11-26 00:47:06',1),(1,203,9137,'2012-11-26 00:47:06',1),(1,185,9137,'2012-11-26 00:47:06',1),(1,108,9137,'2012-11-26 00:47:06',1),(1,246,9145,'2012-11-26 00:47:06',1),(1,52,9133,'2012-11-26 00:47:10',1),(1,223,9133,'2012-11-26 00:47:10',1),(1,60,9191,'2012-11-26 01:46:13',1),(1,79,9192,'2012-11-26 01:46:13',1),(1,44,9192,'2012-11-26 01:46:13',1),(1,93,9192,'2012-11-26 01:46:13',1),(1,15,9192,'2012-11-26 01:46:13',1),(1,228,9194,'2012-11-26 01:46:13',1),(1,91,9194,'2012-11-26 01:46:13',1),(1,6,9194,'2012-11-26 01:46:13',1),(1,4,9194,'2012-11-26 01:46:13',1),(1,16,9194,'2012-11-26 01:46:13',1),(1,244,9194,'2012-11-26 01:46:13',1),(1,95,9194,'2012-11-26 01:46:13',1),(1,88,9194,'2012-11-26 01:46:13',1),(1,156,9195,'2012-11-26 01:46:13',1),(1,203,9195,'2012-11-26 01:46:13',1),(1,185,9195,'2012-11-26 01:46:13',1),(1,108,9195,'2012-11-26 01:46:13',1),(1,198,9196,'2012-11-26 01:46:27',1),(1,102,9197,'2012-11-26 01:46:27',1),(1,103,9197,'2012-11-26 01:46:27',1),(1,204,9190,'2012-11-26 01:46:31',1),(1,38,9190,'2012-11-26 01:46:31',1),(1,113,9193,'2012-11-26 01:46:31',NULL),(1,184,9193,'2012-11-26 01:46:31',NULL),(1,140,9193,'2012-11-26 01:46:31',NULL),(1,227,9193,'2012-11-26 01:46:31',NULL),(1,246,9193,'2012-11-26 01:46:31',NULL),(1,139,9193,'2012-11-26 01:46:31',NULL),(1,89,9193,'2012-11-26 01:46:31',NULL),(1,126,9193,'2012-11-26 01:46:31',NULL),(1,52,9218,'2012-11-26 02:46:12',1),(1,223,9218,'2012-11-26 02:46:12',1),(1,140,9217,'2012-11-26 02:46:12',1),(1,227,9217,'2012-11-26 02:46:12',1),(1,246,9217,'2012-11-26 02:46:12',1),(1,139,9217,'2012-11-26 02:46:12',1),(1,6,9219,'2012-11-26 02:46:14',1),(1,4,9219,'2012-11-26 02:46:14',1),(1,16,9219,'2012-11-26 02:46:14',1),(1,244,9219,'2012-11-26 02:46:14',1),(1,95,9219,'2012-11-26 02:46:14',1),(1,88,9219,'2012-11-26 02:46:14',1),(1,113,9219,'2012-11-26 02:46:14',1),(1,184,9219,'2012-11-26 02:46:14',1),(1,140,9219,'2012-11-26 02:46:14',1),(1,227,9219,'2012-11-26 02:46:14',1),(1,246,9219,'2012-11-26 02:46:14',1),(1,139,9219,'2012-11-26 02:46:14',1),(1,89,9219,'2012-11-26 02:46:14',1),(1,126,9219,'2012-11-26 02:46:14',1),(1,79,9219,'2012-11-26 02:46:14',1),(1,44,9219,'2012-11-26 02:46:14',1),(1,204,9222,'2012-11-26 02:46:20',1),(1,38,9222,'2012-11-26 02:46:20',1),(1,60,9222,'2012-11-26 02:46:20',1),(1,198,9222,'2012-11-26 02:46:20',1),(1,185,9220,'2012-11-26 02:46:20',1),(1,108,9220,'2012-11-26 02:46:20',1),(1,102,9220,'2012-11-26 02:46:20',1),(1,103,9220,'2012-11-26 02:46:20',1),(1,52,9231,'2012-11-26 02:46:20',1),(1,223,9231,'2012-11-26 02:46:20',1),(1,93,9223,'2012-11-26 02:46:22',1),(1,15,9223,'2012-11-26 02:46:22',1),(1,156,9223,'2012-11-26 02:46:22',1),(1,203,9223,'2012-11-26 02:46:22',1),(1,52,9225,'2012-11-26 02:46:29',1),(1,223,9225,'2012-11-26 02:46:29',1),(1,212,9226,'2012-11-26 02:46:29',1),(1,6,9224,'2012-11-26 02:46:29',1),(1,4,9224,'2012-11-26 02:46:29',1),(1,16,9224,'2012-11-26 02:46:29',1),(1,244,9224,'2012-11-26 02:46:29',1),(1,95,9224,'2012-11-26 02:46:29',1),(1,88,9224,'2012-11-26 02:46:29',1),(1,113,9224,'2012-11-26 02:46:29',1),(1,184,9224,'2012-11-26 02:46:29',1),(1,69,9227,'2012-11-26 02:46:30',1),(1,140,9229,'2012-11-26 02:46:45',1),(1,227,9229,'2012-11-26 02:46:45',1),(1,246,9229,'2012-11-26 02:46:45',1),(1,139,9229,'2012-11-26 02:46:45',1),(1,89,9229,'2012-11-26 02:46:45',1),(1,126,9229,'2012-11-26 02:46:45',1),(1,79,9229,'2012-11-26 02:46:45',1),(1,44,9229,'2012-11-26 02:46:45',1),(1,140,9230,'2012-11-26 02:46:45',1),(1,227,9230,'2012-11-26 02:46:45',1),(1,246,9230,'2012-11-26 02:46:45',1),(1,139,9230,'2012-11-26 02:46:45',1),(1,89,9230,'2012-11-26 02:46:45',1),(1,126,9230,'2012-11-26 02:46:45',1),(1,79,9230,'2012-11-26 02:46:45',1),(1,44,9230,'2012-11-26 02:46:45',1),(1,140,9214,'2012-11-26 02:46:45',1),(1,227,9214,'2012-11-26 02:46:45',1),(1,246,9214,'2012-11-26 02:46:45',1),(1,139,9214,'2012-11-26 02:46:45',1),(1,89,9214,'2012-11-26 02:46:45',1),(1,126,9214,'2012-11-26 02:46:45',1),(1,79,9214,'2012-11-26 02:46:45',1),(1,44,9214,'2012-11-26 02:46:45',1),(1,6,9228,'2012-11-26 02:46:45',1),(1,241,9215,'2012-11-26 02:46:49',1),(1,104,9215,'2012-11-26 02:46:49',1),(1,93,9221,'2012-11-26 02:46:49',1),(1,15,9221,'2012-11-26 02:46:49',1),(1,156,9221,'2012-11-26 02:46:49',1),(1,203,9221,'2012-11-26 02:46:49',1),(1,185,9221,'2012-11-26 02:46:49',1),(1,108,9221,'2012-11-26 02:46:49',1),(1,102,9221,'2012-11-26 02:46:49',1),(1,103,9221,'2012-11-26 02:46:49',1),(1,204,9221,'2012-11-26 02:46:49',1),(1,38,9221,'2012-11-26 02:46:49',1),(1,60,9221,'2012-11-26 02:46:49',1),(1,198,9221,'2012-11-26 02:46:49',1),(1,241,9221,'2012-11-26 02:46:49',1),(1,104,9221,'2012-11-26 02:46:49',1),(1,212,9221,'2012-11-26 02:46:49',1),(1,69,9221,'2012-11-26 02:46:49',1),(1,89,9216,'2012-11-26 03:16:21',NULL),(1,126,9216,'2012-11-26 03:16:21',NULL),(1,79,9216,'2012-11-26 03:16:21',NULL),(1,44,9216,'2012-11-26 03:16:21',NULL),(1,6,9260,'2012-11-26 03:46:23',1),(1,4,9260,'2012-11-26 03:46:23',1),(1,6,9259,'2012-11-26 03:46:33',1),(1,4,9259,'2012-11-26 03:46:33',1),(1,6,9266,'2012-11-26 03:46:43',1),(1,4,9266,'2012-11-26 03:46:43',1),(1,6,9258,'2012-11-26 04:16:35',1),(1,6,9267,'2012-11-26 04:16:45',1),(1,4,9267,'2012-11-26 04:16:45',1),(1,6,9268,'2012-11-26 04:16:47',1),(1,4,9268,'2012-11-26 04:16:47',1),(1,4,9269,'2012-11-26 04:17:01',1),(1,6,9254,'2012-11-26 04:17:04',1),(1,4,9254,'2012-11-26 04:17:04',1),(1,4,9251,'2012-11-26 04:17:06',1),(1,85,9262,'2012-11-26 04:46:32',1),(1,17,9262,'2012-11-26 04:46:32',1),(1,192,9262,'2012-11-26 04:46:32',1),(1,144,9262,'2012-11-26 04:46:32',1),(1,73,9262,'2012-11-26 04:46:32',1),(1,188,9262,'2012-11-26 04:46:32',1),(1,59,9262,'2012-11-26 04:46:32',1),(1,86,9262,'2012-11-26 04:46:32',1),(1,115,9262,'2012-11-26 04:46:32',1),(1,8,9262,'2012-11-26 04:46:32',1),(1,87,9262,'2012-11-26 04:46:32',1),(1,173,9262,'2012-11-26 04:46:32',1),(1,80,9262,'2012-11-26 04:46:32',1),(1,116,9262,'2012-11-26 04:46:32',1),(1,129,9262,'2012-11-26 04:46:32',1),(1,13,9262,'2012-11-26 04:46:32',1),(1,232,9264,'2012-11-26 04:46:32',1),(1,194,9264,'2012-11-26 04:46:32',1),(1,111,9264,'2012-11-26 04:46:32',1),(1,180,9264,'2012-11-26 04:46:32',1),(1,34,9264,'2012-11-26 04:46:32',1),(1,29,9264,'2012-11-26 04:46:32',1),(1,248,9264,'2012-11-26 04:46:32',1),(1,106,9264,'2012-11-26 04:46:32',1),(1,193,9272,'2012-11-26 04:46:33',1),(1,169,9272,'2012-11-26 04:46:33',1),(1,83,9272,'2012-11-26 04:46:33',1),(1,63,9272,'2012-11-26 04:46:33',1),(1,193,9263,'2012-11-26 04:46:34',1),(1,169,9263,'2012-11-26 04:46:34',1),(1,83,9263,'2012-11-26 04:46:34',1),(1,63,9263,'2012-11-26 04:46:34',1),(1,232,9257,'2012-11-26 04:46:38',1),(1,194,9257,'2012-11-26 04:46:38',1),(1,111,9257,'2012-11-26 04:46:38',1),(1,180,9257,'2012-11-26 04:46:38',1),(1,34,9257,'2012-11-26 04:46:38',1),(1,29,9257,'2012-11-26 04:46:38',1),(1,248,9257,'2012-11-26 04:46:38',1),(1,106,9257,'2012-11-26 04:46:38',1),(1,117,9250,'2012-11-26 04:46:47',1),(1,166,9250,'2012-11-26 04:46:47',1),(1,75,9250,'2012-11-26 04:46:47',1),(1,96,9250,'2012-11-26 04:46:47',1),(1,237,9250,'2012-11-26 04:46:47',1),(1,134,9250,'2012-11-26 04:46:47',1),(1,135,9250,'2012-11-26 04:46:47',1),(1,118,9250,'2012-11-26 04:46:47',1),(1,119,9250,'2012-11-26 04:46:47',1),(1,3,9250,'2012-11-26 04:46:47',1),(1,124,9250,'2012-11-26 04:46:47',1),(1,40,9250,'2012-11-26 04:46:47',1),(1,170,9250,'2012-11-26 04:46:47',1),(1,146,9250,'2012-11-26 04:46:47',1),(1,46,9250,'2012-11-26 04:46:47',1),(1,167,9250,'2012-11-26 04:46:47',1),(1,6,9252,'2012-11-26 04:47:10',1),(1,193,9273,'2012-11-26 05:16:39',1),(1,169,9273,'2012-11-26 05:16:39',1),(1,83,9273,'2012-11-26 05:16:39',1),(1,63,9273,'2012-11-26 05:16:39',1),(1,193,9274,'2012-11-26 05:16:41',1),(1,169,9274,'2012-11-26 05:16:41',1),(1,83,9274,'2012-11-26 05:16:41',1),(1,63,9274,'2012-11-26 05:16:41',1),(1,232,9261,'2012-11-26 05:16:41',1),(1,194,9261,'2012-11-26 05:16:41',1),(1,111,9261,'2012-11-26 05:16:41',1),(1,180,9261,'2012-11-26 05:16:41',1),(1,34,9261,'2012-11-26 05:16:41',1),(1,29,9261,'2012-11-26 05:16:41',1),(1,248,9261,'2012-11-26 05:16:41',1),(1,106,9261,'2012-11-26 05:16:41',1),(1,232,9265,'2012-11-26 05:16:44',1),(1,194,9265,'2012-11-26 05:16:44',1),(1,111,9265,'2012-11-26 05:16:44',1),(1,180,9265,'2012-11-26 05:16:44',1),(1,34,9265,'2012-11-26 05:16:44',1),(1,29,9265,'2012-11-26 05:16:44',1),(1,248,9265,'2012-11-26 05:16:44',1),(1,106,9265,'2012-11-26 05:16:44',1),(1,193,9270,'2012-11-26 05:17:10',1),(1,169,9270,'2012-11-26 05:17:10',1),(1,83,9270,'2012-11-26 05:17:10',1),(1,63,9270,'2012-11-26 05:17:10',1),(1,117,9271,'2012-11-26 05:17:11',1),(1,166,9271,'2012-11-26 05:17:11',1),(1,75,9271,'2012-11-26 05:17:11',1),(1,96,9271,'2012-11-26 05:17:11',1),(1,237,9271,'2012-11-26 05:17:11',1),(1,134,9271,'2012-11-26 05:17:11',1),(1,135,9271,'2012-11-26 05:17:11',1),(1,118,9271,'2012-11-26 05:17:11',1),(1,117,9255,'2012-11-26 05:17:12',1),(1,166,9255,'2012-11-26 05:17:12',1),(1,75,9255,'2012-11-26 05:17:12',1),(1,96,9255,'2012-11-26 05:17:12',1),(1,237,9255,'2012-11-26 05:17:12',1),(1,134,9255,'2012-11-26 05:17:12',1),(1,135,9255,'2012-11-26 05:17:12',1),(1,118,9255,'2012-11-26 05:17:12',1),(1,119,9255,'2012-11-26 05:17:12',1),(1,3,9255,'2012-11-26 05:17:12',1),(1,124,9255,'2012-11-26 05:17:12',1),(1,40,9255,'2012-11-26 05:17:12',1),(1,170,9255,'2012-11-26 05:17:12',1),(1,146,9255,'2012-11-26 05:17:12',1),(1,46,9255,'2012-11-26 05:17:12',1),(1,167,9255,'2012-11-26 05:17:12',1),(1,193,9253,'2012-11-26 05:17:14',1),(1,169,9253,'2012-11-26 05:17:14',1),(1,83,9253,'2012-11-26 05:17:14',1),(1,63,9253,'2012-11-26 05:17:14',1),(1,119,9256,'2012-11-26 05:47:20',1),(1,3,9256,'2012-11-26 05:47:20',1),(1,124,9256,'2012-11-26 05:47:20',1),(1,40,9256,'2012-11-26 05:47:20',1),(1,170,9256,'2012-11-26 05:47:20',1),(1,146,9256,'2012-11-26 05:47:20',1),(1,46,9256,'2012-11-26 05:47:20',1),(1,167,9256,'2012-11-26 05:47:20',1),(1,237,9315,'2012-11-27 11:55:58',1),(1,94,9317,'2012-11-27 11:56:01',1),(1,237,9317,'2012-11-27 11:56:01',1),(1,94,9318,'2012-11-27 11:56:01',1),(1,96,9318,'2012-11-27 11:56:01',1),(1,133,9319,'2012-11-27 12:26:03',1),(1,25,9319,'2012-11-27 12:26:03',1),(1,249,9303,'2012-11-27 12:26:07',1),(1,133,9303,'2012-11-27 12:26:07',1),(1,25,9303,'2012-11-27 12:26:07',1),(1,125,9303,'2012-11-27 12:26:07',1),(1,249,9304,'2012-11-27 12:26:08',1),(1,133,9304,'2012-11-27 12:26:08',1),(1,25,9304,'2012-11-27 12:26:08',1),(1,125,9304,'2012-11-27 12:26:08',1),(1,249,9305,'2012-11-27 12:26:09',1),(1,133,9305,'2012-11-27 12:26:09',1),(1,25,9305,'2012-11-27 12:26:09',1),(1,125,9305,'2012-11-27 12:26:09',1),(1,249,9306,'2012-11-27 12:26:11',1),(1,133,9306,'2012-11-27 12:26:11',1),(1,25,9306,'2012-11-27 12:26:11',1),(1,125,9306,'2012-11-27 12:26:11',1),(1,249,9308,'2012-11-27 12:26:11',1),(1,133,9308,'2012-11-27 12:26:11',1),(1,25,9308,'2012-11-27 12:26:11',1),(1,125,9308,'2012-11-27 12:26:11',1),(1,249,9361,'2012-11-27 12:26:34',1),(1,133,9361,'2012-11-27 12:26:34',1),(1,25,9361,'2012-11-27 12:26:34',1),(1,125,9361,'2012-11-27 12:26:34',1),(1,249,9363,'2012-11-27 12:26:35',1),(1,133,9363,'2012-11-27 12:26:35',1),(1,25,9363,'2012-11-27 12:26:35',1),(1,125,9363,'2012-11-27 12:26:35',1),(1,249,9444,'2012-11-27 12:57:04',1),(1,133,9444,'2012-11-27 12:57:04',1),(1,25,9444,'2012-11-27 12:57:04',1),(1,125,9444,'2012-11-27 12:57:04',1),(1,135,9300,'2012-11-27 13:26:14',1),(1,91,9300,'2012-11-27 13:26:14',1),(1,7,9302,'2012-11-27 13:26:15',1),(1,132,9302,'2012-11-27 13:26:15',1),(1,249,9307,'2012-11-27 13:26:16',1),(1,133,9307,'2012-11-27 13:26:16',1),(1,25,9307,'2012-11-27 13:26:16',1),(1,125,9307,'2012-11-27 13:26:16',1),(1,237,9307,'2012-11-27 13:26:16',1),(1,135,9307,'2012-11-27 13:26:16',1),(1,141,9307,'2012-11-27 13:26:16',1),(1,193,9307,'2012-11-27 13:26:16',1),(1,249,9309,'2012-11-27 13:26:18',1),(1,133,9309,'2012-11-27 13:26:18',1),(1,25,9309,'2012-11-27 13:26:18',1),(1,125,9309,'2012-11-27 13:26:18',1),(1,237,9309,'2012-11-27 13:26:18',1),(1,135,9309,'2012-11-27 13:26:18',1),(1,141,9309,'2012-11-27 13:26:18',1),(1,193,9309,'2012-11-27 13:26:18',1),(1,249,9311,'2012-11-27 13:26:19',1),(1,133,9311,'2012-11-27 13:26:19',1),(1,25,9311,'2012-11-27 13:26:19',1),(1,125,9311,'2012-11-27 13:26:19',1),(1,237,9311,'2012-11-27 13:26:19',1),(1,135,9311,'2012-11-27 13:26:19',1),(1,141,9311,'2012-11-27 13:26:19',1),(1,193,9311,'2012-11-27 13:26:19',1),(1,249,9310,'2012-11-27 13:26:19',1),(1,133,9310,'2012-11-27 13:26:19',1),(1,25,9310,'2012-11-27 13:26:19',1),(1,125,9310,'2012-11-27 13:26:19',1),(1,237,9310,'2012-11-27 13:26:19',1),(1,135,9310,'2012-11-27 13:26:19',1),(1,141,9310,'2012-11-27 13:26:19',1),(1,193,9310,'2012-11-27 13:26:19',1),(1,249,9312,'2012-11-27 13:26:21',1),(1,133,9312,'2012-11-27 13:26:21',1),(1,25,9312,'2012-11-27 13:26:21',1),(1,125,9312,'2012-11-27 13:26:21',1),(1,237,9312,'2012-11-27 13:26:21',1),(1,135,9312,'2012-11-27 13:26:21',1),(1,141,9312,'2012-11-27 13:26:21',1),(1,193,9312,'2012-11-27 13:26:21',1),(1,7,9439,'2012-11-27 13:26:24',1),(1,132,9439,'2012-11-27 13:26:24',1),(1,249,9385,'2012-11-27 13:27:16',1),(1,133,9385,'2012-11-27 13:27:16',1),(1,25,9385,'2012-11-27 13:27:16',1),(1,125,9385,'2012-11-27 13:27:16',1),(1,172,9388,'2012-11-27 13:27:18',1),(1,112,9388,'2012-11-27 13:27:18',1),(1,65,9388,'2012-11-27 13:27:18',1),(1,202,9388,'2012-11-27 13:27:18',1),(1,172,9389,'2012-11-27 13:27:19',1),(1,112,9389,'2012-11-27 13:27:19',1),(1,65,9389,'2012-11-27 13:27:19',1),(1,202,9389,'2012-11-27 13:27:19',1),(1,172,9391,'2012-11-27 13:27:25',1),(1,112,9391,'2012-11-27 13:27:25',1),(1,65,9391,'2012-11-27 13:27:25',1),(1,202,9391,'2012-11-27 13:27:25',1),(1,172,9425,'2012-11-27 13:27:26',1),(1,112,9425,'2012-11-27 13:27:26',1),(1,65,9425,'2012-11-27 13:27:26',1),(1,202,9425,'2012-11-27 13:27:26',1),(1,172,9422,'2012-11-27 13:27:30',1),(1,112,9422,'2012-11-27 13:27:30',1),(1,65,9422,'2012-11-27 13:27:30',1),(1,202,9422,'2012-11-27 13:27:30',1),(1,249,9424,'2012-11-27 13:56:24',1),(1,133,9424,'2012-11-27 13:56:24',1),(1,25,9424,'2012-11-27 13:56:24',1),(1,125,9424,'2012-11-27 13:56:24',1),(1,237,9424,'2012-11-27 13:56:24',1),(1,135,9424,'2012-11-27 13:56:24',1),(1,141,9424,'2012-11-27 13:56:24',1),(1,193,9424,'2012-11-27 13:56:24',1),(1,7,9427,'2012-11-27 13:56:30',1),(1,132,9427,'2012-11-27 13:56:30',1),(1,7,9365,'2012-11-27 13:56:45',1),(1,132,9365,'2012-11-27 13:56:45',1),(1,7,9366,'2012-11-27 13:56:46',1),(1,132,9366,'2012-11-27 13:56:46',1),(1,134,9386,'2012-11-27 13:57:20',1),(1,149,9386,'2012-11-27 13:57:20',1),(1,7,9390,'2012-11-27 13:57:23',1),(1,132,9390,'2012-11-27 13:57:23',1),(1,134,9400,'2012-11-27 13:57:23',1),(1,149,9400,'2012-11-27 13:57:23',1),(1,172,9423,'2012-11-27 13:57:32',1),(1,112,9423,'2012-11-27 13:57:32',1),(1,65,9423,'2012-11-27 13:57:32',1),(1,202,9423,'2012-11-27 13:57:32',1),(1,134,9435,'2012-11-27 13:57:44',1),(1,149,9435,'2012-11-27 13:57:44',1),(1,7,9435,'2012-11-27 13:57:44',1),(1,132,9435,'2012-11-27 13:57:44',1),(1,134,9443,'2012-11-27 13:58:02',1),(1,149,9443,'2012-11-27 13:58:02',1),(1,7,9443,'2012-11-27 13:58:02',1),(1,132,9443,'2012-11-27 13:58:02',1),(1,249,9316,'2012-11-27 14:26:33',NULL),(1,132,9301,'2012-11-27 14:26:38',NULL),(1,132,9314,'2012-11-27 14:26:59',NULL),(1,249,9428,'2012-11-27 14:27:02',1),(1,133,9428,'2012-11-27 14:27:02',1),(1,25,9428,'2012-11-27 14:27:02',1),(1,125,9428,'2012-11-27 14:27:02',1),(1,237,9428,'2012-11-27 14:27:02',1),(1,135,9428,'2012-11-27 14:27:02',1),(1,141,9428,'2012-11-27 14:27:02',1),(1,193,9428,'2012-11-27 14:27:02',1),(1,249,9313,'2012-11-27 14:27:04',NULL),(1,132,9426,'2012-11-27 14:27:08',NULL),(1,249,9362,'2012-11-27 14:27:40',1),(1,133,9362,'2012-11-27 14:27:40',1),(1,25,9362,'2012-11-27 14:27:40',1),(1,125,9362,'2012-11-27 14:27:40',1),(1,237,9362,'2012-11-27 14:27:40',1),(1,135,9362,'2012-11-27 14:27:40',1),(1,141,9362,'2012-11-27 14:27:40',1),(1,193,9362,'2012-11-27 14:27:40',1),(1,193,9364,'2012-11-27 14:27:50',NULL),(1,132,9360,'2012-11-27 14:27:55',NULL),(1,249,9367,'2012-11-27 14:28:01',NULL),(1,133,9367,'2012-11-27 14:28:01',NULL),(1,25,9367,'2012-11-27 14:28:01',NULL),(1,125,9367,'2012-11-27 14:28:01',NULL),(1,237,9367,'2012-11-27 14:28:01',NULL),(1,135,9367,'2012-11-27 14:28:01',NULL),(1,141,9367,'2012-11-27 14:28:01',NULL),(1,193,9367,'2012-11-27 14:28:01',NULL),(1,20,9438,'2012-11-27 14:28:45',NULL),(1,16,9438,'2012-11-27 14:28:45',NULL),(1,244,9438,'2012-11-27 14:28:45',NULL),(1,95,9438,'2012-11-27 14:28:45',NULL),(1,88,9438,'2012-11-27 14:28:45',NULL),(1,113,9438,'2012-11-27 14:28:45',NULL),(1,184,9438,'2012-11-27 14:28:45',NULL),(1,140,9438,'2012-11-27 14:28:45',NULL),(1,227,9438,'2012-11-27 14:28:45',NULL),(1,246,9438,'2012-11-27 14:28:45',NULL),(1,141,9438,'2012-11-27 14:28:45',NULL),(1,139,9438,'2012-11-27 14:28:45',NULL),(1,89,9438,'2012-11-27 14:28:45',NULL),(1,11,9438,'2012-11-27 14:28:45',NULL),(1,18,9438,'2012-11-27 14:28:45',NULL),(1,187,9438,'2012-11-27 14:28:45',NULL),(1,249,9397,'2012-11-27 14:29:35',1),(1,133,9397,'2012-11-27 14:29:35',1),(1,25,9397,'2012-11-27 14:29:35',1),(1,125,9397,'2012-11-27 14:29:35',1),(1,237,9397,'2012-11-27 14:29:35',1),(1,135,9397,'2012-11-27 14:29:35',1),(1,141,9397,'2012-11-27 14:29:35',1),(1,193,9397,'2012-11-27 14:29:35',1),(1,126,9401,'2012-11-27 14:29:38',NULL),(1,79,9401,'2012-11-27 14:29:38',NULL),(1,225,9401,'2012-11-27 14:29:38',NULL),(1,41,9401,'2012-11-27 14:29:38',NULL),(1,44,9401,'2012-11-27 14:29:38',NULL),(1,162,9401,'2012-11-27 14:29:38',NULL),(1,233,9401,'2012-11-27 14:29:38',NULL),(1,143,9401,'2012-11-27 14:29:38',NULL),(1,175,9401,'2012-11-27 14:29:38',NULL),(1,176,9401,'2012-11-27 14:29:38',NULL),(1,109,9401,'2012-11-27 14:29:38',NULL),(1,182,9401,'2012-11-27 14:29:38',NULL),(1,93,9401,'2012-11-27 14:29:38',NULL),(1,15,9401,'2012-11-27 14:29:38',NULL),(1,156,9401,'2012-11-27 14:29:38',NULL),(1,203,9401,'2012-11-27 14:29:38',NULL),(1,249,9398,'2012-11-27 14:29:42',NULL),(1,160,9398,'2012-11-27 14:29:42',NULL),(1,133,9398,'2012-11-27 14:29:42',NULL),(1,25,9398,'2012-11-27 14:29:42',NULL),(1,125,9398,'2012-11-27 14:29:42',NULL),(1,237,9398,'2012-11-27 14:29:42',NULL),(1,134,9398,'2012-11-27 14:29:42',NULL),(1,135,9398,'2012-11-27 14:29:42',NULL),(1,249,9392,'2012-11-27 14:29:47',NULL),(1,133,9392,'2012-11-27 14:29:47',NULL),(1,25,9392,'2012-11-27 14:29:47',NULL),(1,125,9392,'2012-11-27 14:29:47',NULL),(1,237,9392,'2012-11-27 14:29:47',NULL),(1,135,9392,'2012-11-27 14:29:47',NULL),(1,141,9392,'2012-11-27 14:29:47',NULL),(1,193,9392,'2012-11-27 14:29:47',NULL),(1,193,9421,'2012-11-27 14:30:20',NULL),(1,185,9387,'2012-11-27 14:30:24',NULL),(1,108,9387,'2012-11-27 14:30:24',NULL),(1,102,9387,'2012-11-27 14:30:24',NULL),(1,103,9387,'2012-11-27 14:30:24',NULL),(1,204,9387,'2012-11-27 14:30:24',NULL),(1,38,9387,'2012-11-27 14:30:24',NULL),(1,60,9387,'2012-11-27 14:30:24',NULL),(1,198,9387,'2012-11-27 14:30:24',NULL),(1,241,9387,'2012-11-27 14:30:24',NULL),(1,104,9387,'2012-11-27 14:30:24',NULL),(1,212,9387,'2012-11-27 14:30:24',NULL),(1,69,9387,'2012-11-27 14:30:24',NULL),(1,52,9387,'2012-11-27 14:30:24',NULL),(1,70,9387,'2012-11-27 14:30:24',NULL),(1,56,9387,'2012-11-27 14:30:24',NULL),(1,92,9387,'2012-11-27 14:30:24',NULL),(1,185,9440,'2012-11-27 14:30:29',NULL),(1,108,9440,'2012-11-27 14:30:29',NULL),(1,102,9440,'2012-11-27 14:30:29',NULL),(1,103,9440,'2012-11-27 14:30:29',NULL),(1,204,9440,'2012-11-27 14:30:29',NULL),(1,38,9440,'2012-11-27 14:30:29',NULL),(1,60,9440,'2012-11-27 14:30:29',NULL),(1,198,9440,'2012-11-27 14:30:29',NULL),(1,241,9440,'2012-11-27 14:30:29',NULL),(1,104,9440,'2012-11-27 14:30:29',NULL),(1,212,9440,'2012-11-27 14:30:29',NULL),(1,69,9440,'2012-11-27 14:30:29',NULL),(1,52,9440,'2012-11-27 14:30:29',NULL),(1,70,9440,'2012-11-27 14:30:29',NULL),(1,56,9440,'2012-11-27 14:30:29',NULL),(1,92,9440,'2012-11-27 14:30:29',NULL),(1,249,9434,'2012-11-27 14:30:30',NULL),(1,4,9394,'2012-11-27 14:30:33',NULL),(1,249,9437,'2012-11-27 14:30:34',NULL),(1,160,9437,'2012-11-27 14:30:34',NULL),(1,133,9437,'2012-11-27 14:30:34',NULL),(1,25,9437,'2012-11-27 14:30:34',NULL),(1,125,9437,'2012-11-27 14:30:34',NULL),(1,237,9437,'2012-11-27 14:30:34',NULL),(1,134,9437,'2012-11-27 14:30:34',NULL),(1,135,9437,'2012-11-27 14:30:34',NULL),(1,183,9420,'2012-11-27 14:30:36',NULL),(1,172,9384,'2012-11-27 14:30:38',NULL),(1,112,9384,'2012-11-27 14:30:38',NULL),(1,65,9384,'2012-11-27 14:30:38',NULL),(1,202,9384,'2012-11-27 14:30:38',NULL),(1,7,9393,'2012-11-27 14:30:41',1),(1,132,9393,'2012-11-27 14:30:41',1),(1,134,9431,'2012-11-27 14:30:45',1),(1,149,9431,'2012-11-27 14:30:45',1),(1,7,9432,'2012-11-27 14:30:46',1),(1,132,9432,'2012-11-27 14:30:46',1),(1,7,9433,'2012-11-27 14:30:48',1),(1,132,9433,'2012-11-27 14:30:48',1),(1,172,9441,'2012-11-27 14:30:49',1),(1,112,9441,'2012-11-27 14:30:49',1),(1,249,9396,'2012-11-27 15:30:49',1),(1,160,9396,'2012-11-27 15:30:49',1),(1,133,9396,'2012-11-27 15:30:49',1),(1,25,9396,'2012-11-27 15:30:49',1),(1,125,9396,'2012-11-27 15:30:49',1),(1,237,9396,'2012-11-27 15:30:49',1),(1,134,9396,'2012-11-27 15:30:49',1),(1,135,9396,'2012-11-27 15:30:49',1),(1,249,9442,'2012-11-27 15:30:53',1),(1,160,9442,'2012-11-27 15:30:53',1),(1,133,9442,'2012-11-27 15:30:53',1),(1,25,9442,'2012-11-27 15:30:53',1),(1,125,9442,'2012-11-27 15:30:53',1),(1,237,9442,'2012-11-27 15:30:53',1),(1,134,9442,'2012-11-27 15:30:53',1),(1,135,9442,'2012-11-27 15:30:53',1),(1,249,9436,'2012-11-27 16:00:57',1),(1,160,9436,'2012-11-27 16:00:57',1),(1,133,9436,'2012-11-27 16:00:57',1),(1,25,9436,'2012-11-27 16:00:57',1),(1,125,9436,'2012-11-27 16:00:57',1),(1,237,9436,'2012-11-27 16:00:57',1),(1,134,9436,'2012-11-27 16:00:57',1),(1,135,9436,'2012-11-27 16:00:57',1),(1,249,9429,'2012-11-27 16:00:59',1),(1,160,9429,'2012-11-27 16:00:59',1),(1,133,9429,'2012-11-27 16:00:59',1),(1,25,9429,'2012-11-27 16:00:59',1),(1,125,9429,'2012-11-27 16:00:59',1),(1,237,9429,'2012-11-27 16:00:59',1),(1,134,9429,'2012-11-27 16:00:59',1),(1,135,9429,'2012-11-27 16:00:59',1),(1,249,9399,'2012-11-27 18:02:37',1),(1,172,9395,'2012-11-27 18:02:37',1),(1,149,9430,'2012-11-27 19:32:42',1),(1,126,9430,'2012-11-27 19:32:42',1),(1,79,9430,'2012-11-27 19:32:42',1),(1,225,9430,'2012-11-27 19:32:42',1),(1,41,9430,'2012-11-27 19:32:42',1),(1,44,9430,'2012-11-27 19:32:42',1),(1,162,9430,'2012-11-27 19:32:42',1),(1,233,9430,'2012-11-27 19:32:42',1),(1,143,9430,'2012-11-27 19:32:42',1),(1,175,9430,'2012-11-27 19:32:42',1),(1,176,9430,'2012-11-27 19:32:42',1),(1,109,9430,'2012-11-27 19:32:42',1),(1,182,9430,'2012-11-27 19:32:42',1),(1,93,9430,'2012-11-27 19:32:42',1),(1,15,9430,'2012-11-27 19:32:42',1),(1,156,9430,'2012-11-27 19:32:42',1),(1,140,9473,'2012-11-28 00:46:41',1),(1,149,9473,'2012-11-28 00:46:41',1),(1,233,9473,'2012-11-28 00:46:41',1),(1,65,9473,'2012-11-28 00:46:41',1),(1,233,9471,'2012-11-28 00:46:41',1),(1,65,9471,'2012-11-28 00:46:41',1),(1,140,9472,'2012-11-28 00:46:42',1),(1,149,9472,'2012-11-28 00:46:42',1),(1,233,9472,'2012-11-28 00:46:42',1),(1,65,9472,'2012-11-28 00:46:42',1),(1,249,9474,'2012-11-28 00:46:44',1),(1,16,9474,'2012-11-28 00:46:44',1),(1,140,9474,'2012-11-28 00:46:44',1),(1,149,9474,'2012-11-28 00:46:44',1),(1,249,9475,'2012-11-28 00:46:45',1),(1,16,9475,'2012-11-28 00:46:45',1),(1,25,9475,'2012-11-28 00:46:45',1),(1,140,9475,'2012-11-28 00:46:45',1),(1,249,9476,'2012-11-28 00:46:45',1),(1,16,9476,'2012-11-28 00:46:45',1),(1,25,9476,'2012-11-28 00:46:45',1),(1,140,9476,'2012-11-28 00:46:45',1),(1,149,9476,'2012-11-28 00:46:45',1),(1,233,9476,'2012-11-28 00:46:45',1),(1,65,9476,'2012-11-28 00:46:45',1),(1,60,9476,'2012-11-28 00:46:45',1),(1,149,9477,'2012-11-28 00:46:49',1),(1,79,9477,'2012-11-28 00:46:49',1),(1,225,9477,'2012-11-28 00:46:49',1),(1,41,9477,'2012-11-28 00:46:49',1),(1,249,9478,'2012-11-28 00:46:49',1),(1,16,9478,'2012-11-28 00:46:49',1),(1,25,9478,'2012-11-28 00:46:49',1),(1,140,9478,'2012-11-28 00:46:49',1),(1,149,9478,'2012-11-28 00:46:49',1),(1,233,9478,'2012-11-28 00:46:49',1),(1,65,9478,'2012-11-28 00:46:49',1),(1,60,9478,'2012-11-28 00:46:49',1),(1,249,9479,'2012-11-28 00:46:57',1),(1,16,9479,'2012-11-28 00:46:57',1),(1,25,9479,'2012-11-28 00:46:57',1),(1,140,9479,'2012-11-28 00:46:57',1),(1,149,9479,'2012-11-28 00:46:57',1),(1,79,9479,'2012-11-28 00:46:57',1),(1,233,9479,'2012-11-28 00:46:57',1),(1,65,9479,'2012-11-28 00:46:57',1),(1,249,9480,'2012-11-28 00:46:57',1),(1,16,9480,'2012-11-28 00:46:57',1),(1,25,9480,'2012-11-28 00:46:57',1),(1,140,9480,'2012-11-28 00:46:57',1),(1,149,9480,'2012-11-28 00:46:57',1),(1,79,9480,'2012-11-28 00:46:57',1),(1,225,9480,'2012-11-28 00:46:57',1),(1,41,9480,'2012-11-28 00:46:57',1),(1,249,9481,'2012-11-28 00:46:59',1),(1,16,9481,'2012-11-28 00:46:59',1),(1,25,9481,'2012-11-28 00:46:59',1),(1,140,9481,'2012-11-28 00:46:59',1),(1,149,9481,'2012-11-28 00:46:59',1),(1,79,9481,'2012-11-28 00:46:59',1),(1,225,9481,'2012-11-28 00:46:59',1),(1,41,9481,'2012-11-28 00:46:59',1),(1,65,9482,'2012-11-28 00:47:01',1),(1,60,9483,'2012-11-28 00:47:01',1),(1,60,9484,'2012-11-28 00:47:01',1),(1,41,9485,'2012-11-28 00:47:03',1),(1,233,9486,'2012-11-28 00:47:05',1),(1,65,9486,'2012-11-28 00:47:05',1),(1,233,9487,'2012-11-28 00:47:08',1),(1,193,9487,'2012-11-28 00:47:08',1),(1,112,9488,'2012-11-28 00:47:09',1),(1,65,9488,'2012-11-28 00:47:09',1),(1,41,9470,'2012-11-28 00:47:09',1),(1,249,9489,'2012-11-28 00:47:13',1),(1,16,9489,'2012-11-28 00:47:13',1),(1,16,9533,'2012-11-28 01:46:12',1),(1,20,9534,'2012-11-28 01:46:16',1),(1,20,9532,'2012-11-28 01:46:21',1),(1,16,9532,'2012-11-28 01:46:21',1),(1,140,9532,'2012-11-28 01:46:21',1),(1,135,9532,'2012-11-28 01:46:21',1),(1,160,9531,'2012-11-28 01:46:21',1),(1,137,9531,'2012-11-28 01:46:21',1),(1,97,9531,'2012-11-28 01:46:21',1),(1,151,9531,'2012-11-28 01:46:21',1),(1,79,9531,'2012-11-28 01:46:21',1),(1,152,9531,'2012-11-28 01:46:21',1),(1,235,9531,'2012-11-28 01:46:21',1),(1,165,9531,'2012-11-28 01:46:21',1),(1,196,9536,'2012-11-28 01:46:25',1),(1,7,9536,'2012-11-28 01:46:25',1),(1,149,9535,'2012-11-28 01:46:26',1),(1,196,9535,'2012-11-28 01:46:26',1),(1,20,9530,'2012-11-28 01:46:29',1),(1,16,9530,'2012-11-28 01:46:29',1),(1,140,9530,'2012-11-28 01:46:29',1),(1,135,9530,'2012-11-28 01:46:29',1),(1,20,9537,'2012-11-28 02:16:37',1),(1,160,9537,'2012-11-28 02:16:37',1),(1,137,9537,'2012-11-28 02:16:37',1),(1,97,9537,'2012-11-28 02:16:37',1),(1,151,9537,'2012-11-28 02:16:37',1),(1,79,9537,'2012-11-28 02:16:37',1),(1,152,9537,'2012-11-28 02:16:37',1),(1,235,9537,'2012-11-28 02:16:37',1),(1,203,9556,'2012-11-28 02:46:15',1),(1,228,9556,'2012-11-28 02:46:15',1),(1,203,9559,'2012-11-28 03:16:42',1),(1,228,9559,'2012-11-28 03:16:42',1),(1,203,9561,'2012-11-28 03:16:51',1),(1,228,9561,'2012-11-28 03:16:51',1),(1,202,9566,'2012-11-28 03:17:05',1),(1,4,9566,'2012-11-28 03:17:05',1),(1,223,9604,'2012-11-28 03:46:29',1),(1,91,9604,'2012-11-28 03:46:29',1),(1,223,9605,'2012-11-28 03:46:29',1),(1,91,9605,'2012-11-28 03:46:29',1),(1,223,9606,'2012-11-28 03:46:33',1),(1,11,9557,'2012-11-28 03:46:36',1),(1,18,9557,'2012-11-28 03:46:36',1),(1,187,9557,'2012-11-28 03:46:36',1),(1,185,9557,'2012-11-28 03:46:36',1),(1,92,9611,'2012-11-28 03:46:42',1),(1,6,9611,'2012-11-28 03:46:42',1),(1,92,9610,'2012-11-28 03:46:42',1),(1,223,9610,'2012-11-28 03:46:42',1),(1,11,9571,'2012-11-28 03:46:42',1),(1,18,9571,'2012-11-28 03:46:42',1),(1,187,9571,'2012-11-28 03:46:42',1),(1,185,9571,'2012-11-28 03:46:42',1),(1,69,9558,'2012-11-28 03:46:46',1),(1,52,9558,'2012-11-28 03:46:46',1),(1,70,9558,'2012-11-28 03:46:46',1),(1,56,9558,'2012-11-28 03:46:46',1),(1,185,9607,'2012-11-28 03:46:49',1),(1,108,9607,'2012-11-28 03:46:49',1),(1,102,9607,'2012-11-28 03:46:49',1),(1,103,9607,'2012-11-28 03:46:49',1),(1,244,9570,'2012-11-28 03:47:00',1),(1,95,9570,'2012-11-28 03:47:00',1),(1,88,9570,'2012-11-28 03:47:00',1),(1,113,9570,'2012-11-28 03:47:00',1),(1,227,9570,'2012-11-28 03:47:00',1),(1,246,9570,'2012-11-28 03:47:00',1),(1,139,9570,'2012-11-28 03:47:00',1),(1,89,9570,'2012-11-28 03:47:00',1),(1,108,9570,'2012-11-28 03:47:00',1),(1,102,9570,'2012-11-28 03:47:00',1),(1,103,9570,'2012-11-28 03:47:00',1),(1,204,9570,'2012-11-28 03:47:00',1),(1,198,9570,'2012-11-28 03:47:00',1),(1,241,9570,'2012-11-28 03:47:00',1),(1,104,9570,'2012-11-28 03:47:00',1),(1,212,9570,'2012-11-28 03:47:00',1),(1,68,9562,'2012-11-28 03:47:07',1),(1,183,9563,'2012-11-28 03:47:11',1),(1,12,9598,'2012-11-28 03:47:13',1),(1,154,9598,'2012-11-28 03:47:13',1),(1,46,9598,'2012-11-28 03:47:13',1),(1,161,9598,'2012-11-28 03:47:13',1),(1,34,9598,'2012-11-28 03:47:13',1),(1,35,9598,'2012-11-28 03:47:13',1),(1,248,9598,'2012-11-28 03:47:13',1),(1,106,9598,'2012-11-28 03:47:13',1),(1,244,9554,'2012-11-28 03:47:13',1),(1,95,9554,'2012-11-28 03:47:13',1),(1,88,9554,'2012-11-28 03:47:13',1),(1,113,9554,'2012-11-28 03:47:13',1),(1,227,9554,'2012-11-28 03:47:13',1),(1,246,9554,'2012-11-28 03:47:13',1),(1,139,9554,'2012-11-28 03:47:13',1),(1,89,9554,'2012-11-28 03:47:13',1),(1,11,9554,'2012-11-28 03:47:13',1),(1,18,9554,'2012-11-28 03:47:13',1),(1,187,9554,'2012-11-28 03:47:13',1),(1,185,9554,'2012-11-28 03:47:13',1),(1,108,9554,'2012-11-28 03:47:13',1),(1,102,9554,'2012-11-28 03:47:13',1),(1,103,9554,'2012-11-28 03:47:13',1),(1,204,9554,'2012-11-28 03:47:13',1),(1,244,9568,'2012-11-28 03:47:16',1),(1,95,9568,'2012-11-28 03:47:16',1),(1,88,9568,'2012-11-28 03:47:16',1),(1,113,9568,'2012-11-28 03:47:16',1),(1,227,9568,'2012-11-28 03:47:16',1),(1,246,9568,'2012-11-28 03:47:16',1),(1,139,9568,'2012-11-28 03:47:16',1),(1,89,9568,'2012-11-28 03:47:16',1),(1,12,9569,'2012-11-28 03:47:19',1),(1,154,9569,'2012-11-28 03:47:19',1),(1,46,9569,'2012-11-28 03:47:19',1),(1,161,9569,'2012-11-28 03:47:19',1),(1,34,9569,'2012-11-28 03:47:19',1),(1,35,9569,'2012-11-28 03:47:19',1),(1,248,9569,'2012-11-28 03:47:19',1),(1,106,9569,'2012-11-28 03:47:19',1),(1,4,9564,'2012-11-28 03:47:19',1),(1,68,9599,'2012-11-28 03:47:20',1),(1,92,9599,'2012-11-28 03:47:20',1),(1,143,9567,'2012-11-28 03:47:22',1),(1,176,9567,'2012-11-28 03:47:22',1),(1,109,9567,'2012-11-28 03:47:22',1),(1,69,9567,'2012-11-28 03:47:22',1),(1,52,9567,'2012-11-28 03:47:22',1),(1,70,9567,'2012-11-28 03:47:22',1),(1,56,9567,'2012-11-28 03:47:22',1),(1,223,9567,'2012-11-28 03:47:22',1),(1,223,9602,'2012-11-28 03:47:29',1),(1,175,9555,'2012-11-28 03:47:33',1),(1,93,9555,'2012-11-28 03:47:33',1),(1,15,9555,'2012-11-28 03:47:33',1),(1,156,9555,'2012-11-28 03:47:33',1),(1,143,9565,'2012-11-28 03:47:33',1),(1,176,9565,'2012-11-28 03:47:33',1),(1,109,9565,'2012-11-28 03:47:33',1),(1,172,9565,'2012-11-28 03:47:33',1),(1,69,9565,'2012-11-28 03:47:33',1),(1,52,9565,'2012-11-28 03:47:33',1),(1,70,9565,'2012-11-28 03:47:33',1),(1,56,9565,'2012-11-28 03:47:33',1),(1,20,9613,'2012-11-28 04:16:40',NULL),(1,10,9613,'2012-11-28 04:16:40',NULL),(1,215,9613,'2012-11-28 04:16:40',NULL),(1,61,9613,'2012-11-28 04:16:40',NULL),(1,5,9613,'2012-11-28 04:16:40',NULL),(1,229,9613,'2012-11-28 04:16:40',NULL),(1,216,9613,'2012-11-28 04:16:40',NULL),(1,77,9613,'2012-11-28 04:16:40',NULL),(1,68,9596,'2012-11-28 04:16:49',1),(1,92,9590,'2012-11-28 04:16:53',1),(1,244,9601,'2012-11-28 04:16:55',1),(1,95,9601,'2012-11-28 04:16:55',1),(1,88,9601,'2012-11-28 04:16:55',1),(1,183,9601,'2012-11-28 04:16:55',1),(1,113,9601,'2012-11-28 04:16:55',1),(1,227,9601,'2012-11-28 04:16:55',1),(1,246,9601,'2012-11-28 04:16:55',1),(1,139,9601,'2012-11-28 04:16:55',1),(1,89,9601,'2012-11-28 04:16:55',1),(1,11,9601,'2012-11-28 04:16:55',1),(1,18,9601,'2012-11-28 04:16:55',1),(1,187,9601,'2012-11-28 04:16:55',1),(1,175,9601,'2012-11-28 04:16:55',1),(1,93,9601,'2012-11-28 04:16:55',1),(1,15,9601,'2012-11-28 04:16:55',1),(1,156,9601,'2012-11-28 04:16:55',1),(1,185,9594,'2012-11-28 04:16:57',1),(1,108,9594,'2012-11-28 04:16:57',1),(1,102,9594,'2012-11-28 04:16:57',1),(1,103,9594,'2012-11-28 04:16:57',1),(1,198,9560,'2012-11-28 04:17:03',NULL),(1,241,9560,'2012-11-28 04:17:03',NULL),(1,104,9560,'2012-11-28 04:17:03',NULL),(1,212,9560,'2012-11-28 04:17:03',NULL),(1,244,9608,'2012-11-28 04:17:11',1),(1,95,9608,'2012-11-28 04:17:11',1),(1,88,9608,'2012-11-28 04:17:11',1),(1,183,9608,'2012-11-28 04:17:11',1),(1,113,9608,'2012-11-28 04:17:11',1),(1,227,9608,'2012-11-28 04:17:11',1),(1,246,9608,'2012-11-28 04:17:11',1),(1,139,9608,'2012-11-28 04:17:11',1),(1,89,9608,'2012-11-28 04:17:11',1),(1,11,9608,'2012-11-28 04:17:11',1),(1,18,9608,'2012-11-28 04:17:11',1),(1,187,9608,'2012-11-28 04:17:11',1),(1,175,9608,'2012-11-28 04:17:11',1),(1,93,9608,'2012-11-28 04:17:11',1),(1,15,9608,'2012-11-28 04:17:11',1),(1,156,9608,'2012-11-28 04:17:11',1),(1,204,9603,'2012-11-28 04:17:14',1),(1,4,9603,'2012-11-28 04:17:14',1),(1,143,9614,'2012-11-28 04:17:15',1),(1,176,9614,'2012-11-28 04:17:15',1),(1,109,9614,'2012-11-28 04:17:15',1),(1,172,9614,'2012-11-28 04:17:15',1),(1,69,9614,'2012-11-28 04:17:15',1),(1,52,9614,'2012-11-28 04:17:15',1),(1,70,9614,'2012-11-28 04:17:15',1),(1,56,9614,'2012-11-28 04:17:15',1),(1,125,9600,'2012-11-28 04:17:17',1),(1,237,9600,'2012-11-28 04:17:17',1),(1,134,9600,'2012-11-28 04:17:17',1),(1,68,9600,'2012-11-28 04:17:17',1),(1,12,9597,'2012-11-28 04:17:19',1),(1,154,9597,'2012-11-28 04:17:19',1),(1,46,9597,'2012-11-28 04:17:19',1),(1,161,9597,'2012-11-28 04:17:19',1),(1,34,9597,'2012-11-28 04:17:19',1),(1,35,9597,'2012-11-28 04:17:19',1),(1,248,9597,'2012-11-28 04:17:19',1),(1,106,9597,'2012-11-28 04:17:19',1),(1,40,9609,'2012-11-28 04:17:24',1),(1,170,9609,'2012-11-28 04:17:24',1),(1,146,9609,'2012-11-28 04:17:24',1),(1,239,9609,'2012-11-28 04:17:24',1),(1,43,9609,'2012-11-28 04:17:24',1),(1,147,9609,'2012-11-28 04:17:24',1),(1,153,9609,'2012-11-28 04:17:24',1),(1,45,9609,'2012-11-28 04:17:24',1),(1,125,9595,'2012-11-28 04:17:31',1),(1,237,9595,'2012-11-28 04:17:31',1),(1,134,9595,'2012-11-28 04:17:31',1),(1,68,9595,'2012-11-28 04:17:31',1),(1,125,9612,'2012-11-28 04:17:32',1),(1,237,9612,'2012-11-28 04:17:32',1),(1,134,9612,'2012-11-28 04:17:32',1),(1,198,9612,'2012-11-28 04:17:32',1),(1,241,9612,'2012-11-28 04:17:32',1),(1,104,9612,'2012-11-28 04:17:32',1),(1,68,9612,'2012-11-28 04:17:32',1),(1,212,9612,'2012-11-28 04:17:32',1),(1,5,9591,'2012-11-28 04:17:39',1),(1,229,9591,'2012-11-28 04:17:39',1),(1,216,9591,'2012-11-28 04:17:39',1),(1,77,9591,'2012-11-28 04:17:39',1),(1,125,9593,'2012-11-28 04:47:24',1),(1,237,9593,'2012-11-28 04:47:24',1),(1,134,9593,'2012-11-28 04:47:24',1),(1,12,9593,'2012-11-28 04:47:24',1),(1,154,9593,'2012-11-28 04:47:24',1),(1,46,9593,'2012-11-28 04:47:24',1),(1,143,9593,'2012-11-28 04:47:24',1),(1,161,9593,'2012-11-28 04:47:24',1),(1,176,9593,'2012-11-28 04:47:24',1),(1,109,9593,'2012-11-28 04:47:24',1),(1,34,9593,'2012-11-28 04:47:24',1),(1,35,9593,'2012-11-28 04:47:24',1),(1,248,9593,'2012-11-28 04:47:24',1),(1,106,9593,'2012-11-28 04:47:24',1),(1,172,9593,'2012-11-28 04:47:24',1),(1,5,9593,'2012-11-28 04:47:24',1),(1,20,9592,'2012-11-28 04:47:41',NULL),(1,10,9592,'2012-11-28 04:47:41',NULL),(1,215,9592,'2012-11-28 04:47:41',NULL),(1,61,9592,'2012-11-28 04:47:41',NULL),(1,120,10493,'2012-11-29 10:29:22',1),(1,115,10493,'2012-11-29 10:29:22',1),(1,3,10470,'2012-11-29 11:02:45',1),(1,82,10470,'2012-11-29 11:02:45',1),(1,120,10470,'2012-11-29 11:02:45',1),(1,29,10470,'2012-11-29 11:02:45',1),(1,141,10471,'2012-11-29 11:02:45',1),(1,3,10471,'2012-11-29 11:02:45',1),(1,82,10471,'2012-11-29 11:02:45',1),(1,120,10471,'2012-11-29 11:02:45',1),(1,29,10473,'2012-11-29 11:02:49',1),(1,115,10473,'2012-11-29 11:02:49',1),(1,141,10494,'2012-11-29 11:02:57',1),(1,3,10494,'2012-11-29 11:02:57',1),(1,82,10494,'2012-11-29 11:02:57',1),(1,120,10494,'2012-11-29 11:02:57',1),(1,141,10481,'2012-11-29 11:02:59',1),(1,115,10485,'2012-11-29 11:03:03',1),(1,141,10487,'2012-11-29 11:03:06',1),(1,3,10487,'2012-11-29 11:03:06',1),(1,82,10487,'2012-11-29 11:03:06',1),(1,120,10487,'2012-11-29 11:03:06',1),(1,120,10414,'2012-11-29 11:03:34',1),(1,115,10414,'2012-11-29 11:03:34',1),(1,29,10482,'2012-11-29 11:33:02',1),(1,115,10482,'2012-11-29 11:33:02',1),(1,48,10483,'2012-11-29 11:33:03',1),(1,85,10483,'2012-11-29 11:33:03',1),(1,29,10484,'2012-11-29 11:33:04',1),(1,115,10484,'2012-11-29 11:33:04',1),(1,204,10486,'2012-11-29 11:33:06',1),(1,141,10490,'2012-11-29 11:33:10',1),(1,3,10490,'2012-11-29 11:33:10',1),(1,82,10490,'2012-11-29 11:33:10',1),(1,120,10490,'2012-11-29 11:33:10',1),(1,204,10474,'2012-11-29 11:33:13',1),(1,115,10472,'2012-11-29 11:33:14',1),(1,198,10472,'2012-11-29 11:33:14',1),(1,48,10435,'2012-11-29 11:33:17',1),(1,29,10435,'2012-11-29 11:33:17',1),(1,85,10435,'2012-11-29 11:33:17',1),(1,115,10435,'2012-11-29 11:33:17',1),(1,48,10436,'2012-11-29 11:33:21',1),(1,29,10436,'2012-11-29 11:33:21',1),(1,251,10436,'2012-11-29 11:33:21',1),(1,85,10436,'2012-11-29 11:33:21',1),(1,115,10438,'2012-11-29 11:33:22',1),(1,204,10438,'2012-11-29 11:33:22',1),(1,48,10479,'2012-11-29 11:33:23',1),(1,29,10479,'2012-11-29 11:33:23',1),(1,251,10479,'2012-11-29 11:33:23',1),(1,85,10479,'2012-11-29 11:33:23',1),(1,198,10442,'2012-11-29 11:33:28',1),(1,141,10492,'2012-11-29 12:02:56',1),(1,3,10492,'2012-11-29 12:02:56',1),(1,82,10492,'2012-11-29 12:02:56',1),(1,120,10492,'2012-11-29 12:02:56',1),(1,33,10492,'2012-11-29 12:02:56',1),(1,115,10492,'2012-11-29 12:02:56',1),(1,204,10492,'2012-11-29 12:02:56',1),(1,198,10492,'2012-11-29 12:02:56',1),(1,141,10476,'2012-11-29 12:03:16',1),(1,3,10476,'2012-11-29 12:03:16',1),(1,82,10476,'2012-11-29 12:03:16',1),(1,120,10476,'2012-11-29 12:03:16',1),(1,48,10476,'2012-11-29 12:03:16',1),(1,33,10476,'2012-11-29 12:03:16',1),(1,29,10476,'2012-11-29 12:03:16',1),(1,251,10476,'2012-11-29 12:03:16',1),(1,1,10480,'2012-11-29 12:03:25',1),(1,178,10480,'2012-11-29 12:03:25',1),(1,100,10480,'2012-11-29 12:03:25',1),(1,36,10480,'2012-11-29 12:03:25',1),(1,37,10480,'2012-11-29 12:03:25',1),(1,30,10480,'2012-11-29 12:03:25',1),(1,243,10480,'2012-11-29 12:03:25',1),(1,31,10480,'2012-11-29 12:03:25',1),(1,236,10480,'2012-11-29 12:03:25',1),(1,230,10480,'2012-11-29 12:03:25',1),(1,213,10480,'2012-11-29 12:03:25',1),(1,81,10480,'2012-11-29 12:03:25',1),(1,208,10480,'2012-11-29 12:03:25',1),(1,209,10480,'2012-11-29 12:03:25',1),(1,78,10480,'2012-11-29 12:03:25',1),(1,105,10480,'2012-11-29 12:03:25',1),(1,48,10439,'2012-11-29 12:03:46',NULL),(1,29,10439,'2012-11-29 12:03:46',NULL),(1,251,10439,'2012-11-29 12:03:46',NULL),(1,85,10439,'2012-11-29 12:03:46',NULL),(1,115,10441,'2012-11-29 12:04:06',1),(1,204,10441,'2012-11-29 12:04:06',1),(1,198,10443,'2012-11-29 12:04:12',1),(1,115,10445,'2012-11-29 12:04:17',1),(1,204,10445,'2012-11-29 12:04:17',1),(1,141,10450,'2012-11-29 12:04:22',1),(1,3,10450,'2012-11-29 12:04:22',1),(1,82,10450,'2012-11-29 12:04:22',1),(1,120,10450,'2012-11-29 12:04:22',1),(1,141,10411,'2012-11-29 12:04:26',NULL),(1,3,10411,'2012-11-29 12:04:26',NULL),(1,82,10411,'2012-11-29 12:04:26',NULL),(1,120,10411,'2012-11-29 12:04:26',NULL),(1,105,10448,'2012-11-29 12:04:29',1),(1,105,10412,'2012-11-29 12:04:32',1),(1,115,10434,'2012-11-29 12:04:32',1),(1,204,10434,'2012-11-29 12:04:32',1),(1,85,10437,'2012-11-29 12:04:38',1),(1,115,10437,'2012-11-29 12:04:38',1),(1,204,10437,'2012-11-29 12:04:38',1),(1,198,10437,'2012-11-29 12:04:38',1),(1,85,10417,'2012-11-29 12:04:50',1),(1,115,10417,'2012-11-29 12:04:50',1),(1,204,10417,'2012-11-29 12:04:50',1),(1,198,10417,'2012-11-29 12:04:50',1),(1,33,10365,'2012-11-29 12:04:54',1),(1,198,10365,'2012-11-29 12:04:54',1),(1,85,10352,'2012-11-29 12:04:56',1),(1,115,10352,'2012-11-29 12:04:56',1),(1,204,10352,'2012-11-29 12:04:56',1),(1,198,10352,'2012-11-29 12:04:56',1),(1,33,10415,'2012-11-29 12:04:58',1),(1,198,10415,'2012-11-29 12:04:58',1),(1,81,10351,'2012-11-29 12:05:55',1),(1,208,10351,'2012-11-29 12:05:55',1),(1,209,10351,'2012-11-29 12:05:55',1),(1,78,10351,'2012-11-29 12:05:55',1),(1,81,10356,'2012-11-29 12:06:08',1),(1,208,10356,'2012-11-29 12:06:08',1),(1,209,10356,'2012-11-29 12:06:08',1),(1,78,10356,'2012-11-29 12:06:08',1),(1,119,10491,'2012-11-29 12:34:04',1),(1,138,10491,'2012-11-29 12:34:04',1),(1,121,10491,'2012-11-29 12:34:04',1),(1,122,10491,'2012-11-29 12:34:04',1),(1,123,10491,'2012-11-29 12:34:04',1),(1,245,10491,'2012-11-29 12:34:04',1),(1,26,10491,'2012-11-29 12:34:04',1),(1,164,10491,'2012-11-29 12:34:04',1),(1,197,10491,'2012-11-29 12:34:04',1),(1,71,10491,'2012-11-29 12:34:04',1),(1,28,10491,'2012-11-29 12:34:04',1),(1,186,10491,'2012-11-29 12:34:04',1),(1,57,10491,'2012-11-29 12:34:04',1),(1,163,10491,'2012-11-29 12:34:04',1),(1,58,10491,'2012-11-29 12:34:04',1),(1,148,10491,'2012-11-29 12:34:04',1),(1,160,10477,'2012-11-29 12:34:07',1),(1,141,10477,'2012-11-29 12:34:07',1),(1,3,10477,'2012-11-29 12:34:07',1),(1,82,10477,'2012-11-29 12:34:07',1),(1,120,10477,'2012-11-29 12:34:07',1),(1,48,10477,'2012-11-29 12:34:07',1),(1,1,10477,'2012-11-29 12:34:07',1),(1,33,10477,'2012-11-29 12:34:07',1),(1,236,10475,'2012-11-29 12:34:07',1),(1,251,10475,'2012-11-29 12:34:07',1),(1,85,10475,'2012-11-29 12:34:07',1),(1,115,10475,'2012-11-29 12:34:07',1),(1,204,10475,'2012-11-29 12:34:07',1),(1,230,10475,'2012-11-29 12:34:07',1),(1,198,10475,'2012-11-29 12:34:07',1),(1,213,10475,'2012-11-29 12:34:07',1),(1,160,10488,'2012-11-29 12:34:17',1),(1,141,10488,'2012-11-29 12:34:17',1),(1,3,10488,'2012-11-29 12:34:17',1),(1,82,10488,'2012-11-29 12:34:17',1),(1,120,10488,'2012-11-29 12:34:17',1),(1,48,10488,'2012-11-29 12:34:17',1),(1,1,10488,'2012-11-29 12:34:17',1),(1,33,10488,'2012-11-29 12:34:17',1),(1,178,10488,'2012-11-29 12:34:17',1),(1,100,10488,'2012-11-29 12:34:17',1),(1,36,10488,'2012-11-29 12:34:17',1),(1,37,10488,'2012-11-29 12:34:17',1),(1,29,10488,'2012-11-29 12:34:17',1),(1,30,10488,'2012-11-29 12:34:17',1),(1,243,10488,'2012-11-29 12:34:17',1),(1,31,10488,'2012-11-29 12:34:17',1),(1,122,10451,'2012-11-29 12:34:25',1),(1,123,10451,'2012-11-29 12:34:25',1),(1,48,10451,'2012-11-29 12:34:25',1),(1,245,10451,'2012-11-29 12:34:25',1),(1,26,10451,'2012-11-29 12:34:25',1),(1,164,10451,'2012-11-29 12:34:25',1),(1,197,10451,'2012-11-29 12:34:25',1),(1,71,10451,'2012-11-29 12:34:25',1),(1,119,10440,'2012-11-29 12:34:28',1),(1,138,10440,'2012-11-29 12:34:28',1),(1,121,10440,'2012-11-29 12:34:28',1),(1,122,10440,'2012-11-29 12:34:28',1),(1,123,10440,'2012-11-29 12:34:28',1),(1,245,10440,'2012-11-29 12:34:28',1),(1,26,10440,'2012-11-29 12:34:28',1),(1,164,10440,'2012-11-29 12:34:28',1),(1,197,10440,'2012-11-29 12:34:28',1),(1,71,10440,'2012-11-29 12:34:28',1),(1,28,10440,'2012-11-29 12:34:28',1),(1,186,10440,'2012-11-29 12:34:28',1),(1,57,10440,'2012-11-29 12:34:28',1),(1,163,10440,'2012-11-29 12:34:28',1),(1,58,10440,'2012-11-29 12:34:28',1),(1,148,10440,'2012-11-29 12:34:28',1),(1,119,10444,'2012-11-29 12:34:35',1),(1,138,10444,'2012-11-29 12:34:35',1),(1,121,10444,'2012-11-29 12:34:35',1),(1,122,10444,'2012-11-29 12:34:35',1),(1,123,10444,'2012-11-29 12:34:35',1),(1,245,10444,'2012-11-29 12:34:35',1),(1,26,10444,'2012-11-29 12:34:35',1),(1,164,10444,'2012-11-29 12:34:35',1),(1,197,10444,'2012-11-29 12:34:35',1),(1,71,10444,'2012-11-29 12:34:35',1),(1,28,10444,'2012-11-29 12:34:35',1),(1,186,10444,'2012-11-29 12:34:35',1),(1,57,10444,'2012-11-29 12:34:35',1),(1,163,10444,'2012-11-29 12:34:35',1),(1,58,10444,'2012-11-29 12:34:35',1),(1,148,10444,'2012-11-29 12:34:35',1),(1,28,10449,'2012-11-29 12:34:36',1),(1,186,10449,'2012-11-29 12:34:36',1),(1,57,10449,'2012-11-29 12:34:36',1),(1,163,10449,'2012-11-29 12:34:36',1),(1,58,10449,'2012-11-29 12:34:36',1),(1,148,10449,'2012-11-29 12:34:36',1),(1,1,10449,'2012-11-29 12:34:36',1),(1,33,10449,'2012-11-29 12:34:36',1),(1,28,10446,'2012-11-29 12:34:37',1),(1,186,10446,'2012-11-29 12:34:37',1),(1,57,10446,'2012-11-29 12:34:37',1),(1,163,10446,'2012-11-29 12:34:37',1),(1,58,10446,'2012-11-29 12:34:37',1),(1,148,10446,'2012-11-29 12:34:37',1),(1,1,10446,'2012-11-29 12:34:37',1),(1,33,10446,'2012-11-29 12:34:37',1),(1,122,10410,'2012-11-29 12:34:41',1),(1,123,10410,'2012-11-29 12:34:41',1),(1,48,10410,'2012-11-29 12:34:41',1),(1,245,10410,'2012-11-29 12:34:41',1),(1,26,10410,'2012-11-29 12:34:41',1),(1,164,10410,'2012-11-29 12:34:41',1),(1,197,10410,'2012-11-29 12:34:41',1),(1,71,10410,'2012-11-29 12:34:41',1),(1,105,10413,'2012-11-29 12:34:44',1),(1,105,10361,'2012-11-29 12:34:45',1),(1,105,10362,'2012-11-29 12:34:51',1),(1,28,10416,'2012-11-29 12:35:03',1),(1,186,10416,'2012-11-29 12:35:03',1),(1,57,10416,'2012-11-29 12:35:03',1),(1,163,10416,'2012-11-29 12:35:03',1),(1,58,10416,'2012-11-29 12:35:03',1),(1,148,10416,'2012-11-29 12:35:03',1),(1,1,10416,'2012-11-29 12:35:03',1),(1,33,10416,'2012-11-29 12:35:03',1),(1,81,10363,'2012-11-29 12:35:04',1),(1,208,10364,'2012-11-29 12:35:06',1),(1,28,10358,'2012-11-29 12:36:03',1),(1,186,10358,'2012-11-29 12:36:03',1),(1,57,10358,'2012-11-29 12:36:03',1),(1,163,10358,'2012-11-29 12:36:03',1),(1,58,10358,'2012-11-29 12:36:03',1),(1,148,10358,'2012-11-29 12:36:03',1),(1,1,10358,'2012-11-29 12:36:03',1),(1,33,10358,'2012-11-29 12:36:03',1),(1,81,10367,'2012-11-29 12:36:14',1),(1,208,10367,'2012-11-29 12:36:14',1),(1,209,10368,'2012-11-29 12:36:17',1),(1,209,10369,'2012-11-29 12:36:21',1),(1,78,10369,'2012-11-29 12:36:21',1),(1,81,10350,'2012-11-29 12:36:22',1),(1,208,10350,'2012-11-29 12:36:22',1),(1,209,10366,'2012-11-29 12:36:29',1),(1,78,10366,'2012-11-29 12:36:29',1),(1,81,10354,'2012-11-29 12:36:32',1),(1,208,10354,'2012-11-29 12:36:32',1),(1,209,10354,'2012-11-29 12:36:32',1),(1,78,10354,'2012-11-29 12:36:32',1),(1,81,10353,'2012-11-29 12:36:45',1),(1,208,10353,'2012-11-29 12:36:45',1),(1,209,10353,'2012-11-29 12:36:45',1),(1,78,10353,'2012-11-29 12:36:45',1),(1,178,10478,'2012-11-29 13:04:16',1),(1,100,10478,'2012-11-29 13:04:16',1),(1,36,10478,'2012-11-29 13:04:16',1),(1,37,10478,'2012-11-29 13:04:16',1),(1,29,10478,'2012-11-29 13:04:16',1),(1,30,10478,'2012-11-29 13:04:16',1),(1,243,10478,'2012-11-29 13:04:16',1),(1,31,10478,'2012-11-29 13:04:16',1),(1,160,10489,'2012-11-29 13:04:21',1),(1,141,10489,'2012-11-29 13:04:21',1),(1,119,10489,'2012-11-29 13:04:21',1),(1,138,10489,'2012-11-29 13:04:21',1),(1,3,10489,'2012-11-29 13:04:21',1),(1,82,10489,'2012-11-29 13:04:21',1),(1,120,10489,'2012-11-29 13:04:21',1),(1,121,10489,'2012-11-29 13:04:21',1),(1,236,10447,'2012-11-29 13:04:50',1),(1,251,10447,'2012-11-29 13:04:50',1),(1,85,10447,'2012-11-29 13:04:50',1),(1,115,10447,'2012-11-29 13:04:50',1),(1,204,10447,'2012-11-29 13:04:50',1),(1,230,10447,'2012-11-29 13:04:50',1),(1,198,10447,'2012-11-29 13:04:50',1),(1,213,10447,'2012-11-29 13:04:50',1),(1,122,10357,'2012-11-29 13:06:03',1),(1,123,10357,'2012-11-29 13:06:03',1),(1,48,10357,'2012-11-29 13:06:03',1),(1,245,10357,'2012-11-29 13:06:03',1),(1,26,10357,'2012-11-29 13:06:03',1),(1,164,10357,'2012-11-29 13:06:03',1),(1,197,10357,'2012-11-29 13:06:03',1),(1,71,10357,'2012-11-29 13:06:03',1),(1,122,10359,'2012-11-29 13:06:09',1),(1,123,10359,'2012-11-29 13:06:09',1),(1,48,10359,'2012-11-29 13:06:09',1),(1,245,10359,'2012-11-29 13:06:09',1),(1,26,10359,'2012-11-29 13:06:09',1),(1,164,10359,'2012-11-29 13:06:09',1),(1,197,10359,'2012-11-29 13:06:09',1),(1,71,10359,'2012-11-29 13:06:09',1),(1,28,10360,'2012-11-29 13:06:12',1),(1,186,10360,'2012-11-29 13:06:12',1),(1,57,10360,'2012-11-29 13:06:12',1),(1,163,10360,'2012-11-29 13:06:12',1),(1,58,10360,'2012-11-29 13:06:12',1),(1,148,10360,'2012-11-29 13:06:12',1),(1,1,10360,'2012-11-29 13:06:12',1),(1,33,10360,'2012-11-29 13:06:12',1),(1,122,10355,'2012-11-29 13:06:28',1),(1,123,10355,'2012-11-29 13:06:28',1),(1,48,10355,'2012-11-29 13:06:28',1),(1,245,10355,'2012-11-29 13:06:28',1),(1,26,10355,'2012-11-29 13:06:28',1),(1,164,10355,'2012-11-29 13:06:28',1),(1,197,10355,'2012-11-29 13:06:28',1),(1,71,10355,'2012-11-29 13:06:28',1),(1,94,10610,'2012-11-30 00:46:14',1),(1,96,10610,'2012-11-30 00:46:14',1),(1,138,10610,'2012-11-30 00:46:14',1),(1,177,10610,'2012-11-30 00:46:14',1),(1,17,10610,'2012-11-30 00:46:14',1),(1,144,10610,'2012-11-30 00:46:14',1),(1,73,10610,'2012-11-30 00:46:14',1),(1,78,10610,'2012-11-30 00:46:14',1),(1,94,10609,'2012-11-30 00:46:14',1),(1,96,10609,'2012-11-30 00:46:14',1),(1,138,10609,'2012-11-30 00:46:14',1),(1,177,10609,'2012-11-30 00:46:14',1),(1,17,10609,'2012-11-30 00:46:14',1),(1,144,10609,'2012-11-30 00:46:14',1),(1,73,10609,'2012-11-30 00:46:14',1),(1,78,10609,'2012-11-30 00:46:14',1),(1,94,10608,'2012-11-30 00:46:14',1),(1,96,10608,'2012-11-30 00:46:14',1),(1,138,10608,'2012-11-30 00:46:14',1),(1,177,10608,'2012-11-30 00:46:14',1),(1,17,10608,'2012-11-30 00:46:14',1),(1,144,10608,'2012-11-30 00:46:14',1),(1,73,10608,'2012-11-30 00:46:14',1),(1,78,10608,'2012-11-30 00:46:14',1),(1,138,10611,'2012-11-30 00:46:14',1),(1,144,10613,'2012-11-30 00:46:22',1),(1,177,10615,'2012-11-30 00:46:22',1),(1,144,10615,'2012-11-30 00:46:22',1),(1,78,10612,'2012-11-30 00:46:22',1),(1,78,10614,'2012-11-30 00:46:22',1),(1,138,10616,'2012-11-30 00:46:30',1),(1,177,10616,'2012-11-30 00:46:30',1),(1,138,10619,'2012-11-30 00:46:30',1),(1,177,10619,'2012-11-30 00:46:30',1),(1,144,10618,'2012-11-30 00:46:30',1),(1,138,10617,'2012-11-30 00:46:30',1),(1,177,10617,'2012-11-30 00:46:30',1),(1,144,10620,'2012-11-30 00:46:39',1),(1,73,10620,'2012-11-30 00:46:39',1),(1,17,10601,'2012-11-30 00:46:39',1),(1,144,10601,'2012-11-30 00:46:39',1),(1,73,10601,'2012-11-30 00:46:39',1),(1,78,10601,'2012-11-30 00:46:39',1),(1,94,10607,'2012-11-30 00:46:39',1),(1,96,10607,'2012-11-30 00:46:39',1),(1,138,10607,'2012-11-30 00:46:39',1),(1,177,10607,'2012-11-30 00:46:39',1),(1,17,10607,'2012-11-30 00:46:39',1),(1,144,10607,'2012-11-30 00:46:39',1),(1,73,10607,'2012-11-30 00:46:39',1),(1,78,10607,'2012-11-30 00:46:39',1),(1,94,10606,'2012-11-30 00:46:39',1),(1,96,10606,'2012-11-30 00:46:39',1),(1,138,10606,'2012-11-30 00:46:39',1),(1,177,10606,'2012-11-30 00:46:39',1),(1,94,10604,'2012-11-30 00:46:47',1),(1,96,10604,'2012-11-30 00:46:47',1),(1,138,10604,'2012-11-30 00:46:47',1),(1,177,10604,'2012-11-30 00:46:47',1),(1,17,10602,'2012-11-30 00:46:47',1),(1,144,10602,'2012-11-30 00:46:47',1),(1,73,10602,'2012-11-30 00:46:47',1),(1,78,10602,'2012-11-30 00:46:47',1),(1,105,10605,'2012-11-30 01:16:48',1),(1,94,10605,'2012-11-30 01:16:48',1),(1,96,10605,'2012-11-30 01:16:48',1),(1,138,10605,'2012-11-30 01:16:48',1),(1,167,10605,'2012-11-30 01:16:48',1),(1,232,10605,'2012-11-30 01:16:48',1),(1,47,10605,'2012-11-30 01:16:48',1),(1,51,10605,'2012-11-30 01:16:48',1),(1,105,10603,'2012-11-30 01:16:48',1),(1,94,10603,'2012-11-30 01:16:48',1),(1,96,10603,'2012-11-30 01:16:48',1),(1,138,10603,'2012-11-30 01:16:48',1),(1,105,10665,'2012-11-30 01:46:14',1),(1,192,10665,'2012-11-30 01:46:14',1),(1,105,10662,'2012-11-30 01:46:14',1),(1,56,10662,'2012-11-30 01:46:14',1),(1,149,10662,'2012-11-30 01:46:14',1),(1,192,10662,'2012-11-30 01:46:14',1),(1,59,10662,'2012-11-30 01:46:14',1),(1,219,10662,'2012-11-30 01:46:14',1),(1,206,10662,'2012-11-30 01:46:14',1),(1,209,10662,'2012-11-30 01:46:14',1),(1,105,10664,'2012-11-30 01:46:14',1),(1,105,10666,'2012-11-30 01:46:14',1),(1,56,10666,'2012-11-30 01:46:14',1),(1,149,10666,'2012-11-30 01:46:14',1),(1,192,10666,'2012-11-30 01:46:14',1),(1,59,10666,'2012-11-30 01:46:14',1),(1,219,10666,'2012-11-30 01:46:14',1),(1,104,10666,'2012-11-30 01:46:14',1),(1,206,10666,'2012-11-30 01:46:14',1),(1,105,10668,'2012-11-30 01:46:21',1),(1,192,10668,'2012-11-30 01:46:21',1),(1,105,10667,'2012-11-30 01:46:21',1),(1,56,10667,'2012-11-30 01:46:21',1),(1,149,10667,'2012-11-30 01:46:21',1),(1,192,10667,'2012-11-30 01:46:21',1),(1,192,10663,'2012-11-30 01:46:21',1),(1,105,10661,'2012-11-30 01:46:21',1),(1,56,10661,'2012-11-30 01:46:21',1),(1,149,10661,'2012-11-30 01:46:21',1),(1,192,10661,'2012-11-30 01:46:21',1),(1,192,10687,'2012-11-30 02:46:11',1),(1,59,10687,'2012-11-30 02:46:11',1),(1,84,10687,'2012-11-30 02:46:11',1),(1,252,10687,'2012-11-30 02:46:11',1),(1,206,10688,'2012-11-30 02:46:11',1),(1,49,10688,'2012-11-30 02:46:11',1),(1,149,10690,'2012-11-30 02:46:11',1),(1,57,10690,'2012-11-30 02:46:11',1),(1,31,10690,'2012-11-30 02:46:11',1),(1,145,10690,'2012-11-30 02:46:11',1),(1,83,10690,'2012-11-30 02:46:11',1),(1,192,10690,'2012-11-30 02:46:11',1),(1,59,10690,'2012-11-30 02:46:11',1),(1,84,10690,'2012-11-30 02:46:11',1),(1,252,10690,'2012-11-30 02:46:11',1),(1,13,10690,'2012-11-30 02:46:11',1),(1,75,10690,'2012-11-30 02:46:11',1),(1,7,10690,'2012-11-30 02:46:11',1),(1,132,10690,'2012-11-30 02:46:11',1),(1,229,10690,'2012-11-30 02:46:11',1),(1,219,10690,'2012-11-30 02:46:11',1),(1,104,10690,'2012-11-30 02:46:11',1),(1,206,10691,'2012-11-30 02:46:19',1),(1,49,10691,'2012-11-30 02:46:19',1),(1,56,10694,'2012-11-30 02:46:19',1),(1,149,10694,'2012-11-30 02:46:19',1),(1,57,10694,'2012-11-30 02:46:19',1),(1,31,10694,'2012-11-30 02:46:19',1),(1,145,10694,'2012-11-30 02:46:19',1),(1,83,10694,'2012-11-30 02:46:19',1),(1,192,10694,'2012-11-30 02:46:19',1),(1,59,10694,'2012-11-30 02:46:19',1),(1,84,10694,'2012-11-30 02:46:19',1),(1,252,10694,'2012-11-30 02:46:19',1),(1,13,10694,'2012-11-30 02:46:19',1),(1,75,10694,'2012-11-30 02:46:19',1),(1,7,10694,'2012-11-30 02:46:19',1),(1,132,10694,'2012-11-30 02:46:19',1),(1,229,10694,'2012-11-30 02:46:19',1),(1,219,10694,'2012-11-30 02:46:19',1),(1,104,10693,'2012-11-30 02:46:19',1),(1,209,10692,'2012-11-30 02:46:19',1),(1,104,10695,'2012-11-30 02:46:27',1),(1,209,10695,'2012-11-30 02:46:27',1),(1,84,10685,'2012-11-30 02:46:27',1),(1,252,10685,'2012-11-30 02:46:27',1),(1,13,10685,'2012-11-30 02:46:27',1),(1,75,10685,'2012-11-30 02:46:27',1),(1,7,10685,'2012-11-30 02:46:27',1),(1,132,10685,'2012-11-30 02:46:27',1),(1,229,10685,'2012-11-30 02:46:27',1),(1,219,10685,'2012-11-30 02:46:27',1),(1,56,10696,'2012-11-30 02:46:27',1),(1,140,10696,'2012-11-30 02:46:27',1),(1,149,10696,'2012-11-30 02:46:27',1),(1,57,10696,'2012-11-30 02:46:27',1),(1,178,10696,'2012-11-30 02:46:27',1),(1,31,10696,'2012-11-30 02:46:27',1),(1,145,10696,'2012-11-30 02:46:27',1),(1,83,10696,'2012-11-30 02:46:27',1),(1,56,10697,'2012-11-30 02:46:27',1),(1,149,10697,'2012-11-30 02:46:27',1),(1,57,10697,'2012-11-30 02:46:27',1),(1,31,10697,'2012-11-30 02:46:27',1),(1,145,10697,'2012-11-30 02:46:27',1),(1,83,10697,'2012-11-30 02:46:27',1),(1,192,10697,'2012-11-30 02:46:27',1),(1,59,10697,'2012-11-30 02:46:27',1),(1,206,10700,'2012-11-30 02:46:36',1),(1,104,10701,'2012-11-30 02:46:36',1),(1,209,10701,'2012-11-30 02:46:36',1),(1,243,10686,'2012-11-30 02:46:43',1),(1,192,10686,'2012-11-30 02:46:43',1),(1,59,10686,'2012-11-30 02:46:43',1),(1,84,10686,'2012-11-30 02:46:43',1),(1,104,10689,'2012-11-30 03:16:13',NULL),(1,206,10689,'2012-11-30 03:16:13',NULL),(1,49,10689,'2012-11-30 03:16:13',NULL),(1,209,10689,'2012-11-30 03:16:13',NULL),(1,13,10698,'2012-11-30 03:16:39',1),(1,75,10698,'2012-11-30 03:16:39',1),(1,7,10698,'2012-11-30 03:16:39',1),(1,132,10698,'2012-11-30 03:16:39',1),(1,56,10699,'2012-11-30 03:16:39',1),(1,140,10699,'2012-11-30 03:16:39',1),(1,149,10699,'2012-11-30 03:16:39',1),(1,57,10699,'2012-11-30 03:16:39',1),(1,178,10699,'2012-11-30 03:16:39',1),(1,31,10699,'2012-11-30 03:16:39',1),(1,145,10699,'2012-11-30 03:16:39',1),(1,83,10699,'2012-11-30 03:16:39',1),(1,243,10702,'2012-11-30 03:16:45',1),(1,192,10702,'2012-11-30 03:16:45',1),(1,59,10702,'2012-11-30 03:16:45',1),(1,84,10702,'2012-11-30 03:16:45',1),(1,104,10724,'2012-11-30 03:46:11',1),(1,206,10724,'2012-11-30 03:46:11',1),(1,132,10745,'2012-11-30 03:46:11',1),(1,229,10745,'2012-11-30 03:46:11',1),(1,219,10745,'2012-11-30 03:46:11',1),(1,104,10745,'2012-11-30 03:46:11',1),(1,206,10744,'2012-11-30 03:46:11',1),(1,49,10744,'2012-11-30 03:46:11',1),(1,191,10731,'2012-11-30 03:46:20',1),(1,132,10731,'2012-11-30 03:46:20',1),(1,229,10731,'2012-11-30 03:46:20',1),(1,219,10731,'2012-11-30 03:46:20',1),(1,140,10732,'2012-11-30 03:46:20',1),(1,149,10732,'2012-11-30 03:46:20',1),(1,42,10732,'2012-11-30 03:46:20',1),(1,57,10732,'2012-11-30 03:46:20',1),(1,178,10732,'2012-11-30 03:46:20',1),(1,243,10732,'2012-11-30 03:46:20',1),(1,31,10732,'2012-11-30 03:46:20',1),(1,145,10732,'2012-11-30 03:46:20',1),(1,83,10732,'2012-11-30 03:46:20',1),(1,192,10732,'2012-11-30 03:46:20',1),(1,59,10732,'2012-11-30 03:46:20',1),(1,84,10732,'2012-11-30 03:46:20',1),(1,252,10732,'2012-11-30 03:46:20',1),(1,13,10732,'2012-11-30 03:46:20',1),(1,75,10732,'2012-11-30 03:46:20',1),(1,7,10732,'2012-11-30 03:46:20',1),(1,49,10733,'2012-11-30 03:46:28',1),(1,191,10721,'2012-11-30 03:46:28',1),(1,132,10721,'2012-11-30 03:46:28',1),(1,229,10721,'2012-11-30 03:46:28',1),(1,219,10721,'2012-11-30 03:46:28',1),(1,104,10735,'2012-11-30 03:46:29',1),(1,206,10735,'2012-11-30 03:46:29',1),(1,49,10737,'2012-11-30 03:46:36',1),(1,191,10739,'2012-11-30 03:46:36',1),(1,132,10739,'2012-11-30 03:46:36',1),(1,229,10739,'2012-11-30 03:46:36',1),(1,219,10739,'2012-11-30 03:46:36',1),(1,49,10738,'2012-11-30 03:46:36',1),(1,140,10740,'2012-11-30 03:46:44',1),(1,149,10740,'2012-11-30 03:46:44',1),(1,42,10740,'2012-11-30 03:46:44',1),(1,57,10740,'2012-11-30 03:46:44',1),(1,178,10740,'2012-11-30 03:46:44',1),(1,243,10740,'2012-11-30 03:46:44',1),(1,31,10740,'2012-11-30 03:46:44',1),(1,145,10740,'2012-11-30 03:46:44',1),(1,83,10740,'2012-11-30 03:46:44',1),(1,192,10740,'2012-11-30 03:46:44',1),(1,59,10740,'2012-11-30 03:46:44',1),(1,84,10740,'2012-11-30 03:46:44',1),(1,252,10740,'2012-11-30 03:46:44',1),(1,13,10740,'2012-11-30 03:46:44',1),(1,75,10740,'2012-11-30 03:46:44',1),(1,7,10740,'2012-11-30 03:46:44',1),(1,191,10729,'2012-11-30 04:16:22',1),(1,132,10729,'2012-11-30 04:16:22',1),(1,229,10729,'2012-11-30 04:16:22',1),(1,219,10729,'2012-11-30 04:16:22',1),(1,104,10729,'2012-11-30 04:16:22',1),(1,206,10729,'2012-11-30 04:16:22',1),(1,49,10729,'2012-11-30 04:16:22',1),(1,208,10729,'2012-11-30 04:16:22',1),(1,104,10734,'2012-11-30 04:16:30',1),(1,206,10734,'2012-11-30 04:16:30',1),(1,49,10736,'2012-11-30 04:16:38',1),(1,208,10736,'2012-11-30 04:16:38',1),(1,191,10741,'2012-11-30 04:16:46',1),(1,132,10741,'2012-11-30 04:16:46',1),(1,229,10741,'2012-11-30 04:16:46',1),(1,219,10741,'2012-11-30 04:16:46',1),(1,49,10743,'2012-11-30 04:16:46',1),(1,104,10725,'2012-11-30 04:16:54',1),(1,206,10725,'2012-11-30 04:16:54',1),(1,140,10726,'2012-11-30 04:16:55',1),(1,149,10726,'2012-11-30 04:16:55',1),(1,42,10726,'2012-11-30 04:16:55',1),(1,57,10726,'2012-11-30 04:16:55',1),(1,178,10726,'2012-11-30 04:16:55',1),(1,243,10726,'2012-11-30 04:16:55',1),(1,31,10726,'2012-11-30 04:16:55',1),(1,145,10726,'2012-11-30 04:16:55',1),(1,83,10726,'2012-11-30 04:16:55',1),(1,192,10726,'2012-11-30 04:16:55',1),(1,59,10726,'2012-11-30 04:16:55',1),(1,84,10726,'2012-11-30 04:16:55',1),(1,252,10726,'2012-11-30 04:16:55',1),(1,13,10726,'2012-11-30 04:16:55',1),(1,75,10726,'2012-11-30 04:16:55',1),(1,7,10726,'2012-11-30 04:16:55',1),(1,191,10722,'2012-11-30 04:16:58',1),(1,132,10722,'2012-11-30 04:16:58',1),(1,229,10722,'2012-11-30 04:16:58',1),(1,219,10722,'2012-11-30 04:16:58',1),(1,140,10723,'2012-11-30 04:46:15',1),(1,149,10723,'2012-11-30 04:46:15',1),(1,42,10723,'2012-11-30 04:46:15',1),(1,57,10723,'2012-11-30 04:46:15',1),(1,178,10723,'2012-11-30 04:46:15',1),(1,243,10723,'2012-11-30 04:46:15',1),(1,31,10723,'2012-11-30 04:46:15',1),(1,145,10723,'2012-11-30 04:46:15',1),(1,83,10730,'2012-11-30 04:46:24',1),(1,192,10730,'2012-11-30 04:46:24',1),(1,59,10730,'2012-11-30 04:46:24',1),(1,84,10730,'2012-11-30 04:46:24',1),(1,252,10730,'2012-11-30 04:46:24',1),(1,13,10730,'2012-11-30 04:46:24',1),(1,75,10730,'2012-11-30 04:46:24',1),(1,7,10730,'2012-11-30 04:46:24',1),(1,191,10728,'2012-11-30 04:46:48',1),(1,132,10728,'2012-11-30 04:46:48',1),(1,229,10728,'2012-11-30 04:46:48',1),(1,219,10728,'2012-11-30 04:46:48',1),(1,104,10728,'2012-11-30 04:46:48',1),(1,206,10728,'2012-11-30 04:46:48',1),(1,49,10728,'2012-11-30 04:46:48',1),(1,208,10728,'2012-11-30 04:46:48',1),(1,191,10727,'2012-11-30 04:46:56',1),(1,132,10727,'2012-11-30 04:46:56',1),(1,229,10727,'2012-11-30 04:46:56',1),(1,219,10727,'2012-11-30 04:46:56',1),(1,104,10727,'2012-11-30 04:46:56',1),(1,206,10727,'2012-11-30 04:46:56',1),(1,49,10727,'2012-11-30 04:46:56',1),(1,208,10727,'2012-11-30 04:46:56',1),(1,140,10742,'2012-11-30 05:17:06',1),(1,149,10742,'2012-11-30 05:17:06',1),(1,42,10742,'2012-11-30 05:17:06',1),(1,57,10742,'2012-11-30 05:17:06',1),(1,178,10742,'2012-11-30 05:17:06',1),(1,243,10742,'2012-11-30 05:17:06',1),(1,31,10742,'2012-11-30 05:17:06',1),(1,145,10742,'2012-11-30 05:17:06',1),(1,116,11424,'2012-12-01 00:46:17',1),(1,6,11424,'2012-12-01 00:46:17',1),(1,116,11425,'2012-12-01 00:46:17',1),(1,78,11425,'2012-12-01 00:46:17',1),(1,188,11411,'2012-12-01 00:46:21',1),(1,80,11411,'2012-12-01 00:46:21',1),(1,116,11411,'2012-12-01 00:46:21',1),(1,78,11411,'2012-12-01 00:46:21',1),(1,251,11412,'2012-12-01 00:46:21',1),(1,85,11412,'2012-12-01 00:46:21',1),(1,188,11412,'2012-12-01 00:46:21',1),(1,80,11412,'2012-12-01 00:46:21',1),(1,160,11413,'2012-12-01 00:46:30',1),(1,135,11413,'2012-12-01 00:46:30',1),(1,141,11413,'2012-12-01 00:46:30',1),(1,79,11413,'2012-12-01 00:46:30',1),(1,165,11413,'2012-12-01 00:46:30',1),(1,251,11413,'2012-12-01 00:46:30',1),(1,85,11413,'2012-12-01 00:46:30',1),(1,188,11413,'2012-12-01 00:46:30',1),(1,20,11414,'2012-12-01 00:46:30',1),(1,249,11414,'2012-12-01 00:46:30',1),(1,160,11414,'2012-12-01 00:46:30',1),(1,133,11414,'2012-12-01 00:46:30',1),(1,160,11415,'2012-12-01 00:46:33',1),(1,133,11415,'2012-12-01 00:46:33',1),(1,113,11415,'2012-12-01 00:46:33',1),(1,184,11415,'2012-12-01 00:46:33',1),(1,135,11415,'2012-12-01 00:46:33',1),(1,141,11415,'2012-12-01 00:46:33',1),(1,11,11415,'2012-12-01 00:46:33',1),(1,18,11415,'2012-12-01 00:46:33',1),(1,187,11416,'2012-12-01 00:46:37',1),(1,79,11416,'2012-12-01 00:46:37',1),(1,40,11416,'2012-12-01 00:46:37',1),(1,155,11416,'2012-12-01 00:46:37',1),(1,158,11416,'2012-12-01 00:46:37',1),(1,165,11416,'2012-12-01 00:46:37',1),(1,251,11416,'2012-12-01 00:46:37',1),(1,85,11416,'2012-12-01 00:46:37',1),(1,20,11417,'2012-12-01 00:46:45',1),(1,160,11417,'2012-12-01 00:46:45',1),(1,133,11417,'2012-12-01 00:46:45',1),(1,113,11417,'2012-12-01 00:46:45',1),(1,184,11417,'2012-12-01 00:46:45',1),(1,135,11417,'2012-12-01 00:46:45',1),(1,141,11417,'2012-12-01 00:46:45',1),(1,11,11417,'2012-12-01 00:46:45',1),(1,18,11418,'2012-12-01 00:46:45',1),(1,187,11418,'2012-12-01 00:46:45',1),(1,79,11418,'2012-12-01 00:46:45',1),(1,40,11418,'2012-12-01 00:46:45',1),(1,155,11418,'2012-12-01 00:46:45',1),(1,158,11418,'2012-12-01 00:46:45',1),(1,233,11418,'2012-12-01 00:46:45',1),(1,165,11418,'2012-12-01 00:46:45',1),(1,6,11419,'2012-12-01 00:46:46',1),(1,92,11420,'2012-12-01 00:46:49',1),(1,155,11421,'2012-12-01 00:47:02',1),(1,162,11422,'2012-12-01 00:47:04',1),(1,11,11423,'2012-12-01 00:47:10',1),(1,18,11423,'2012-12-01 00:47:10',1),(1,158,11426,'2012-12-01 00:47:11',1),(1,187,11427,'2012-12-01 00:47:24',1),(1,79,11427,'2012-12-01 00:47:24',1),(1,40,11428,'2012-12-01 00:47:26',1),(1,45,11428,'2012-12-01 00:47:26',1),(1,16,11429,'2012-12-01 00:47:29',1),(1,95,11429,'2012-12-01 00:47:29',1),(1,113,11429,'2012-12-01 00:47:29',1),(1,184,11429,'2012-12-01 00:47:29',1),(1,227,11410,'2012-12-01 00:47:32',1),(1,135,11410,'2012-12-01 00:47:32',1),(1,246,11410,'2012-12-01 00:47:32',1),(1,141,11410,'2012-12-01 00:47:32',1),(1,155,11471,'2012-12-01 01:46:11',1),(1,236,11472,'2012-12-01 01:46:13',1),(1,241,11472,'2012-12-01 01:46:13',1),(1,98,11474,'2012-12-01 01:46:15',1),(1,236,11474,'2012-12-01 01:46:15',1),(1,115,11474,'2012-12-01 01:46:15',1),(1,241,11474,'2012-12-01 01:46:15',1),(1,155,11475,'2012-12-01 01:46:26',1),(1,98,11475,'2012-12-01 01:46:26',1),(1,98,11476,'2012-12-01 01:46:28',1),(1,236,11476,'2012-12-01 01:46:28',1),(1,115,11476,'2012-12-01 01:46:28',1),(1,241,11476,'2012-12-01 01:46:28',1),(1,155,11477,'2012-12-01 01:46:28',1),(1,20,11473,'2012-12-01 02:16:20',1),(1,249,11473,'2012-12-01 02:16:20',1),(1,16,11473,'2012-12-01 02:16:20',1),(1,95,11473,'2012-12-01 02:16:20',1),(1,246,11473,'2012-12-01 02:16:20',1),(1,141,11473,'2012-12-01 02:16:20',1),(1,11,11473,'2012-12-01 02:16:20',1),(1,18,11473,'2012-12-01 02:16:20',1),(1,20,11470,'2012-12-01 02:16:35',1),(1,249,11470,'2012-12-01 02:16:35',1),(1,16,11470,'2012-12-01 02:16:35',1),(1,95,11470,'2012-12-01 02:16:35',1),(1,246,11470,'2012-12-01 02:16:35',1),(1,118,11470,'2012-12-01 02:16:35',1),(1,141,11470,'2012-12-01 02:16:35',1),(1,136,11470,'2012-12-01 02:16:35',1),(1,250,11506,'2012-12-01 02:46:15',1),(1,9,11506,'2012-12-01 02:46:15',1),(1,2,11506,'2012-12-01 02:46:15',1),(1,219,11506,'2012-12-01 02:46:15',1),(1,2,11509,'2012-12-01 02:46:15',1),(1,78,11509,'2012-12-01 02:46:15',1),(1,2,11502,'2012-12-01 02:46:15',1),(1,78,11502,'2012-12-01 02:46:15',1),(1,9,11508,'2012-12-01 02:46:25',1),(1,20,11501,'2012-12-01 02:46:25',1),(1,249,11501,'2012-12-01 02:46:25',1),(1,16,11501,'2012-12-01 02:46:25',1),(1,95,11501,'2012-12-01 02:46:25',1),(1,246,11501,'2012-12-01 02:46:25',1),(1,118,11501,'2012-12-01 02:46:25',1),(1,141,11501,'2012-12-01 02:46:25',1),(1,136,11501,'2012-12-01 02:46:25',1),(1,11,11501,'2012-12-01 02:46:25',1),(1,238,11501,'2012-12-01 02:46:25',1),(1,234,11501,'2012-12-01 02:46:25',1),(1,179,11501,'2012-12-01 02:46:25',1),(1,54,11501,'2012-12-01 02:46:25',1),(1,250,11501,'2012-12-01 02:46:25',1),(1,9,11501,'2012-12-01 02:46:25',1),(1,219,11501,'2012-12-01 02:46:25',1),(1,18,11510,'2012-12-01 02:46:27',1),(1,155,11510,'2012-12-01 02:46:27',1),(1,2,11510,'2012-12-01 02:46:27',1),(1,78,11510,'2012-12-01 02:46:27',1),(1,11,11505,'2012-12-01 02:46:37',1),(1,18,11505,'2012-12-01 02:46:37',1),(1,155,11505,'2012-12-01 02:46:37',1),(1,238,11505,'2012-12-01 02:46:37',1),(1,234,11505,'2012-12-01 02:46:37',1),(1,179,11505,'2012-12-01 02:46:37',1),(1,180,11505,'2012-12-01 02:46:37',1),(1,54,11505,'2012-12-01 02:46:37',1),(1,11,11504,'2012-12-01 02:46:37',1),(1,18,11504,'2012-12-01 02:46:37',1),(1,170,11504,'2012-12-01 02:46:37',1),(1,146,11504,'2012-12-01 02:46:37',1),(1,239,11504,'2012-12-01 02:46:37',1),(1,43,11504,'2012-12-01 02:46:37',1),(1,147,11504,'2012-12-01 02:46:37',1),(1,153,11504,'2012-12-01 02:46:37',1),(1,20,11497,'2012-12-01 02:46:41',1),(1,249,11497,'2012-12-01 02:46:41',1),(1,16,11497,'2012-12-01 02:46:41',1),(1,95,11497,'2012-12-01 02:46:41',1),(1,246,11497,'2012-12-01 02:46:41',1),(1,118,11497,'2012-12-01 02:46:41',1),(1,141,11497,'2012-12-01 02:46:41',1),(1,136,11497,'2012-12-01 02:46:41',1),(1,11,11497,'2012-12-01 02:46:41',1),(1,18,11497,'2012-12-01 02:46:41',1),(1,155,11497,'2012-12-01 02:46:41',1),(1,238,11497,'2012-12-01 02:46:41',1),(1,234,11497,'2012-12-01 02:46:41',1),(1,179,11497,'2012-12-01 02:46:41',1),(1,180,11497,'2012-12-01 02:46:41',1),(1,54,11497,'2012-12-01 02:46:41',1),(1,18,11495,'2012-12-01 02:46:45',1),(1,155,11495,'2012-12-01 02:46:45',1),(1,18,11511,'2012-12-01 02:46:51',1),(1,155,11511,'2012-12-01 02:46:51',1),(1,2,11511,'2012-12-01 02:46:51',1),(1,78,11511,'2012-12-01 02:46:51',1),(1,239,11494,'2012-12-01 02:46:55',1),(1,43,11494,'2012-12-01 02:46:55',1),(1,147,11494,'2012-12-01 02:46:55',1),(1,153,11494,'2012-12-01 02:46:55',1),(1,21,11503,'2012-12-01 02:46:59',1),(1,127,11503,'2012-12-01 02:46:59',1),(1,155,11503,'2012-12-01 02:46:59',1),(1,238,11503,'2012-12-01 02:46:59',1),(1,234,11503,'2012-12-01 02:46:59',1),(1,179,11503,'2012-12-01 02:46:59',1),(1,180,11503,'2012-12-01 02:46:59',1),(1,54,11503,'2012-12-01 02:46:59',1),(1,179,11500,'2012-12-01 03:16:21',1),(1,20,11507,'2012-12-01 03:16:29',1),(1,249,11507,'2012-12-01 03:16:29',1),(1,16,11507,'2012-12-01 03:16:29',1),(1,95,11507,'2012-12-01 03:16:29',1),(1,246,11507,'2012-12-01 03:16:29',1),(1,118,11507,'2012-12-01 03:16:29',1),(1,141,11507,'2012-12-01 03:16:29',1),(1,136,11507,'2012-12-01 03:16:29',1),(1,11,11496,'2012-12-01 03:16:46',NULL),(1,18,11496,'2012-12-01 03:16:46',NULL),(1,170,11496,'2012-12-01 03:16:46',NULL),(1,146,11496,'2012-12-01 03:16:46',NULL),(1,88,11498,'2012-12-01 03:16:54',1),(1,21,11498,'2012-12-01 03:16:54',1),(1,2,11499,'2012-12-01 03:16:55',1),(1,20,11545,'2012-12-01 03:46:20',1),(1,249,11545,'2012-12-01 03:46:20',1),(1,88,11545,'2012-12-01 03:46:20',1),(1,113,11545,'2012-12-01 03:46:20',1),(1,160,11536,'2012-12-01 03:46:35',1),(1,95,11536,'2012-12-01 03:46:35',1),(1,184,11536,'2012-12-01 03:46:35',1),(1,246,11536,'2012-12-01 03:46:35',1),(1,92,11532,'2012-12-01 03:46:42',1),(1,6,11532,'2012-12-01 03:46:42',1),(1,246,11533,'2012-12-01 03:46:46',1),(1,92,11533,'2012-12-01 03:46:46',1),(1,20,11551,'2012-12-01 03:46:50',1),(1,88,11551,'2012-12-01 03:46:50',1),(1,246,11540,'2012-12-01 03:47:04',1),(1,155,11540,'2012-12-01 03:47:04',1),(1,184,11541,'2012-12-01 03:47:05',1),(1,92,11541,'2012-12-01 03:47:05',1),(1,184,11542,'2012-12-01 03:47:07',1),(1,92,11542,'2012-12-01 03:47:07',1),(1,10,11546,'2012-12-01 04:16:27',1),(1,60,11546,'2012-12-01 04:16:27',1),(1,215,11546,'2012-12-01 04:16:27',1),(1,61,11546,'2012-12-01 04:16:27',1),(1,5,11546,'2012-12-01 04:16:27',1),(1,216,11546,'2012-12-01 04:16:27',1),(1,217,11546,'2012-12-01 04:16:27',1),(1,201,11546,'2012-12-01 04:16:27',1),(1,46,11549,'2012-12-01 04:16:31',1),(1,20,11553,'2012-12-01 04:16:31',1),(1,249,11553,'2012-12-01 04:16:31',1),(1,88,11553,'2012-12-01 04:16:31',1),(1,113,11553,'2012-12-01 04:16:31',1),(1,244,11552,'2012-12-01 04:16:36',1),(1,25,11552,'2012-12-01 04:16:36',1),(1,125,11552,'2012-12-01 04:16:36',1),(1,237,11552,'2012-12-01 04:16:36',1),(1,134,11552,'2012-12-01 04:16:36',1),(1,126,11552,'2012-12-01 04:16:36',1),(1,40,11552,'2012-12-01 04:16:36',1),(1,41,11552,'2012-12-01 04:16:36',1),(1,44,11552,'2012-12-01 04:16:36',1),(1,12,11552,'2012-12-01 04:16:36',1),(1,154,11552,'2012-12-01 04:16:36',1),(1,46,11552,'2012-12-01 04:16:36',1),(1,143,11552,'2012-12-01 04:16:36',1),(1,161,11552,'2012-12-01 04:16:36',1),(1,157,11552,'2012-12-01 04:16:36',1),(1,22,11552,'2012-12-01 04:16:36',1),(1,160,11548,'2012-12-01 04:16:43',1),(1,95,11548,'2012-12-01 04:16:43',1),(1,184,11548,'2012-12-01 04:16:43',1),(1,246,11548,'2012-12-01 04:16:43',1),(1,20,11530,'2012-12-01 04:16:43',1),(1,249,11530,'2012-12-01 04:16:43',1),(1,160,11530,'2012-12-01 04:16:43',1),(1,95,11530,'2012-12-01 04:16:43',1),(1,88,11530,'2012-12-01 04:16:43',1),(1,113,11530,'2012-12-01 04:16:43',1),(1,184,11530,'2012-12-01 04:16:43',1),(1,246,11530,'2012-12-01 04:16:43',1),(1,20,11531,'2012-12-01 04:16:47',1),(1,249,11531,'2012-12-01 04:16:47',1),(1,88,11531,'2012-12-01 04:16:47',1),(1,113,11531,'2012-12-01 04:16:47',1),(1,248,11534,'2012-12-01 04:16:55',1),(1,106,11534,'2012-12-01 04:16:55',1),(1,193,11534,'2012-12-01 04:16:55',1),(1,172,11534,'2012-12-01 04:16:55',1),(1,55,11534,'2012-12-01 04:16:55',1),(1,112,11534,'2012-12-01 04:16:55',1),(1,65,11534,'2012-12-01 04:16:55',1),(1,202,11534,'2012-12-01 04:16:55',1),(1,176,11547,'2012-12-01 04:16:56',1),(1,72,11547,'2012-12-01 04:16:56',1),(1,109,11547,'2012-12-01 04:16:56',1),(1,34,11547,'2012-12-01 04:16:56',1),(1,182,11547,'2012-12-01 04:16:56',1),(1,181,11547,'2012-12-01 04:16:56',1),(1,35,11547,'2012-12-01 04:16:56',1),(1,248,11547,'2012-12-01 04:16:56',1),(1,106,11547,'2012-12-01 04:16:56',1),(1,193,11547,'2012-12-01 04:16:56',1),(1,172,11547,'2012-12-01 04:16:56',1),(1,55,11547,'2012-12-01 04:16:56',1),(1,112,11547,'2012-12-01 04:16:56',1),(1,65,11547,'2012-12-01 04:16:56',1),(1,202,11547,'2012-12-01 04:16:56',1),(1,203,11547,'2012-12-01 04:16:56',1),(1,10,11537,'2012-12-01 04:17:01',1),(1,60,11537,'2012-12-01 04:17:01',1),(1,215,11537,'2012-12-01 04:17:01',1),(1,61,11537,'2012-12-01 04:17:01',1),(1,5,11537,'2012-12-01 04:17:01',1),(1,216,11537,'2012-12-01 04:17:01',1),(1,217,11537,'2012-12-01 04:17:01',1),(1,201,11537,'2012-12-01 04:17:01',1),(1,205,11537,'2012-12-01 04:17:01',1),(1,77,11537,'2012-12-01 04:17:01',1),(1,212,11537,'2012-12-01 04:17:01',1),(1,69,11537,'2012-12-01 04:17:01',1),(1,52,11537,'2012-12-01 04:17:01',1),(1,70,11537,'2012-12-01 04:17:01',1),(1,222,11537,'2012-12-01 04:17:01',1),(1,223,11537,'2012-12-01 04:17:01',1),(1,143,11538,'2012-12-01 04:17:03',1),(1,244,11539,'2012-12-01 04:17:06',1),(1,25,11539,'2012-12-01 04:17:06',1),(1,125,11539,'2012-12-01 04:17:06',1),(1,237,11539,'2012-12-01 04:17:06',1),(1,161,11543,'2012-12-01 04:17:12',1),(1,205,11550,'2012-12-01 04:46:42',1),(1,77,11550,'2012-12-01 04:46:42',1),(1,212,11550,'2012-12-01 04:46:42',1),(1,69,11550,'2012-12-01 04:46:42',1),(1,52,11550,'2012-12-01 04:46:42',1),(1,70,11550,'2012-12-01 04:46:42',1),(1,222,11550,'2012-12-01 04:46:42',1),(1,223,11550,'2012-12-01 04:46:42',1),(1,155,11554,'2012-12-01 04:46:47',1),(1,176,11554,'2012-12-01 04:46:47',1),(1,72,11554,'2012-12-01 04:46:47',1),(1,109,11554,'2012-12-01 04:46:47',1),(1,34,11554,'2012-12-01 04:46:47',1),(1,182,11554,'2012-12-01 04:46:47',1),(1,181,11554,'2012-12-01 04:46:47',1),(1,35,11554,'2012-12-01 04:46:47',1),(1,203,11535,'2012-12-01 04:47:02',NULL),(1,10,11535,'2012-12-01 04:47:02',NULL),(1,60,11535,'2012-12-01 04:47:02',NULL),(1,215,11535,'2012-12-01 04:47:02',NULL),(1,61,11535,'2012-12-01 04:47:02',NULL),(1,5,11535,'2012-12-01 04:47:02',NULL),(1,216,11535,'2012-12-01 04:47:02',NULL),(1,217,11535,'2012-12-01 04:47:02',NULL),(1,157,11544,'2012-12-01 04:47:19',1),(1,229,12675,'2012-12-02 00:46:13',1),(1,230,12675,'2012-12-02 00:46:13',1),(1,241,12675,'2012-12-02 00:46:13',1),(1,221,12675,'2012-12-02 00:46:13',1),(1,129,12678,'2012-12-02 00:46:13',1),(1,55,12678,'2012-12-02 00:46:13',1),(1,112,12678,'2012-12-02 00:46:13',1),(1,65,12678,'2012-12-02 00:46:13',1),(1,202,12678,'2012-12-02 00:46:13',1),(1,203,12678,'2012-12-02 00:46:13',1),(1,7,12678,'2012-12-02 00:46:13',1),(1,132,12678,'2012-12-02 00:46:13',1),(1,229,12677,'2012-12-02 00:46:13',1),(1,230,12677,'2012-12-02 00:46:13',1),(1,241,12677,'2012-12-02 00:46:13',1),(1,221,12677,'2012-12-02 00:46:13',1),(1,89,12679,'2012-12-02 00:46:13',1),(1,72,12679,'2012-12-02 00:46:13',1),(1,236,12679,'2012-12-02 00:46:13',1),(1,248,12679,'2012-12-02 00:46:13',1),(1,106,12679,'2012-12-02 00:46:13',1),(1,193,12679,'2012-12-02 00:46:13',1),(1,172,12679,'2012-12-02 00:46:13',1),(1,115,12679,'2012-12-02 00:46:13',1),(1,129,12680,'2012-12-02 00:46:21',1),(1,55,12680,'2012-12-02 00:46:21',1),(1,112,12680,'2012-12-02 00:46:21',1),(1,65,12680,'2012-12-02 00:46:21',1),(1,202,12680,'2012-12-02 00:46:21',1),(1,203,12680,'2012-12-02 00:46:21',1),(1,7,12680,'2012-12-02 00:46:21',1),(1,132,12680,'2012-12-02 00:46:21',1),(1,89,12681,'2012-12-02 00:46:21',1),(1,72,12681,'2012-12-02 00:46:21',1),(1,236,12681,'2012-12-02 00:46:21',1),(1,248,12681,'2012-12-02 00:46:21',1),(1,106,12681,'2012-12-02 00:46:21',1),(1,193,12681,'2012-12-02 00:46:21',1),(1,172,12681,'2012-12-02 00:46:21',1),(1,115,12681,'2012-12-02 00:46:21',1),(1,112,12682,'2012-12-02 00:46:21',1),(1,55,12683,'2012-12-02 00:46:27',1),(1,65,12684,'2012-12-02 00:46:30',1),(1,202,12685,'2012-12-02 00:46:30',1),(1,222,12686,'2012-12-02 00:46:31',1),(1,4,12686,'2012-12-02 00:46:31',1),(1,222,12687,'2012-12-02 00:46:33',1),(1,4,12687,'2012-12-02 00:46:33',1),(1,193,12688,'2012-12-02 00:46:41',1),(1,172,12688,'2012-12-02 00:46:41',1),(1,222,12690,'2012-12-02 00:46:42',1),(1,4,12690,'2012-12-02 00:46:42',1),(1,203,12689,'2012-12-02 00:46:42',1),(1,88,12691,'2012-12-02 00:46:43',1),(1,106,12691,'2012-12-02 00:46:43',1),(1,229,12692,'2012-12-02 00:46:51',1),(1,230,12692,'2012-12-02 00:46:51',1),(1,241,12692,'2012-12-02 00:46:51',1),(1,221,12692,'2012-12-02 00:46:51',1),(1,106,12693,'2012-12-02 00:46:52',1),(1,193,12693,'2012-12-02 00:46:52',1),(1,172,12693,'2012-12-02 00:46:52',1),(1,115,12693,'2012-12-02 00:46:52',1),(1,89,12674,'2012-12-02 00:46:52',1),(1,72,12674,'2012-12-02 00:46:52',1),(1,236,12674,'2012-12-02 00:46:52',1),(1,248,12674,'2012-12-02 00:46:52',1),(1,129,12676,'2012-12-02 00:46:54',1),(1,55,12676,'2012-12-02 00:46:54',1),(1,112,12676,'2012-12-02 00:46:54',1),(1,65,12676,'2012-12-02 00:46:54',1),(1,202,12676,'2012-12-02 00:46:54',1),(1,203,12676,'2012-12-02 00:46:54',1),(1,7,12676,'2012-12-02 00:46:54',1),(1,132,12676,'2012-12-02 00:46:54',1),(1,4,12794,'2012-12-02 01:46:12',1),(1,222,12792,'2012-12-02 01:46:12',1),(1,4,12792,'2012-12-02 01:46:12',1),(1,129,12787,'2012-12-02 01:46:12',1),(1,241,12788,'2012-12-02 01:46:12',1),(1,221,12788,'2012-12-02 01:46:12',1),(1,129,12789,'2012-12-02 01:46:20',1),(1,112,12789,'2012-12-02 01:46:20',1),(1,65,12789,'2012-12-02 01:46:20',1),(1,202,12789,'2012-12-02 01:46:20',1),(1,203,12789,'2012-12-02 01:46:20',1),(1,7,12789,'2012-12-02 01:46:20',1),(1,132,12789,'2012-12-02 01:46:20',1),(1,229,12789,'2012-12-02 01:46:20',1),(1,230,12790,'2012-12-02 01:46:20',1),(1,241,12790,'2012-12-02 01:46:20',1),(1,221,12790,'2012-12-02 01:46:20',1),(1,222,12790,'2012-12-02 01:46:20',1),(1,95,12791,'2012-12-02 01:46:20',1),(1,183,12791,'2012-12-02 01:46:20',1),(1,22,12791,'2012-12-02 01:46:20',1),(1,129,12791,'2012-12-02 01:46:20',1),(1,112,12791,'2012-12-02 01:46:20',1),(1,65,12791,'2012-12-02 01:46:20',1),(1,202,12791,'2012-12-02 01:46:20',1),(1,203,12791,'2012-12-02 01:46:20',1),(1,7,12793,'2012-12-02 01:46:20',1),(1,132,12793,'2012-12-02 01:46:20',1),(1,229,12793,'2012-12-02 01:46:20',1),(1,230,12793,'2012-12-02 01:46:20',1),(1,79,12880,'2012-12-02 02:46:11',1),(1,98,12880,'2012-12-02 02:46:11',1),(1,229,12887,'2012-12-02 02:46:11',1),(1,230,12887,'2012-12-02 02:46:11',1),(1,241,12873,'2012-12-02 02:46:11',1),(1,221,12873,'2012-12-02 02:46:11',1),(1,222,12873,'2012-12-02 02:46:11',1),(1,4,12873,'2012-12-02 02:46:11',1),(1,112,12882,'2012-12-02 02:46:19',1),(1,65,12882,'2012-12-02 02:46:19',1),(1,202,12882,'2012-12-02 02:46:19',1),(1,203,12882,'2012-12-02 02:46:19',1),(1,7,12882,'2012-12-02 02:46:19',1),(1,132,12882,'2012-12-02 02:46:19',1),(1,229,12882,'2012-12-02 02:46:19',1),(1,230,12882,'2012-12-02 02:46:19',1),(1,7,12886,'2012-12-02 02:46:19',1),(1,241,12874,'2012-12-02 02:46:19',1),(1,221,12874,'2012-12-02 02:46:19',1),(1,229,12888,'2012-12-02 02:46:20',1),(1,241,12888,'2012-12-02 02:46:20',1),(1,221,12888,'2012-12-02 02:46:20',1),(1,222,12888,'2012-12-02 02:46:20',1),(1,132,12878,'2012-12-02 02:46:27',1),(1,237,12879,'2012-12-02 02:46:27',1),(1,229,12890,'2012-12-02 02:46:27',1),(1,230,12890,'2012-12-02 02:46:27',1),(1,241,12890,'2012-12-02 02:46:27',1),(1,221,12890,'2012-12-02 02:46:27',1),(1,79,12881,'2012-12-02 02:46:28',1),(1,98,12881,'2012-12-02 02:46:28',1),(1,115,12881,'2012-12-02 02:46:28',1),(1,55,12881,'2012-12-02 02:46:28',1),(1,95,12877,'2012-12-02 02:46:36',1),(1,129,12877,'2012-12-02 02:46:36',1),(1,129,12883,'2012-12-02 02:46:41',1),(1,112,12883,'2012-12-02 02:46:41',1),(1,65,12883,'2012-12-02 02:46:41',1),(1,202,12883,'2012-12-02 02:46:41',1),(1,203,12883,'2012-12-02 02:46:41',1),(1,7,12883,'2012-12-02 02:46:41',1),(1,132,12883,'2012-12-02 02:46:41',1),(1,229,12883,'2012-12-02 02:46:41',1),(1,95,12884,'2012-12-02 02:46:44',1),(1,129,12884,'2012-12-02 02:46:44',1),(1,112,12884,'2012-12-02 02:46:44',1),(1,65,12884,'2012-12-02 02:46:44',1),(1,202,12884,'2012-12-02 02:46:44',1),(1,203,12884,'2012-12-02 02:46:44',1),(1,7,12884,'2012-12-02 02:46:44',1),(1,132,12884,'2012-12-02 02:46:44',1),(1,95,12885,'2012-12-02 02:46:44',1),(1,129,12885,'2012-12-02 02:46:44',1),(1,112,12885,'2012-12-02 02:46:44',1),(1,65,12885,'2012-12-02 02:46:44',1),(1,202,12885,'2012-12-02 02:46:44',1),(1,203,12885,'2012-12-02 02:46:44',1),(1,7,12885,'2012-12-02 02:46:44',1),(1,132,12885,'2012-12-02 02:46:44',1),(1,79,12875,'2012-12-02 03:16:38',NULL),(1,98,12875,'2012-12-02 03:16:38',NULL),(1,115,12875,'2012-12-02 03:16:38',NULL),(1,55,12875,'2012-12-02 03:16:38',NULL),(1,183,12889,'2012-12-02 03:46:15',1),(1,79,12889,'2012-12-02 03:46:15',1),(1,98,12889,'2012-12-02 03:46:15',1),(1,22,12889,'2012-12-02 03:46:15',1),(1,115,12889,'2012-12-02 03:46:15',1),(1,129,12889,'2012-12-02 03:46:15',1),(1,55,12889,'2012-12-02 03:46:15',1),(1,203,12889,'2012-12-02 03:46:15',1),(1,7,12889,'2012-12-02 03:46:15',1),(1,132,12889,'2012-12-02 03:46:15',1),(1,229,12889,'2012-12-02 03:46:15',1),(1,230,12889,'2012-12-02 03:46:15',1),(1,219,12889,'2012-12-02 03:46:15',1),(1,241,12889,'2012-12-02 03:46:15',1),(1,221,12889,'2012-12-02 03:46:15',1),(1,4,12889,'2012-12-02 03:46:15',1),(1,237,12976,'2012-12-02 03:46:19',1),(1,222,12976,'2012-12-02 03:46:19',1),(1,237,12975,'2012-12-02 03:46:19',1),(1,222,12975,'2012-12-02 03:46:19',1),(1,183,12984,'2012-12-02 03:46:19',1),(1,79,12984,'2012-12-02 03:46:19',1),(1,98,12984,'2012-12-02 03:46:19',1),(1,22,12984,'2012-12-02 03:46:19',1),(1,115,12984,'2012-12-02 03:46:19',1),(1,129,12984,'2012-12-02 03:46:19',1),(1,55,12984,'2012-12-02 03:46:19',1),(1,203,12984,'2012-12-02 03:46:19',1),(1,7,12984,'2012-12-02 03:46:19',1),(1,132,12984,'2012-12-02 03:46:19',1),(1,229,12984,'2012-12-02 03:46:19',1),(1,230,12984,'2012-12-02 03:46:19',1),(1,219,12984,'2012-12-02 03:46:19',1),(1,241,12984,'2012-12-02 03:46:19',1),(1,221,12984,'2012-12-02 03:46:19',1),(1,4,12984,'2012-12-02 03:46:19',1),(1,183,12876,'2012-12-02 03:46:40',1),(1,79,12876,'2012-12-02 03:46:40',1),(1,98,12876,'2012-12-02 03:46:40',1),(1,22,12876,'2012-12-02 03:46:40',1),(1,115,12876,'2012-12-02 03:46:40',1),(1,129,12876,'2012-12-02 03:46:40',1),(1,55,12876,'2012-12-02 03:46:40',1),(1,203,12876,'2012-12-02 03:46:40',1),(1,7,12876,'2012-12-02 03:46:40',1),(1,132,12876,'2012-12-02 03:46:40',1),(1,229,12876,'2012-12-02 03:46:40',1),(1,230,12876,'2012-12-02 03:46:40',1),(1,219,12876,'2012-12-02 03:46:40',1),(1,241,12876,'2012-12-02 03:46:40',1),(1,221,12876,'2012-12-02 03:46:40',1),(1,4,12876,'2012-12-02 03:46:40',1),(1,222,12968,'2012-12-02 04:16:21',1),(1,4,12968,'2012-12-02 04:16:21',1),(1,95,12966,'2012-12-02 04:16:29',1),(1,202,12966,'2012-12-02 04:16:29',1),(1,202,12967,'2012-12-02 04:16:29',1),(1,6,12967,'2012-12-02 04:16:29',1),(1,183,12970,'2012-12-02 04:16:46',1),(1,237,12970,'2012-12-02 04:16:46',1),(1,79,12970,'2012-12-02 04:16:46',1),(1,98,12970,'2012-12-02 04:16:46',1),(1,22,12970,'2012-12-02 04:16:46',1),(1,115,12970,'2012-12-02 04:16:46',1),(1,129,12970,'2012-12-02 04:16:46',1),(1,55,12970,'2012-12-02 04:16:46',1),(1,203,12970,'2012-12-02 04:16:46',1),(1,7,12970,'2012-12-02 04:16:46',1),(1,132,12970,'2012-12-02 04:16:46',1),(1,229,12970,'2012-12-02 04:16:46',1),(1,230,12970,'2012-12-02 04:16:46',1),(1,219,12970,'2012-12-02 04:16:46',1),(1,241,12970,'2012-12-02 04:16:46',1),(1,221,12970,'2012-12-02 04:16:46',1),(1,95,12972,'2012-12-02 04:16:46',1),(1,183,12972,'2012-12-02 04:16:46',1),(1,237,12972,'2012-12-02 04:16:46',1),(1,139,12972,'2012-12-02 04:16:46',1),(1,79,12972,'2012-12-02 04:16:46',1),(1,98,12972,'2012-12-02 04:16:46',1),(1,22,12972,'2012-12-02 04:16:46',1),(1,115,12972,'2012-12-02 04:16:46',1),(1,129,12972,'2012-12-02 04:16:46',1),(1,55,12972,'2012-12-02 04:16:46',1),(1,203,12972,'2012-12-02 04:16:46',1),(1,7,12972,'2012-12-02 04:16:46',1),(1,132,12972,'2012-12-02 04:16:46',1),(1,229,12972,'2012-12-02 04:16:46',1),(1,230,12972,'2012-12-02 04:16:46',1),(1,219,12972,'2012-12-02 04:16:46',1),(1,95,12977,'2012-12-02 04:16:55',1),(1,139,12977,'2012-12-02 04:16:55',1),(1,129,12985,'2012-12-02 04:46:15',1),(1,55,12985,'2012-12-02 04:46:15',1),(1,203,12985,'2012-12-02 04:46:15',1),(1,7,12985,'2012-12-02 04:46:15',1),(1,132,12985,'2012-12-02 04:46:15',1),(1,229,12985,'2012-12-02 04:46:15',1),(1,230,12985,'2012-12-02 04:46:15',1),(1,219,12985,'2012-12-02 04:46:15',1),(1,95,12964,'2012-12-02 04:46:15',1),(1,183,12964,'2012-12-02 04:46:15',1),(1,237,12964,'2012-12-02 04:46:15',1),(1,139,12964,'2012-12-02 04:46:15',1),(1,79,12964,'2012-12-02 04:46:15',1),(1,98,12964,'2012-12-02 04:46:15',1),(1,22,12964,'2012-12-02 04:46:15',1),(1,115,12964,'2012-12-02 04:46:15',1),(1,129,12981,'2012-12-02 04:46:39',1),(1,55,12981,'2012-12-02 04:46:39',1),(1,202,12981,'2012-12-02 04:46:39',1),(1,203,12981,'2012-12-02 04:46:39',1),(1,7,12981,'2012-12-02 04:46:39',1),(1,132,12981,'2012-12-02 04:46:39',1),(1,229,12981,'2012-12-02 04:46:39',1),(1,230,12981,'2012-12-02 04:46:39',1),(1,65,12965,'2012-12-02 05:16:17',1),(1,219,12965,'2012-12-02 05:16:17',1),(1,241,12965,'2012-12-02 05:16:17',1),(1,4,12965,'2012-12-02 05:16:17',1),(1,65,12980,'2012-12-02 05:16:17',1),(1,219,12980,'2012-12-02 05:16:17',1),(1,241,12980,'2012-12-02 05:16:17',1),(1,4,12980,'2012-12-02 05:16:17',1),(1,202,12978,'2012-12-02 05:16:33',1),(1,203,12982,'2012-12-02 05:16:41',1),(1,65,12983,'2012-12-02 05:16:41',1),(1,219,12983,'2012-12-02 05:16:41',1),(1,241,12983,'2012-12-02 05:16:41',1),(1,228,12983,'2012-12-02 05:16:41',1),(1,65,12986,'2012-12-02 05:16:41',1),(1,219,12986,'2012-12-02 05:16:41',1),(1,241,12986,'2012-12-02 05:16:41',1),(1,6,12986,'2012-12-02 05:16:41',1),(1,95,12971,'2012-12-02 05:16:50',1),(1,183,12971,'2012-12-02 05:16:50',1),(1,237,12971,'2012-12-02 05:16:50',1),(1,139,12971,'2012-12-02 05:16:50',1),(1,79,12971,'2012-12-02 05:16:50',1),(1,98,12971,'2012-12-02 05:16:50',1),(1,22,12971,'2012-12-02 05:16:50',1),(1,115,12971,'2012-12-02 05:16:50',1),(1,7,12973,'2012-12-02 05:16:58',1),(1,129,12969,'2012-12-02 05:17:03',1),(1,55,12969,'2012-12-02 05:17:03',1),(1,202,12969,'2012-12-02 05:17:03',1),(1,203,12969,'2012-12-02 05:17:03',1),(1,7,12969,'2012-12-02 05:17:03',1),(1,132,12969,'2012-12-02 05:17:03',1),(1,229,12969,'2012-12-02 05:17:03',1),(1,230,12969,'2012-12-02 05:17:03',1),(1,79,12974,'2012-12-02 05:17:03',1),(1,98,12974,'2012-12-02 05:17:03',1),(1,22,12974,'2012-12-02 05:17:03',1),(1,115,12974,'2012-12-02 05:17:03',1),(1,129,12963,'2012-12-02 05:17:07',1),(1,55,12963,'2012-12-02 05:17:07',1),(1,202,12963,'2012-12-02 05:17:07',1),(1,203,12963,'2012-12-02 05:17:07',1),(1,7,12963,'2012-12-02 05:17:07',1),(1,132,12963,'2012-12-02 05:17:07',1),(1,229,12963,'2012-12-02 05:17:07',1),(1,230,12963,'2012-12-02 05:17:07',1),(1,55,12979,'2012-12-02 05:46:36',1),(1,95,12987,'2012-12-02 05:46:55',1),(1,183,12987,'2012-12-02 05:46:55',1),(1,237,12987,'2012-12-02 05:46:55',1),(1,139,12987,'2012-12-02 05:46:55',1),(1,249,13026,'2012-12-03 00:46:14',1),(1,32,13026,'2012-12-03 00:46:14',1),(1,129,13026,'2012-12-03 00:46:14',1),(1,6,13026,'2012-12-03 00:46:14',1),(1,249,13035,'2012-12-03 00:46:30',1),(1,129,13035,'2012-12-03 00:46:30',1),(1,249,13036,'2012-12-03 00:46:30',1),(1,32,13036,'2012-12-03 00:46:30',1),(1,249,13039,'2012-12-03 00:46:38',1),(1,32,13039,'2012-12-03 00:46:38',1),(1,129,13040,'2012-12-03 00:46:38',1),(1,66,13040,'2012-12-03 00:46:38',1),(1,129,13037,'2012-12-03 00:46:38',1),(1,4,13037,'2012-12-03 00:46:38',1),(1,249,13042,'2012-12-03 00:46:46',1),(1,32,13042,'2012-12-03 00:46:46',1),(1,129,13042,'2012-12-03 00:46:46',1),(1,66,13042,'2012-12-03 00:46:46',1),(1,249,13041,'2012-12-03 00:46:46',1),(1,32,13041,'2012-12-03 00:46:46',1),(1,129,13041,'2012-12-03 00:46:46',1),(1,6,13041,'2012-12-03 00:46:46',1),(1,249,13043,'2012-12-03 00:46:46',1),(1,32,13043,'2012-12-03 00:46:46',1),(1,129,13043,'2012-12-03 00:46:46',1),(1,66,13043,'2012-12-03 00:46:46',1),(1,249,13024,'2012-12-03 00:46:46',1),(1,32,13024,'2012-12-03 00:46:46',1),(1,129,13024,'2012-12-03 00:46:46',1),(1,6,13024,'2012-12-03 00:46:46',1),(1,129,13138,'2012-12-03 01:46:11',1),(1,6,13138,'2012-12-03 01:46:11',1),(1,95,13140,'2012-12-03 01:46:11',1),(1,96,13140,'2012-12-03 01:46:11',1),(1,32,13140,'2012-12-03 01:46:11',1),(1,129,13140,'2012-12-03 01:46:11',1),(1,95,13142,'2012-12-03 01:46:19',1),(1,96,13142,'2012-12-03 01:46:19',1),(1,32,13142,'2012-12-03 01:46:19',1),(1,129,13142,'2012-12-03 01:46:19',1),(1,95,13144,'2012-12-03 01:46:23',1),(1,129,13144,'2012-12-03 01:46:23',1),(1,6,13031,'2012-12-03 01:46:26',1),(1,6,13032,'2012-12-03 02:16:30',1),(1,4,13033,'2012-12-03 02:16:36',1),(1,177,13215,'2012-12-03 02:46:11',1),(1,148,13215,'2012-12-03 02:46:11',1),(1,1,13215,'2012-12-03 02:46:11',1),(1,178,13215,'2012-12-03 02:46:11',1),(1,100,13215,'2012-12-03 02:46:11',1),(1,36,13215,'2012-12-03 02:46:11',1),(1,37,13215,'2012-12-03 02:46:11',1),(1,29,13215,'2012-12-03 02:46:11',1),(1,30,13215,'2012-12-03 02:46:11',1),(1,243,13215,'2012-12-03 02:46:11',1),(1,31,13215,'2012-12-03 02:46:11',1),(1,145,13215,'2012-12-03 02:46:11',1),(1,169,13215,'2012-12-03 02:46:11',1),(1,83,13215,'2012-12-03 02:46:11',1),(1,17,13215,'2012-12-03 02:46:11',1),(1,191,13215,'2012-12-03 02:46:11',1),(1,32,13216,'2012-12-03 02:46:11',1),(1,6,13216,'2012-12-03 02:46:11',1),(1,32,13230,'2012-12-03 02:46:19',1),(1,6,13230,'2012-12-03 02:46:19',1),(1,30,13025,'2012-12-03 02:46:22',1),(1,243,13025,'2012-12-03 02:46:22',1),(1,31,13025,'2012-12-03 02:46:22',1),(1,145,13025,'2012-12-03 02:46:22',1),(1,169,13025,'2012-12-03 02:46:22',1),(1,83,13025,'2012-12-03 02:46:22',1),(1,17,13025,'2012-12-03 02:46:22',1),(1,191,13025,'2012-12-03 02:46:22',1),(1,177,13027,'2012-12-03 02:46:23',1),(1,148,13027,'2012-12-03 02:46:23',1),(1,1,13027,'2012-12-03 02:46:23',1),(1,178,13027,'2012-12-03 02:46:23',1),(1,100,13027,'2012-12-03 02:46:23',1),(1,36,13027,'2012-12-03 02:46:23',1),(1,37,13027,'2012-12-03 02:46:23',1),(1,29,13027,'2012-12-03 02:46:23',1),(1,32,13229,'2012-12-03 02:46:29',1),(1,6,13229,'2012-12-03 02:46:29',1),(1,177,13226,'2012-12-03 02:46:37',1),(1,148,13226,'2012-12-03 02:46:37',1),(1,1,13226,'2012-12-03 02:46:37',1),(1,178,13226,'2012-12-03 02:46:37',1),(1,100,13226,'2012-12-03 02:46:37',1),(1,36,13226,'2012-12-03 02:46:37',1),(1,37,13226,'2012-12-03 02:46:37',1),(1,29,13226,'2012-12-03 02:46:37',1),(1,30,13226,'2012-12-03 02:46:37',1),(1,243,13226,'2012-12-03 02:46:37',1),(1,31,13226,'2012-12-03 02:46:37',1),(1,145,13226,'2012-12-03 02:46:37',1),(1,169,13226,'2012-12-03 02:46:37',1),(1,83,13226,'2012-12-03 02:46:37',1),(1,17,13226,'2012-12-03 02:46:37',1),(1,191,13226,'2012-12-03 02:46:37',1),(1,32,13227,'2012-12-03 02:46:44',1),(1,6,13227,'2012-12-03 02:46:44',1),(1,95,13220,'2012-12-03 03:16:13',1),(1,177,13220,'2012-12-03 03:16:13',1),(1,148,13220,'2012-12-03 03:16:13',1),(1,1,13220,'2012-12-03 03:16:13',1),(1,30,13139,'2012-12-03 03:16:17',1),(1,243,13139,'2012-12-03 03:16:17',1),(1,31,13139,'2012-12-03 03:16:17',1),(1,145,13139,'2012-12-03 03:16:17',1),(1,169,13139,'2012-12-03 03:16:17',1),(1,83,13139,'2012-12-03 03:16:17',1),(1,17,13139,'2012-12-03 03:16:17',1),(1,191,13139,'2012-12-03 03:16:17',1),(1,95,13141,'2012-12-03 03:16:17',1),(1,177,13141,'2012-12-03 03:16:17',1),(1,148,13141,'2012-12-03 03:16:17',1),(1,1,13141,'2012-12-03 03:16:17',1),(1,178,13141,'2012-12-03 03:16:17',1),(1,100,13141,'2012-12-03 03:16:17',1),(1,36,13141,'2012-12-03 03:16:17',1),(1,37,13141,'2012-12-03 03:16:17',1),(1,178,13231,'2012-12-03 03:16:21',1),(1,100,13231,'2012-12-03 03:16:21',1),(1,36,13231,'2012-12-03 03:16:21',1),(1,37,13231,'2012-12-03 03:16:21',1),(1,177,13028,'2012-12-03 03:16:26',1),(1,148,13028,'2012-12-03 03:16:26',1),(1,1,13028,'2012-12-03 03:16:26',1),(1,178,13028,'2012-12-03 03:16:26',1),(1,100,13028,'2012-12-03 03:16:26',1),(1,36,13028,'2012-12-03 03:16:26',1),(1,37,13028,'2012-12-03 03:16:26',1),(1,29,13028,'2012-12-03 03:16:26',1),(1,95,13221,'2012-12-03 03:16:32',1),(1,177,13221,'2012-12-03 03:16:32',1),(1,148,13221,'2012-12-03 03:16:32',1),(1,1,13221,'2012-12-03 03:16:32',1),(1,178,13221,'2012-12-03 03:16:32',1),(1,100,13221,'2012-12-03 03:16:32',1),(1,36,13221,'2012-12-03 03:16:32',1),(1,37,13221,'2012-12-03 03:16:32',1),(1,95,13222,'2012-12-03 03:16:35',1),(1,177,13222,'2012-12-03 03:16:35',1),(1,148,13222,'2012-12-03 03:16:35',1),(1,1,13222,'2012-12-03 03:16:35',1),(1,178,13222,'2012-12-03 03:16:35',1),(1,100,13222,'2012-12-03 03:16:35',1),(1,36,13222,'2012-12-03 03:16:35',1),(1,37,13222,'2012-12-03 03:16:35',1),(1,30,13223,'2012-12-03 03:16:35',1),(1,243,13223,'2012-12-03 03:16:35',1),(1,31,13223,'2012-12-03 03:16:35',1),(1,145,13223,'2012-12-03 03:16:35',1),(1,169,13223,'2012-12-03 03:16:35',1),(1,83,13223,'2012-12-03 03:16:35',1),(1,17,13223,'2012-12-03 03:16:35',1),(1,191,13223,'2012-12-03 03:16:35',1),(1,177,13029,'2012-12-03 03:16:39',1),(1,148,13029,'2012-12-03 03:16:39',1),(1,1,13029,'2012-12-03 03:16:39',1),(1,178,13029,'2012-12-03 03:16:39',1),(1,100,13029,'2012-12-03 03:16:39',1),(1,36,13029,'2012-12-03 03:16:39',1),(1,37,13029,'2012-12-03 03:16:39',1),(1,29,13029,'2012-12-03 03:16:39',1),(1,30,13030,'2012-12-03 03:16:39',1),(1,243,13030,'2012-12-03 03:16:39',1),(1,31,13030,'2012-12-03 03:16:39',1),(1,145,13030,'2012-12-03 03:16:39',1),(1,169,13030,'2012-12-03 03:16:39',1),(1,83,13030,'2012-12-03 03:16:39',1),(1,17,13030,'2012-12-03 03:16:39',1),(1,191,13030,'2012-12-03 03:16:39',1),(1,178,13225,'2012-12-03 03:16:43',1),(1,100,13225,'2012-12-03 03:16:43',1),(1,36,13225,'2012-12-03 03:16:43',1),(1,37,13225,'2012-12-03 03:16:43',1),(1,95,13228,'2012-12-03 03:16:44',1),(1,177,13228,'2012-12-03 03:16:44',1),(1,148,13228,'2012-12-03 03:16:44',1),(1,1,13228,'2012-12-03 03:16:44',1),(1,178,13228,'2012-12-03 03:16:44',1),(1,100,13228,'2012-12-03 03:16:44',1),(1,36,13228,'2012-12-03 03:16:44',1),(1,37,13228,'2012-12-03 03:16:44',1),(1,6,13034,'2012-12-03 03:16:46',1),(1,178,13305,'2012-12-03 03:46:12',1),(1,100,13305,'2012-12-03 03:46:12',1),(1,178,13315,'2012-12-03 03:46:12',1),(1,100,13315,'2012-12-03 03:46:12',1),(1,112,13316,'2012-12-03 03:46:23',1),(1,6,13316,'2012-12-03 03:46:23',1),(1,24,13307,'2012-12-03 03:46:23',1),(1,112,13307,'2012-12-03 03:46:23',1),(1,95,13219,'2012-12-03 03:46:26',1),(1,177,13219,'2012-12-03 03:46:26',1),(1,148,13219,'2012-12-03 03:46:26',1),(1,1,13219,'2012-12-03 03:46:26',1),(1,95,13304,'2012-12-03 03:46:29',1),(1,177,13304,'2012-12-03 03:46:29',1),(1,148,13304,'2012-12-03 03:46:29',1),(1,1,13304,'2012-12-03 03:46:29',1),(1,95,13323,'2012-12-03 03:46:30',1),(1,177,13323,'2012-12-03 03:46:30',1),(1,148,13323,'2012-12-03 03:46:30',1),(1,1,13323,'2012-12-03 03:46:30',1),(1,243,13324,'2012-12-03 03:46:31',1),(1,31,13324,'2012-12-03 03:46:31',1),(1,24,13324,'2012-12-03 03:46:31',1),(1,112,13324,'2012-12-03 03:46:31',1),(1,29,13214,'2012-12-03 03:46:54',NULL),(1,30,13214,'2012-12-03 03:46:54',NULL),(1,243,13214,'2012-12-03 03:46:54',NULL),(1,31,13214,'2012-12-03 03:46:54',NULL),(1,95,13327,'2012-12-03 04:16:14',1),(1,177,13327,'2012-12-03 04:16:14',1),(1,148,13327,'2012-12-03 04:16:14',1),(1,1,13327,'2012-12-03 04:16:14',1),(1,178,13327,'2012-12-03 04:16:14',1),(1,100,13327,'2012-12-03 04:16:14',1),(1,29,13327,'2012-12-03 04:16:14',1),(1,30,13327,'2012-12-03 04:16:14',1),(1,94,13308,'2012-12-03 04:16:23',1),(1,95,13308,'2012-12-03 04:16:23',1),(1,177,13308,'2012-12-03 04:16:23',1),(1,148,13308,'2012-12-03 04:16:23',1),(1,1,13308,'2012-12-03 04:16:23',1),(1,178,13308,'2012-12-03 04:16:23',1),(1,100,13308,'2012-12-03 04:16:23',1),(1,29,13308,'2012-12-03 04:16:23',1),(1,4,13145,'2012-12-03 04:16:36',1),(1,6,13143,'2012-12-03 04:16:36',1),(1,243,13320,'2012-12-03 04:16:40',1),(1,31,13320,'2012-12-03 04:16:40',1),(1,24,13320,'2012-12-03 04:16:40',1),(1,112,13320,'2012-12-03 04:16:40',1),(1,243,13313,'2012-12-03 04:16:43',1),(1,31,13313,'2012-12-03 04:16:43',1),(1,24,13313,'2012-12-03 04:16:43',1),(1,112,13313,'2012-12-03 04:16:43',1),(1,202,13326,'2012-12-03 04:16:50',1),(1,7,13326,'2012-12-03 04:16:50',1),(1,6,13326,'2012-12-03 04:16:50',1),(1,4,13326,'2012-12-03 04:16:50',1),(1,169,13306,'2012-12-03 04:16:52',1),(1,202,13306,'2012-12-03 04:16:52',1),(1,6,13038,'2012-12-03 04:16:56',1),(1,7,13317,'2012-12-03 04:17:05',1),(1,66,13317,'2012-12-03 04:17:05',1),(1,4,13322,'2012-12-03 04:46:16',1),(1,6,13217,'2012-12-03 04:46:19',1),(1,6,13314,'2012-12-03 04:46:25',1),(1,4,13218,'2012-12-03 04:46:29',1),(1,4,13224,'2012-12-03 04:46:50',1),(1,6,13318,'2012-12-03 04:47:05',1),(1,94,13303,'2012-12-03 05:16:36',1),(1,95,13303,'2012-12-03 05:16:36',1),(1,177,13303,'2012-12-03 05:16:36',1),(1,148,13303,'2012-12-03 05:16:36',1),(1,1,13303,'2012-12-03 05:16:36',1),(1,178,13303,'2012-12-03 05:16:36',1),(1,100,13303,'2012-12-03 05:16:36',1),(1,29,13303,'2012-12-03 05:16:36',1),(1,94,13321,'2012-12-03 05:16:44',1),(1,95,13321,'2012-12-03 05:16:44',1),(1,177,13321,'2012-12-03 05:16:44',1),(1,148,13321,'2012-12-03 05:16:44',1),(1,1,13321,'2012-12-03 05:16:44',1),(1,178,13321,'2012-12-03 05:16:44',1),(1,100,13321,'2012-12-03 05:16:44',1),(1,29,13321,'2012-12-03 05:16:44',1),(1,94,13325,'2012-12-03 05:16:57',1),(1,95,13325,'2012-12-03 05:16:57',1),(1,177,13325,'2012-12-03 05:16:57',1),(1,148,13325,'2012-12-03 05:16:57',1),(1,1,13325,'2012-12-03 05:16:57',1),(1,178,13325,'2012-12-03 05:16:57',1),(1,100,13325,'2012-12-03 05:16:57',1),(1,29,13325,'2012-12-03 05:16:57',1),(1,4,13319,'2012-12-03 05:17:08',1),(1,94,13311,'2012-12-03 05:47:06',1),(1,95,13311,'2012-12-03 05:47:06',1),(1,177,13311,'2012-12-03 05:47:06',1),(1,148,13311,'2012-12-03 05:47:06',1),(1,1,13311,'2012-12-03 05:47:06',1),(1,178,13311,'2012-12-03 05:47:06',1),(1,100,13311,'2012-12-03 05:47:06',1),(1,29,13311,'2012-12-03 05:47:06',1),(1,122,13312,'2012-12-03 12:17:16',1),(1,99,13312,'2012-12-03 12:17:16',1),(1,195,13312,'2012-12-03 12:17:16',1),(1,175,13312,'2012-12-03 12:17:16',1),(1,163,13312,'2012-12-03 12:17:16',1),(1,173,13312,'2012-12-03 12:17:16',1),(1,93,13312,'2012-12-03 12:17:16',1),(1,15,13312,'2012-12-03 12:17:16',1),(1,156,13312,'2012-12-03 12:17:16',1),(1,185,13312,'2012-12-03 12:17:16',1),(1,108,13312,'2012-12-03 12:17:16',1),(1,102,13312,'2012-12-03 12:17:16',1),(1,103,13312,'2012-12-03 12:17:16',1),(1,38,13312,'2012-12-03 12:17:16',1),(1,50,13312,'2012-12-03 12:17:16',1),(1,131,13312,'2012-12-03 12:17:16',1),(1,122,13310,'2012-12-03 12:47:28',1),(1,99,13310,'2012-12-03 12:47:28',1),(1,195,13310,'2012-12-03 12:47:28',1),(1,175,13310,'2012-12-03 12:47:28',1),(1,163,13310,'2012-12-03 12:47:28',1),(1,173,13310,'2012-12-03 12:47:28',1),(1,93,13310,'2012-12-03 12:47:28',1),(1,15,13310,'2012-12-03 12:47:28',1),(1,156,13310,'2012-12-03 12:47:28',1),(1,185,13310,'2012-12-03 12:47:28',1),(1,108,13310,'2012-12-03 12:47:28',1),(1,102,13310,'2012-12-03 12:47:28',1),(1,103,13310,'2012-12-03 12:47:28',1),(1,38,13310,'2012-12-03 12:47:28',1),(1,50,13310,'2012-12-03 12:47:28',1),(1,131,13310,'2012-12-03 12:47:28',1),(1,122,13309,'2012-12-03 13:17:39',1),(1,245,13309,'2012-12-03 13:17:39',1),(1,99,13309,'2012-12-03 13:17:39',1),(1,195,13309,'2012-12-03 13:17:39',1),(1,175,13309,'2012-12-03 13:17:39',1),(1,163,13309,'2012-12-03 13:17:39',1),(1,1,13309,'2012-12-03 13:17:39',1),(1,173,13309,'2012-12-03 13:17:39',1),(1,93,13309,'2012-12-03 13:17:39',1),(1,15,13309,'2012-12-03 13:17:39',1),(1,156,13309,'2012-12-03 13:17:39',1),(1,185,13309,'2012-12-03 13:17:39',1),(1,108,13309,'2012-12-03 13:17:39',1),(1,102,13309,'2012-12-03 13:17:39',1),(1,103,13309,'2012-12-03 13:17:39',1),(1,38,13309,'2012-12-03 13:17:39',1),(1,94,13368,'2012-12-04 00:46:15',1),(1,124,13368,'2012-12-04 00:46:15',1),(1,48,13368,'2012-12-04 00:46:15',1),(1,163,13368,'2012-12-04 00:46:15',1),(1,177,13368,'2012-12-04 00:46:15',1),(1,148,13368,'2012-12-04 00:46:15',1),(1,178,13368,'2012-12-04 00:46:15',1),(1,100,13368,'2012-12-04 00:46:15',1),(1,37,13365,'2012-12-04 00:46:15',1),(1,29,13365,'2012-12-04 00:46:15',1),(1,30,13365,'2012-12-04 00:46:15',1),(1,243,13365,'2012-12-04 00:46:15',1),(1,94,13366,'2012-12-04 00:46:15',1),(1,95,13366,'2012-12-04 00:46:15',1),(1,183,13366,'2012-12-04 00:46:15',1),(1,82,13366,'2012-12-04 00:46:15',1),(1,124,13366,'2012-12-04 00:46:15',1),(1,48,13366,'2012-12-04 00:46:15',1),(1,163,13366,'2012-12-04 00:46:15',1),(1,177,13366,'2012-12-04 00:46:15',1),(1,148,13367,'2012-12-04 00:46:15',1),(1,178,13367,'2012-12-04 00:46:15',1),(1,100,13367,'2012-12-04 00:46:15',1),(1,37,13367,'2012-12-04 00:46:15',1),(1,29,13367,'2012-12-04 00:46:15',1),(1,30,13367,'2012-12-04 00:46:15',1),(1,243,13367,'2012-12-04 00:46:15',1),(1,218,13367,'2012-12-04 00:46:15',1),(1,183,13370,'2012-12-04 00:46:22',1),(1,94,13371,'2012-12-04 00:46:22',1),(1,148,13369,'2012-12-04 00:46:23',1),(1,178,13369,'2012-12-04 00:46:23',1),(1,100,13369,'2012-12-04 00:46:23',1),(1,37,13369,'2012-12-04 00:46:23',1),(1,29,13369,'2012-12-04 00:46:23',1),(1,30,13369,'2012-12-04 00:46:23',1),(1,243,13369,'2012-12-04 00:46:23',1),(1,31,13369,'2012-12-04 00:46:23',1),(1,95,13372,'2012-12-04 00:46:23',1),(1,82,13373,'2012-12-04 00:46:31',1),(1,29,13376,'2012-12-04 00:46:31',1),(1,30,13376,'2012-12-04 00:46:31',1),(1,4,13374,'2012-12-04 00:46:31',1),(1,252,13374,'2012-12-04 00:46:31',1),(1,243,13375,'2012-12-04 00:46:31',1),(1,31,13375,'2012-12-04 00:46:31',1),(1,7,13379,'2012-12-04 00:46:39',1),(1,132,13379,'2012-12-04 00:46:39',1),(1,75,13378,'2012-12-04 00:46:39',1),(1,112,13378,'2012-12-04 00:46:39',1),(1,124,13377,'2012-12-04 00:46:39',1),(1,4,13380,'2012-12-04 00:46:39',1),(1,112,13380,'2012-12-04 00:46:39',1),(1,7,13380,'2012-12-04 00:46:39',1),(1,218,13380,'2012-12-04 00:46:39',1),(1,94,13381,'2012-12-04 00:46:47',1),(1,95,13381,'2012-12-04 00:46:47',1),(1,183,13381,'2012-12-04 00:46:47',1),(1,82,13381,'2012-12-04 00:46:47',1),(1,94,13364,'2012-12-04 00:46:47',1),(1,95,13364,'2012-12-04 00:46:47',1),(1,183,13364,'2012-12-04 00:46:47',1),(1,82,13364,'2012-12-04 00:46:47',1),(1,124,13364,'2012-12-04 00:46:47',1),(1,48,13364,'2012-12-04 00:46:47',1),(1,163,13364,'2012-12-04 00:46:47',1),(1,177,13364,'2012-12-04 00:46:47',1),(1,148,13383,'2012-12-04 00:46:47',1),(1,178,13383,'2012-12-04 00:46:47',1),(1,100,13383,'2012-12-04 00:46:47',1),(1,37,13383,'2012-12-04 00:46:47',1),(1,124,13382,'2012-12-04 00:46:47',1),(1,48,13382,'2012-12-04 00:46:47',1),(1,163,13382,'2012-12-04 00:46:47',1),(1,177,13382,'2012-12-04 00:46:47',1),(1,1,13481,'2012-12-04 01:46:12',1),(1,178,13481,'2012-12-04 01:46:12',1),(1,100,13481,'2012-12-04 01:46:12',1),(1,36,13481,'2012-12-04 01:46:12',1),(1,37,13483,'2012-12-04 01:46:12',NULL),(1,29,13483,'2012-12-04 01:46:12',NULL),(1,30,13483,'2012-12-04 01:46:12',NULL),(1,243,13483,'2012-12-04 01:46:12',NULL),(1,94,13482,'2012-12-04 01:46:12',1),(1,139,13482,'2012-12-04 01:46:12',1),(1,121,13482,'2012-12-04 01:46:12',1),(1,123,13482,'2012-12-04 01:46:12',1),(1,150,13482,'2012-12-04 01:46:12',1),(1,124,13482,'2012-12-04 01:46:12',1),(1,48,13482,'2012-12-04 01:46:12',1),(1,245,13482,'2012-12-04 01:46:12',1),(1,233,13480,'2012-12-04 01:46:12',1),(1,99,13480,'2012-12-04 01:46:12',1),(1,195,13480,'2012-12-04 01:46:12',1),(1,165,13480,'2012-12-04 01:46:12',1),(1,175,13480,'2012-12-04 01:46:12',1),(1,163,13480,'2012-12-04 01:46:12',1),(1,177,13480,'2012-12-04 01:46:12',1),(1,148,13480,'2012-12-04 01:46:12',1),(1,17,13484,'2012-12-04 01:46:20',1),(1,31,13486,'2012-12-04 01:46:20',1),(1,251,13486,'2012-12-04 01:46:20',1),(1,169,13487,'2012-12-04 01:46:20',1),(1,190,13487,'2012-12-04 01:46:20',1),(1,85,13485,'2012-12-04 01:46:20',1),(1,218,13561,'2012-12-04 02:46:11',1),(1,8,13563,'2012-12-04 02:46:11',1),(1,74,13563,'2012-12-04 02:46:11',1),(1,87,13563,'2012-12-04 02:46:11',1),(1,173,13563,'2012-12-04 02:46:11',1),(1,108,13560,'2012-12-04 02:46:11',1),(1,7,13560,'2012-12-04 02:46:11',1),(1,198,13562,'2012-12-04 02:46:11',1),(1,252,13565,'2012-12-04 02:46:19',1),(1,250,13565,'2012-12-04 02:46:19',1),(1,93,13565,'2012-12-04 02:46:19',1),(1,116,13565,'2012-12-04 02:46:19',1),(1,132,13567,'2012-12-04 02:46:19',1),(1,102,13567,'2012-12-04 02:46:19',1),(1,24,13564,'2012-12-04 02:46:19',1),(1,80,13564,'2012-12-04 02:46:19',1),(1,6,13564,'2012-12-04 02:46:19',1),(1,4,13564,'2012-12-04 02:46:19',1),(1,195,13568,'2012-12-04 02:46:19',1),(1,165,13568,'2012-12-04 02:46:19',1),(1,175,13568,'2012-12-04 02:46:19',1),(1,54,13568,'2012-12-04 02:46:19',1),(1,163,13568,'2012-12-04 02:46:19',1),(1,177,13568,'2012-12-04 02:46:19',1),(1,148,13568,'2012-12-04 02:46:19',1),(1,1,13568,'2012-12-04 02:46:19',1),(1,199,13570,'2012-12-04 02:46:27',1),(1,178,13569,'2012-12-04 02:46:27',1),(1,100,13569,'2012-12-04 02:46:27',1),(1,36,13569,'2012-12-04 02:46:27',1),(1,37,13569,'2012-12-04 02:46:27',1),(1,29,13569,'2012-12-04 02:46:27',1),(1,30,13569,'2012-12-04 02:46:27',1),(1,243,13569,'2012-12-04 02:46:27',1),(1,31,13569,'2012-12-04 02:46:27',1),(1,129,13571,'2012-12-04 02:46:27',1),(1,15,13571,'2012-12-04 02:46:27',1),(1,75,13571,'2012-12-04 02:46:27',1),(1,112,13571,'2012-12-04 02:46:27',1),(1,251,13572,'2012-12-04 02:46:27',1),(1,169,13572,'2012-12-04 02:46:27',1),(1,83,13572,'2012-12-04 02:46:27',1),(1,189,13572,'2012-12-04 02:46:27',1),(1,190,13572,'2012-12-04 02:46:27',1),(1,85,13572,'2012-12-04 02:46:27',1),(1,17,13572,'2012-12-04 02:46:27',1),(1,32,13572,'2012-12-04 02:46:27',1),(1,103,13574,'2012-12-04 02:46:35',1),(1,38,13574,'2012-12-04 02:46:35',1),(1,48,13573,'2012-12-04 02:46:36',1),(1,245,13573,'2012-12-04 02:46:36',1),(1,170,13573,'2012-12-04 02:46:36',1),(1,146,13573,'2012-12-04 02:46:36',1),(1,239,13573,'2012-12-04 02:46:36',1),(1,43,13573,'2012-12-04 02:46:36',1),(1,147,13573,'2012-12-04 02:46:36',1),(1,21,13573,'2012-12-04 02:46:36',1),(1,127,13573,'2012-12-04 02:46:36',1),(1,45,13573,'2012-12-04 02:46:36',1),(1,162,13573,'2012-12-04 02:46:36',1),(1,238,13573,'2012-12-04 02:46:36',1),(1,158,13573,'2012-12-04 02:46:36',1),(1,233,13573,'2012-12-04 02:46:36',1),(1,179,13573,'2012-12-04 02:46:36',1),(1,99,13573,'2012-12-04 02:46:36',1),(1,133,13559,'2012-12-04 02:46:37',1),(1,95,13559,'2012-12-04 02:46:37',1),(1,96,13559,'2012-12-04 02:46:37',1),(1,227,13559,'2012-12-04 02:46:37',1),(1,135,13559,'2012-12-04 02:46:37',1),(1,118,13559,'2012-12-04 02:46:37',1),(1,141,13559,'2012-12-04 02:46:37',1),(1,136,13559,'2012-12-04 02:46:37',1),(1,139,13559,'2012-12-04 02:46:37',1),(1,120,13559,'2012-12-04 02:46:37',1),(1,121,13559,'2012-12-04 02:46:37',1),(1,11,13559,'2012-12-04 02:46:37',1),(1,123,13559,'2012-12-04 02:46:37',1),(1,150,13559,'2012-12-04 02:46:37',1),(1,124,13559,'2012-12-04 02:46:37',1),(1,18,13559,'2012-12-04 02:46:37',1),(1,114,13566,'2012-12-04 02:46:43',1),(1,192,13566,'2012-12-04 02:46:43',1),(1,144,13566,'2012-12-04 02:46:43',1),(1,73,13566,'2012-12-04 02:46:43',1),(1,188,13566,'2012-12-04 02:46:43',1),(1,59,13566,'2012-12-04 02:46:43',1),(1,84,13566,'2012-12-04 02:46:43',1),(1,86,13566,'2012-12-04 02:46:43',1),(1,9,13558,'2012-12-04 02:46:43',1),(1,2,13558,'2012-12-04 02:46:43',1),(1,239,13665,'2012-12-04 03:16:19',1),(1,43,13665,'2012-12-04 03:16:19',1),(1,156,13575,'2012-12-04 03:16:38',NULL),(1,202,13575,'2012-12-04 03:16:38',NULL),(1,203,13575,'2012-12-04 03:16:38',NULL),(1,185,13575,'2012-12-04 03:16:38',NULL),(1,48,13644,'2012-12-04 03:46:13',1),(1,245,13644,'2012-12-04 03:46:13',1),(1,133,13666,'2012-12-04 03:46:13',1),(1,16,13666,'2012-12-04 03:46:13',1),(1,95,13666,'2012-12-04 03:46:13',1),(1,140,13666,'2012-12-04 03:46:13',1),(1,96,13666,'2012-12-04 03:46:13',1),(1,227,13666,'2012-12-04 03:46:13',1),(1,135,13666,'2012-12-04 03:46:13',1),(1,118,13666,'2012-12-04 03:46:13',1),(1,170,13645,'2012-12-04 03:46:17',1),(1,146,13645,'2012-12-04 03:46:17',1),(1,141,13667,'2012-12-04 03:46:21',1),(1,136,13667,'2012-12-04 03:46:21',1),(1,139,13667,'2012-12-04 03:46:21',1),(1,82,13667,'2012-12-04 03:46:21',1),(1,120,13667,'2012-12-04 03:46:21',1),(1,121,13667,'2012-12-04 03:46:21',1),(1,11,13667,'2012-12-04 03:46:21',1),(1,122,13667,'2012-12-04 03:46:21',1),(1,123,13647,'2012-12-04 03:46:22',1),(1,150,13647,'2012-12-04 03:46:22',1),(1,124,13647,'2012-12-04 03:46:22',1),(1,18,13647,'2012-12-04 03:46:22',1),(1,131,13650,'2012-12-04 03:46:30',1),(1,218,13650,'2012-12-04 03:46:30',1),(1,198,13650,'2012-12-04 03:46:30',1),(1,199,13650,'2012-12-04 03:46:30',1),(1,91,13651,'2012-12-04 03:46:31',1),(1,90,13652,'2012-12-04 03:46:34',1),(1,56,13652,'2012-12-04 03:46:34',1),(1,86,13653,'2012-12-04 03:46:36',1),(1,8,13653,'2012-12-04 03:46:36',1),(1,74,13653,'2012-12-04 03:46:36',1),(1,87,13653,'2012-12-04 03:46:36',1),(1,173,13653,'2012-12-04 03:46:36',1),(1,24,13653,'2012-12-04 03:46:36',1),(1,80,13653,'2012-12-04 03:46:36',1),(1,6,13653,'2012-12-04 03:46:36',1),(1,105,13655,'2012-12-04 03:46:39',1),(1,210,13655,'2012-12-04 03:46:39',1),(1,249,13656,'2012-12-04 03:46:39',1),(1,123,13649,'2012-12-04 03:46:41',1),(1,150,13649,'2012-12-04 03:46:41',1),(1,124,13649,'2012-12-04 03:46:41',1),(1,18,13649,'2012-12-04 03:46:41',1),(1,239,13649,'2012-12-04 03:46:41',1),(1,43,13649,'2012-12-04 03:46:41',1),(1,147,13649,'2012-12-04 03:46:41',1),(1,21,13649,'2012-12-04 03:46:41',1),(1,127,13649,'2012-12-04 03:46:41',1),(1,45,13649,'2012-12-04 03:46:41',1),(1,162,13649,'2012-12-04 03:46:41',1),(1,238,13649,'2012-12-04 03:46:41',1),(1,158,13649,'2012-12-04 03:46:41',1),(1,233,13649,'2012-12-04 03:46:41',1),(1,179,13649,'2012-12-04 03:46:41',1),(1,99,13649,'2012-12-04 03:46:41',1),(1,49,13643,'2012-12-04 03:46:42',1),(1,207,13643,'2012-12-04 03:46:42',1),(1,211,13643,'2012-12-04 03:46:42',1),(1,68,13643,'2012-12-04 03:46:42',1),(1,252,13657,'2012-12-04 03:46:46',1),(1,213,13658,'2012-12-04 03:46:48',1),(1,81,13658,'2012-12-04 03:46:48',1),(1,208,13658,'2012-12-04 03:46:48',1),(1,209,13658,'2012-12-04 03:46:48',1),(1,4,13659,'2012-12-04 03:46:48',1),(1,252,13659,'2012-12-04 03:46:48',1),(1,250,13659,'2012-12-04 03:46:48',1),(1,93,13659,'2012-12-04 03:46:48',1),(1,116,13659,'2012-12-04 03:46:48',1),(1,129,13659,'2012-12-04 03:46:48',1),(1,15,13659,'2012-12-04 03:46:48',1),(1,75,13659,'2012-12-04 03:46:48',1),(1,250,13660,'2012-12-04 03:46:52',1),(1,48,13661,'2012-12-04 03:46:54',1),(1,245,13661,'2012-12-04 03:46:54',1),(1,78,13661,'2012-12-04 03:46:54',1),(1,214,13661,'2012-12-04 03:46:54',1),(1,78,13662,'2012-12-04 03:46:56',1),(1,214,13662,'2012-12-04 03:46:56',1),(1,105,13662,'2012-12-04 03:46:56',1),(1,210,13662,'2012-12-04 03:46:56',1),(1,112,13663,'2012-12-04 03:46:56',1),(1,156,13663,'2012-12-04 03:46:56',1),(1,202,13663,'2012-12-04 03:46:56',1),(1,203,13663,'2012-12-04 03:46:56',1),(1,185,13663,'2012-12-04 03:46:56',1),(1,108,13663,'2012-12-04 03:46:56',1),(1,7,13663,'2012-12-04 03:46:56',1),(1,132,13663,'2012-12-04 03:46:56',1),(1,195,13664,'2012-12-04 03:46:59',1),(1,165,13664,'2012-12-04 03:46:59',1),(1,175,13664,'2012-12-04 03:46:59',1),(1,54,13664,'2012-12-04 03:46:59',1),(1,163,13664,'2012-12-04 03:46:59',1),(1,177,13664,'2012-12-04 03:46:59',1),(1,148,13664,'2012-12-04 03:46:59',1),(1,1,13664,'2012-12-04 03:46:59',1),(1,178,13664,'2012-12-04 03:46:59',1),(1,100,13664,'2012-12-04 03:46:59',1),(1,36,13664,'2012-12-04 03:46:59',1),(1,37,13664,'2012-12-04 03:46:59',1),(1,29,13664,'2012-12-04 03:46:59',1),(1,30,13664,'2012-12-04 03:46:59',1),(1,243,13664,'2012-12-04 03:46:59',1),(1,31,13664,'2012-12-04 03:46:59',1),(1,102,13648,'2012-12-04 03:47:03',1),(1,103,13648,'2012-12-04 03:47:03',1),(1,38,13648,'2012-12-04 03:47:03',1),(1,9,13648,'2012-12-04 03:47:03',1),(1,231,13648,'2012-12-04 03:47:03',1),(1,229,13648,'2012-12-04 03:47:03',1),(1,2,13648,'2012-12-04 03:47:03',1),(1,50,13648,'2012-12-04 03:47:03',1),(1,94,13654,'2012-12-04 03:47:04',1),(1,91,13654,'2012-12-04 03:47:04',1),(1,145,13646,'2012-12-04 03:47:05',1),(1,251,13646,'2012-12-04 03:47:05',1),(1,169,13646,'2012-12-04 03:47:05',1),(1,83,13646,'2012-12-04 03:47:05',1),(1,189,13646,'2012-12-04 03:47:05',1),(1,190,13646,'2012-12-04 03:47:05',1),(1,85,13646,'2012-12-04 03:47:05',1),(1,17,13646,'2012-12-04 03:47:05',1),(1,32,13646,'2012-12-04 03:47:05',1),(1,114,13646,'2012-12-04 03:47:05',1),(1,192,13646,'2012-12-04 03:47:05',1),(1,144,13646,'2012-12-04 03:47:05',1),(1,73,13646,'2012-12-04 03:47:05',1),(1,188,13646,'2012-12-04 03:47:05',1),(1,59,13646,'2012-12-04 03:47:05',1),(1,84,13646,'2012-12-04 03:47:05',1),(1,173,13987,'2012-12-05 16:21:00',1),(1,129,13987,'2012-12-05 16:21:00',1),(1,13,13987,'2012-12-05 16:21:00',1),(1,117,13987,'2012-12-05 16:21:00',1),(1,14,13987,'2012-12-05 16:21:00',1),(1,5,13987,'2012-12-05 16:21:00',1),(1,241,13987,'2012-12-05 16:21:00',1),(1,207,13987,'2012-12-05 16:21:00',1),(1,56,13988,'2012-12-05 16:21:01',1),(1,228,13988,'2012-12-05 16:21:01',1),(1,105,13991,'2012-12-05 16:21:04',1),(1,70,13991,'2012-12-05 16:21:04',1),(1,92,13991,'2012-12-05 16:21:04',1),(1,221,13991,'2012-12-05 16:21:04',1),(1,71,13993,'2012-12-05 17:51:15',1),(1,55,13714,'2012-12-05 17:51:48',1),(1,71,13715,'2012-12-05 17:51:49',1),(1,192,13721,'2012-12-05 17:51:55',1),(1,210,13978,'2012-12-05 18:21:24',1),(1,55,13978,'2012-12-05 18:21:24',1),(1,82,13985,'2012-12-05 18:25:16',1),(1,127,13986,'2012-12-05 20:51:29',1),(1,54,13986,'2012-12-05 20:51:29',1),(1,28,13995,'2012-12-05 20:51:35',1),(1,235,13995,'2012-12-05 20:51:35',1),(1,194,13995,'2012-12-05 20:51:35',1),(1,161,13995,'2012-12-05 20:51:35',1),(1,28,13983,'2012-12-05 20:51:38',1),(1,235,13983,'2012-12-05 20:51:38',1),(1,194,13983,'2012-12-05 20:51:38',1),(1,161,13983,'2012-12-05 20:51:38',1),(1,81,13980,'2012-12-05 20:51:39',1),(1,223,13980,'2012-12-05 20:51:39',1),(1,189,13718,'2012-12-05 20:52:03',1),(1,217,13718,'2012-12-05 20:52:03',1),(1,170,13719,'2012-12-05 20:52:05',1),(1,174,13719,'2012-12-05 20:52:05',1),(1,165,13724,'2012-12-05 20:52:12',1),(1,30,13724,'2012-12-05 20:52:12',1),(1,203,13724,'2012-12-05 20:52:12',1),(1,81,13724,'2012-12-05 20:52:12',1),(1,30,13725,'2012-12-05 20:52:14',1),(1,174,13725,'2012-12-05 20:52:14',1),(1,203,13725,'2012-12-05 20:52:14',1),(1,108,13725,'2012-12-05 20:52:14',1),(1,41,13994,'2012-12-05 21:21:35',NULL),(1,189,13994,'2012-12-05 21:21:35',NULL),(1,87,13994,'2012-12-05 21:21:35',NULL),(1,217,13994,'2012-12-05 21:21:35',NULL),(1,170,13992,'2012-12-05 21:21:35',1),(1,127,13992,'2012-12-05 21:21:35',1),(1,28,13992,'2012-12-05 21:21:35',1),(1,235,13992,'2012-12-05 21:21:35',1),(1,194,13992,'2012-12-05 21:21:35',1),(1,161,13992,'2012-12-05 21:21:35',1),(1,165,13992,'2012-12-05 21:21:35',1),(1,54,13992,'2012-12-05 21:21:35',1),(1,30,13996,'2012-12-05 21:21:37',1),(1,174,13996,'2012-12-05 21:21:37',1),(1,15,13996,'2012-12-05 21:21:37',1),(1,203,13996,'2012-12-05 21:21:37',1),(1,108,13996,'2012-12-05 21:21:37',1),(1,7,13996,'2012-12-05 21:21:37',1),(1,205,13996,'2012-12-05 21:21:37',1),(1,81,13996,'2012-12-05 21:21:37',1),(1,170,13998,'2012-12-05 21:21:40',1),(1,127,13998,'2012-12-05 21:21:40',1),(1,28,13998,'2012-12-05 21:21:40',1),(1,235,13998,'2012-12-05 21:21:40',1),(1,194,13998,'2012-12-05 21:21:40',1),(1,161,13998,'2012-12-05 21:21:40',1),(1,165,13998,'2012-12-05 21:21:40',1),(1,54,13998,'2012-12-05 21:21:40',1),(1,30,13909,'2012-12-05 21:21:41',1),(1,236,13909,'2012-12-05 21:21:41',1),(1,74,13909,'2012-12-05 21:21:41',1),(1,174,13909,'2012-12-05 21:21:41',1),(1,15,13909,'2012-12-05 21:21:41',1),(1,156,13909,'2012-12-05 21:21:41',1),(1,203,13909,'2012-12-05 21:21:41',1),(1,108,13909,'2012-12-05 21:21:41',1),(1,30,13710,'2012-12-05 21:21:58',1),(1,236,13710,'2012-12-05 21:21:58',1),(1,74,13710,'2012-12-05 21:21:58',1),(1,174,13710,'2012-12-05 21:21:58',1),(1,15,13710,'2012-12-05 21:21:58',1),(1,130,13710,'2012-12-05 21:21:58',1),(1,156,13710,'2012-12-05 21:21:58',1),(1,203,13710,'2012-12-05 21:21:58',1),(1,30,13711,'2012-12-05 21:21:58',1),(1,236,13711,'2012-12-05 21:21:58',1),(1,74,13711,'2012-12-05 21:21:58',1),(1,174,13711,'2012-12-05 21:21:58',1),(1,15,13711,'2012-12-05 21:21:58',1),(1,156,13711,'2012-12-05 21:21:58',1),(1,203,13711,'2012-12-05 21:21:58',1),(1,108,13711,'2012-12-05 21:21:58',1),(1,30,13712,'2012-12-05 21:21:59',1),(1,236,13712,'2012-12-05 21:21:59',1),(1,74,13712,'2012-12-05 21:21:59',1),(1,174,13712,'2012-12-05 21:21:59',1),(1,15,13712,'2012-12-05 21:21:59',1),(1,130,13712,'2012-12-05 21:21:59',1),(1,156,13712,'2012-12-05 21:21:59',1),(1,203,13712,'2012-12-05 21:21:59',1),(1,170,13713,'2012-12-05 21:22:00',1),(1,127,13713,'2012-12-05 21:22:00',1),(1,28,13713,'2012-12-05 21:22:00',1),(1,51,13713,'2012-12-05 21:22:00',1),(1,235,13713,'2012-12-05 21:22:00',1),(1,194,13713,'2012-12-05 21:22:00',1),(1,161,13713,'2012-12-05 21:22:00',1),(1,165,13713,'2012-12-05 21:22:00',1),(1,205,13720,'2012-12-05 21:22:09',1),(1,81,13720,'2012-12-05 21:22:09',1),(1,236,13722,'2012-12-05 21:22:11',1),(1,156,13722,'2012-12-05 21:22:11',1),(1,81,13723,'2012-12-05 21:22:11',1),(1,223,13723,'2012-12-05 21:22:11',1),(1,7,13726,'2012-12-05 21:22:17',1),(1,205,13726,'2012-12-05 21:22:17',1),(1,81,13726,'2012-12-05 21:22:17',1),(1,223,13726,'2012-12-05 21:22:17',1),(1,7,13727,'2012-12-05 21:22:17',1),(1,205,13727,'2012-12-05 21:22:17',1),(1,81,13727,'2012-12-05 21:22:17',1),(1,223,13727,'2012-12-05 21:22:17',1),(1,170,13728,'2012-12-05 21:22:18',1),(1,127,13728,'2012-12-05 21:22:18',1),(1,28,13728,'2012-12-05 21:22:18',1),(1,51,13728,'2012-12-05 21:22:18',1),(1,235,13728,'2012-12-05 21:22:18',1),(1,194,13728,'2012-12-05 21:22:18',1),(1,161,13728,'2012-12-05 21:22:18',1),(1,165,13728,'2012-12-05 21:22:18',1),(1,110,13709,'2012-12-05 21:22:21',1),(1,7,13709,'2012-12-05 21:22:21',1),(1,205,13709,'2012-12-05 21:22:21',1),(1,81,13709,'2012-12-05 21:22:21',1),(1,170,13900,'2012-12-05 21:25:11',1),(1,127,13900,'2012-12-05 21:25:11',1),(1,28,13900,'2012-12-05 21:25:11',1),(1,51,13900,'2012-12-05 21:25:11',1),(1,235,13900,'2012-12-05 21:25:11',1),(1,194,13900,'2012-12-05 21:25:11',1),(1,161,13900,'2012-12-05 21:25:11',1),(1,165,13900,'2012-12-05 21:25:11',1),(1,170,13904,'2012-12-05 21:25:15',1),(1,127,13904,'2012-12-05 21:25:15',1),(1,28,13904,'2012-12-05 21:25:15',1),(1,51,13904,'2012-12-05 21:25:15',1),(1,235,13904,'2012-12-05 21:25:15',1),(1,194,13904,'2012-12-05 21:25:15',1),(1,161,13904,'2012-12-05 21:25:15',1),(1,165,13904,'2012-12-05 21:25:15',1),(1,41,14000,'2012-12-05 21:51:36',1),(1,30,14000,'2012-12-05 21:51:36',1),(1,236,14000,'2012-12-05 21:51:36',1),(1,189,14000,'2012-12-05 21:51:36',1),(1,74,14000,'2012-12-05 21:51:36',1),(1,87,14000,'2012-12-05 21:51:36',1),(1,174,14000,'2012-12-05 21:51:36',1),(1,15,14000,'2012-12-05 21:51:36',1),(1,130,14000,'2012-12-05 21:51:36',1),(1,156,14000,'2012-12-05 21:51:36',1),(1,110,14000,'2012-12-05 21:51:36',1),(1,203,14000,'2012-12-05 21:51:36',1),(1,108,14000,'2012-12-05 21:51:36',1),(1,7,14000,'2012-12-05 21:51:36',1),(1,217,14000,'2012-12-05 21:51:36',1),(1,205,14000,'2012-12-05 21:51:36',1),(1,170,13997,'2012-12-05 21:51:40',1),(1,41,13997,'2012-12-05 21:51:40',1),(1,127,13997,'2012-12-05 21:51:40',1),(1,28,13997,'2012-12-05 21:51:40',1),(1,51,13997,'2012-12-05 21:51:40',1),(1,235,13997,'2012-12-05 21:51:40',1),(1,194,13997,'2012-12-05 21:51:40',1),(1,161,13997,'2012-12-05 21:51:40',1),(1,165,13997,'2012-12-05 21:51:40',1),(1,30,13997,'2012-12-05 21:51:40',1),(1,236,13997,'2012-12-05 21:51:40',1),(1,189,13997,'2012-12-05 21:51:40',1),(1,74,13997,'2012-12-05 21:51:40',1),(1,87,13997,'2012-12-05 21:51:40',1),(1,174,13997,'2012-12-05 21:51:40',1),(1,15,13997,'2012-12-05 21:51:40',1),(1,53,13899,'2012-12-05 21:54:57',1),(1,228,13899,'2012-12-05 21:54:57',1),(1,53,13910,'2012-12-05 21:54:58',1),(1,228,13910,'2012-12-05 21:54:58',1),(1,54,13906,'2012-12-05 21:55:08',NULL),(1,2,13906,'2012-12-05 21:55:08',NULL),(1,81,13906,'2012-12-05 21:55:08',NULL),(1,223,13906,'2012-12-05 21:55:08',NULL),(1,53,13896,'2012-12-05 21:55:09',1),(1,105,13896,'2012-12-05 21:55:09',1),(1,228,13896,'2012-12-05 21:55:09',1),(1,6,13896,'2012-12-05 21:55:09',1),(1,150,13897,'2012-12-05 21:55:10',1),(1,39,13897,'2012-12-05 21:55:10',1),(1,142,13897,'2012-12-05 21:55:10',1),(1,221,13897,'2012-12-05 21:55:10',1),(1,15,13898,'2012-12-05 21:55:12',1),(1,2,13898,'2012-12-05 21:55:12',1),(1,81,13898,'2012-12-05 21:55:12',1),(1,223,13898,'2012-12-05 21:55:12',1),(1,150,13905,'2012-12-05 21:55:17',1),(1,39,13905,'2012-12-05 21:55:17',1),(1,48,13908,'2012-12-05 21:55:17',1),(1,62,13908,'2012-12-05 21:55:17',1),(1,115,13908,'2012-12-05 21:55:17',1),(1,129,13908,'2012-12-05 21:55:17',1),(1,15,13908,'2012-12-05 21:55:17',1),(1,130,13908,'2012-12-05 21:55:17',1),(1,156,13908,'2012-12-05 21:55:17',1),(1,110,13908,'2012-12-05 21:55:17',1),(1,203,13908,'2012-12-05 21:55:17',1),(1,108,13908,'2012-12-05 21:55:17',1),(1,7,13908,'2012-12-05 21:55:17',1),(1,2,13908,'2012-12-05 21:55:17',1),(1,131,13908,'2012-12-05 21:55:17',1),(1,217,13908,'2012-12-05 21:55:17',1),(1,81,13908,'2012-12-05 21:55:17',1),(1,223,13908,'2012-12-05 21:55:17',1),(1,130,13979,'2012-12-05 21:55:21',1),(1,156,13979,'2012-12-05 21:55:21',1),(1,110,13979,'2012-12-05 21:55:21',1),(1,203,13979,'2012-12-05 21:55:21',1),(1,108,13979,'2012-12-05 21:55:21',1),(1,7,13979,'2012-12-05 21:55:21',1),(1,217,13979,'2012-12-05 21:55:21',1),(1,205,13979,'2012-12-05 21:55:21',1),(1,131,13982,'2012-12-05 21:55:25',1),(1,217,13982,'2012-12-05 21:55:25',1),(1,181,13999,'2012-12-05 21:55:29',1),(1,32,13999,'2012-12-05 21:55:29',1),(1,115,13833,'2012-12-05 21:56:02',1),(1,130,13833,'2012-12-05 21:56:02',1),(1,156,13833,'2012-12-05 21:56:02',1),(1,110,13833,'2012-12-05 21:56:02',1),(1,203,13833,'2012-12-05 21:56:02',1),(1,108,13833,'2012-12-05 21:56:02',1),(1,7,13833,'2012-12-05 21:56:02',1),(1,217,13833,'2012-12-05 21:56:02',1),(1,48,13827,'2012-12-05 21:56:14',1),(1,115,13827,'2012-12-05 21:56:14',1),(1,130,13827,'2012-12-05 21:56:14',1),(1,156,13827,'2012-12-05 21:56:14',1),(1,110,13827,'2012-12-05 21:56:14',1),(1,203,13827,'2012-12-05 21:56:14',1),(1,108,13827,'2012-12-05 21:56:14',1),(1,7,13827,'2012-12-05 21:56:14',1),(1,14,13989,'2012-12-05 22:21:37',1),(1,205,13990,'2012-12-05 22:21:39',1),(1,76,13716,'2012-12-05 22:22:08',1),(1,102,13717,'2012-12-05 22:22:10',1),(1,35,13895,'2012-12-05 22:25:04',1),(1,170,13907,'2012-12-05 22:25:11',1),(1,41,13907,'2012-12-05 22:25:11',1),(1,127,13907,'2012-12-05 22:25:11',1),(1,28,13907,'2012-12-05 22:25:11',1),(1,51,13907,'2012-12-05 22:25:11',1),(1,235,13907,'2012-12-05 22:25:11',1),(1,194,13907,'2012-12-05 22:25:11',1),(1,161,13907,'2012-12-05 22:25:11',1),(1,165,13907,'2012-12-05 22:25:11',1),(1,54,13907,'2012-12-05 22:25:11',1),(1,30,13907,'2012-12-05 22:25:11',1),(1,236,13907,'2012-12-05 22:25:11',1),(1,189,13907,'2012-12-05 22:25:11',1),(1,74,13907,'2012-12-05 22:25:11',1),(1,87,13907,'2012-12-05 22:25:11',1),(1,174,13907,'2012-12-05 22:25:11',1),(1,62,13902,'2012-12-05 22:25:14',1),(1,165,13903,'2012-12-05 22:25:17',1),(1,54,13903,'2012-12-05 22:25:17',1),(1,181,13903,'2012-12-05 22:25:17',1),(1,35,13903,'2012-12-05 22:25:17',1),(1,150,13981,'2012-12-05 22:25:25',1),(1,39,13981,'2012-12-05 22:25:25',1),(1,53,13981,'2012-12-05 22:25:25',1),(1,142,13981,'2012-12-05 22:25:25',1),(1,105,13981,'2012-12-05 22:25:25',1),(1,221,13981,'2012-12-05 22:25:25',1),(1,228,13981,'2012-12-05 22:25:25',1),(1,6,13981,'2012-12-05 22:25:25',1),(1,48,14001,'2012-12-05 22:25:27',1),(1,62,14001,'2012-12-05 22:25:27',1),(1,115,14001,'2012-12-05 22:25:27',1),(1,129,14001,'2012-12-05 22:25:27',1),(1,15,14001,'2012-12-05 22:25:27',1),(1,130,14001,'2012-12-05 22:25:27',1),(1,156,14001,'2012-12-05 22:25:27',1),(1,110,14001,'2012-12-05 22:25:27',1),(1,203,14001,'2012-12-05 22:25:27',1),(1,108,14001,'2012-12-05 22:25:27',1),(1,7,14001,'2012-12-05 22:25:27',1),(1,2,14001,'2012-12-05 22:25:27',1),(1,131,14001,'2012-12-05 22:25:27',1),(1,217,14001,'2012-12-05 22:25:27',1),(1,81,14001,'2012-12-05 22:25:27',1),(1,223,14001,'2012-12-05 22:25:27',1),(1,48,13984,'2012-12-05 22:25:28',1),(1,165,13984,'2012-12-05 22:25:28',1),(1,54,13984,'2012-12-05 22:25:28',1),(1,181,13984,'2012-12-05 22:25:28',1),(1,30,14002,'2012-12-05 22:25:32',1),(1,236,14002,'2012-12-05 22:25:32',1),(1,189,14002,'2012-12-05 22:25:32',1),(1,32,14002,'2012-12-05 22:25:32',1),(1,115,13894,'2012-12-05 22:25:39',1),(1,129,13832,'2012-12-05 22:25:59',1),(1,181,13831,'2012-12-05 22:26:05',1),(1,32,13831,'2012-12-05 22:26:05',1),(1,15,13829,'2012-12-05 22:26:09',1),(1,14,13830,'2012-12-05 22:26:16',1),(1,102,13830,'2012-12-05 22:26:16',1),(1,74,13828,'2012-12-05 22:26:17',1),(1,87,13828,'2012-12-05 22:26:17',1),(1,174,13828,'2012-12-05 22:26:17',1),(1,14,13828,'2012-12-05 22:26:17',1),(1,48,13826,'2012-12-05 22:26:18',1),(1,165,13826,'2012-12-05 22:26:18',1),(1,54,13826,'2012-12-05 22:26:18',1),(1,181,13826,'2012-12-05 22:26:18',1),(1,205,13893,'2012-12-05 22:27:17',1),(1,209,13893,'2012-12-05 22:27:17',1),(1,170,13901,'2012-12-05 22:27:17',1),(1,41,13901,'2012-12-05 22:27:17',1),(1,127,13901,'2012-12-05 22:27:17',1),(1,28,13901,'2012-12-05 22:27:17',1),(1,51,13901,'2012-12-05 22:27:17',1),(1,235,13901,'2012-12-05 22:27:17',1),(1,194,13901,'2012-12-05 22:27:17',1),(1,161,13901,'2012-12-05 22:27:17',1),(1,185,14057,'2012-12-06 00:46:12',1),(1,108,14057,'2012-12-06 00:46:12',1),(1,230,14057,'2012-12-06 00:46:12',1),(1,216,14057,'2012-12-06 00:46:12',1),(1,6,14038,'2012-12-06 00:46:13',1),(1,48,14038,'2012-12-06 00:46:13',1),(1,164,14038,'2012-12-06 00:46:13',1),(1,154,14038,'2012-12-06 00:46:13',1),(1,22,14038,'2012-12-06 00:46:13',1),(1,171,14038,'2012-12-06 00:46:13',1),(1,185,14038,'2012-12-06 00:46:13',1),(1,108,14038,'2012-12-06 00:46:13',1),(1,185,14055,'2012-12-06 00:46:13',1),(1,108,14055,'2012-12-06 00:46:13',1),(1,230,14055,'2012-12-06 00:46:13',1),(1,216,14055,'2012-12-06 00:46:13',1),(1,6,14056,'2012-12-06 00:46:15',1),(1,4,14056,'2012-12-06 00:46:15',1),(1,48,14056,'2012-12-06 00:46:15',1),(1,164,14056,'2012-12-06 00:46:15',1),(1,154,14056,'2012-12-06 00:46:15',1),(1,22,14056,'2012-12-06 00:46:15',1),(1,171,14056,'2012-12-06 00:46:15',1),(1,185,14056,'2012-12-06 00:46:15',1),(1,208,14043,'2012-12-06 00:46:24',1),(1,185,14044,'2012-12-06 00:46:25',1),(1,208,14045,'2012-12-06 00:46:27',1),(1,108,14046,'2012-12-06 00:46:28',1),(1,216,14046,'2012-12-06 00:46:28',1),(1,108,14047,'2012-12-06 00:46:33',1),(1,216,14047,'2012-12-06 00:46:33',1),(1,77,14048,'2012-12-06 00:46:35',1),(1,91,14048,'2012-12-06 00:46:35',1),(1,216,14049,'2012-12-06 00:46:35',1),(1,164,14050,'2012-12-06 00:46:38',1),(1,154,14050,'2012-12-06 00:46:38',1),(1,22,14051,'2012-12-06 00:46:41',1),(1,171,14051,'2012-12-06 00:46:41',1),(1,77,14052,'2012-12-06 00:46:41',1),(1,207,14052,'2012-12-06 00:46:41',1),(1,208,14052,'2012-12-06 00:46:41',1),(1,91,14052,'2012-12-06 00:46:41',1),(1,164,14053,'2012-12-06 00:46:41',1),(1,154,14053,'2012-12-06 00:46:41',1),(1,22,14053,'2012-12-06 00:46:41',1),(1,171,14053,'2012-12-06 00:46:41',1),(1,6,14054,'2012-12-06 00:46:45',1),(1,4,14054,'2012-12-06 00:46:45',1),(1,48,14054,'2012-12-06 00:46:45',1),(1,151,14054,'2012-12-06 00:46:45',1),(1,6,14039,'2012-12-06 00:46:48',1),(1,4,14039,'2012-12-06 00:46:48',1),(1,48,14039,'2012-12-06 00:46:48',1),(1,151,14039,'2012-12-06 00:46:48',1),(1,164,14039,'2012-12-06 00:46:48',1),(1,154,14039,'2012-12-06 00:46:48',1),(1,22,14039,'2012-12-06 00:46:48',1),(1,171,14039,'2012-12-06 00:46:48',1),(1,6,14040,'2012-12-06 00:46:48',1),(1,4,14040,'2012-12-06 00:46:48',1),(1,48,14040,'2012-12-06 00:46:48',1),(1,151,14040,'2012-12-06 00:46:48',1),(1,164,14040,'2012-12-06 00:46:48',1),(1,154,14040,'2012-12-06 00:46:48',1),(1,22,14040,'2012-12-06 00:46:48',1),(1,171,14040,'2012-12-06 00:46:48',1),(1,6,14041,'2012-12-06 00:46:51',1),(1,48,14041,'2012-12-06 00:46:51',1),(1,164,14041,'2012-12-06 00:46:51',1),(1,154,14041,'2012-12-06 00:46:51',1),(1,22,14041,'2012-12-06 00:46:51',1),(1,171,14041,'2012-12-06 00:46:51',1),(1,185,14041,'2012-12-06 00:46:51',1),(1,108,14041,'2012-12-06 00:46:51',1),(1,108,14042,'2012-12-06 00:46:51',1),(1,91,14153,'2012-12-06 01:46:11',1),(1,230,14152,'2012-12-06 01:46:14',1),(1,216,14152,'2012-12-06 01:46:14',1),(1,77,14152,'2012-12-06 01:46:14',1),(1,49,14152,'2012-12-06 01:46:14',1),(1,207,14154,'2012-12-06 01:46:15',1),(1,208,14154,'2012-12-06 01:46:15',1),(1,6,14155,'2012-12-06 01:46:15',1),(1,4,14155,'2012-12-06 01:46:15',1),(1,150,14155,'2012-12-06 01:46:15',1),(1,48,14155,'2012-12-06 01:46:15',1),(1,151,14155,'2012-12-06 01:46:15',1),(1,164,14155,'2012-12-06 01:46:15',1),(1,154,14155,'2012-12-06 01:46:15',1),(1,162,14155,'2012-12-06 01:46:15',1),(1,154,14157,'2012-12-06 01:46:23',1),(1,6,14158,'2012-12-06 01:46:23',1),(1,4,14158,'2012-12-06 01:46:23',1),(1,150,14158,'2012-12-06 01:46:23',1),(1,48,14158,'2012-12-06 01:46:23',1),(1,151,14156,'2012-12-06 01:46:23',1),(1,164,14156,'2012-12-06 01:46:23',1),(1,22,14151,'2012-12-06 01:46:27',1),(1,177,14151,'2012-12-06 01:46:27',1),(1,171,14151,'2012-12-06 01:46:27',1),(1,106,14151,'2012-12-06 01:46:27',1),(1,63,14151,'2012-12-06 01:46:27',1),(1,166,14151,'2012-12-06 01:46:27',1),(1,185,14151,'2012-12-06 01:46:27',1),(1,108,14151,'2012-12-06 01:46:27',1),(1,91,14250,'2012-12-06 02:46:19',1),(1,6,14250,'2012-12-06 02:46:19',1),(1,4,14237,'2012-12-06 02:46:19',1),(1,116,14240,'2012-12-06 02:46:29',1),(1,209,14240,'2012-12-06 02:46:29',1),(1,223,14240,'2012-12-06 02:46:29',1),(1,91,14240,'2012-12-06 02:46:29',1),(1,116,14241,'2012-12-06 02:46:33',1),(1,91,14241,'2012-12-06 02:46:33',1),(1,6,14241,'2012-12-06 02:46:33',1),(1,4,14241,'2012-12-06 02:46:33',1),(1,36,14242,'2012-12-06 02:46:33',1),(1,59,14242,'2012-12-06 02:46:33',1),(1,229,14242,'2012-12-06 02:46:33',1),(1,70,14242,'2012-12-06 02:46:33',1),(1,223,14242,'2012-12-06 02:46:33',1),(1,91,14242,'2012-12-06 02:46:33',1),(1,6,14242,'2012-12-06 02:46:33',1),(1,4,14242,'2012-12-06 02:46:33',1),(1,91,14246,'2012-12-06 02:46:42',1),(1,6,14246,'2012-12-06 02:46:42',1),(1,91,14251,'2012-12-06 02:46:42',1),(1,6,14251,'2012-12-06 02:46:42',1),(1,116,14243,'2012-12-06 02:46:42',1),(1,223,14238,'2012-12-06 02:46:44',1),(1,26,14244,'2012-12-06 02:46:49',1),(1,116,14244,'2012-12-06 02:46:49',1),(1,209,14244,'2012-12-06 02:46:49',1),(1,70,14244,'2012-12-06 02:46:49',1),(1,6,14253,'2012-12-06 02:47:01',1),(1,4,14253,'2012-12-06 02:47:01',1),(1,79,14248,'2012-12-06 03:16:24',NULL),(1,56,14248,'2012-12-06 03:16:24',NULL),(1,92,14248,'2012-12-06 03:16:24',NULL),(1,222,14248,'2012-12-06 03:16:24',NULL),(1,26,14249,'2012-12-06 03:16:25',1),(1,79,14249,'2012-12-06 03:16:25',1),(1,36,14249,'2012-12-06 03:16:25',1),(1,128,14249,'2012-12-06 03:16:25',1),(1,59,14249,'2012-12-06 03:16:25',1),(1,116,14249,'2012-12-06 03:16:25',1),(1,229,14249,'2012-12-06 03:16:25',1),(1,209,14249,'2012-12-06 03:16:25',1),(1,70,14249,'2012-12-06 03:16:25',1),(1,56,14249,'2012-12-06 03:16:25',1),(1,92,14249,'2012-12-06 03:16:25',1),(1,222,14249,'2012-12-06 03:16:25',1),(1,223,14249,'2012-12-06 03:16:25',1),(1,91,14249,'2012-12-06 03:16:25',1),(1,6,14249,'2012-12-06 03:16:25',1),(1,4,14249,'2012-12-06 03:16:25',1),(1,26,14247,'2012-12-06 03:16:33',1),(1,79,14247,'2012-12-06 03:16:33',1),(1,36,14247,'2012-12-06 03:16:33',1),(1,37,14247,'2012-12-06 03:16:33',1),(1,128,14247,'2012-12-06 03:16:33',1),(1,59,14247,'2012-12-06 03:16:33',1),(1,116,14247,'2012-12-06 03:16:33',1),(1,229,14247,'2012-12-06 03:16:33',1),(1,209,14247,'2012-12-06 03:16:33',1),(1,70,14247,'2012-12-06 03:16:33',1),(1,56,14247,'2012-12-06 03:16:33',1),(1,92,14247,'2012-12-06 03:16:33',1),(1,222,14247,'2012-12-06 03:16:33',1),(1,223,14247,'2012-12-06 03:16:33',1),(1,91,14247,'2012-12-06 03:16:33',1),(1,6,14247,'2012-12-06 03:16:33',1),(1,26,14239,'2012-12-06 03:17:01',1),(1,128,14239,'2012-12-06 03:17:01',1),(1,116,14239,'2012-12-06 03:17:01',1),(1,209,14239,'2012-12-06 03:17:01',1),(1,36,14245,'2012-12-06 03:17:05',1),(1,59,14245,'2012-12-06 03:17:05',1),(1,229,14245,'2012-12-06 03:17:05',1),(1,70,14245,'2012-12-06 03:17:05',1),(1,223,14245,'2012-12-06 03:17:05',1),(1,91,14245,'2012-12-06 03:17:05',1),(1,6,14245,'2012-12-06 03:17:05',1),(1,4,14245,'2012-12-06 03:17:05',1),(1,209,14236,'2012-12-06 03:17:13',1),(1,70,14236,'2012-12-06 03:17:13',1),(1,56,14236,'2012-12-06 03:17:13',1),(1,92,14236,'2012-12-06 03:17:13',1),(1,222,14236,'2012-12-06 03:17:13',1),(1,223,14236,'2012-12-06 03:17:13',1),(1,91,14236,'2012-12-06 03:17:13',1),(1,6,14236,'2012-12-06 03:17:13',1),(1,152,14341,'2012-12-06 03:46:12',1),(1,202,14341,'2012-12-06 03:46:12',1),(1,26,14320,'2012-12-06 03:46:12',1),(1,79,14320,'2012-12-06 03:46:12',1),(1,36,14320,'2012-12-06 03:46:12',1),(1,37,14320,'2012-12-06 03:46:12',1),(1,128,14320,'2012-12-06 03:46:12',1),(1,59,14320,'2012-12-06 03:46:12',1),(1,116,14320,'2012-12-06 03:46:12',1),(1,229,14320,'2012-12-06 03:46:12',1),(1,209,14320,'2012-12-06 03:46:12',1),(1,70,14320,'2012-12-06 03:46:12',1),(1,56,14320,'2012-12-06 03:46:12',1),(1,92,14320,'2012-12-06 03:46:12',1),(1,222,14320,'2012-12-06 03:46:12',1),(1,223,14320,'2012-12-06 03:46:12',1),(1,91,14320,'2012-12-06 03:46:12',1),(1,6,14320,'2012-12-06 03:46:12',1),(1,209,14333,'2012-12-06 03:46:15',1),(1,70,14333,'2012-12-06 03:46:15',1),(1,56,14333,'2012-12-06 03:46:15',1),(1,92,14333,'2012-12-06 03:46:15',1),(1,222,14333,'2012-12-06 03:46:15',1),(1,223,14333,'2012-12-06 03:46:15',1),(1,91,14333,'2012-12-06 03:46:15',1),(1,6,14333,'2012-12-06 03:46:15',1),(1,6,14323,'2012-12-06 03:46:32',1),(1,4,14323,'2012-12-06 03:46:32',1),(1,4,14331,'2012-12-06 03:46:37',1),(1,215,14334,'2012-12-06 03:46:38',1),(1,179,14321,'2012-12-06 03:46:47',1),(1,6,14321,'2012-12-06 03:46:47',1),(1,4,14325,'2012-12-06 03:46:56',1),(1,26,14252,'2012-12-06 03:47:09',1),(1,79,14252,'2012-12-06 03:47:09',1),(1,36,14252,'2012-12-06 03:47:09',1),(1,37,14252,'2012-12-06 03:47:09',1),(1,128,14252,'2012-12-06 03:47:09',1),(1,59,14252,'2012-12-06 03:47:09',1),(1,116,14252,'2012-12-06 03:47:09',1),(1,229,14252,'2012-12-06 03:47:09',1),(1,215,14330,'2012-12-06 03:47:09',1),(1,127,14332,'2012-12-06 04:16:14',1),(1,179,14332,'2012-12-06 04:16:14',1),(1,6,14332,'2012-12-06 04:16:14',1),(1,4,14332,'2012-12-06 04:16:14',1),(1,93,14322,'2012-12-06 04:16:37',1),(1,222,14322,'2012-12-06 04:16:37',1),(1,223,14322,'2012-12-06 04:16:37',1),(1,6,14322,'2012-12-06 04:16:37',1),(1,222,14335,'2012-12-06 04:16:37',1),(1,223,14335,'2012-12-06 04:16:37',1),(1,6,14335,'2012-12-06 04:16:37',1),(1,4,14335,'2012-12-06 04:16:37',1),(1,52,14342,'2012-12-06 04:16:52',1),(1,4,14342,'2012-12-06 04:16:52',1),(1,91,14329,'2012-12-06 04:16:53',1),(1,26,14329,'2012-12-06 04:16:53',1),(1,79,14329,'2012-12-06 04:16:53',1),(1,36,14329,'2012-12-06 04:16:53',1),(1,37,14329,'2012-12-06 04:16:53',1),(1,128,14329,'2012-12-06 04:16:53',1),(1,59,14329,'2012-12-06 04:16:53',1),(1,116,14329,'2012-12-06 04:16:53',1),(1,215,14329,'2012-12-06 04:16:53',1),(1,229,14329,'2012-12-06 04:16:53',1),(1,209,14329,'2012-12-06 04:16:53',1),(1,70,14329,'2012-12-06 04:16:53',1),(1,56,14329,'2012-12-06 04:16:53',1),(1,92,14329,'2012-12-06 04:16:53',1),(1,222,14329,'2012-12-06 04:16:53',1),(1,223,14329,'2012-12-06 04:16:53',1),(1,56,14328,'2012-12-06 04:17:02',1),(1,92,14328,'2012-12-06 04:17:02',1),(1,91,14338,'2012-12-06 04:17:06',1),(1,26,14338,'2012-12-06 04:17:06',1),(1,79,14338,'2012-12-06 04:17:06',1),(1,127,14338,'2012-12-06 04:17:06',1),(1,179,14338,'2012-12-06 04:17:06',1),(1,36,14338,'2012-12-06 04:17:06',1),(1,37,14338,'2012-12-06 04:17:06',1),(1,128,14338,'2012-12-06 04:17:06',1),(1,59,14338,'2012-12-06 04:17:06',1),(1,116,14338,'2012-12-06 04:17:06',1),(1,215,14338,'2012-12-06 04:17:06',1),(1,229,14338,'2012-12-06 04:17:06',1),(1,209,14338,'2012-12-06 04:17:06',1),(1,70,14338,'2012-12-06 04:17:06',1),(1,56,14338,'2012-12-06 04:17:06',1),(1,92,14338,'2012-12-06 04:17:06',1),(1,91,14319,'2012-12-06 04:46:40',1),(1,26,14319,'2012-12-06 04:46:40',1),(1,79,14319,'2012-12-06 04:46:40',1),(1,127,14319,'2012-12-06 04:46:40',1),(1,179,14319,'2012-12-06 04:46:40',1),(1,36,14319,'2012-12-06 04:46:40',1),(1,37,14319,'2012-12-06 04:46:40',1),(1,128,14319,'2012-12-06 04:46:40',1),(1,59,14327,'2012-12-06 04:46:48',1),(1,116,14327,'2012-12-06 04:46:48',1),(1,215,14327,'2012-12-06 04:46:48',1),(1,229,14327,'2012-12-06 04:46:48',1),(1,69,14327,'2012-12-06 04:46:48',1),(1,52,14327,'2012-12-06 04:46:48',1),(1,209,14327,'2012-12-06 04:46:48',1),(1,70,14327,'2012-12-06 04:46:48',1),(1,21,14340,'2012-12-06 04:46:54',1),(1,223,14340,'2012-12-06 04:46:54',1),(1,6,14340,'2012-12-06 04:46:54',1),(1,4,14340,'2012-12-06 04:46:54',1),(1,152,14326,'2012-12-06 04:46:55',1),(1,202,14326,'2012-12-06 04:46:55',1),(1,93,14337,'2012-12-06 04:47:06',1),(1,201,14337,'2012-12-06 04:47:06',1),(1,56,14337,'2012-12-06 04:47:06',1),(1,92,14337,'2012-12-06 04:47:06',1),(1,222,14337,'2012-12-06 04:47:06',1),(1,223,14337,'2012-12-06 04:47:06',1),(1,6,14337,'2012-12-06 04:47:06',1),(1,4,14337,'2012-12-06 04:47:06',1),(1,21,14336,'2012-12-06 04:47:06',1),(1,214,14336,'2012-12-06 04:47:06',1),(1,223,14336,'2012-12-06 04:47:06',1),(1,6,14336,'2012-12-06 04:47:06',1),(1,21,14324,'2012-12-06 04:47:10',1),(1,214,14324,'2012-12-06 04:47:10',1),(1,223,14324,'2012-12-06 04:47:10',1),(1,6,14324,'2012-12-06 04:47:10',1),(1,59,14318,'2012-12-06 04:47:21',1),(1,116,14318,'2012-12-06 04:47:21',1),(1,215,14318,'2012-12-06 04:47:21',1),(1,229,14318,'2012-12-06 04:47:21',1),(1,69,14318,'2012-12-06 04:47:21',1),(1,52,14318,'2012-12-06 04:47:21',1),(1,209,14318,'2012-12-06 04:47:21',1),(1,70,14318,'2012-12-06 04:47:21',1),(1,152,14339,'2012-12-06 05:17:11',1),(1,111,14339,'2012-12-06 05:17:11',1),(1,93,14339,'2012-12-06 05:17:11',1),(1,202,14339,'2012-12-06 05:17:11',1),(1,201,14339,'2012-12-06 05:17:11',1),(1,56,14339,'2012-12-06 05:17:11',1),(1,92,14339,'2012-12-06 05:17:11',1),(1,222,14339,'2012-12-06 05:17:11',1),(1,91,3014386,'2012-12-07 00:46:18',1),(1,91,3014387,'2012-12-07 00:46:19',1),(1,6,3014388,'2012-12-07 00:46:21',1),(1,91,3014389,'2012-12-07 00:46:22',1),(1,221,3014390,'2012-12-07 00:46:24',1),(1,228,3014390,'2012-12-07 00:46:24',1),(1,221,3014391,'2012-12-07 00:46:25',1),(1,228,3014391,'2012-12-07 00:46:25',1),(1,221,3014392,'2012-12-07 00:46:29',1),(1,228,3014392,'2012-12-07 00:46:29',1),(1,210,3014393,'2012-12-07 00:46:30',1),(1,221,3014394,'2012-12-07 00:46:33',1),(1,228,3014394,'2012-12-07 00:46:33',1),(1,221,3014395,'2012-12-07 00:46:33',1),(1,228,3014395,'2012-12-07 00:46:33',1),(1,6,3014396,'2012-12-07 00:46:39',1),(1,210,3014396,'2012-12-07 00:46:39',1),(1,90,3014396,'2012-12-07 00:46:39',1),(1,224,3014396,'2012-12-07 00:46:39',1),(1,6,3014397,'2012-12-07 00:46:39',1),(1,210,3014397,'2012-12-07 00:46:39',1),(1,90,3014397,'2012-12-07 00:46:39',1),(1,224,3014397,'2012-12-07 00:46:39',1),(1,6,3014398,'2012-12-07 00:46:40',1),(1,210,3014398,'2012-12-07 00:46:40',1),(1,90,3014398,'2012-12-07 00:46:40',1),(1,224,3014398,'2012-12-07 00:46:40',1),(1,6,3014399,'2012-12-07 00:46:40',1),(1,210,3014399,'2012-12-07 00:46:40',1),(1,90,3014399,'2012-12-07 00:46:40',1),(1,224,3014399,'2012-12-07 00:46:40',1),(1,6,3014401,'2012-12-07 00:46:46',1),(1,210,3014401,'2012-12-07 00:46:46',1),(1,90,3014401,'2012-12-07 00:46:46',1),(1,224,3014401,'2012-12-07 00:46:46',1),(1,6,3014499,'2012-12-07 01:46:11',1),(1,6,3014495,'2012-12-07 01:46:12',1),(1,210,3014495,'2012-12-07 01:46:12',1),(1,90,3014495,'2012-12-07 01:46:12',1),(1,224,3014495,'2012-12-07 01:46:12',1),(1,221,3014501,'2012-12-07 01:46:23',1),(1,228,3014501,'2012-12-07 01:46:23',1),(1,91,3014496,'2012-12-07 01:46:24',1),(1,6,3014400,'2012-12-07 01:46:50',1),(1,210,3014400,'2012-12-07 01:46:50',1),(1,90,3014400,'2012-12-07 01:46:50',1),(1,224,3014400,'2012-12-07 01:46:50',1),(1,221,3014400,'2012-12-07 01:46:50',1),(1,223,3014400,'2012-12-07 01:46:50',1),(1,228,3014400,'2012-12-07 01:46:50',1),(1,91,3014400,'2012-12-07 01:46:50',1),(1,24,3014497,'2012-12-07 02:16:23',1),(1,6,3014497,'2012-12-07 02:16:23',1),(1,6,3014585,'2012-12-07 02:46:18',1),(1,6,3014571,'2012-12-07 02:46:23',1),(1,6,3014576,'2012-12-07 02:46:32',1),(1,6,3014586,'2012-12-07 03:16:23',1),(1,4,3014586,'2012-12-07 03:16:23',1),(1,6,3014577,'2012-12-07 03:16:38',1),(1,4,3014577,'2012-12-07 03:16:38',1),(1,6,3014663,'2012-12-07 03:46:28',1),(1,4,3014663,'2012-12-07 03:46:28',1),(1,24,3014658,'2012-12-07 03:46:28',1),(1,6,3014658,'2012-12-07 03:46:28',1),(1,6,3014580,'2012-12-07 03:47:01',1),(1,4,3014580,'2012-12-07 03:47:01',1),(1,6,3014584,'2012-12-07 03:47:09',1),(1,4,3014584,'2012-12-07 03:47:09',1),(1,4,3014677,'2012-12-07 04:16:20',1),(1,4,3014667,'2012-12-07 04:16:20',1),(1,4,3014662,'2012-12-07 04:16:30',1),(1,24,3014660,'2012-12-07 04:16:37',1),(1,6,3014660,'2012-12-07 04:16:37',1),(1,24,3014655,'2012-12-07 04:17:02',1),(1,6,3014655,'2012-12-07 04:17:02',1),(1,4,3014670,'2012-12-07 04:17:08',1),(1,24,3014661,'2012-12-07 04:17:11',1),(1,6,3014661,'2012-12-07 04:17:11',1),(1,24,3014665,'2012-12-07 04:17:12',1),(1,6,3014665,'2012-12-07 04:17:12',1),(1,25,3014588,'2012-12-07 10:17:17',1),(1,125,3014588,'2012-12-07 10:17:17',1),(1,183,3014588,'2012-12-07 10:17:17',1),(1,113,3014588,'2012-12-07 10:17:17',1),(1,27,3014588,'2012-12-07 10:17:17',1),(1,184,3014588,'2012-12-07 10:17:17',1),(1,118,3014588,'2012-12-07 10:17:17',1),(1,141,3014588,'2012-12-07 10:17:17',1),(1,118,3014384,'2012-12-07 10:17:32',1),(1,141,3014384,'2012-12-07 10:17:32',1),(1,119,3014384,'2012-12-07 10:17:32',1),(1,136,3014384,'2012-12-07 10:17:32',1),(1,137,3014384,'2012-12-07 10:17:32',1),(1,138,3014384,'2012-12-07 10:17:32',1),(1,42,3014384,'2012-12-07 10:17:32',1),(1,97,3014384,'2012-12-07 10:17:32',1),(1,25,3014385,'2012-12-07 10:17:32',1),(1,125,3014385,'2012-12-07 10:17:32',1),(1,183,3014385,'2012-12-07 10:17:32',1),(1,113,3014385,'2012-12-07 10:17:32',1),(1,27,3014385,'2012-12-07 10:17:32',1),(1,184,3014385,'2012-12-07 10:17:32',1),(1,118,3014385,'2012-12-07 10:17:32',1),(1,141,3014385,'2012-12-07 10:17:32',1),(1,160,3014581,'2012-12-07 10:17:35',1),(1,133,3014581,'2012-12-07 10:17:35',1),(1,16,3014581,'2012-12-07 10:17:35',1),(1,244,3014581,'2012-12-07 10:17:35',1),(1,95,3014581,'2012-12-07 10:17:35',1),(1,88,3014581,'2012-12-07 10:17:35',1),(1,25,3014581,'2012-12-07 10:17:35',1),(1,125,3014581,'2012-12-07 10:17:35',1),(1,183,3014581,'2012-12-07 10:17:35',1),(1,113,3014581,'2012-12-07 10:17:35',1),(1,27,3014581,'2012-12-07 10:17:35',1),(1,184,3014581,'2012-12-07 10:17:35',1),(1,118,3014581,'2012-12-07 10:17:35',1),(1,141,3014581,'2012-12-07 10:17:35',1),(1,119,3014581,'2012-12-07 10:17:35',1),(1,136,3014581,'2012-12-07 10:17:35',1),(1,25,3014402,'2012-12-07 10:17:44',1),(1,125,3014402,'2012-12-07 10:17:44',1),(1,183,3014402,'2012-12-07 10:17:44',1),(1,113,3014402,'2012-12-07 10:17:44',1),(1,27,3014402,'2012-12-07 10:17:44',1),(1,184,3014402,'2012-12-07 10:17:44',1),(1,118,3014402,'2012-12-07 10:17:44',1),(1,141,3014402,'2012-12-07 10:17:44',1),(1,25,3014383,'2012-12-07 10:17:45',1),(1,125,3014383,'2012-12-07 10:17:45',1),(1,183,3014383,'2012-12-07 10:17:45',1),(1,113,3014383,'2012-12-07 10:17:45',1),(1,27,3014383,'2012-12-07 10:17:45',1),(1,184,3014383,'2012-12-07 10:17:45',1),(1,118,3014383,'2012-12-07 10:17:45',1),(1,141,3014383,'2012-12-07 10:17:45',1),(1,134,3014500,'2012-12-07 10:47:20',1),(1,135,3014500,'2012-12-07 10:47:20',1),(1,246,3014500,'2012-12-07 10:47:20',1),(1,149,3014500,'2012-12-07 10:47:20',1),(1,134,3014572,'2012-12-07 11:17:24',1),(1,135,3014572,'2012-12-07 11:17:24',1),(1,246,3014572,'2012-12-07 11:17:24',1),(1,149,3014572,'2012-12-07 11:17:24',1),(1,134,3014582,'2012-12-07 11:47:14',NULL),(1,135,3014582,'2012-12-07 11:47:14',NULL),(1,246,3014582,'2012-12-07 11:47:14',NULL),(1,149,3014582,'2012-12-07 11:47:14',NULL),(1,134,3014502,'2012-12-07 11:47:26',1),(1,135,3014502,'2012-12-07 11:47:26',1),(1,246,3014502,'2012-12-07 11:47:26',1),(1,149,3014502,'2012-12-07 11:47:26',1),(1,119,3014502,'2012-12-07 11:47:26',1),(1,136,3014502,'2012-12-07 11:47:26',1),(1,137,3014502,'2012-12-07 11:47:26',1),(1,138,3014502,'2012-12-07 11:47:26',1),(1,134,3014573,'2012-12-07 11:47:27',1),(1,135,3014573,'2012-12-07 11:47:27',1),(1,246,3014573,'2012-12-07 11:47:27',1),(1,149,3014573,'2012-12-07 11:47:27',1),(1,134,3014498,'2012-12-07 11:47:31',1),(1,135,3014498,'2012-12-07 11:47:31',1),(1,246,3014498,'2012-12-07 11:47:31',1),(1,149,3014498,'2012-12-07 11:47:31',1),(1,119,3014498,'2012-12-07 11:47:31',1),(1,136,3014498,'2012-12-07 11:47:31',1),(1,137,3014498,'2012-12-07 11:47:31',1),(1,138,3014498,'2012-12-07 11:47:31',1),(1,134,3014574,'2012-12-07 11:47:43',1),(1,135,3014574,'2012-12-07 11:47:43',1),(1,246,3014574,'2012-12-07 11:47:43',1),(1,149,3014574,'2012-12-07 11:47:43',1),(1,134,3014578,'2012-12-07 11:47:44',1),(1,135,3014578,'2012-12-07 11:47:44',1),(1,246,3014578,'2012-12-07 11:47:44',1),(1,149,3014578,'2012-12-07 11:47:44',1),(1,246,3014668,'2012-12-07 12:47:18',1),(1,149,3014668,'2012-12-07 12:47:18',1),(1,119,3014668,'2012-12-07 12:47:18',1),(1,136,3014668,'2012-12-07 12:47:18',1),(1,134,3014587,'2012-12-07 13:17:35',1),(1,135,3014587,'2012-12-07 13:17:35',1),(1,246,3014587,'2012-12-07 13:17:35',1),(1,149,3014587,'2012-12-07 13:17:35',1),(1,119,3014587,'2012-12-07 13:17:35',1),(1,136,3014587,'2012-12-07 13:17:35',1),(1,137,3014587,'2012-12-07 13:17:35',1),(1,97,3014587,'2012-12-07 13:17:35',1),(1,135,3014659,'2012-12-07 13:47:30',1),(1,246,3014659,'2012-12-07 13:47:30',1),(1,149,3014659,'2012-12-07 13:47:30',1),(1,119,3014659,'2012-12-07 13:47:30',1),(1,136,3014672,'2012-12-07 13:47:38',1),(1,137,3014672,'2012-12-07 13:47:38',1),(1,138,3014672,'2012-12-07 13:47:38',1),(1,97,3014672,'2012-12-07 13:47:38',1),(1,135,3014673,'2012-12-07 13:47:38',1),(1,246,3014673,'2012-12-07 13:47:38',1),(1,149,3014673,'2012-12-07 13:47:38',1),(1,119,3014673,'2012-12-07 13:47:38',1),(1,136,3014673,'2012-12-07 13:47:38',1),(1,137,3014673,'2012-12-07 13:47:38',1),(1,138,3014673,'2012-12-07 13:47:38',1),(1,97,3014673,'2012-12-07 13:47:38',1),(1,135,3014575,'2012-12-07 13:47:52',1),(1,246,3014575,'2012-12-07 13:47:52',1),(1,149,3014575,'2012-12-07 13:47:52',1),(1,119,3014575,'2012-12-07 13:47:52',1),(1,136,3014575,'2012-12-07 13:47:52',1),(1,137,3014575,'2012-12-07 13:47:52',1),(1,138,3014575,'2012-12-07 13:47:52',1),(1,97,3014575,'2012-12-07 13:47:52',1),(1,135,3014579,'2012-12-07 13:47:52',1),(1,246,3014579,'2012-12-07 13:47:52',1),(1,149,3014579,'2012-12-07 13:47:52',1),(1,119,3014579,'2012-12-07 13:47:52',1),(1,136,3014579,'2012-12-07 13:47:52',1),(1,137,3014579,'2012-12-07 13:47:52',1),(1,138,3014579,'2012-12-07 13:47:52',1),(1,97,3014579,'2012-12-07 13:47:52',1),(1,135,3014675,'2012-12-07 14:17:44',1),(1,246,3014675,'2012-12-07 14:17:44',1),(1,149,3014675,'2012-12-07 14:17:44',1),(1,119,3014675,'2012-12-07 14:17:44',1),(1,136,3014675,'2012-12-07 14:17:44',1),(1,137,3014675,'2012-12-07 14:17:44',1),(1,138,3014675,'2012-12-07 14:17:44',1),(1,97,3014675,'2012-12-07 14:17:44',1),(1,135,3014678,'2012-12-07 14:17:57',1),(1,246,3014678,'2012-12-07 14:17:57',1),(1,149,3014678,'2012-12-07 14:17:57',1),(1,119,3014678,'2012-12-07 14:17:57',1),(1,136,3014678,'2012-12-07 14:17:57',1),(1,137,3014678,'2012-12-07 14:17:57',1),(1,138,3014678,'2012-12-07 14:17:57',1),(1,97,3014678,'2012-12-07 14:17:57',1),(1,246,3014669,'2012-12-07 14:18:00',1),(1,149,3014669,'2012-12-07 14:18:00',1),(1,119,3014669,'2012-12-07 14:18:00',1),(1,136,3014669,'2012-12-07 14:18:00',1),(1,137,3014669,'2012-12-07 14:18:00',1),(1,138,3014669,'2012-12-07 14:18:00',1),(1,97,3014669,'2012-12-07 14:18:00',1),(1,24,3014669,'2012-12-07 14:18:00',1),(1,246,3014654,'2012-12-07 14:48:04',1),(1,149,3014654,'2012-12-07 14:48:04',1),(1,119,3014654,'2012-12-07 14:48:04',1),(1,136,3014654,'2012-12-07 14:48:04',1),(1,137,3014654,'2012-12-07 14:48:04',1),(1,138,3014654,'2012-12-07 14:48:04',1),(1,97,3014654,'2012-12-07 14:48:04',1),(1,24,3014654,'2012-12-07 14:48:04',1),(1,135,3014676,'2012-12-07 15:17:51',1),(1,246,3014676,'2012-12-07 15:17:51',1),(1,149,3014676,'2012-12-07 15:17:51',1),(1,119,3014676,'2012-12-07 15:17:51',1),(1,134,3014656,'2012-12-07 15:17:52',1),(1,135,3014656,'2012-12-07 15:17:52',1),(1,246,3014656,'2012-12-07 15:17:52',1),(1,149,3014656,'2012-12-07 15:17:52',1),(1,136,3014671,'2012-12-07 15:17:54',1),(1,137,3014671,'2012-12-07 15:17:54',1),(1,138,3014671,'2012-12-07 15:17:54',1),(1,42,3014671,'2012-12-07 15:17:54',1),(1,135,3014664,'2012-12-07 15:18:08',1),(1,246,3014664,'2012-12-07 15:18:08',1),(1,149,3014664,'2012-12-07 15:18:08',1),(1,119,3014664,'2012-12-07 15:18:08',1),(1,136,3014664,'2012-12-07 15:18:08',1),(1,137,3014664,'2012-12-07 15:18:08',1),(1,138,3014664,'2012-12-07 15:18:08',1),(1,42,3014664,'2012-12-07 15:18:08',1),(1,24,3014726,'2012-12-08 00:16:27',1),(1,210,3014726,'2012-12-08 00:16:27',1),(1,90,3014726,'2012-12-08 00:16:27',1),(1,224,3014726,'2012-12-08 00:16:27',1),(1,160,3014583,'2012-12-08 00:18:40',1),(1,133,3014583,'2012-12-08 00:18:40',1),(1,16,3014583,'2012-12-08 00:18:40',1),(1,244,3014583,'2012-12-08 00:18:40',1),(1,95,3014583,'2012-12-08 00:18:40',1),(1,88,3014583,'2012-12-08 00:18:40',1),(1,134,3014583,'2012-12-08 00:18:40',1),(1,135,3014583,'2012-12-08 00:18:40',1),(1,246,3014583,'2012-12-08 00:18:40',1),(1,119,3014583,'2012-12-08 00:18:40',1),(1,136,3014583,'2012-12-08 00:18:40',1),(1,137,3014583,'2012-12-08 00:18:40',1),(1,138,3014583,'2012-12-08 00:18:40',1),(1,42,3014583,'2012-12-08 00:18:40',1),(1,97,3014583,'2012-12-08 00:18:40',1),(1,57,3014583,'2012-12-08 00:18:40',1),(1,228,3014715,'2012-12-08 00:46:13',1),(1,228,3014716,'2012-12-08 00:46:13',1),(1,228,3014717,'2012-12-08 00:46:13',1),(1,24,3014718,'2012-12-08 00:46:21',1),(1,221,3014720,'2012-12-08 00:46:21',1),(1,223,3014720,'2012-12-08 00:46:21',1),(1,221,3014721,'2012-12-08 00:46:21',1),(1,223,3014721,'2012-12-08 00:46:21',1),(1,210,3014722,'2012-12-08 00:46:21',1),(1,221,3014723,'2012-12-08 00:46:29',1),(1,223,3014723,'2012-12-08 00:46:29',1),(1,221,3014724,'2012-12-08 00:46:29',1),(1,223,3014724,'2012-12-08 00:46:29',1),(1,24,3014725,'2012-12-08 00:46:29',1),(1,210,3014725,'2012-12-08 00:46:29',1),(1,90,3014725,'2012-12-08 00:46:29',1),(1,224,3014725,'2012-12-08 00:46:29',1),(1,24,3014727,'2012-12-08 00:46:37',1),(1,210,3014727,'2012-12-08 00:46:37',1),(1,90,3014727,'2012-12-08 00:46:37',1),(1,224,3014727,'2012-12-08 00:46:37',1),(1,24,3014728,'2012-12-08 00:46:45',1),(1,210,3014728,'2012-12-08 00:46:45',1),(1,90,3014728,'2012-12-08 00:46:45',1),(1,224,3014728,'2012-12-08 00:46:45',1),(1,24,3014730,'2012-12-08 00:46:45',1),(1,210,3014730,'2012-12-08 00:46:45',1),(1,90,3014730,'2012-12-08 00:46:45',1),(1,224,3014730,'2012-12-08 00:46:45',1),(1,221,3014719,'2012-12-08 00:46:45',1),(1,223,3014719,'2012-12-08 00:46:45',1),(1,160,3014657,'2012-12-08 00:48:07',1),(1,133,3014657,'2012-12-08 00:48:07',1),(1,16,3014657,'2012-12-08 00:48:07',1),(1,244,3014657,'2012-12-08 00:48:07',1),(1,95,3014657,'2012-12-08 00:48:07',1),(1,88,3014657,'2012-12-08 00:48:07',1),(1,134,3014657,'2012-12-08 00:48:07',1),(1,135,3014657,'2012-12-08 00:48:07',1),(1,246,3014657,'2012-12-08 00:48:07',1),(1,119,3014657,'2012-12-08 00:48:07',1),(1,136,3014657,'2012-12-08 00:48:07',1),(1,137,3014657,'2012-12-08 00:48:07',1),(1,138,3014657,'2012-12-08 00:48:07',1),(1,42,3014657,'2012-12-08 00:48:07',1),(1,97,3014657,'2012-12-08 00:48:07',1),(1,57,3014657,'2012-12-08 00:48:07',1),(1,160,3014714,'2012-12-08 01:16:15',1),(1,133,3014714,'2012-12-08 01:16:15',1),(1,16,3014714,'2012-12-08 01:16:15',1),(1,244,3014714,'2012-12-08 01:16:15',1),(1,95,3014714,'2012-12-08 01:16:15',1),(1,88,3014714,'2012-12-08 01:16:15',1),(1,134,3014714,'2012-12-08 01:16:15',1),(1,135,3014714,'2012-12-08 01:16:15',1),(1,160,3014731,'2012-12-08 01:16:39',1),(1,133,3014731,'2012-12-08 01:16:39',1),(1,16,3014731,'2012-12-08 01:16:39',1),(1,244,3014731,'2012-12-08 01:16:39',1),(1,95,3014731,'2012-12-08 01:16:39',1),(1,88,3014731,'2012-12-08 01:16:39',1),(1,134,3014731,'2012-12-08 01:16:39',1),(1,135,3014731,'2012-12-08 01:16:39',1),(1,246,3014713,'2012-12-08 01:16:39',1),(1,119,3014713,'2012-12-08 01:16:39',1),(1,136,3014713,'2012-12-08 01:16:39',1),(1,137,3014713,'2012-12-08 01:16:39',1),(1,138,3014713,'2012-12-08 01:16:39',1),(1,42,3014713,'2012-12-08 01:16:39',1),(1,97,3014713,'2012-12-08 01:16:39',1),(1,57,3014713,'2012-12-08 01:16:39',1),(1,246,3014732,'2012-12-08 01:16:39',1),(1,119,3014732,'2012-12-08 01:16:39',1),(1,136,3014732,'2012-12-08 01:16:39',1),(1,137,3014732,'2012-12-08 01:16:39',1),(1,138,3014732,'2012-12-08 01:16:39',1),(1,42,3014732,'2012-12-08 01:16:39',1),(1,97,3014732,'2012-12-08 01:16:39',1),(1,57,3014732,'2012-12-08 01:16:39',1),(1,246,3014729,'2012-12-08 01:16:47',1),(1,119,3014729,'2012-12-08 01:16:47',1),(1,136,3014729,'2012-12-08 01:16:47',1),(1,137,3014729,'2012-12-08 01:16:47',1),(1,138,3014729,'2012-12-08 01:16:47',1),(1,42,3014729,'2012-12-08 01:16:47',1),(1,97,3014729,'2012-12-08 01:16:47',1),(1,57,3014729,'2012-12-08 01:16:47',1),(1,160,3014674,'2012-12-08 01:18:26',1),(1,133,3014674,'2012-12-08 01:18:26',1),(1,16,3014674,'2012-12-08 01:18:26',1),(1,244,3014674,'2012-12-08 01:18:26',1),(1,95,3014674,'2012-12-08 01:18:26',1),(1,88,3014674,'2012-12-08 01:18:26',1),(1,134,3014674,'2012-12-08 01:18:26',1),(1,135,3014674,'2012-12-08 01:18:26',1),(1,246,3014674,'2012-12-08 01:18:26',1),(1,119,3014674,'2012-12-08 01:18:26',1),(1,136,3014674,'2012-12-08 01:18:26',1),(1,137,3014674,'2012-12-08 01:18:26',1),(1,138,3014674,'2012-12-08 01:18:26',1),(1,42,3014674,'2012-12-08 01:18:26',1),(1,97,3014674,'2012-12-08 01:18:26',1),(1,57,3014674,'2012-12-08 01:18:26',1),(1,160,3014666,'2012-12-08 01:18:36',1),(1,133,3014666,'2012-12-08 01:18:36',1),(1,16,3014666,'2012-12-08 01:18:36',1),(1,244,3014666,'2012-12-08 01:18:36',1),(1,95,3014666,'2012-12-08 01:18:36',1),(1,88,3014666,'2012-12-08 01:18:36',1),(1,134,3014666,'2012-12-08 01:18:36',1),(1,135,3014666,'2012-12-08 01:18:36',1),(1,246,3014666,'2012-12-08 01:18:36',1),(1,119,3014666,'2012-12-08 01:18:36',1),(1,136,3014666,'2012-12-08 01:18:36',1),(1,137,3014666,'2012-12-08 01:18:36',1),(1,138,3014666,'2012-12-08 01:18:36',1),(1,42,3014666,'2012-12-08 01:18:36',1),(1,97,3014666,'2012-12-08 01:18:36',1),(1,57,3014666,'2012-12-08 01:18:36',1),(1,138,3014833,'2012-12-08 01:46:11',1),(1,160,3014840,'2012-12-08 01:46:11',1),(1,133,3014840,'2012-12-08 01:46:11',1),(1,16,3014840,'2012-12-08 01:46:11',1),(1,244,3014840,'2012-12-08 01:46:11',1),(1,246,3014834,'2012-12-08 01:46:11',1),(1,119,3014834,'2012-12-08 01:46:11',1),(1,95,3014837,'2012-12-08 01:46:11',1),(1,88,3014837,'2012-12-08 01:46:11',1),(1,134,3014837,'2012-12-08 01:46:11',1),(1,135,3014837,'2012-12-08 01:46:11',1),(1,246,3014835,'2012-12-08 01:46:19',NULL),(1,119,3014835,'2012-12-08 01:46:19',NULL),(1,136,3014835,'2012-12-08 01:46:19',NULL),(1,137,3014835,'2012-12-08 01:46:19',NULL),(1,138,3014835,'2012-12-08 01:46:19',NULL),(1,42,3014835,'2012-12-08 01:46:19',NULL),(1,97,3014835,'2012-12-08 01:46:19',NULL),(1,57,3014835,'2012-12-08 01:46:19',NULL),(1,160,3014839,'2012-12-08 01:46:19',1),(1,133,3014839,'2012-12-08 01:46:19',1),(1,16,3014839,'2012-12-08 01:46:19',1),(1,244,3014839,'2012-12-08 01:46:19',1),(1,95,3014839,'2012-12-08 01:46:19',1),(1,88,3014839,'2012-12-08 01:46:19',1),(1,134,3014839,'2012-12-08 01:46:19',1),(1,135,3014839,'2012-12-08 01:46:19',1),(1,136,3014838,'2012-12-08 01:46:19',1),(1,137,3014838,'2012-12-08 01:46:19',1),(1,42,3014836,'2012-12-08 01:46:23',1),(1,228,3014913,'2012-12-08 02:16:09',1),(1,24,3014910,'2012-12-08 02:46:11',1),(1,210,3014910,'2012-12-08 02:46:11',1),(1,90,3014910,'2012-12-08 02:46:11',1),(1,224,3014910,'2012-12-08 02:46:11',1),(1,221,3014914,'2012-12-08 02:46:11',1),(1,223,3014914,'2012-12-08 02:46:11',1),(1,24,3014915,'2012-12-08 02:46:11',1),(1,210,3014915,'2012-12-08 02:46:11',1),(1,90,3014915,'2012-12-08 02:46:11',1),(1,224,3014915,'2012-12-08 02:46:11',1),(1,221,3014917,'2012-12-08 02:46:19',1),(1,223,3014917,'2012-12-08 02:46:19',1),(1,160,3014918,'2012-12-08 02:46:19',1),(1,133,3014918,'2012-12-08 02:46:19',1),(1,16,3014918,'2012-12-08 02:46:19',1),(1,244,3014918,'2012-12-08 02:46:19',1),(1,95,3014918,'2012-12-08 02:46:19',1),(1,88,3014918,'2012-12-08 02:46:19',1),(1,134,3014918,'2012-12-08 02:46:19',1),(1,135,3014918,'2012-12-08 02:46:19',1),(1,246,3014918,'2012-12-08 02:46:19',1),(1,119,3014918,'2012-12-08 02:46:19',1),(1,136,3014918,'2012-12-08 02:46:19',1),(1,137,3014918,'2012-12-08 02:46:19',1),(1,138,3014918,'2012-12-08 02:46:19',1),(1,42,3014918,'2012-12-08 02:46:19',1),(1,97,3014918,'2012-12-08 02:46:19',1),(1,57,3014918,'2012-12-08 02:46:19',1),(1,160,3014920,'2012-12-08 02:46:19',1),(1,133,3014920,'2012-12-08 02:46:19',1),(1,16,3014920,'2012-12-08 02:46:19',1),(1,244,3014920,'2012-12-08 02:46:19',1),(1,95,3014920,'2012-12-08 02:46:19',1),(1,88,3014920,'2012-12-08 02:46:19',1),(1,134,3014920,'2012-12-08 02:46:19',1),(1,135,3014920,'2012-12-08 02:46:19',1),(1,246,3014920,'2012-12-08 02:46:19',1),(1,119,3014920,'2012-12-08 02:46:19',1),(1,136,3014920,'2012-12-08 02:46:19',1),(1,137,3014920,'2012-12-08 02:46:19',1),(1,138,3014920,'2012-12-08 02:46:19',1),(1,42,3014920,'2012-12-08 02:46:19',1),(1,97,3014920,'2012-12-08 02:46:19',1),(1,57,3014920,'2012-12-08 02:46:19',1),(1,221,3014921,'2012-12-08 02:46:27',1),(1,223,3014921,'2012-12-08 02:46:27',1),(1,221,3014923,'2012-12-08 02:46:27',1),(1,223,3014923,'2012-12-08 02:46:27',1),(1,160,3014925,'2012-12-08 02:46:27',1),(1,133,3014925,'2012-12-08 02:46:27',1),(1,16,3014925,'2012-12-08 02:46:27',1),(1,244,3014925,'2012-12-08 02:46:27',1),(1,95,3014925,'2012-12-08 02:46:27',1),(1,88,3014925,'2012-12-08 02:46:27',1),(1,134,3014925,'2012-12-08 02:46:27',1),(1,135,3014925,'2012-12-08 02:46:27',1),(1,228,3014922,'2012-12-08 02:46:27',1),(1,160,3014911,'2012-12-08 02:46:35',1),(1,133,3014911,'2012-12-08 02:46:35',1),(1,16,3014911,'2012-12-08 02:46:35',1),(1,244,3014911,'2012-12-08 02:46:35',1),(1,246,3014912,'2012-12-08 02:46:35',1),(1,119,3014912,'2012-12-08 02:46:35',1),(1,136,3014912,'2012-12-08 02:46:35',1),(1,137,3014912,'2012-12-08 02:46:35',1),(1,138,3014912,'2012-12-08 02:46:35',1),(1,42,3014912,'2012-12-08 02:46:35',1),(1,97,3014912,'2012-12-08 02:46:35',1),(1,57,3014912,'2012-12-08 02:46:35',1),(1,160,3014916,'2012-12-08 02:46:35',1),(1,133,3014916,'2012-12-08 02:46:35',1),(1,16,3014916,'2012-12-08 02:46:35',1),(1,244,3014916,'2012-12-08 02:46:35',1),(1,95,3014916,'2012-12-08 02:46:35',1),(1,88,3014916,'2012-12-08 02:46:35',1),(1,134,3014916,'2012-12-08 02:46:35',1),(1,135,3014916,'2012-12-08 02:46:35',1),(1,228,3014926,'2012-12-08 02:46:43',1),(1,24,3014919,'2012-12-08 03:16:21',NULL),(1,210,3014919,'2012-12-08 03:16:21',NULL),(1,90,3014919,'2012-12-08 03:16:21',NULL),(1,224,3014919,'2012-12-08 03:16:21',NULL),(1,20,3014909,'2012-12-08 03:16:37',1),(1,247,3014909,'2012-12-08 03:16:37',1),(1,249,3014909,'2012-12-08 03:16:37',1),(1,94,3014909,'2012-12-08 03:16:37',1),(1,246,3014924,'2012-12-08 03:16:45',1),(1,119,3014924,'2012-12-08 03:16:45',1),(1,136,3014924,'2012-12-08 03:16:45',1),(1,137,3014924,'2012-12-08 03:16:45',1),(1,138,3014924,'2012-12-08 03:16:45',1),(1,42,3014924,'2012-12-08 03:16:45',1),(1,97,3014924,'2012-12-08 03:16:45',1),(1,57,3014924,'2012-12-08 03:16:45',1),(1,221,3014999,'2012-12-08 03:46:11',1),(1,223,3014999,'2012-12-08 03:46:11',1),(1,223,3015004,'2012-12-08 03:46:11',1),(1,228,3015004,'2012-12-08 03:46:11',1),(1,90,3015001,'2012-12-08 03:46:11',1),(1,224,3015001,'2012-12-08 03:46:11',1),(1,223,3015006,'2012-12-08 03:46:19',1),(1,228,3015006,'2012-12-08 03:46:19',1),(1,224,3014996,'2012-12-08 03:46:35',1),(1,221,3014996,'2012-12-08 03:46:35',1),(1,224,3015002,'2012-12-08 03:46:43',1),(1,221,3015002,'2012-12-08 03:46:43',1),(1,20,3015011,'2012-12-08 07:46:44',1),(1,20,3015003,'2012-12-08 07:47:07',1),(1,251,3015008,'2012-12-08 08:17:01',1),(1,61,3015018,'2012-12-08 08:47:12',1),(1,104,3015009,'2012-12-08 10:16:45',1),(1,212,3015009,'2012-12-08 10:16:45',1),(1,81,3015009,'2012-12-08 10:16:45',1),(1,78,3015009,'2012-12-08 10:16:45',1),(1,151,3014998,'2012-12-08 14:46:55',1),(1,164,3014998,'2012-12-08 14:46:55',1),(1,126,3014998,'2012-12-08 14:46:55',1),(1,154,3014998,'2012-12-08 14:46:55',1),(1,162,3014998,'2012-12-08 14:46:55',1),(1,22,3014998,'2012-12-08 14:46:55',1),(1,177,3014998,'2012-12-08 14:46:55',1),(1,109,3014998,'2012-12-08 14:46:55',1),(1,31,3014998,'2012-12-08 14:46:55',1),(1,188,3014998,'2012-12-08 14:46:55',1),(1,173,3014998,'2012-12-08 14:46:55',1),(1,252,3014998,'2012-12-08 14:46:55',1),(1,250,3014998,'2012-12-08 14:46:55',1),(1,101,3014998,'2012-12-08 14:46:55',1),(1,13,3014998,'2012-12-08 14:46:55',1),(1,166,3014998,'2012-12-08 14:46:55',1),(1,49,3015013,'2012-12-08 14:47:12',1),(1,207,3015013,'2012-12-08 14:47:12',1),(1,211,3015013,'2012-12-08 14:47:12',1),(1,68,3015013,'2012-12-08 14:47:12',1),(1,15,3015007,'2012-12-08 15:17:06',1),(1,75,3015007,'2012-12-08 15:17:06',1),(1,53,3015007,'2012-12-08 15:17:06',1),(1,64,3015007,'2012-12-08 15:17:06',1),(1,185,3015007,'2012-12-08 15:17:06',1),(1,108,3015007,'2012-12-08 15:17:06',1),(1,142,3015007,'2012-12-08 15:17:06',1),(1,103,3015007,'2012-12-08 15:17:06',1),(1,9,3015007,'2012-12-08 15:17:06',1),(1,230,3015007,'2012-12-08 15:17:06',1),(1,216,3015007,'2012-12-08 15:17:06',1),(1,200,3015007,'2012-12-08 15:17:06',1),(1,66,3015007,'2012-12-08 15:17:06',1),(1,77,3015007,'2012-12-08 15:17:06',1),(1,241,3015007,'2012-12-08 15:17:06',1),(1,206,3015007,'2012-12-08 15:17:06',1),(1,151,3015005,'2012-12-08 15:17:06',1),(1,164,3015005,'2012-12-08 15:17:06',1),(1,126,3015005,'2012-12-08 15:17:06',1),(1,154,3015005,'2012-12-08 15:17:06',1),(1,162,3015005,'2012-12-08 15:17:06',1),(1,22,3015005,'2012-12-08 15:17:06',1),(1,177,3015005,'2012-12-08 15:17:06',1),(1,109,3015005,'2012-12-08 15:17:06',1),(1,245,3015010,'2012-12-08 15:17:14',1),(1,151,3015010,'2012-12-08 15:17:14',1),(1,164,3015010,'2012-12-08 15:17:14',1),(1,126,3015010,'2012-12-08 15:17:14',1),(1,154,3015010,'2012-12-08 15:17:14',1),(1,162,3015010,'2012-12-08 15:17:14',1),(1,22,3015010,'2012-12-08 15:17:14',1),(1,177,3015010,'2012-12-08 15:17:14',1),(1,151,3015014,'2012-12-08 15:17:14',1),(1,164,3015014,'2012-12-08 15:17:14',1),(1,126,3015014,'2012-12-08 15:17:14',1),(1,154,3015014,'2012-12-08 15:17:14',1),(1,162,3015014,'2012-12-08 15:17:14',1),(1,22,3015014,'2012-12-08 15:17:14',1),(1,177,3015014,'2012-12-08 15:17:14',1),(1,109,3015014,'2012-12-08 15:17:14',1),(1,216,3015012,'2012-12-08 15:17:22',1),(1,200,3015012,'2012-12-08 15:17:22',1),(1,66,3015012,'2012-12-08 15:17:22',1),(1,77,3015012,'2012-12-08 15:17:22',1),(1,109,3014997,'2012-12-08 15:17:23',1),(1,33,3014997,'2012-12-08 15:17:23',1),(1,100,3014997,'2012-12-08 15:17:23',1),(1,181,3014997,'2012-12-08 15:17:23',1),(1,109,3015000,'2012-12-08 15:47:32',1),(1,33,3015000,'2012-12-08 15:47:32',1),(1,100,3015000,'2012-12-08 15:47:32',1),(1,181,3015000,'2012-12-08 15:47:32',1),(1,245,3015015,'2012-12-08 15:47:32',1),(1,151,3015015,'2012-12-08 15:47:32',1),(1,164,3015015,'2012-12-08 15:47:32',1),(1,126,3015015,'2012-12-08 15:47:32',1),(1,43,3015015,'2012-12-08 15:47:32',1),(1,153,3015015,'2012-12-08 15:47:32',1),(1,44,3015015,'2012-12-08 15:47:32',1),(1,154,3015015,'2012-12-08 15:47:32',1),(1,28,3015015,'2012-12-08 15:47:32',1),(1,162,3015015,'2012-12-08 15:47:32',1),(1,167,3015015,'2012-12-08 15:47:32',1),(1,186,3015015,'2012-12-08 15:47:32',1),(1,196,3015015,'2012-12-08 15:47:32',1),(1,22,3015015,'2012-12-08 15:47:32',1),(1,177,3015015,'2012-12-08 15:47:32',1),(1,72,3015015,'2012-12-08 15:47:32',1),(1,247,3015017,'2012-12-08 15:47:39',1),(1,160,3015017,'2012-12-08 15:47:39',1),(1,124,3015017,'2012-12-08 15:47:39',1),(1,31,3015017,'2012-12-08 15:47:39',1),(1,247,3015016,'2012-12-08 16:17:26',1),(1,160,3015016,'2012-12-08 16:17:26',1),(1,133,3015016,'2012-12-08 16:17:26',1),(1,245,3015016,'2012-12-08 16:17:26',1),(1,151,3015016,'2012-12-08 16:17:26',1),(1,164,3015016,'2012-12-08 16:17:26',1),(1,126,3015016,'2012-12-08 16:17:26',1),(1,43,3015016,'2012-12-08 16:17:26',1),(1,153,3015020,'2012-12-08 16:17:41',1),(1,44,3015020,'2012-12-08 16:17:41',1),(1,154,3015020,'2012-12-08 16:17:41',1),(1,28,3015020,'2012-12-08 16:17:41',1),(1,162,3015020,'2012-12-08 16:17:41',1),(1,167,3015020,'2012-12-08 16:17:41',1),(1,186,3015020,'2012-12-08 16:17:41',1),(1,196,3015020,'2012-12-08 16:17:41',1),(1,249,3015019,'2012-12-08 17:17:54',NULL),(1,41,3015019,'2012-12-08 17:17:54',NULL),(1,147,3015019,'2012-12-08 17:17:54',NULL),(1,109,3015019,'2012-12-08 17:17:54',NULL),(1,33,3015019,'2012-12-08 17:17:54',NULL),(1,65,3015019,'2012-12-08 17:17:54',NULL),(1,110,3015019,'2012-12-08 17:17:54',NULL),(1,203,3015019,'2012-12-08 17:17:54',NULL),(1,6,3015144,'2012-12-09 00:46:13',1),(1,4,3015144,'2012-12-09 00:46:13',1),(1,6,3015130,'2012-12-09 00:46:13',1),(1,4,3015130,'2012-12-09 00:46:13',1),(1,4,3015126,'2012-12-09 00:46:31',1),(1,4,3015127,'2012-12-09 00:46:31',1),(1,4,3015128,'2012-12-09 00:46:38',1),(1,41,3015129,'2012-12-09 00:46:38',1),(1,6,3015132,'2012-12-09 00:46:38',1),(1,6,3015131,'2012-12-09 00:46:38',1),(1,4,3015131,'2012-12-09 00:46:38',1),(1,41,3015134,'2012-12-09 00:46:46',1),(1,6,3015134,'2012-12-09 00:46:46',1),(1,41,3015133,'2012-12-09 00:46:46',1),(1,6,3015133,'2012-12-09 00:46:46',1),(1,41,3015215,'2012-12-09 01:46:14',1),(1,4,3015215,'2012-12-09 01:46:14',1),(1,41,3015222,'2012-12-09 01:46:21',1),(1,4,3015222,'2012-12-09 01:46:21',1),(1,249,3015216,'2012-12-09 02:16:15',1),(1,247,3015219,'2012-12-09 02:16:15',1),(1,249,3015219,'2012-12-09 02:16:15',1),(1,244,3015219,'2012-12-09 02:16:15',1),(1,139,3015219,'2012-12-09 02:16:15',1),(1,247,3015217,'2012-12-09 02:16:24',1),(1,249,3015217,'2012-12-09 02:16:24',1),(1,244,3015217,'2012-12-09 02:16:24',1),(1,139,3015217,'2012-12-09 02:16:24',1),(1,247,3015140,'2012-12-09 02:16:30',1),(1,249,3015140,'2012-12-09 02:16:30',1),(1,244,3015140,'2012-12-09 02:16:30',1),(1,139,3015140,'2012-12-09 02:16:30',1),(1,247,3015137,'2012-12-09 02:16:32',1),(1,249,3015137,'2012-12-09 02:16:32',1),(1,244,3015137,'2012-12-09 02:16:32',1),(1,139,3015137,'2012-12-09 02:16:32',1),(1,247,3015138,'2012-12-09 02:16:36',1),(1,249,3015138,'2012-12-09 02:16:36',1),(1,244,3015138,'2012-12-09 02:16:36',1),(1,139,3015138,'2012-12-09 02:16:36',1),(1,247,3015136,'2012-12-09 02:16:52',1),(1,249,3015136,'2012-12-09 02:16:52',1),(1,244,3015136,'2012-12-09 02:16:52',1),(1,139,3015136,'2012-12-09 02:16:52',1),(1,247,3015135,'2012-12-09 02:16:52',1),(1,249,3015135,'2012-12-09 02:16:52',1),(1,244,3015135,'2012-12-09 02:16:52',1),(1,139,3015135,'2012-12-09 02:16:52',1),(1,247,3015305,'2012-12-09 02:46:11',1),(1,249,3015306,'2012-12-09 02:46:11',1),(1,41,3015306,'2012-12-09 02:46:11',1),(1,247,3015220,'2012-12-09 02:46:17',1),(1,6,3015297,'2012-12-09 02:46:22',1),(1,247,3015298,'2012-12-09 02:46:27',1),(1,249,3015298,'2012-12-09 02:46:27',1),(1,247,3015300,'2012-12-09 02:46:29',1),(1,249,3015300,'2012-12-09 02:46:29',1),(1,249,3015313,'2012-12-09 02:46:44',1),(1,247,3015309,'2012-12-09 03:16:21',1),(1,249,3015309,'2012-12-09 03:16:21',1),(1,41,3015309,'2012-12-09 03:16:21',1),(1,4,3015309,'2012-12-09 03:16:21',1),(1,247,3015296,'2012-12-09 03:16:22',1),(1,249,3015296,'2012-12-09 03:16:22',1),(1,41,3015296,'2012-12-09 03:16:22',1),(1,4,3015296,'2012-12-09 03:16:22',1),(1,247,3015299,'2012-12-09 03:16:31',1),(1,249,3015299,'2012-12-09 03:16:31',1),(1,41,3015299,'2012-12-09 03:16:31',1),(1,4,3015299,'2012-12-09 03:16:31',1),(1,4,3015401,'2012-12-09 03:46:27',1),(1,4,3015405,'2012-12-09 03:46:35',1),(1,247,3015302,'2012-12-09 03:46:42',NULL),(1,249,3015302,'2012-12-09 03:46:42',NULL),(1,41,3015302,'2012-12-09 03:46:42',NULL),(1,4,3015302,'2012-12-09 03:46:42',NULL),(1,4,3015394,'2012-12-09 03:46:46',1),(1,247,3015308,'2012-12-09 03:46:50',1),(1,249,3015308,'2012-12-09 03:46:50',1),(1,41,3015308,'2012-12-09 03:46:50',1),(1,6,3015308,'2012-12-09 03:46:50',1),(1,4,3015411,'2012-12-09 04:16:54',1),(1,247,3015409,'2012-12-09 04:46:15',1),(1,249,3015409,'2012-12-09 04:46:15',1),(1,41,3015409,'2012-12-09 04:46:15',1),(1,6,3015409,'2012-12-09 04:46:15',1),(1,247,3015412,'2012-12-09 05:16:25',NULL),(1,249,3015412,'2012-12-09 05:16:25',NULL),(1,41,3015412,'2012-12-09 05:16:25',NULL),(1,6,3015412,'2012-12-09 05:16:25',NULL),(1,247,3015399,'2012-12-09 05:16:25',1),(1,249,3015399,'2012-12-09 05:16:25',1),(1,41,3015399,'2012-12-09 05:16:25',1),(1,6,3015399,'2012-12-09 05:16:25',1),(1,247,3015414,'2012-12-09 05:16:37',1),(1,249,3015414,'2012-12-09 05:16:37',1),(1,41,3015414,'2012-12-09 05:16:37',1),(1,6,3015414,'2012-12-09 05:16:37',1),(1,247,3015402,'2012-12-09 05:16:43',1),(1,249,3015402,'2012-12-09 05:16:43',1),(1,41,3015402,'2012-12-09 05:16:43',1),(1,6,3015402,'2012-12-09 05:16:43',1),(1,247,3015408,'2012-12-09 05:16:51',1),(1,249,3015408,'2012-12-09 05:16:51',1),(1,41,3015408,'2012-12-09 05:16:51',1),(1,6,3015408,'2012-12-09 05:16:51',1),(1,41,3015397,'2012-12-09 05:46:20',1),(1,6,3015397,'2012-12-09 05:46:20',1),(1,247,3015393,'2012-12-09 05:46:20',1),(1,249,3015393,'2012-12-09 05:46:20',1),(1,247,3015304,'2012-12-09 05:46:53',1),(1,249,3015304,'2012-12-09 05:46:53',1),(1,41,3015407,'2012-12-09 05:47:02',1),(1,6,3015407,'2012-12-09 05:47:02',1),(1,247,3015395,'2012-12-09 05:47:02',1),(1,249,3015395,'2012-12-09 05:47:02',1),(1,41,3015410,'2012-12-09 05:47:03',1),(1,6,3015410,'2012-12-09 05:47:03',1),(1,41,3015392,'2012-12-09 05:47:07',1),(1,6,3015392,'2012-12-09 05:47:07',1),(1,1,3015307,'2012-12-09 07:46:32',1),(1,62,3015307,'2012-12-09 07:46:32',1),(1,229,3015307,'2012-12-09 07:46:32',1),(1,2,3015307,'2012-12-09 07:46:32',1),(1,131,3015307,'2012-12-09 07:46:32',1),(1,217,3015307,'2012-12-09 07:46:32',1),(1,219,3015307,'2012-12-09 07:46:32',1),(1,198,3015307,'2012-12-09 07:46:32',1),(1,215,3015310,'2012-12-09 07:46:32',1),(1,201,3015310,'2012-12-09 07:46:32',1),(1,127,3015310,'2012-12-09 07:46:32',1),(1,111,3015310,'2012-12-09 07:46:32',1),(1,179,3015310,'2012-12-09 07:46:32',1),(1,157,3015310,'2012-12-09 07:46:32',1),(1,165,3015310,'2012-12-09 07:46:32',1),(1,175,3015310,'2012-12-09 07:46:32',1),(1,247,3015398,'2012-12-09 07:46:35',1),(1,11,3015398,'2012-12-09 07:46:35',1),(1,18,3015398,'2012-12-09 07:46:35',1),(1,26,3015398,'2012-12-09 07:46:35',1),(1,79,3015398,'2012-12-09 07:46:35',1),(1,40,3015398,'2012-12-09 07:46:35',1),(1,170,3015398,'2012-12-09 07:46:35',1),(1,146,3015398,'2012-12-09 07:46:35',1),(1,152,3015398,'2012-12-09 07:46:35',1),(1,21,3015398,'2012-12-09 07:46:35',1),(1,127,3015398,'2012-12-09 07:46:35',1),(1,111,3015398,'2012-12-09 07:46:35',1),(1,179,3015398,'2012-12-09 07:46:35',1),(1,157,3015398,'2012-12-09 07:46:35',1),(1,165,3015398,'2012-12-09 07:46:35',1),(1,175,3015398,'2012-12-09 07:46:35',1),(1,229,3015143,'2012-12-09 07:46:44',1),(1,2,3015143,'2012-12-09 07:46:44',1),(1,131,3015143,'2012-12-09 07:46:44',1),(1,217,3015143,'2012-12-09 07:46:44',1),(1,219,3015143,'2012-12-09 07:46:44',1),(1,198,3015143,'2012-12-09 07:46:44',1),(1,201,3015143,'2012-12-09 07:46:44',1),(1,69,3015143,'2012-12-09 07:46:44',1),(1,229,3015125,'2012-12-09 07:46:44',1),(1,2,3015125,'2012-12-09 07:46:44',1),(1,131,3015125,'2012-12-09 07:46:44',1),(1,217,3015125,'2012-12-09 07:46:44',1),(1,219,3015125,'2012-12-09 07:46:44',1),(1,198,3015125,'2012-12-09 07:46:44',1),(1,201,3015125,'2012-12-09 07:46:44',1),(1,69,3015125,'2012-12-09 07:46:44',1),(1,215,3015311,'2012-12-09 07:46:48',1),(1,201,3015311,'2012-12-09 07:46:48',1),(1,4,3015311,'2012-12-09 07:46:48',1),(1,127,3015311,'2012-12-09 07:46:48',1),(1,111,3015311,'2012-12-09 07:46:48',1),(1,179,3015311,'2012-12-09 07:46:48',1),(1,157,3015311,'2012-12-09 07:46:48',1),(1,165,3015311,'2012-12-09 07:46:48',1),(1,1,3015218,'2012-12-09 07:46:51',1),(1,62,3015218,'2012-12-09 07:46:51',1),(1,229,3015218,'2012-12-09 07:46:51',1),(1,2,3015218,'2012-12-09 07:46:51',1),(1,131,3015218,'2012-12-09 07:46:51',1),(1,217,3015218,'2012-12-09 07:46:51',1),(1,219,3015218,'2012-12-09 07:46:51',1),(1,198,3015218,'2012-12-09 07:46:51',1),(1,1,3015221,'2012-12-09 07:46:52',NULL),(1,229,3015221,'2012-12-09 07:46:52',NULL),(1,2,3015221,'2012-12-09 07:46:52',NULL),(1,131,3015221,'2012-12-09 07:46:52',NULL),(1,217,3015221,'2012-12-09 07:46:52',NULL),(1,219,3015221,'2012-12-09 07:46:52',NULL),(1,198,3015221,'2012-12-09 07:46:52',NULL),(1,201,3015221,'2012-12-09 07:46:52',NULL),(1,1,3015142,'2012-12-09 07:46:56',1),(1,229,3015142,'2012-12-09 07:46:56',1),(1,2,3015142,'2012-12-09 07:46:56',1),(1,131,3015142,'2012-12-09 07:46:56',1),(1,217,3015142,'2012-12-09 07:46:56',1),(1,219,3015142,'2012-12-09 07:46:56',1),(1,198,3015142,'2012-12-09 07:46:56',1),(1,201,3015142,'2012-12-09 07:46:56',1),(1,1,3015141,'2012-12-09 07:46:56',1),(1,229,3015141,'2012-12-09 07:46:56',1),(1,2,3015141,'2012-12-09 07:46:56',1),(1,131,3015141,'2012-12-09 07:46:56',1),(1,217,3015141,'2012-12-09 07:46:56',1),(1,219,3015141,'2012-12-09 07:46:56',1),(1,198,3015141,'2012-12-09 07:46:56',1),(1,201,3015141,'2012-12-09 07:46:56',1),(1,11,3015301,'2012-12-09 07:46:59',1),(1,18,3015301,'2012-12-09 07:46:59',1),(1,26,3015301,'2012-12-09 07:46:59',1),(1,79,3015301,'2012-12-09 07:46:59',1),(1,40,3015301,'2012-12-09 07:46:59',1),(1,170,3015301,'2012-12-09 07:46:59',1),(1,146,3015301,'2012-12-09 07:46:59',1),(1,152,3015301,'2012-12-09 07:46:59',1),(1,21,3015301,'2012-12-09 07:46:59',1),(1,127,3015301,'2012-12-09 07:46:59',1),(1,111,3015301,'2012-12-09 07:46:59',1),(1,179,3015301,'2012-12-09 07:46:59',1),(1,157,3015301,'2012-12-09 07:46:59',1),(1,165,3015301,'2012-12-09 07:46:59',1),(1,175,3015301,'2012-12-09 07:46:59',1),(1,1,3015301,'2012-12-09 07:46:59',1),(1,36,3015303,'2012-12-09 07:46:59',1),(1,37,3015303,'2012-12-09 07:46:59',1),(1,145,3015303,'2012-12-09 07:46:59',1),(1,23,3015303,'2012-12-09 07:46:59',1),(1,59,3015303,'2012-12-09 07:46:59',1),(1,8,3015303,'2012-12-09 07:46:59',1),(1,93,3015303,'2012-12-09 07:46:59',1),(1,226,3015303,'2012-12-09 07:46:59',1),(1,116,3015303,'2012-12-09 07:46:59',1),(1,168,3015303,'2012-12-09 07:46:59',1),(1,242,3015303,'2012-12-09 07:46:59',1),(1,202,3015303,'2012-12-09 07:46:59',1),(1,7,3015303,'2012-12-09 07:46:59',1),(1,132,3015303,'2012-12-09 07:46:59',1),(1,38,3015303,'2012-12-09 07:46:59',1),(1,215,3015303,'2012-12-09 07:46:59',1),(1,1,3015139,'2012-12-09 07:47:07',1),(1,229,3015139,'2012-12-09 07:47:07',1),(1,2,3015139,'2012-12-09 07:47:07',1),(1,131,3015139,'2012-12-09 07:47:07',1),(1,217,3015139,'2012-12-09 07:47:07',1),(1,219,3015139,'2012-12-09 07:47:07',1),(1,198,3015139,'2012-12-09 07:47:07',1),(1,201,3015139,'2012-12-09 07:47:07',1),(1,215,3015312,'2012-12-09 08:17:00',1),(1,201,3015312,'2012-12-09 08:17:00',1),(1,4,3015312,'2012-12-09 08:17:00',1),(1,127,3015312,'2012-12-09 08:17:00',1),(1,111,3015312,'2012-12-09 08:17:00',1),(1,179,3015312,'2012-12-09 08:17:00',1),(1,157,3015312,'2012-12-09 08:17:00',1),(1,165,3015312,'2012-12-09 08:17:00',1),(1,226,3015396,'2012-12-09 08:46:32',1),(1,116,3015396,'2012-12-09 08:46:32',1),(1,168,3015396,'2012-12-09 08:46:32',1),(1,242,3015396,'2012-12-09 08:46:32',1),(1,202,3015396,'2012-12-09 08:46:32',1),(1,7,3015396,'2012-12-09 08:46:32',1),(1,132,3015396,'2012-12-09 08:46:32',1),(1,38,3015396,'2012-12-09 08:46:32',1),(1,226,3015400,'2012-12-09 08:46:39',1),(1,116,3015400,'2012-12-09 08:46:39',1),(1,168,3015400,'2012-12-09 08:46:39',1),(1,242,3015400,'2012-12-09 08:46:39',1),(1,202,3015400,'2012-12-09 08:46:39',1),(1,7,3015400,'2012-12-09 08:46:39',1),(1,132,3015400,'2012-12-09 08:46:39',1),(1,38,3015400,'2012-12-09 08:46:39',1),(1,226,3015404,'2012-12-09 08:46:51',1),(1,116,3015404,'2012-12-09 08:46:51',1),(1,168,3015404,'2012-12-09 08:46:51',1),(1,242,3015404,'2012-12-09 08:46:51',1),(1,202,3015404,'2012-12-09 08:46:51',1),(1,7,3015404,'2012-12-09 08:46:51',1),(1,132,3015404,'2012-12-09 08:46:51',1),(1,38,3015404,'2012-12-09 08:46:51',1),(1,226,3015406,'2012-12-09 09:17:01',1),(1,116,3015406,'2012-12-09 09:17:01',1),(1,168,3015406,'2012-12-09 09:17:01',1),(1,242,3015406,'2012-12-09 09:17:01',1),(1,202,3015406,'2012-12-09 09:17:01',1),(1,7,3015406,'2012-12-09 09:17:01',1),(1,132,3015406,'2012-12-09 09:17:01',1),(1,38,3015406,'2012-12-09 09:17:01',1),(1,226,3015415,'2012-12-09 09:47:00',1),(1,116,3015415,'2012-12-09 09:47:00',1),(1,168,3015415,'2012-12-09 09:47:00',1),(1,242,3015415,'2012-12-09 09:47:00',1),(1,202,3015415,'2012-12-09 09:47:00',1),(1,7,3015415,'2012-12-09 09:47:00',1),(1,132,3015415,'2012-12-09 09:47:00',1),(1,38,3015415,'2012-12-09 09:47:00',1),(1,226,3015403,'2012-12-09 09:47:15',1),(1,116,3015403,'2012-12-09 09:47:15',1),(1,168,3015403,'2012-12-09 09:47:15',1),(1,242,3015403,'2012-12-09 09:47:15',1),(1,202,3015403,'2012-12-09 09:47:15',1),(1,7,3015403,'2012-12-09 09:47:15',1),(1,132,3015403,'2012-12-09 09:47:15',1),(1,38,3015403,'2012-12-09 09:47:15',1),(1,229,3015455,'2012-12-10 00:46:13',1),(1,199,3015453,'2012-12-10 00:46:13',1),(1,142,3015454,'2012-12-10 00:46:13',1),(1,103,3015456,'2012-12-10 00:46:13',1),(1,229,3015456,'2012-12-10 00:46:13',1),(1,103,3015458,'2012-12-10 00:46:21',1),(1,219,3015458,'2012-12-10 00:46:21',1),(1,56,3015457,'2012-12-10 00:46:21',1),(1,11,3015460,'2012-12-10 00:46:21',1),(1,79,3015460,'2012-12-10 00:46:21',1),(1,21,3015460,'2012-12-10 00:46:21',1),(1,103,3015460,'2012-12-10 00:46:21',1),(1,173,3015459,'2012-12-10 00:46:21',1),(1,75,3015459,'2012-12-10 00:46:21',1),(1,11,3015462,'2012-12-10 00:46:29',1),(1,79,3015462,'2012-12-10 00:46:29',1),(1,21,3015462,'2012-12-10 00:46:29',1),(1,75,3015462,'2012-12-10 00:46:29',1),(1,56,3015463,'2012-12-10 00:46:29',1),(1,41,3015463,'2012-12-10 00:46:29',1),(1,72,3015463,'2012-12-10 00:46:29',1),(1,198,3015463,'2012-12-10 00:46:29',1),(1,21,3015461,'2012-12-10 00:46:29',1),(1,103,3015461,'2012-12-10 00:46:29',1),(1,229,3015461,'2012-12-10 00:46:29',1),(1,219,3015461,'2012-12-10 00:46:29',1),(1,92,3015464,'2012-12-10 00:46:29',1),(1,70,3015464,'2012-12-10 00:46:29',1),(1,6,3015464,'2012-12-10 00:46:29',1),(1,11,3015464,'2012-12-10 00:46:29',1),(1,79,3015464,'2012-12-10 00:46:29',1),(1,21,3015464,'2012-12-10 00:46:29',1),(1,75,3015464,'2012-12-10 00:46:29',1),(1,103,3015464,'2012-12-10 00:46:29',1),(1,56,3015465,'2012-12-10 00:46:36',1),(1,41,3015465,'2012-12-10 00:46:36',1),(1,58,3015465,'2012-12-10 00:46:36',1),(1,72,3015465,'2012-12-10 00:46:36',1),(1,222,3015466,'2012-12-10 00:46:37',1),(1,92,3015466,'2012-12-10 00:46:37',1),(1,70,3015466,'2012-12-10 00:46:37',1),(1,6,3015466,'2012-12-10 00:46:37',1),(1,11,3015466,'2012-12-10 00:46:37',1),(1,26,3015466,'2012-12-10 00:46:37',1),(1,79,3015466,'2012-12-10 00:46:37',1),(1,21,3015466,'2012-12-10 00:46:37',1),(1,222,3015467,'2012-12-10 00:46:37',1),(1,92,3015467,'2012-12-10 00:46:37',1),(1,68,3015467,'2012-12-10 00:46:37',1),(1,70,3015467,'2012-12-10 00:46:37',1),(1,6,3015467,'2012-12-10 00:46:37',1),(1,11,3015467,'2012-12-10 00:46:37',1),(1,26,3015467,'2012-12-10 00:46:37',1),(1,79,3015467,'2012-12-10 00:46:37',1),(1,92,3015468,'2012-12-10 00:46:37',1),(1,70,3015468,'2012-12-10 00:46:37',1),(1,6,3015468,'2012-12-10 00:46:37',1),(1,11,3015468,'2012-12-10 00:46:37',1),(1,26,3015468,'2012-12-10 00:46:37',1),(1,79,3015468,'2012-12-10 00:46:37',1),(1,21,3015468,'2012-12-10 00:46:37',1),(1,75,3015468,'2012-12-10 00:46:37',1),(1,110,3015452,'2012-12-10 00:46:44',1),(1,56,3015470,'2012-12-10 00:46:44',1),(1,41,3015470,'2012-12-10 00:46:44',1),(1,58,3015470,'2012-12-10 00:46:44',1),(1,72,3015470,'2012-12-10 00:46:44',1),(1,110,3015470,'2012-12-10 00:46:44',1),(1,2,3015470,'2012-12-10 00:46:44',1),(1,217,3015470,'2012-12-10 00:46:44',1),(1,198,3015470,'2012-12-10 00:46:44',1),(1,56,3015471,'2012-12-10 00:46:44',1),(1,110,3015471,'2012-12-10 00:46:44',1),(1,56,3015469,'2012-12-10 00:46:44',1),(1,110,3015469,'2012-12-10 00:46:44',1),(1,11,3015560,'2012-12-10 01:16:09',1),(1,18,3015560,'2012-12-10 01:16:09',1),(1,26,3015560,'2012-12-10 01:16:09',1),(1,79,3015560,'2012-12-10 01:16:09',1),(1,40,3015560,'2012-12-10 01:16:09',1),(1,41,3015560,'2012-12-10 01:16:09',1),(1,21,3015560,'2012-12-10 01:16:09',1),(1,58,3015560,'2012-12-10 01:16:09',1),(1,198,3015559,'2012-12-10 01:16:17',1),(1,199,3015559,'2012-12-10 01:16:17',1),(1,205,3015559,'2012-12-10 01:16:17',1),(1,68,3015559,'2012-12-10 01:16:17',1),(1,222,3015413,'2012-12-10 01:18:02',1),(1,92,3015413,'2012-12-10 01:18:02',1),(1,68,3015413,'2012-12-10 01:18:02',1),(1,70,3015413,'2012-12-10 01:18:02',1),(1,6,3015413,'2012-12-10 01:18:02',1),(1,11,3015413,'2012-12-10 01:18:02',1),(1,26,3015413,'2012-12-10 01:18:02',1),(1,79,3015413,'2012-12-10 01:18:02',1),(1,40,3015413,'2012-12-10 01:18:02',1),(1,21,3015413,'2012-12-10 01:18:02',1),(1,173,3015413,'2012-12-10 01:18:02',1),(1,75,3015413,'2012-12-10 01:18:02',1),(1,142,3015413,'2012-12-10 01:18:02',1),(1,103,3015413,'2012-12-10 01:18:02',1),(1,229,3015413,'2012-12-10 01:18:02',1),(1,219,3015413,'2012-12-10 01:18:02',1),(1,222,3015391,'2012-12-10 01:18:14',1),(1,92,3015391,'2012-12-10 01:18:14',1),(1,68,3015391,'2012-12-10 01:18:14',1),(1,70,3015391,'2012-12-10 01:18:14',1),(1,6,3015391,'2012-12-10 01:18:14',1),(1,11,3015391,'2012-12-10 01:18:14',1),(1,18,3015391,'2012-12-10 01:18:14',1),(1,26,3015391,'2012-12-10 01:18:14',1),(1,79,3015391,'2012-12-10 01:18:14',1),(1,40,3015391,'2012-12-10 01:18:14',1),(1,41,3015391,'2012-12-10 01:18:14',1),(1,21,3015391,'2012-12-10 01:18:14',1),(1,58,3015391,'2012-12-10 01:18:14',1),(1,72,3015391,'2012-12-10 01:18:14',1),(1,173,3015391,'2012-12-10 01:18:14',1),(1,75,3015391,'2012-12-10 01:18:14',1),(1,209,3015558,'2012-12-10 01:46:11',1),(1,70,3015558,'2012-12-10 01:46:11',1),(1,222,3015562,'2012-12-10 01:46:11',1),(1,229,3015561,'2012-12-10 01:46:11',1),(1,2,3015561,'2012-12-10 01:46:11',1),(1,217,3015561,'2012-12-10 01:46:11',1),(1,219,3015561,'2012-12-10 01:46:11',1),(1,56,3015563,'2012-12-10 01:46:19',1),(1,92,3015563,'2012-12-10 01:46:19',1),(1,72,3015564,'2012-12-10 01:46:19',NULL),(1,173,3015564,'2012-12-10 01:46:19',NULL),(1,75,3015564,'2012-12-10 01:46:19',NULL),(1,110,3015564,'2012-12-10 01:46:19',NULL),(1,76,3015564,'2012-12-10 01:46:19',NULL),(1,108,3015564,'2012-12-10 01:46:19',NULL),(1,142,3015564,'2012-12-10 01:46:19',NULL),(1,103,3015564,'2012-12-10 01:46:19',NULL),(1,11,3015557,'2012-12-10 01:46:19',1),(1,222,3015646,'2012-12-10 02:16:09',1),(1,170,3015646,'2012-12-10 02:16:09',1),(1,6,3015635,'2012-12-10 02:46:20',1),(1,222,3015637,'2012-12-10 02:46:20',1),(1,170,3015637,'2012-12-10 02:46:20',1),(1,222,3015639,'2012-12-10 02:46:27',1),(1,170,3015639,'2012-12-10 02:46:27',1),(1,211,3015647,'2012-12-10 02:46:35',1),(1,6,3015645,'2012-12-10 02:46:43',1),(1,222,3015644,'2012-12-10 02:46:43',1),(1,170,3015644,'2012-12-10 02:46:43',1),(1,52,3015649,'2012-12-10 03:16:13',1),(1,170,3015649,'2012-12-10 03:16:13',1),(1,112,3015649,'2012-12-10 03:16:13',1),(1,211,3015649,'2012-12-10 03:16:13',1),(1,52,3015650,'2012-12-10 03:16:13',1),(1,170,3015650,'2012-12-10 03:16:13',1),(1,112,3015650,'2012-12-10 03:16:13',1),(1,66,3015650,'2012-12-10 03:16:13',1),(1,222,3015648,'2012-12-10 03:16:22',1),(1,52,3015648,'2012-12-10 03:16:22',1),(1,244,3015648,'2012-12-10 03:16:22',1),(1,170,3015648,'2012-12-10 03:16:22',1),(1,222,3015638,'2012-12-10 03:16:30',1),(1,52,3015638,'2012-12-10 03:16:30',1),(1,244,3015638,'2012-12-10 03:16:30',1),(1,170,3015638,'2012-12-10 03:16:30',1),(1,5,3015728,'2012-12-10 03:46:11',1),(1,211,3015728,'2012-12-10 03:46:11',1),(1,146,3015726,'2012-12-10 03:46:12',1),(1,66,3015726,'2012-12-10 03:46:12',1),(1,226,3015651,'2012-12-10 03:46:15',1),(1,116,3015651,'2012-12-10 03:46:15',1),(1,168,3015651,'2012-12-10 03:46:15',1),(1,242,3015651,'2012-12-10 03:46:15',1),(1,202,3015651,'2012-12-10 03:46:15',1),(1,7,3015651,'2012-12-10 03:46:15',1),(1,132,3015651,'2012-12-10 03:46:15',1),(1,38,3015651,'2012-12-10 03:46:15',1),(1,226,3015652,'2012-12-10 03:46:24',1),(1,116,3015652,'2012-12-10 03:46:24',1),(1,168,3015652,'2012-12-10 03:46:24',1),(1,242,3015652,'2012-12-10 03:46:24',1),(1,202,3015652,'2012-12-10 03:46:24',1),(1,7,3015652,'2012-12-10 03:46:24',1),(1,132,3015652,'2012-12-10 03:46:24',1),(1,38,3015652,'2012-12-10 03:46:24',1),(1,226,3015636,'2012-12-10 03:46:31',1),(1,116,3015636,'2012-12-10 03:46:31',1),(1,168,3015636,'2012-12-10 03:46:31',1),(1,242,3015636,'2012-12-10 03:46:31',1),(1,202,3015636,'2012-12-10 03:46:31',1),(1,7,3015636,'2012-12-10 03:46:31',1),(1,132,3015636,'2012-12-10 03:46:31',1),(1,38,3015636,'2012-12-10 03:46:31',1),(1,222,3015748,'2012-12-10 04:16:30',1),(1,52,3015748,'2012-12-10 04:16:30',1),(1,244,3015748,'2012-12-10 04:16:30',1),(1,170,3015748,'2012-12-10 04:16:30',1),(1,226,3015640,'2012-12-10 04:16:34',1),(1,116,3015640,'2012-12-10 04:16:34',1),(1,168,3015640,'2012-12-10 04:16:34',1),(1,242,3015640,'2012-12-10 04:16:34',1),(1,202,3015640,'2012-12-10 04:16:34',1),(1,7,3015640,'2012-12-10 04:16:34',1),(1,132,3015640,'2012-12-10 04:16:34',1),(1,38,3015640,'2012-12-10 04:16:34',1),(1,222,3015734,'2012-12-10 04:16:39',1),(1,52,3015734,'2012-12-10 04:16:39',1),(1,244,3015734,'2012-12-10 04:16:39',1),(1,170,3015734,'2012-12-10 04:16:39',1),(1,222,3015735,'2012-12-10 04:16:39',1),(1,52,3015735,'2012-12-10 04:16:39',1),(1,244,3015735,'2012-12-10 04:16:39',1),(1,170,3015735,'2012-12-10 04:16:39',1),(1,222,3015642,'2012-12-10 04:16:43',NULL),(1,52,3015642,'2012-12-10 04:16:43',NULL),(1,244,3015642,'2012-12-10 04:16:43',NULL),(1,170,3015642,'2012-12-10 04:16:43',NULL),(1,222,3015741,'2012-12-10 04:16:53',1),(1,52,3015741,'2012-12-10 04:16:53',1),(1,244,3015741,'2012-12-10 04:16:53',1),(1,170,3015741,'2012-12-10 04:16:53',1),(1,226,3015736,'2012-12-10 04:46:23',1),(1,116,3015736,'2012-12-10 04:46:23',1),(1,168,3015736,'2012-12-10 04:46:23',1),(1,242,3015736,'2012-12-10 04:46:23',1),(1,202,3015736,'2012-12-10 04:46:23',1),(1,7,3015736,'2012-12-10 04:46:23',1),(1,132,3015736,'2012-12-10 04:46:23',1),(1,38,3015736,'2012-12-10 04:46:23',1),(1,226,3015742,'2012-12-10 04:46:23',1),(1,116,3015742,'2012-12-10 04:46:23',1),(1,168,3015742,'2012-12-10 04:46:23',1),(1,242,3015742,'2012-12-10 04:46:23',1),(1,202,3015742,'2012-12-10 04:46:23',1),(1,7,3015742,'2012-12-10 04:46:23',1),(1,132,3015742,'2012-12-10 04:46:23',1),(1,38,3015742,'2012-12-10 04:46:23',1),(1,146,3015725,'2012-12-10 04:46:26',1),(1,5,3015725,'2012-12-10 04:46:26',1),(1,66,3015725,'2012-12-10 04:46:26',1),(1,211,3015725,'2012-12-10 04:46:26',1),(1,222,3015727,'2012-12-10 04:46:32',1),(1,52,3015727,'2012-12-10 04:46:32',1),(1,244,3015730,'2012-12-10 04:46:33',1),(1,170,3015730,'2012-12-10 04:46:33',1),(1,226,3015731,'2012-12-10 04:46:35',1),(1,116,3015731,'2012-12-10 04:46:35',1),(1,168,3015731,'2012-12-10 04:46:35',1),(1,242,3015731,'2012-12-10 04:46:35',1),(1,202,3015731,'2012-12-10 04:46:35',1),(1,7,3015731,'2012-12-10 04:46:35',1),(1,132,3015731,'2012-12-10 04:46:35',1),(1,38,3015731,'2012-12-10 04:46:35',1),(1,146,3015732,'2012-12-10 04:46:40',1),(1,5,3015732,'2012-12-10 04:46:40',1),(1,222,3015739,'2012-12-10 04:46:52',1),(1,52,3015739,'2012-12-10 04:46:52',1),(1,244,3015739,'2012-12-10 04:46:52',1),(1,170,3015739,'2012-12-10 04:46:52',1),(1,146,3015739,'2012-12-10 04:46:52',1),(1,5,3015739,'2012-12-10 04:46:52',1),(1,66,3015739,'2012-12-10 04:46:52',1),(1,211,3015739,'2012-12-10 04:46:52',1),(1,66,3015744,'2012-12-10 04:46:58',1),(1,211,3015744,'2012-12-10 04:46:58',1),(1,222,3015745,'2012-12-10 04:47:04',1),(1,52,3015745,'2012-12-10 04:47:04',1),(1,244,3015745,'2012-12-10 04:47:04',1),(1,170,3015745,'2012-12-10 04:47:04',1),(1,222,3015740,'2012-12-10 05:16:58',NULL),(1,52,3015740,'2012-12-10 05:16:58',NULL),(1,244,3015740,'2012-12-10 05:16:58',NULL),(1,170,3015740,'2012-12-10 05:16:58',NULL),(1,146,3015740,'2012-12-10 05:16:58',NULL),(1,5,3015740,'2012-12-10 05:16:58',NULL),(1,66,3015740,'2012-12-10 05:16:58',NULL),(1,211,3015740,'2012-12-10 05:16:58',NULL),(1,226,3015743,'2012-12-10 05:16:58',1),(1,116,3015743,'2012-12-10 05:16:58',1),(1,168,3015743,'2012-12-10 05:16:58',1),(1,242,3015743,'2012-12-10 05:16:58',1),(1,202,3015743,'2012-12-10 05:16:58',1),(1,7,3015743,'2012-12-10 05:16:58',1),(1,132,3015743,'2012-12-10 05:16:58',1),(1,38,3015743,'2012-12-10 05:16:58',1),(1,6,3015729,'2012-12-10 06:46:23',1),(1,6,3015747,'2012-12-10 07:16:59',1),(1,6,3015737,'2012-12-10 07:16:59',1),(1,6,3015749,'2012-12-10 07:17:00',1),(1,249,3015746,'2012-12-10 13:16:50',1),(1,122,3015746,'2012-12-10 13:16:50',1),(1,147,3015746,'2012-12-10 13:16:50',1),(1,12,3015746,'2012-12-10 13:16:50',1),(1,195,3015746,'2012-12-10 13:16:50',1),(1,145,3015746,'2012-12-10 13:16:50',1),(1,171,3015746,'2012-12-10 13:16:50',1),(1,62,3015746,'2012-12-10 13:16:50',1),(1,189,3015746,'2012-12-10 13:16:50',1),(1,32,3015746,'2012-12-10 13:16:50',1),(1,23,3015746,'2012-12-10 13:16:50',1),(1,59,3015746,'2012-12-10 13:16:50',1),(1,8,3015746,'2012-12-10 13:16:50',1),(1,250,3015746,'2012-12-10 13:16:50',1),(1,93,3015746,'2012-12-10 13:16:50',1),(1,129,3015746,'2012-12-10 13:16:50',1),(1,249,3015641,'2012-12-10 13:17:19',1),(1,122,3015641,'2012-12-10 13:17:19',1),(1,147,3015641,'2012-12-10 13:17:19',1),(1,12,3015641,'2012-12-10 13:17:19',1),(1,195,3015641,'2012-12-10 13:17:19',1),(1,145,3015641,'2012-12-10 13:17:19',1),(1,171,3015641,'2012-12-10 13:17:19',1),(1,62,3015641,'2012-12-10 13:17:19',1),(1,189,3015641,'2012-12-10 13:17:19',1),(1,32,3015641,'2012-12-10 13:17:19',1),(1,23,3015641,'2012-12-10 13:17:19',1),(1,59,3015641,'2012-12-10 13:17:19',1),(1,8,3015641,'2012-12-10 13:17:19',1),(1,250,3015641,'2012-12-10 13:17:19',1),(1,93,3015641,'2012-12-10 13:17:19',1),(1,129,3015641,'2012-12-10 13:17:19',1),(1,249,3015643,'2012-12-10 13:17:20',1),(1,122,3015643,'2012-12-10 13:17:20',1),(1,147,3015643,'2012-12-10 13:17:20',1),(1,195,3015643,'2012-12-10 13:17:20',1),(1,145,3015643,'2012-12-10 13:17:20',1),(1,171,3015643,'2012-12-10 13:17:20',1),(1,62,3015643,'2012-12-10 13:17:20',1),(1,189,3015643,'2012-12-10 13:17:20',1),(1,32,3015643,'2012-12-10 13:17:20',1),(1,23,3015643,'2012-12-10 13:17:20',1),(1,59,3015643,'2012-12-10 13:17:20',1),(1,8,3015643,'2012-12-10 13:17:20',1),(1,250,3015643,'2012-12-10 13:17:20',1),(1,93,3015643,'2012-12-10 13:17:20',1),(1,129,3015643,'2012-12-10 13:17:20',1),(1,132,3015643,'2012-12-10 13:17:20',1),(1,249,3015738,'2012-12-10 13:47:02',1),(1,122,3015738,'2012-12-10 13:47:02',1),(1,150,3015738,'2012-12-10 13:47:02',1),(1,147,3015738,'2012-12-10 13:47:02',1),(1,12,3015738,'2012-12-10 13:47:02',1),(1,195,3015738,'2012-12-10 13:47:02',1),(1,37,3015738,'2012-12-10 13:47:02',1),(1,145,3015738,'2012-12-10 13:47:02',1),(1,171,3015738,'2012-12-10 13:47:02',1),(1,62,3015738,'2012-12-10 13:47:02',1),(1,189,3015738,'2012-12-10 13:47:02',1),(1,190,3015738,'2012-12-10 13:47:02',1),(1,17,3015738,'2012-12-10 13:47:02',1),(1,32,3015738,'2012-12-10 13:47:02',1),(1,23,3015738,'2012-12-10 13:47:02',1),(1,59,3015738,'2012-12-10 13:47:02',1),(1,220,3015733,'2012-12-10 14:17:19',1),(1,146,3015733,'2012-12-10 14:17:19',1),(1,8,3015733,'2012-12-10 14:17:19',1),(1,87,3015733,'2012-12-10 14:17:19',1),(1,250,3015733,'2012-12-10 14:17:19',1),(1,93,3015733,'2012-12-10 14:17:19',1),(1,129,3015733,'2012-12-10 14:17:19',1),(1,13,3015733,'2012-12-10 14:17:19',1),(1,174,3015733,'2012-12-10 14:17:19',1),(1,65,3015733,'2012-12-10 14:17:19',1),(1,203,3015733,'2012-12-10 14:17:19',1),(1,5,3015733,'2012-12-10 14:17:19',1),(1,241,3015733,'2012-12-10 14:17:19',1),(1,211,3015733,'2012-12-10 14:17:19',1),(1,69,3015733,'2012-12-10 14:17:19',1),(1,221,3015733,'2012-12-10 14:17:19',1),(1,116,3015891,'2012-12-11 04:46:23',1),(1,244,3015891,'2012-12-11 04:46:23',1),(1,232,3015891,'2012-12-11 04:46:23',1),(1,238,3015891,'2012-12-11 04:46:23',1),(1,158,3015891,'2012-12-11 04:46:23',1),(1,143,3015891,'2012-12-11 04:46:23',1),(1,57,3015891,'2012-12-11 04:46:23',1),(1,22,3015891,'2012-12-11 04:46:23',1),(1,116,3015964,'2012-12-11 04:46:30',1),(1,244,3015964,'2012-12-11 04:46:30',1),(1,232,3015964,'2012-12-11 04:46:30',1),(1,238,3015964,'2012-12-11 04:46:30',1),(1,158,3015964,'2012-12-11 04:46:30',1),(1,143,3015964,'2012-12-11 04:46:30',1),(1,57,3015964,'2012-12-11 04:46:30',1),(1,22,3015964,'2012-12-11 04:46:30',1),(1,116,3015966,'2012-12-11 04:46:31',1),(1,244,3015966,'2012-12-11 04:46:31',1),(1,232,3015966,'2012-12-11 04:46:31',1),(1,238,3015966,'2012-12-11 04:46:31',1),(1,158,3015966,'2012-12-11 04:46:31',1),(1,143,3015966,'2012-12-11 04:46:31',1),(1,57,3015966,'2012-12-11 04:46:31',1),(1,22,3015966,'2012-12-11 04:46:31',1),(1,232,3015799,'2012-12-11 04:46:35',1),(1,238,3015799,'2012-12-11 04:46:35',1),(1,158,3015799,'2012-12-11 04:46:35',1),(1,143,3015799,'2012-12-11 04:46:35',1),(1,57,3015799,'2012-12-11 04:46:35',1),(1,22,3015799,'2012-12-11 04:46:35',1),(1,33,3015799,'2012-12-11 04:46:35',1),(1,100,3015799,'2012-12-11 04:46:35',1),(1,116,3015895,'2012-12-11 04:46:41',NULL),(1,244,3015895,'2012-12-11 04:46:41',NULL),(1,232,3015895,'2012-12-11 04:46:41',NULL),(1,238,3015895,'2012-12-11 04:46:41',NULL),(1,158,3015895,'2012-12-11 04:46:41',NULL),(1,143,3015895,'2012-12-11 04:46:41',NULL),(1,57,3015895,'2012-12-11 04:46:41',NULL),(1,22,3015895,'2012-12-11 04:46:41',NULL),(1,244,3015802,'2012-12-11 04:46:48',1),(1,232,3015802,'2012-12-11 04:46:48',1),(1,238,3015802,'2012-12-11 04:46:48',1),(1,158,3015802,'2012-12-11 04:46:48',1),(1,143,3015802,'2012-12-11 04:46:48',1),(1,57,3015802,'2012-12-11 04:46:48',1),(1,22,3015802,'2012-12-11 04:46:48',1),(1,33,3015802,'2012-12-11 04:46:48',1),(1,244,3015801,'2012-12-11 04:46:48',1),(1,232,3015801,'2012-12-11 04:46:48',1),(1,238,3015801,'2012-12-11 04:46:48',1),(1,158,3015801,'2012-12-11 04:46:48',1),(1,143,3015801,'2012-12-11 04:46:48',1),(1,57,3015801,'2012-12-11 04:46:48',1),(1,22,3015801,'2012-12-11 04:46:48',1),(1,33,3015801,'2012-12-11 04:46:48',1),(1,244,3015803,'2012-12-11 04:46:52',1),(1,232,3015803,'2012-12-11 04:46:52',1),(1,238,3015803,'2012-12-11 04:46:52',1),(1,158,3015803,'2012-12-11 04:46:52',1),(1,143,3015803,'2012-12-11 04:46:52',1),(1,57,3015803,'2012-12-11 04:46:52',1),(1,22,3015803,'2012-12-11 04:46:52',1),(1,33,3015803,'2012-12-11 04:46:52',1),(1,244,3015805,'2012-12-11 04:47:00',1),(1,232,3015805,'2012-12-11 04:47:00',1),(1,238,3015805,'2012-12-11 04:47:00',1),(1,158,3015805,'2012-12-11 04:47:00',1),(1,143,3015805,'2012-12-11 04:47:00',1),(1,57,3015805,'2012-12-11 04:47:00',1),(1,22,3015805,'2012-12-11 04:47:00',1),(1,33,3015805,'2012-12-11 04:47:00',1),(1,116,3015953,'2012-12-11 05:16:47',1),(1,14,3015953,'2012-12-11 05:16:47',1),(1,244,3015953,'2012-12-11 05:16:47',1),(1,232,3015953,'2012-12-11 05:16:47',1),(1,238,3015953,'2012-12-11 05:16:47',1),(1,158,3015953,'2012-12-11 05:16:47',1),(1,143,3015953,'2012-12-11 05:16:47',1),(1,57,3015953,'2012-12-11 05:16:47',1),(1,116,3015956,'2012-12-11 05:16:58',1),(1,14,3015956,'2012-12-11 05:16:58',1),(1,244,3015956,'2012-12-11 05:16:58',1),(1,232,3015956,'2012-12-11 05:16:58',1),(1,238,3015956,'2012-12-11 05:16:58',1),(1,158,3015956,'2012-12-11 05:16:58',1),(1,143,3015956,'2012-12-11 05:16:58',1),(1,57,3015956,'2012-12-11 05:16:58',1),(1,24,3015969,'2012-12-11 05:46:23',1),(1,100,3015896,'2012-12-11 05:46:30',1),(1,116,3016058,'2012-12-11 05:46:40',1),(1,14,3016058,'2012-12-11 05:46:40',1),(1,244,3016058,'2012-12-11 05:46:40',1),(1,232,3016058,'2012-12-11 05:46:40',1),(1,238,3016058,'2012-12-11 05:46:40',1),(1,158,3016058,'2012-12-11 05:46:40',1),(1,143,3016058,'2012-12-11 05:46:40',1),(1,57,3016058,'2012-12-11 05:46:40',1),(1,116,3016055,'2012-12-11 05:46:41',1),(1,14,3016055,'2012-12-11 05:46:41',1),(1,244,3016055,'2012-12-11 05:46:41',1),(1,232,3016055,'2012-12-11 05:46:41',1),(1,238,3016055,'2012-12-11 05:46:41',1),(1,158,3016055,'2012-12-11 05:46:41',1),(1,143,3016055,'2012-12-11 05:46:41',1),(1,57,3016055,'2012-12-11 05:46:41',1),(1,24,3015893,'2012-12-11 05:46:44',1),(1,170,3015804,'2012-12-11 05:47:03',1),(1,100,3015804,'2012-12-11 05:47:03',1),(1,170,3015806,'2012-12-11 05:47:05',1),(1,100,3015806,'2012-12-11 05:47:05',1),(1,24,3015807,'2012-12-11 05:47:05',1),(1,116,3016056,'2012-12-11 05:47:07',1),(1,14,3016056,'2012-12-11 05:47:07',1),(1,244,3016056,'2012-12-11 05:47:07',1),(1,232,3016056,'2012-12-11 05:47:07',1),(1,238,3016056,'2012-12-11 05:47:07',1),(1,158,3016056,'2012-12-11 05:47:07',1),(1,143,3016056,'2012-12-11 05:47:07',1),(1,57,3016056,'2012-12-11 05:47:07',1),(1,24,3015788,'2012-12-11 05:47:12',1),(1,24,3015789,'2012-12-11 05:47:14',1),(1,24,3015790,'2012-12-11 05:47:19',1),(1,206,3015791,'2012-12-11 05:47:21',1),(1,170,3015791,'2012-12-11 05:47:21',1),(1,100,3015792,'2012-12-11 05:47:21',1),(1,100,3016052,'2012-12-11 06:16:21',1),(1,207,3015955,'2012-12-11 06:16:25',1),(1,100,3015955,'2012-12-11 06:16:25',1),(1,100,3015970,'2012-12-11 06:16:25',1),(1,206,3016059,'2012-12-11 06:16:29',1),(1,170,3016059,'2012-12-11 06:16:29',1),(1,24,3016054,'2012-12-11 06:16:29',1),(1,206,3015890,'2012-12-11 06:16:33',1),(1,170,3015890,'2012-12-11 06:16:33',1),(1,206,3015960,'2012-12-11 06:16:37',1),(1,170,3015960,'2012-12-11 06:16:37',1),(1,24,3016064,'2012-12-11 06:16:45',1),(1,207,3015894,'2012-12-11 06:16:46',1),(1,100,3015894,'2012-12-11 06:16:46',1),(1,57,3016063,'2012-12-11 06:16:56',1),(1,100,3016063,'2012-12-11 06:16:56',1),(1,24,3016053,'2012-12-11 06:16:59',1),(1,207,3015962,'2012-12-11 06:17:02',1),(1,100,3015962,'2012-12-11 06:17:02',1),(1,24,3015961,'2012-12-11 06:17:03',1),(1,116,3016047,'2012-12-11 06:17:11',1),(1,14,3016047,'2012-12-11 06:17:11',1),(1,244,3016047,'2012-12-11 06:17:11',1),(1,232,3016047,'2012-12-11 06:17:11',1),(1,238,3016047,'2012-12-11 06:17:11',1),(1,158,3016047,'2012-12-11 06:17:11',1),(1,143,3016047,'2012-12-11 06:17:11',1),(1,57,3016047,'2012-12-11 06:17:11',1),(1,57,3015967,'2012-12-11 06:17:14',1),(1,100,3015967,'2012-12-11 06:17:14',1),(1,206,3015793,'2012-12-11 06:17:24',1),(1,170,3015793,'2012-12-11 06:17:24',1),(1,206,3015794,'2012-12-11 06:17:26',1),(1,170,3015794,'2012-12-11 06:17:26',1),(1,170,3015796,'2012-12-11 06:46:40',1),(1,57,3015796,'2012-12-11 06:46:40',1),(1,176,3015796,'2012-12-11 06:46:40',1),(1,100,3015796,'2012-12-11 06:46:40',1),(1,216,3015797,'2012-12-11 06:46:40',1),(1,170,3015797,'2012-12-11 06:46:40',1),(1,57,3015797,'2012-12-11 06:46:40',1),(1,176,3015797,'2012-12-11 06:46:40',1),(1,170,3015798,'2012-12-11 06:46:42',1),(1,57,3015798,'2012-12-11 06:46:42',1),(1,176,3015798,'2012-12-11 06:46:42',1),(1,100,3015798,'2012-12-11 06:46:42',1),(1,216,3015800,'2012-12-11 06:46:56',1),(1,170,3015800,'2012-12-11 06:46:56',1),(1,57,3015800,'2012-12-11 06:46:56',1),(1,176,3015800,'2012-12-11 06:46:56',1),(1,206,3016046,'2012-12-11 06:47:00',1),(1,170,3016046,'2012-12-11 06:47:00',1),(1,116,3016066,'2012-12-11 06:47:11',1),(1,14,3016066,'2012-12-11 06:47:11',1),(1,207,3016066,'2012-12-11 06:47:11',1),(1,244,3016066,'2012-12-11 06:47:11',1),(1,232,3016066,'2012-12-11 06:47:11',1),(1,238,3016066,'2012-12-11 06:47:11',1),(1,158,3016066,'2012-12-11 06:47:11',1),(1,143,3016066,'2012-12-11 06:47:11',1),(1,116,3016065,'2012-12-11 06:47:20',1),(1,14,3016065,'2012-12-11 06:47:20',1),(1,207,3016065,'2012-12-11 06:47:20',1),(1,244,3016065,'2012-12-11 06:47:20',1),(1,232,3016065,'2012-12-11 06:47:20',1),(1,238,3016065,'2012-12-11 06:47:20',1),(1,158,3016065,'2012-12-11 06:47:20',1),(1,143,3016065,'2012-12-11 06:47:20',1),(1,57,3016044,'2012-12-11 06:47:20',1),(1,100,3016044,'2012-12-11 06:47:20',1),(1,57,3016048,'2012-12-11 06:47:26',1),(1,100,3016048,'2012-12-11 06:47:26',1),(1,216,3015795,'2012-12-11 06:47:29',1),(1,170,3015795,'2012-12-11 06:47:29',1),(1,57,3015795,'2012-12-11 06:47:29',1),(1,176,3015795,'2012-12-11 06:47:29',1),(1,176,3016062,'2012-12-11 06:47:30',1),(1,24,3016062,'2012-12-11 06:47:30',1),(1,20,3015968,'2012-12-11 07:46:30',1),(1,3,3015968,'2012-12-11 07:46:30',1),(1,197,3015968,'2012-12-11 07:46:30',1),(1,225,3015968,'2012-12-11 07:46:30',1),(1,20,3015897,'2012-12-11 07:46:35',1),(1,3,3015897,'2012-12-11 07:46:35',1),(1,45,3015897,'2012-12-11 07:46:35',1),(1,46,3015897,'2012-12-11 07:46:35',1),(1,163,3015892,'2012-12-11 07:46:54',NULL),(1,182,3015892,'2012-12-11 07:46:54',NULL),(1,100,3015892,'2012-12-11 07:46:54',NULL),(1,24,3015892,'2012-12-11 07:46:54',NULL),(1,100,3015963,'2012-12-11 07:46:57',1),(1,24,3015963,'2012-12-11 07:46:57',1),(1,6,3015963,'2012-12-11 07:46:57',1),(1,4,3015963,'2012-12-11 07:46:57',1),(1,100,3015965,'2012-12-11 07:46:57',1),(1,24,3015965,'2012-12-11 07:46:57',1),(1,6,3015965,'2012-12-11 07:46:57',1),(1,4,3015965,'2012-12-11 07:46:57',1),(1,100,3015954,'2012-12-11 07:47:22',1),(1,24,3015954,'2012-12-11 07:47:22',1),(1,6,3015954,'2012-12-11 07:47:22',1),(1,4,3015954,'2012-12-11 07:47:22',1),(1,20,3016060,'2012-12-11 08:16:29',1),(1,3,3016060,'2012-12-11 08:16:29',1),(1,197,3016060,'2012-12-11 08:16:29',1),(1,225,3016060,'2012-12-11 08:16:29',1),(1,100,3016067,'2012-12-11 08:16:29',1),(1,24,3016067,'2012-12-11 08:16:29',1),(1,6,3016067,'2012-12-11 08:16:29',1),(1,4,3016067,'2012-12-11 08:16:29',1),(1,20,3016045,'2012-12-11 08:16:40',1),(1,3,3016045,'2012-12-11 08:16:40',1),(1,197,3016045,'2012-12-11 08:16:40',1),(1,225,3016045,'2012-12-11 08:16:40',1),(1,20,3016051,'2012-12-11 08:16:40',1),(1,3,3016051,'2012-12-11 08:16:40',1),(1,197,3016051,'2012-12-11 08:16:40',1),(1,225,3016051,'2012-12-11 08:16:40',1),(1,20,3016057,'2012-12-11 08:16:52',1),(1,3,3016057,'2012-12-11 08:16:52',1),(1,197,3016057,'2012-12-11 08:16:52',1),(1,225,3016057,'2012-12-11 08:16:52',1),(1,45,3015958,'2012-12-11 08:16:59',NULL),(1,46,3015958,'2012-12-11 08:16:59',NULL),(1,163,3015958,'2012-12-11 08:16:59',NULL),(1,182,3015958,'2012-12-11 08:16:59',NULL),(1,100,3016050,'2012-12-11 08:17:16',1),(1,24,3016050,'2012-12-11 08:17:16',1),(1,6,3016050,'2012-12-11 08:17:16',1),(1,4,3016050,'2012-12-11 08:17:16',1),(1,10,3015959,'2012-12-11 08:46:47',1),(1,60,3015959,'2012-12-11 08:46:47',1),(1,20,3015959,'2012-12-11 08:46:47',1),(1,3,3015959,'2012-12-11 08:46:47',1),(1,187,3015959,'2012-12-11 08:46:47',1),(1,197,3015959,'2012-12-11 08:46:47',1),(1,225,3015959,'2012-12-11 08:46:47',1),(1,45,3015959,'2012-12-11 08:46:47',1),(1,46,3015959,'2012-12-11 08:46:47',1),(1,234,3015959,'2012-12-11 08:46:47',1),(1,99,3015959,'2012-12-11 08:46:47',1),(1,163,3015959,'2012-12-11 08:46:47',1),(1,178,3015959,'2012-12-11 08:46:47',1),(1,34,3015959,'2012-12-11 08:46:47',1),(1,182,3015959,'2012-12-11 08:46:47',1),(1,100,3015959,'2012-12-11 08:46:47',1),(1,116,3015957,'2012-12-11 08:47:13',1),(1,14,3015957,'2012-12-11 08:47:13',1),(1,216,3015957,'2012-12-11 08:47:13',1),(1,207,3015957,'2012-12-11 08:47:13',1),(1,244,3015957,'2012-12-11 08:47:13',1),(1,170,3015957,'2012-12-11 08:47:13',1),(1,232,3015957,'2012-12-11 08:47:13',1),(1,238,3015957,'2012-12-11 08:47:13',1),(1,158,3015957,'2012-12-11 08:47:13',1),(1,143,3015957,'2012-12-11 08:47:13',1),(1,57,3015957,'2012-12-11 08:47:13',1),(1,176,3015957,'2012-12-11 08:47:13',1),(1,251,3015957,'2012-12-11 08:47:13',1),(1,24,3015957,'2012-12-11 08:47:13',1),(1,6,3015957,'2012-12-11 08:47:13',1),(1,4,3015957,'2012-12-11 08:47:13',1),(1,10,3016049,'2012-12-11 09:16:33',1),(1,60,3016049,'2012-12-11 09:16:33',1),(1,20,3016049,'2012-12-11 09:16:33',1),(1,3,3016049,'2012-12-11 09:16:33',1),(1,187,3016049,'2012-12-11 09:16:33',1),(1,197,3016049,'2012-12-11 09:16:33',1),(1,225,3016049,'2012-12-11 09:16:33',1),(1,45,3016049,'2012-12-11 09:16:33',1),(1,46,3016049,'2012-12-11 09:16:33',1),(1,234,3016049,'2012-12-11 09:16:33',1),(1,99,3016049,'2012-12-11 09:16:33',1),(1,163,3016049,'2012-12-11 09:16:33',1),(1,178,3016049,'2012-12-11 09:16:33',1),(1,34,3016049,'2012-12-11 09:16:33',1),(1,182,3016049,'2012-12-11 09:16:33',1),(1,100,3016049,'2012-12-11 09:16:33',1),(1,10,3016068,'2012-12-11 09:17:11',1),(1,60,3016068,'2012-12-11 09:17:11',1),(1,20,3016068,'2012-12-11 09:17:11',1),(1,244,3016068,'2012-12-11 09:17:11',1),(1,3,3016068,'2012-12-11 09:17:11',1),(1,187,3016068,'2012-12-11 09:17:11',1),(1,197,3016068,'2012-12-11 09:17:11',1),(1,170,3016068,'2012-12-11 09:17:11',1),(1,225,3016068,'2012-12-11 09:17:11',1),(1,45,3016068,'2012-12-11 09:17:11',1),(1,46,3016068,'2012-12-11 09:17:11',1),(1,232,3016068,'2012-12-11 09:17:11',1),(1,238,3016068,'2012-12-11 09:17:11',1),(1,158,3016068,'2012-12-11 09:17:11',1),(1,143,3016068,'2012-12-11 09:17:11',1),(1,57,3016068,'2012-12-11 09:17:11',1),(1,133,3016061,'2012-12-11 10:47:38',1),(1,25,3016061,'2012-12-11 10:47:38',1),(1,125,3016061,'2012-12-11 10:47:38',1),(1,183,3016061,'2012-12-11 10:47:38',1),(1,113,3016061,'2012-12-11 10:47:38',1),(1,27,3016061,'2012-12-11 10:47:38',1),(1,184,3016061,'2012-12-11 10:47:38',1),(1,118,3016061,'2012-12-11 10:47:38',1),(1,141,3016061,'2012-12-11 10:47:38',1),(1,245,3016061,'2012-12-11 10:47:38',1),(1,151,3016061,'2012-12-11 10:47:38',1),(1,164,3016061,'2012-12-11 10:47:38',1),(1,126,3016061,'2012-12-11 10:47:38',1),(1,43,3016061,'2012-12-11 10:47:38',1),(1,10,3016061,'2012-12-11 10:47:38',1),(1,60,3016061,'2012-12-11 10:47:38',1),(1,191,3016110,'2012-12-12 00:46:14',1),(1,252,3016110,'2012-12-12 00:46:14',1),(1,218,3016112,'2012-12-12 00:46:14',1),(1,77,3016112,'2012-12-12 00:46:14',1),(1,252,3016114,'2012-12-12 00:46:21',1),(1,218,3016114,'2012-12-12 00:46:21',1),(1,77,3016114,'2012-12-12 00:46:21',1),(1,224,3016114,'2012-12-12 00:46:21',1),(1,191,3016113,'2012-12-12 00:46:21',1),(1,252,3016113,'2012-12-12 00:46:21',1),(1,191,3016117,'2012-12-12 00:46:21',1),(1,252,3016117,'2012-12-12 00:46:21',1),(1,218,3016117,'2012-12-12 00:46:21',1),(1,77,3016117,'2012-12-12 00:46:21',1),(1,191,3016116,'2012-12-12 00:46:21',1),(1,252,3016116,'2012-12-12 00:46:21',1),(1,218,3016116,'2012-12-12 00:46:21',1),(1,77,3016116,'2012-12-12 00:46:21',1),(1,191,3016115,'2012-12-12 00:46:29',1),(1,252,3016115,'2012-12-12 00:46:29',1),(1,218,3016115,'2012-12-12 00:46:29',1),(1,77,3016115,'2012-12-12 00:46:29',1),(1,191,3016119,'2012-12-12 00:46:29',1),(1,252,3016119,'2012-12-12 00:46:29',1),(1,218,3016119,'2012-12-12 00:46:29',1),(1,77,3016119,'2012-12-12 00:46:29',1),(1,218,3016123,'2012-12-12 00:46:37',1),(1,77,3016123,'2012-12-12 00:46:37',1),(1,191,3016125,'2012-12-12 00:46:45',1),(1,252,3016125,'2012-12-12 00:46:45',1),(1,191,3016203,'2012-12-12 01:46:13',1),(1,252,3016203,'2012-12-12 01:46:13',1),(1,191,3016206,'2012-12-12 01:46:13',1),(1,252,3016206,'2012-12-12 01:46:13',1),(1,218,3016201,'2012-12-12 01:46:13',1),(1,77,3016201,'2012-12-12 01:46:13',1),(1,224,3016201,'2012-12-12 01:46:13',1),(1,228,3016201,'2012-12-12 01:46:13',1),(1,191,3016207,'2012-12-12 01:46:21',1),(1,252,3016207,'2012-12-12 01:46:21',1),(1,218,3016207,'2012-12-12 01:46:21',1),(1,77,3016207,'2012-12-12 01:46:21',1),(1,191,3016288,'2012-12-12 02:46:12',1),(1,252,3016288,'2012-12-12 02:46:12',1),(1,218,3016288,'2012-12-12 02:46:12',1),(1,224,3016288,'2012-12-12 02:46:12',1),(1,191,3016286,'2012-12-12 02:46:12',1),(1,252,3016286,'2012-12-12 02:46:12',1),(1,218,3016286,'2012-12-12 02:46:12',1),(1,224,3016286,'2012-12-12 02:46:12',1),(1,77,3016274,'2012-12-12 02:46:20',1),(1,228,3016274,'2012-12-12 02:46:20',1),(1,191,3016273,'2012-12-12 02:46:28',1),(1,252,3016273,'2012-12-12 02:46:28',1),(1,218,3016273,'2012-12-12 02:46:28',1),(1,224,3016273,'2012-12-12 02:46:28',1),(1,191,3016271,'2012-12-12 02:46:37',1),(1,252,3016271,'2012-12-12 02:46:37',1),(1,218,3016271,'2012-12-12 02:46:37',1),(1,224,3016271,'2012-12-12 02:46:37',1),(1,77,3016272,'2012-12-12 03:16:22',1),(1,228,3016272,'2012-12-12 03:16:22',1),(1,77,3016280,'2012-12-12 03:16:39',1),(1,228,3016280,'2012-12-12 03:16:39',1),(1,191,3016284,'2012-12-12 03:16:47',NULL),(1,252,3016284,'2012-12-12 03:16:47',NULL),(1,218,3016284,'2012-12-12 03:16:47',NULL),(1,224,3016284,'2012-12-12 03:16:47',NULL),(1,77,3016278,'2012-12-12 03:16:47',1),(1,228,3016278,'2012-12-12 03:16:47',1),(1,252,3016374,'2012-12-12 03:46:13',1),(1,218,3016374,'2012-12-12 03:46:13',1),(1,6,3016282,'2012-12-12 03:46:16',1),(1,4,3016282,'2012-12-12 03:46:16',1),(1,63,3016282,'2012-12-12 03:46:16',1),(1,191,3016282,'2012-12-12 03:46:16',1),(1,252,3016282,'2012-12-12 03:46:16',1),(1,218,3016282,'2012-12-12 03:46:16',1),(1,67,3016282,'2012-12-12 03:46:16',1),(1,49,3016282,'2012-12-12 03:46:16',1),(1,77,3016361,'2012-12-12 03:46:21',1),(1,228,3016361,'2012-12-12 03:46:21',1),(1,6,3016200,'2012-12-12 03:46:32',1),(1,4,3016200,'2012-12-12 03:46:32',1),(1,63,3016200,'2012-12-12 03:46:32',1),(1,191,3016200,'2012-12-12 03:46:32',1),(1,252,3016200,'2012-12-12 03:46:32',1),(1,218,3016200,'2012-12-12 03:46:32',1),(1,67,3016200,'2012-12-12 03:46:32',1),(1,49,3016200,'2012-12-12 03:46:32',1),(1,6,3016204,'2012-12-12 03:46:32',1),(1,4,3016204,'2012-12-12 03:46:32',1),(1,63,3016204,'2012-12-12 03:46:32',1),(1,191,3016204,'2012-12-12 03:46:32',1),(1,252,3016204,'2012-12-12 03:46:32',1),(1,218,3016204,'2012-12-12 03:46:32',1),(1,67,3016204,'2012-12-12 03:46:32',1),(1,49,3016204,'2012-12-12 03:46:32',1),(1,210,3016371,'2012-12-12 03:46:39',1),(1,224,3016371,'2012-12-12 03:46:39',1),(1,77,3016359,'2012-12-12 03:46:39',1),(1,228,3016359,'2012-12-12 03:46:39',1),(1,6,3016118,'2012-12-12 03:46:44',1),(1,4,3016118,'2012-12-12 03:46:44',1),(1,63,3016118,'2012-12-12 03:46:44',1),(1,67,3016118,'2012-12-12 03:46:44',1),(1,49,3016118,'2012-12-12 03:46:44',1),(1,207,3016118,'2012-12-12 03:46:44',1),(1,210,3016118,'2012-12-12 03:46:44',1),(1,224,3016118,'2012-12-12 03:46:44',1),(1,6,3016120,'2012-12-12 03:46:44',1),(1,4,3016120,'2012-12-12 03:46:44',1),(1,63,3016120,'2012-12-12 03:46:44',1),(1,67,3016120,'2012-12-12 03:46:44',1),(1,49,3016120,'2012-12-12 03:46:44',1),(1,207,3016120,'2012-12-12 03:46:44',1),(1,210,3016120,'2012-12-12 03:46:44',1),(1,224,3016120,'2012-12-12 03:46:44',1),(1,210,3016375,'2012-12-12 03:46:47',1),(1,224,3016375,'2012-12-12 03:46:47',1),(1,6,3016121,'2012-12-12 03:46:53',1),(1,4,3016121,'2012-12-12 03:46:53',1),(1,63,3016121,'2012-12-12 03:46:53',1),(1,191,3016121,'2012-12-12 03:46:53',1),(1,252,3016121,'2012-12-12 03:46:53',1),(1,218,3016121,'2012-12-12 03:46:53',1),(1,67,3016121,'2012-12-12 03:46:53',1),(1,49,3016121,'2012-12-12 03:46:53',1),(1,6,3016122,'2012-12-12 03:46:53',1),(1,4,3016122,'2012-12-12 03:46:53',1),(1,63,3016122,'2012-12-12 03:46:53',1),(1,191,3016122,'2012-12-12 03:46:53',1),(1,252,3016122,'2012-12-12 03:46:53',1),(1,218,3016122,'2012-12-12 03:46:53',1),(1,67,3016122,'2012-12-12 03:46:53',1),(1,49,3016122,'2012-12-12 03:46:53',1),(1,6,3016124,'2012-12-12 03:46:54',1),(1,4,3016124,'2012-12-12 03:46:54',1),(1,63,3016124,'2012-12-12 03:46:54',1),(1,252,3016124,'2012-12-12 03:46:54',1),(1,218,3016124,'2012-12-12 03:46:54',1),(1,67,3016124,'2012-12-12 03:46:54',1),(1,49,3016124,'2012-12-12 03:46:54',1),(1,207,3016124,'2012-12-12 03:46:54',1),(1,77,3016357,'2012-12-12 03:46:59',1),(1,228,3016357,'2012-12-12 03:46:59',1),(1,49,3016364,'2012-12-12 04:16:15',1),(1,207,3016364,'2012-12-12 04:16:15',1),(1,223,3016364,'2012-12-12 04:16:15',1),(1,228,3016364,'2012-12-12 04:16:15',1),(1,49,3016363,'2012-12-12 04:16:23',1),(1,207,3016363,'2012-12-12 04:16:23',1),(1,223,3016363,'2012-12-12 04:16:23',1),(1,228,3016363,'2012-12-12 04:16:23',1),(1,6,3016275,'2012-12-12 04:16:27',1),(1,4,3016275,'2012-12-12 04:16:27',1),(1,63,3016275,'2012-12-12 04:16:27',1),(1,191,3016275,'2012-12-12 04:16:27',1),(1,252,3016275,'2012-12-12 04:16:27',1),(1,218,3016275,'2012-12-12 04:16:27',1),(1,77,3016275,'2012-12-12 04:16:27',1),(1,67,3016275,'2012-12-12 04:16:27',1),(1,49,3016377,'2012-12-12 04:16:40',1),(1,207,3016377,'2012-12-12 04:16:40',1),(1,223,3016377,'2012-12-12 04:16:40',1),(1,228,3016377,'2012-12-12 04:16:40',1),(1,6,3016287,'2012-12-12 04:16:45',1),(1,4,3016287,'2012-12-12 04:16:45',1),(1,63,3016287,'2012-12-12 04:16:45',1),(1,191,3016287,'2012-12-12 04:16:45',1),(1,252,3016287,'2012-12-12 04:16:45',1),(1,218,3016287,'2012-12-12 04:16:45',1),(1,77,3016287,'2012-12-12 04:16:45',1),(1,67,3016287,'2012-12-12 04:16:45',1),(1,6,3016283,'2012-12-12 04:16:45',1),(1,4,3016283,'2012-12-12 04:16:45',1),(1,63,3016283,'2012-12-12 04:16:45',1),(1,191,3016283,'2012-12-12 04:16:45',1),(1,252,3016283,'2012-12-12 04:16:45',1),(1,218,3016283,'2012-12-12 04:16:45',1),(1,77,3016283,'2012-12-12 04:16:45',1),(1,67,3016283,'2012-12-12 04:16:45',1),(1,6,3016360,'2012-12-12 04:46:29',1),(1,4,3016360,'2012-12-12 04:46:29',1),(1,63,3016360,'2012-12-12 04:46:29',1),(1,191,3016360,'2012-12-12 04:46:29',1),(1,252,3016360,'2012-12-12 04:46:29',1),(1,218,3016360,'2012-12-12 04:46:29',1),(1,77,3016360,'2012-12-12 04:46:29',1),(1,67,3016360,'2012-12-12 04:46:29',1),(1,6,3016358,'2012-12-12 04:46:36',1),(1,4,3016358,'2012-12-12 04:46:36',1),(1,63,3016358,'2012-12-12 04:46:36',1),(1,191,3016358,'2012-12-12 04:46:36',1),(1,252,3016358,'2012-12-12 04:46:36',1),(1,218,3016358,'2012-12-12 04:46:36',1),(1,77,3016358,'2012-12-12 04:46:36',1),(1,67,3016358,'2012-12-12 04:46:36',1),(1,6,3016366,'2012-12-12 04:46:42',1),(1,4,3016366,'2012-12-12 04:46:42',1),(1,63,3016366,'2012-12-12 04:46:42',1),(1,191,3016366,'2012-12-12 04:46:42',1),(1,252,3016366,'2012-12-12 04:46:42',1),(1,218,3016366,'2012-12-12 04:46:42',1),(1,77,3016366,'2012-12-12 04:46:42',1),(1,67,3016366,'2012-12-12 04:46:42',1),(1,49,3016370,'2012-12-12 04:47:00',1),(1,207,3016370,'2012-12-12 04:47:00',1),(1,223,3016370,'2012-12-12 04:47:00',1),(1,228,3016370,'2012-12-12 04:47:00',1),(1,49,3016368,'2012-12-12 04:47:03',1),(1,207,3016368,'2012-12-12 04:47:03',1),(1,223,3016368,'2012-12-12 04:47:03',1),(1,228,3016368,'2012-12-12 04:47:03',1),(1,49,3016372,'2012-12-12 04:47:09',1),(1,207,3016372,'2012-12-12 04:47:09',1),(1,210,3016372,'2012-12-12 04:47:09',1),(1,224,3016372,'2012-12-12 04:47:09',1),(1,6,3016367,'2012-12-12 05:16:54',1),(1,4,3016367,'2012-12-12 05:16:54',1),(1,63,3016367,'2012-12-12 05:16:54',1),(1,191,3016367,'2012-12-12 05:16:54',1),(1,252,3016367,'2012-12-12 05:16:54',1),(1,218,3016367,'2012-12-12 05:16:54',1),(1,77,3016367,'2012-12-12 05:16:54',1),(1,67,3016367,'2012-12-12 05:16:54',1),(1,6,3016365,'2012-12-12 05:46:58',1),(1,4,3016365,'2012-12-12 05:46:58',1),(1,63,3016365,'2012-12-12 05:46:58',1),(1,191,3016365,'2012-12-12 05:46:58',1),(1,252,3016365,'2012-12-12 05:46:58',1),(1,218,3016365,'2012-12-12 05:46:58',1),(1,77,3016365,'2012-12-12 05:46:58',1),(1,67,3016365,'2012-12-12 05:46:58',1),(1,228,3016356,'2012-12-12 07:16:27',1),(1,191,3016281,'2012-12-12 07:16:30',1),(1,6,3016205,'2012-12-12 07:16:34',1),(1,6,3016380,'2012-12-12 07:16:35',1),(1,228,3016109,'2012-12-12 07:16:43',1),(1,191,3016111,'2012-12-12 07:16:43',1),(1,4,3016376,'2012-12-12 07:16:44',1),(1,213,3016285,'2012-12-12 07:16:50',1),(1,63,3016202,'2012-12-12 07:16:52',1),(1,77,3016279,'2012-12-12 07:16:52',1),(1,191,3016379,'2012-12-12 07:17:05',1),(1,252,3016126,'2012-12-12 07:17:16',1),(1,4,3016108,'2012-12-12 07:17:17',1),(1,218,3016127,'2012-12-12 07:17:18',1),(1,68,3016369,'2012-12-12 08:17:17',1),(1,209,3016369,'2012-12-12 08:17:17',1),(1,214,3016369,'2012-12-12 08:17:17',1),(1,70,3016369,'2012-12-12 08:17:17',1),(1,56,3016369,'2012-12-12 08:17:17',1),(1,92,3016369,'2012-12-12 08:17:17',1),(1,6,3016369,'2012-12-12 08:17:17',1),(1,4,3016369,'2012-12-12 08:17:17',1),(1,56,3016276,'2012-12-12 20:17:32',1),(1,157,3016276,'2012-12-12 20:17:32',1),(1,1,3016276,'2012-12-12 20:17:32',1),(1,109,3016276,'2012-12-12 20:17:32',1),(1,181,3016276,'2012-12-12 20:17:32',1),(1,36,3016276,'2012-12-12 20:17:32',1),(1,31,3016276,'2012-12-12 20:17:32',1),(1,128,3016276,'2012-12-12 20:17:32',1),(1,63,3016276,'2012-12-12 20:17:32',1),(1,191,3016276,'2012-12-12 20:17:32',1),(1,173,3016276,'2012-12-12 20:17:32',1),(1,252,3016276,'2012-12-12 20:17:32',1),(1,15,3016276,'2012-12-12 20:17:32',1),(1,75,3016276,'2012-12-12 20:17:32',1),(1,110,3016276,'2012-12-12 20:17:32',1),(1,76,3016276,'2012-12-12 20:17:32',1),(1,56,3016277,'2012-12-12 20:17:40',1),(1,157,3016277,'2012-12-12 20:17:40',1),(1,1,3016277,'2012-12-12 20:17:40',1),(1,109,3016277,'2012-12-12 20:17:40',1),(1,181,3016277,'2012-12-12 20:17:40',1),(1,36,3016277,'2012-12-12 20:17:40',1),(1,31,3016277,'2012-12-12 20:17:40',1),(1,128,3016277,'2012-12-12 20:17:40',1),(1,63,3016277,'2012-12-12 20:17:40',1),(1,191,3016277,'2012-12-12 20:17:40',1),(1,173,3016277,'2012-12-12 20:17:40',1),(1,252,3016277,'2012-12-12 20:17:40',1),(1,15,3016277,'2012-12-12 20:17:40',1),(1,75,3016277,'2012-12-12 20:17:40',1),(1,110,3016277,'2012-12-12 20:17:40',1),(1,76,3016277,'2012-12-12 20:17:40',1),(1,56,3016373,'2012-12-12 20:47:22',1),(1,157,3016373,'2012-12-12 20:47:22',1),(1,1,3016373,'2012-12-12 20:47:22',1),(1,109,3016373,'2012-12-12 20:47:22',1),(1,181,3016373,'2012-12-12 20:47:22',1),(1,36,3016373,'2012-12-12 20:47:22',1),(1,31,3016373,'2012-12-12 20:47:22',1),(1,128,3016373,'2012-12-12 20:47:22',1),(1,63,3016373,'2012-12-12 20:47:22',1),(1,191,3016373,'2012-12-12 20:47:22',1),(1,173,3016373,'2012-12-12 20:47:22',1),(1,252,3016373,'2012-12-12 20:47:22',1),(1,15,3016373,'2012-12-12 20:47:22',1),(1,75,3016373,'2012-12-12 20:47:22',1),(1,110,3016373,'2012-12-12 20:47:22',1),(1,76,3016373,'2012-12-12 20:47:22',1),(1,56,3016362,'2012-12-12 20:47:42',1),(1,157,3016362,'2012-12-12 20:47:42',1),(1,175,3016362,'2012-12-12 20:47:42',1),(1,1,3016362,'2012-12-12 20:47:42',1),(1,109,3016362,'2012-12-12 20:47:42',1),(1,181,3016362,'2012-12-12 20:47:42',1),(1,36,3016362,'2012-12-12 20:47:42',1),(1,31,3016362,'2012-12-12 20:47:42',1),(1,128,3016362,'2012-12-12 20:47:42',1),(1,63,3016362,'2012-12-12 20:47:42',1),(1,191,3016362,'2012-12-12 20:47:42',1),(1,173,3016362,'2012-12-12 20:47:42',1),(1,252,3016362,'2012-12-12 20:47:42',1),(1,15,3016362,'2012-12-12 20:47:42',1),(1,75,3016362,'2012-12-12 20:47:42',1),(1,110,3016362,'2012-12-12 20:47:42',1),(1,56,3016378,'2012-12-12 21:17:45',1),(1,157,3016378,'2012-12-12 21:17:45',1),(1,175,3016378,'2012-12-12 21:17:45',1),(1,1,3016378,'2012-12-12 21:17:45',1),(1,109,3016378,'2012-12-12 21:17:45',1),(1,181,3016378,'2012-12-12 21:17:45',1),(1,36,3016378,'2012-12-12 21:17:45',1),(1,31,3016378,'2012-12-12 21:17:45',1),(1,128,3016378,'2012-12-12 21:17:45',1),(1,63,3016378,'2012-12-12 21:17:45',1),(1,191,3016378,'2012-12-12 21:17:45',1),(1,173,3016378,'2012-12-12 21:17:45',1),(1,252,3016378,'2012-12-12 21:17:45',1),(1,15,3016378,'2012-12-12 21:17:45',1),(1,75,3016378,'2012-12-12 21:17:45',1),(1,110,3016378,'2012-12-12 21:17:45',1),(1,52,3016480,'2012-12-13 00:46:12',1),(1,210,3016480,'2012-12-13 00:46:12',1),(1,6,3016482,'2012-12-13 00:46:12',NULL),(1,4,3016482,'2012-12-13 00:46:12',NULL),(1,122,3016483,'2012-12-13 00:46:12',1),(1,150,3016483,'2012-12-13 00:46:12',1),(1,165,3016481,'2012-12-13 00:46:12',1),(1,108,3016484,'2012-12-13 00:46:20',1),(1,142,3016484,'2012-12-13 00:46:20',1),(1,7,3016484,'2012-12-13 00:46:20',1),(1,132,3016484,'2012-12-13 00:46:20',1),(1,38,3016485,'2012-12-13 00:46:20',1),(1,215,3016485,'2012-12-13 00:46:20',1),(1,61,3016485,'2012-12-13 00:46:20',1),(1,5,3016485,'2012-12-13 00:46:20',1),(1,65,3016486,'2012-12-13 00:46:20',1),(1,242,3016486,'2012-12-13 00:46:20',1),(1,202,3016486,'2012-12-13 00:46:20',1),(1,203,3016486,'2012-12-13 00:46:20',1),(1,199,3016487,'2012-12-13 00:46:20',1),(1,66,3016487,'2012-12-13 00:46:20',1),(1,201,3016487,'2012-12-13 00:46:20',1),(1,77,3016487,'2012-12-13 00:46:20',1),(1,241,3016488,'2012-12-13 00:46:29',1),(1,211,3016488,'2012-12-13 00:46:29',1),(1,69,3016488,'2012-12-13 00:46:29',1),(1,210,3016488,'2012-12-13 00:46:29',1),(1,4,3016488,'2012-12-13 00:46:29',1),(1,122,3016488,'2012-12-13 00:46:29',1),(1,220,3016488,'2012-12-13 00:46:29',1),(1,146,3016488,'2012-12-13 00:46:29',1),(1,241,3016489,'2012-12-13 00:46:29',NULL),(1,211,3016489,'2012-12-13 00:46:29',NULL),(1,213,3016489,'2012-12-13 00:46:29',NULL),(1,69,3016489,'2012-12-13 00:46:29',NULL),(1,147,3016490,'2012-12-13 00:46:29',1),(1,12,3016490,'2012-12-13 00:46:29',1),(1,111,3016490,'2012-12-13 00:46:29',1),(1,195,3016490,'2012-12-13 00:46:29',1),(1,165,3016490,'2012-12-13 00:46:29',1),(1,177,3016490,'2012-12-13 00:46:29',1),(1,72,3016490,'2012-12-13 00:46:29',1),(1,37,3016490,'2012-12-13 00:46:29',1),(1,145,3016491,'2012-12-13 00:46:35',1),(1,171,3016491,'2012-12-13 00:46:35',1),(1,62,3016491,'2012-12-13 00:46:35',1),(1,106,3016491,'2012-12-13 00:46:35',1),(1,189,3016491,'2012-12-13 00:46:35',1),(1,190,3016491,'2012-12-13 00:46:35',1),(1,17,3016491,'2012-12-13 00:46:35',1),(1,32,3016491,'2012-12-13 00:46:35',1),(1,101,3016492,'2012-12-13 00:46:36',1),(1,129,3016492,'2012-12-13 00:46:36',1),(1,13,3016492,'2012-12-13 00:46:36',1),(1,174,3016492,'2012-12-13 00:46:36',1),(1,15,3016492,'2012-12-13 00:46:36',1),(1,112,3016492,'2012-12-13 00:46:36',1),(1,53,3016492,'2012-12-13 00:46:36',1),(1,168,3016492,'2012-12-13 00:46:36',1),(1,147,3016493,'2012-12-13 00:46:37',1),(1,12,3016493,'2012-12-13 00:46:37',1),(1,220,3016495,'2012-12-13 00:46:39',1),(1,146,3016495,'2012-12-13 00:46:39',1),(1,188,3016494,'2012-12-13 00:46:39',NULL),(1,23,3016494,'2012-12-13 00:46:39',NULL),(1,59,3016494,'2012-12-13 00:46:39',NULL),(1,8,3016494,'2012-12-13 00:46:39',NULL),(1,74,3016494,'2012-12-13 00:46:39',NULL),(1,87,3016494,'2012-12-13 00:46:39',NULL),(1,250,3016494,'2012-12-13 00:46:39',NULL),(1,93,3016494,'2012-12-13 00:46:39',NULL),(1,145,3016496,'2012-12-13 00:46:44',1),(1,72,3016479,'2012-12-13 00:46:44',1),(1,177,3016497,'2012-12-13 00:46:45',1),(1,72,3016578,'2012-12-13 01:16:17',1),(1,37,3016578,'2012-12-13 01:16:17',1),(1,145,3016578,'2012-12-13 01:16:17',1),(1,171,3016578,'2012-12-13 01:16:17',1),(1,62,3016578,'2012-12-13 01:16:17',1),(1,106,3016578,'2012-12-13 01:16:17',1),(1,189,3016578,'2012-12-13 01:16:17',1),(1,190,3016578,'2012-12-13 01:16:17',1),(1,59,3016579,'2012-12-13 01:16:17',1),(1,8,3016579,'2012-12-13 01:16:17',1),(1,74,3016579,'2012-12-13 01:16:17',1),(1,87,3016579,'2012-12-13 01:16:17',1),(1,174,3016573,'2012-12-13 01:46:11',1),(1,252,3016574,'2012-12-13 01:46:11',1),(1,250,3016574,'2012-12-13 01:46:11',1),(1,122,3016575,'2012-12-13 01:46:11',1),(1,150,3016575,'2012-12-13 01:46:11',1),(1,220,3016575,'2012-12-13 01:46:11',1),(1,146,3016575,'2012-12-13 01:46:11',1),(1,12,3016575,'2012-12-13 01:46:11',1),(1,111,3016575,'2012-12-13 01:46:11',1),(1,165,3016575,'2012-12-13 01:46:11',1),(1,177,3016575,'2012-12-13 01:46:11',1),(1,13,3016576,'2012-12-13 01:46:11',1),(1,93,3016577,'2012-12-13 01:46:19',1),(1,101,3016577,'2012-12-13 01:46:19',1),(1,17,3016572,'2012-12-13 01:46:19',1),(1,32,3016572,'2012-12-13 01:46:19',1),(1,188,3016572,'2012-12-13 01:46:19',1),(1,23,3016572,'2012-12-13 01:46:19',1),(1,90,3016643,'2012-12-13 02:46:11',1),(1,221,3016643,'2012-12-13 02:46:11',1),(1,69,3016642,'2012-12-13 02:46:11',1),(1,52,3016642,'2012-12-13 02:46:11',1),(1,209,3016642,'2012-12-13 02:46:11',1),(1,210,3016642,'2012-12-13 02:46:11',1),(1,189,3016645,'2012-12-13 02:46:15',1),(1,190,3016645,'2012-12-13 02:46:15',1),(1,17,3016645,'2012-12-13 02:46:15',1),(1,32,3016645,'2012-12-13 02:46:15',1),(1,188,3016645,'2012-12-13 02:46:15',1),(1,23,3016645,'2012-12-13 02:46:15',1),(1,59,3016645,'2012-12-13 02:46:15',1),(1,8,3016645,'2012-12-13 02:46:15',1),(1,74,3016645,'2012-12-13 02:46:15',1),(1,87,3016645,'2012-12-13 02:46:15',1),(1,252,3016645,'2012-12-13 02:46:15',1),(1,250,3016645,'2012-12-13 02:46:15',1),(1,93,3016645,'2012-12-13 02:46:15',1),(1,101,3016645,'2012-12-13 02:46:15',1),(1,129,3016645,'2012-12-13 02:46:15',1),(1,13,3016645,'2012-12-13 02:46:15',1),(1,249,3016646,'2012-12-13 02:46:15',1),(1,122,3016646,'2012-12-13 02:46:15',1),(1,150,3016646,'2012-12-13 02:46:15',1),(1,220,3016646,'2012-12-13 02:46:15',1),(1,146,3016646,'2012-12-13 02:46:15',1),(1,12,3016646,'2012-12-13 02:46:15',1),(1,111,3016646,'2012-12-13 02:46:15',1),(1,195,3016646,'2012-12-13 02:46:15',1),(1,165,3016646,'2012-12-13 02:46:15',1),(1,177,3016646,'2012-12-13 02:46:15',1),(1,72,3016646,'2012-12-13 02:46:15',1),(1,37,3016646,'2012-12-13 02:46:15',1),(1,145,3016646,'2012-12-13 02:46:15',1),(1,171,3016646,'2012-12-13 02:46:15',1),(1,62,3016646,'2012-12-13 02:46:15',1),(1,106,3016646,'2012-12-13 02:46:15',1),(1,213,3016647,'2012-12-13 02:46:19',1),(1,222,3016649,'2012-12-13 02:46:19',1),(1,74,3016651,'2012-12-13 02:46:20',1),(1,87,3016651,'2012-12-13 02:46:20',1),(1,252,3016651,'2012-12-13 02:46:20',1),(1,250,3016651,'2012-12-13 02:46:20',1),(1,5,3016650,'2012-12-13 02:46:20',1),(1,199,3016650,'2012-12-13 02:46:20',1),(1,93,3016656,'2012-12-13 02:46:28',1),(1,101,3016656,'2012-12-13 02:46:28',1),(1,129,3016656,'2012-12-13 02:46:28',1),(1,13,3016656,'2012-12-13 02:46:28',1),(1,5,3016653,'2012-12-13 02:46:28',1),(1,199,3016653,'2012-12-13 02:46:28',1),(1,66,3016653,'2012-12-13 02:46:28',1),(1,201,3016653,'2012-12-13 02:46:28',1),(1,77,3016653,'2012-12-13 02:46:28',1),(1,241,3016653,'2012-12-13 02:46:28',1),(1,211,3016653,'2012-12-13 02:46:28',1),(1,213,3016653,'2012-12-13 02:46:28',1),(1,174,3016655,'2012-12-13 02:46:28',1),(1,15,3016655,'2012-12-13 02:46:28',1),(1,112,3016655,'2012-12-13 02:46:28',1),(1,53,3016655,'2012-12-13 02:46:28',1),(1,168,3016655,'2012-12-13 02:46:28',1),(1,65,3016655,'2012-12-13 02:46:28',1),(1,242,3016655,'2012-12-13 02:46:28',1),(1,202,3016655,'2012-12-13 02:46:28',1),(1,203,3016644,'2012-12-13 02:46:28',1),(1,108,3016644,'2012-12-13 02:46:28',1),(1,142,3016644,'2012-12-13 02:46:28',1),(1,7,3016644,'2012-12-13 02:46:28',1),(1,132,3016644,'2012-12-13 02:46:28',1),(1,38,3016644,'2012-12-13 02:46:28',1),(1,215,3016644,'2012-12-13 02:46:28',1),(1,61,3016644,'2012-12-13 02:46:28',1),(1,168,3016657,'2012-12-13 02:46:36',1),(1,65,3016657,'2012-12-13 02:46:36',1),(1,242,3016657,'2012-12-13 02:46:36',1),(1,202,3016657,'2012-12-13 02:46:36',1),(1,190,3016658,'2012-12-13 02:46:36',1),(1,66,3016641,'2012-12-13 02:46:36',1),(1,201,3016641,'2012-12-13 02:46:36',1),(1,189,3016652,'2012-12-13 02:46:43',1),(1,190,3016652,'2012-12-13 02:46:43',1),(1,17,3016652,'2012-12-13 02:46:43',1),(1,32,3016652,'2012-12-13 02:46:43',1),(1,188,3016652,'2012-12-13 02:46:43',1),(1,23,3016652,'2012-12-13 02:46:43',1),(1,59,3016652,'2012-12-13 02:46:43',1),(1,8,3016652,'2012-12-13 02:46:43',1),(1,77,3016648,'2012-12-13 02:46:44',1),(1,241,3016648,'2012-12-13 02:46:44',1),(1,174,3016654,'2012-12-13 03:16:38',NULL),(1,15,3016654,'2012-12-13 03:16:38',NULL),(1,112,3016654,'2012-12-13 03:16:38',NULL),(1,53,3016654,'2012-12-13 03:16:38',NULL),(1,55,3016723,'2012-12-13 04:16:16',1),(1,130,3016723,'2012-12-13 04:16:16',1),(1,240,3016723,'2012-12-13 04:16:16',1),(1,102,3016723,'2012-12-13 04:16:16',1),(1,204,3016723,'2012-12-13 04:16:16',1),(1,10,3016723,'2012-12-13 04:16:16',1),(1,60,3016723,'2012-12-13 04:16:16',1),(1,50,3016723,'2012-12-13 04:16:16',1),(1,104,3016723,'2012-12-13 04:16:16',1),(1,206,3016723,'2012-12-13 04:16:16',1),(1,212,3016723,'2012-12-13 04:16:16',1),(1,81,3016723,'2012-12-13 04:16:16',1),(1,208,3016723,'2012-12-13 04:16:16',1),(1,78,3016723,'2012-12-13 04:16:16',1),(1,105,3016723,'2012-12-13 04:16:16',1),(1,91,3016723,'2012-12-13 04:16:16',1),(1,55,3016727,'2012-12-13 04:16:29',1),(1,130,3016727,'2012-12-13 04:16:29',1),(1,240,3016727,'2012-12-13 04:16:29',1),(1,102,3016727,'2012-12-13 04:16:29',1),(1,204,3016727,'2012-12-13 04:16:29',1),(1,10,3016727,'2012-12-13 04:16:29',1),(1,60,3016727,'2012-12-13 04:16:29',1),(1,50,3016727,'2012-12-13 04:16:29',1),(1,104,3016727,'2012-12-13 04:16:29',1),(1,206,3016727,'2012-12-13 04:16:29',1),(1,212,3016727,'2012-12-13 04:16:29',1),(1,81,3016727,'2012-12-13 04:16:29',1),(1,208,3016727,'2012-12-13 04:16:29',1),(1,78,3016727,'2012-12-13 04:16:29',1),(1,105,3016727,'2012-12-13 04:16:29',1),(1,91,3016727,'2012-12-13 04:16:29',1),(1,55,3016733,'2012-12-13 04:46:20',1),(1,130,3016733,'2012-12-13 04:46:20',1),(1,240,3016733,'2012-12-13 04:46:20',1),(1,102,3016733,'2012-12-13 04:46:20',1),(1,204,3016733,'2012-12-13 04:46:20',1),(1,10,3016733,'2012-12-13 04:46:20',1),(1,60,3016733,'2012-12-13 04:46:20',1),(1,50,3016733,'2012-12-13 04:46:20',1),(1,104,3016725,'2012-12-13 04:46:25',1),(1,206,3016725,'2012-12-13 04:46:25',1),(1,212,3016725,'2012-12-13 04:46:25',1),(1,81,3016725,'2012-12-13 04:46:25',1),(1,208,3016725,'2012-12-13 04:46:25',1),(1,78,3016725,'2012-12-13 04:46:25',1),(1,105,3016725,'2012-12-13 04:46:25',1),(1,91,3016725,'2012-12-13 04:46:25',1),(1,55,3016737,'2012-12-13 04:46:38',1),(1,130,3016737,'2012-12-13 04:46:38',1),(1,240,3016737,'2012-12-13 04:46:38',1),(1,102,3016737,'2012-12-13 04:46:38',1),(1,204,3016737,'2012-12-13 04:46:38',1),(1,10,3016737,'2012-12-13 04:46:38',1),(1,60,3016737,'2012-12-13 04:46:38',1),(1,50,3016737,'2012-12-13 04:46:38',1),(1,104,3016737,'2012-12-13 04:46:38',1),(1,206,3016737,'2012-12-13 04:46:38',1),(1,212,3016737,'2012-12-13 04:46:38',1),(1,81,3016737,'2012-12-13 04:46:38',1),(1,208,3016737,'2012-12-13 04:46:38',1),(1,78,3016737,'2012-12-13 04:46:38',1),(1,105,3016737,'2012-12-13 04:46:38',1),(1,91,3016737,'2012-12-13 04:46:38',1),(1,60,3016742,'2012-12-13 05:16:23',1),(1,50,3016742,'2012-12-13 05:16:23',1),(1,50,3016740,'2012-12-13 05:16:23',1),(1,104,3016745,'2012-12-13 05:16:30',1),(1,206,3016745,'2012-12-13 05:16:30',1),(1,212,3016726,'2012-12-13 05:16:30',1),(1,91,3016726,'2012-12-13 05:16:30',1),(1,6,3016728,'2012-12-13 05:16:35',1),(1,55,3016728,'2012-12-13 05:16:35',1),(1,130,3016728,'2012-12-13 05:16:35',1),(1,240,3016728,'2012-12-13 05:16:35',1),(1,240,3016743,'2012-12-13 05:16:38',1),(1,102,3016743,'2012-12-13 05:16:38',1),(1,6,3016741,'2012-12-13 05:16:46',1),(1,55,3016741,'2012-12-13 05:16:46',1),(1,130,3016741,'2012-12-13 05:16:46',1),(1,240,3016741,'2012-12-13 05:16:46',1),(1,102,3016741,'2012-12-13 05:16:46',1),(1,204,3016741,'2012-12-13 05:16:46',1),(1,10,3016741,'2012-12-13 05:16:46',1),(1,60,3016741,'2012-12-13 05:16:46',1),(1,104,3016734,'2012-12-13 05:16:46',1),(1,206,3016734,'2012-12-13 05:16:46',1),(1,212,3016734,'2012-12-13 05:16:46',1),(1,81,3016734,'2012-12-13 05:16:46',1),(1,208,3016734,'2012-12-13 05:16:46',1),(1,78,3016734,'2012-12-13 05:16:46',1),(1,105,3016734,'2012-12-13 05:16:46',1),(1,91,3016734,'2012-12-13 05:16:46',1),(1,102,3016747,'2012-12-13 05:16:46',1),(1,204,3016747,'2012-12-13 05:16:46',1),(1,10,3016747,'2012-12-13 05:16:46',1),(1,60,3016747,'2012-12-13 05:16:46',1),(1,50,3016736,'2012-12-13 05:16:54',1),(1,104,3016736,'2012-12-13 05:16:54',1),(1,206,3016736,'2012-12-13 05:16:54',1),(1,212,3016736,'2012-12-13 05:16:54',1),(1,50,3016731,'2012-12-13 05:17:03',1),(1,104,3016731,'2012-12-13 05:17:03',1),(1,206,3016731,'2012-12-13 05:17:03',1),(1,212,3016731,'2012-12-13 05:17:03',1),(1,81,3016731,'2012-12-13 05:17:03',1),(1,208,3016731,'2012-12-13 05:17:03',1),(1,78,3016731,'2012-12-13 05:17:03',1),(1,105,3016731,'2012-12-13 05:17:03',1),(1,240,3016732,'2012-12-13 05:17:03',1),(1,102,3016732,'2012-12-13 05:17:03',1),(1,204,3016732,'2012-12-13 05:17:03',1),(1,10,3016732,'2012-12-13 05:17:03',1),(1,50,3016724,'2012-12-13 05:17:08',1),(1,104,3016724,'2012-12-13 05:17:08',1),(1,206,3016724,'2012-12-13 05:17:08',1),(1,212,3016724,'2012-12-13 05:17:08',1),(1,81,3016724,'2012-12-13 05:17:08',1),(1,208,3016724,'2012-12-13 05:17:08',1),(1,78,3016724,'2012-12-13 05:17:08',1),(1,105,3016724,'2012-12-13 05:17:08',1),(1,104,3016746,'2012-12-13 05:46:41',1),(1,206,3016730,'2012-12-13 05:46:47',1),(1,204,3016738,'2012-12-13 05:46:54',1),(1,10,3016738,'2012-12-13 05:46:54',1),(1,81,3016735,'2012-12-13 05:46:56',1),(1,208,3016735,'2012-12-13 05:46:56',1),(1,78,3016735,'2012-12-13 05:46:56',1),(1,105,3016735,'2012-12-13 05:46:56',1),(1,212,3016739,'2012-12-13 05:46:56',1),(1,6,3016729,'2012-12-13 05:47:02',1),(1,4,3016729,'2012-12-13 05:47:02',1),(1,55,3016729,'2012-12-13 05:47:02',1),(1,130,3016729,'2012-12-13 05:47:02',1),(1,240,3016744,'2012-12-13 05:47:04',1),(1,102,3016744,'2012-12-13 05:47:04',1),(1,82,3016786,'2012-12-14 00:46:13',1),(1,22,3016787,'2012-12-14 00:46:13',NULL),(1,198,3016787,'2012-12-14 00:46:13',NULL),(1,71,3016789,'2012-12-14 00:46:13',1),(1,99,3016789,'2012-12-14 00:46:13',1),(1,22,3016789,'2012-12-14 00:46:13',1),(1,198,3016789,'2012-12-14 00:46:13',1),(1,99,3016788,'2012-12-14 00:46:13',1),(1,82,3016788,'2012-12-14 00:46:13',1),(1,127,3016791,'2012-12-14 00:46:22',1),(1,71,3016791,'2012-12-14 00:46:22',1),(1,99,3016791,'2012-12-14 00:46:22',1),(1,22,3016791,'2012-12-14 00:46:22',1),(1,127,3016790,'2012-12-14 00:46:23',1),(1,71,3016790,'2012-12-14 00:46:23',1),(1,99,3016790,'2012-12-14 00:46:23',1),(1,22,3016790,'2012-12-14 00:46:23',1),(1,127,3016792,'2012-12-14 00:46:23',1),(1,71,3016792,'2012-12-14 00:46:23',1),(1,99,3016792,'2012-12-14 00:46:23',1),(1,22,3016792,'2012-12-14 00:46:23',1),(1,22,3016798,'2012-12-14 00:46:37',1),(1,198,3016798,'2012-12-14 00:46:37',1),(1,82,3016801,'2012-12-14 00:46:37',1),(1,244,3016800,'2012-12-14 00:46:37',1),(1,82,3016800,'2012-12-14 00:46:37',1),(1,82,3016802,'2012-12-14 00:46:45',1),(1,244,3016803,'2012-12-14 00:46:45',1),(1,198,3016785,'2012-12-14 00:46:45',1),(1,244,3016785,'2012-12-14 00:46:45',1),(1,127,3016794,'2012-12-14 01:16:31',NULL),(1,71,3016794,'2012-12-14 01:16:31',NULL),(1,99,3016794,'2012-12-14 01:16:31',NULL),(1,22,3016794,'2012-12-14 01:16:31',NULL),(1,198,3016885,'2012-12-14 01:46:11',1),(1,82,3016885,'2012-12-14 01:46:11',1),(1,82,3016887,'2012-12-14 01:46:11',1),(1,244,3016888,'2012-12-14 01:46:11',1),(1,3,3016888,'2012-12-14 01:46:11',1),(1,82,3016884,'2012-12-14 01:46:19',1),(1,71,3016891,'2012-12-14 01:46:19',1),(1,198,3016891,'2012-12-14 01:46:19',1),(1,244,3016891,'2012-12-14 01:46:19',1),(1,3,3016891,'2012-12-14 01:46:19',1),(1,198,3016890,'2012-12-14 01:46:19',1),(1,244,3016890,'2012-12-14 01:46:19',1),(1,3,3016890,'2012-12-14 01:46:19',1),(1,82,3016890,'2012-12-14 01:46:19',1),(1,170,3016961,'2012-12-14 02:46:11',1),(1,225,3016961,'2012-12-14 02:46:11',1),(1,239,3016961,'2012-12-14 02:46:11',1),(1,45,3016961,'2012-12-14 02:46:11',1),(1,170,3016962,'2012-12-14 02:46:11',1),(1,225,3016962,'2012-12-14 02:46:11',1),(1,239,3016962,'2012-12-14 02:46:11',1),(1,45,3016962,'2012-12-14 02:46:11',1),(1,127,3016971,'2012-12-14 02:46:11',1),(1,75,3016971,'2012-12-14 02:46:11',1),(1,170,3016954,'2012-12-14 02:46:19',1),(1,225,3016954,'2012-12-14 02:46:19',1),(1,239,3016954,'2012-12-14 02:46:19',1),(1,45,3016954,'2012-12-14 02:46:19',1),(1,198,3016955,'2012-12-14 02:46:19',1),(1,6,3016955,'2012-12-14 02:46:19',1),(1,198,3016960,'2012-12-14 02:46:28',1),(1,6,3016960,'2012-12-14 02:46:28',1),(1,170,3016793,'2012-12-14 02:46:30',1),(1,225,3016793,'2012-12-14 02:46:30',1),(1,239,3016793,'2012-12-14 02:46:30',1),(1,127,3016793,'2012-12-14 02:46:30',1),(1,45,3016793,'2012-12-14 02:46:30',1),(1,75,3016793,'2012-12-14 02:46:30',1),(1,198,3016793,'2012-12-14 02:46:30',1),(1,6,3016793,'2012-12-14 02:46:30',1),(1,170,3016795,'2012-12-14 02:46:38',1),(1,225,3016795,'2012-12-14 02:46:38',1),(1,239,3016795,'2012-12-14 02:46:38',1),(1,127,3016795,'2012-12-14 02:46:38',1),(1,45,3016795,'2012-12-14 02:46:38',1),(1,75,3016795,'2012-12-14 02:46:38',1),(1,198,3016795,'2012-12-14 02:46:38',1),(1,6,3016795,'2012-12-14 02:46:38',1),(1,205,3016797,'2012-12-14 02:46:39',1),(1,170,3016797,'2012-12-14 02:46:39',1),(1,225,3016797,'2012-12-14 02:46:39',1),(1,239,3016797,'2012-12-14 02:46:39',1),(1,127,3016797,'2012-12-14 02:46:39',1),(1,45,3016797,'2012-12-14 02:46:39',1),(1,99,3016797,'2012-12-14 02:46:39',1),(1,75,3016797,'2012-12-14 02:46:39',1),(1,205,3016796,'2012-12-14 02:46:40',1),(1,170,3016796,'2012-12-14 02:46:40',1),(1,225,3016796,'2012-12-14 02:46:40',1),(1,239,3016796,'2012-12-14 02:46:40',1),(1,127,3016796,'2012-12-14 02:46:40',1),(1,45,3016796,'2012-12-14 02:46:40',1),(1,99,3016796,'2012-12-14 02:46:40',1),(1,75,3016796,'2012-12-14 02:46:40',1),(1,205,3016964,'2012-12-14 03:16:13',1),(1,170,3016964,'2012-12-14 03:16:13',1),(1,225,3016964,'2012-12-14 03:16:13',1),(1,239,3016964,'2012-12-14 03:16:13',1),(1,127,3016964,'2012-12-14 03:16:13',1),(1,45,3016964,'2012-12-14 03:16:13',1),(1,99,3016964,'2012-12-14 03:16:13',1),(1,75,3016964,'2012-12-14 03:16:13',1),(1,205,3016886,'2012-12-14 03:16:17',1),(1,170,3016886,'2012-12-14 03:16:17',1),(1,225,3016886,'2012-12-14 03:16:17',1),(1,239,3016886,'2012-12-14 03:16:17',1),(1,127,3016886,'2012-12-14 03:16:17',1),(1,45,3016886,'2012-12-14 03:16:17',1),(1,99,3016886,'2012-12-14 03:16:17',1),(1,75,3016886,'2012-12-14 03:16:17',1),(1,205,3016889,'2012-12-14 03:16:25',1),(1,170,3016889,'2012-12-14 03:16:25',1),(1,225,3016889,'2012-12-14 03:16:25',1),(1,239,3016889,'2012-12-14 03:16:25',1),(1,127,3016889,'2012-12-14 03:16:25',1),(1,45,3016889,'2012-12-14 03:16:25',1),(1,99,3016889,'2012-12-14 03:16:25',1),(1,75,3016889,'2012-12-14 03:16:25',1),(1,198,3016969,'2012-12-14 03:16:39',1),(1,6,3016969,'2012-12-14 03:16:39',1),(1,205,3016799,'2012-12-14 03:16:48',NULL),(1,170,3016799,'2012-12-14 03:16:48',NULL),(1,225,3016799,'2012-12-14 03:16:48',NULL),(1,239,3016799,'2012-12-14 03:16:48',NULL),(1,127,3016799,'2012-12-14 03:16:48',NULL),(1,45,3016799,'2012-12-14 03:16:48',NULL),(1,99,3016799,'2012-12-14 03:16:48',NULL),(1,75,3016799,'2012-12-14 03:16:48',NULL),(1,205,3017038,'2012-12-14 03:46:20',1),(1,170,3017038,'2012-12-14 03:46:20',1),(1,225,3017038,'2012-12-14 03:46:20',1),(1,239,3017038,'2012-12-14 03:46:20',1),(1,127,3017038,'2012-12-14 03:46:20',1),(1,71,3017038,'2012-12-14 03:46:20',1),(1,45,3017038,'2012-12-14 03:46:20',1),(1,99,3017038,'2012-12-14 03:46:20',1),(1,205,3016965,'2012-12-14 03:46:39',1),(1,170,3016965,'2012-12-14 03:46:39',1),(1,225,3016965,'2012-12-14 03:46:39',1),(1,239,3016965,'2012-12-14 03:46:39',1),(1,127,3016965,'2012-12-14 03:46:39',1),(1,45,3016965,'2012-12-14 03:46:39',1),(1,99,3016965,'2012-12-14 03:46:39',1),(1,75,3016965,'2012-12-14 03:46:39',1),(1,205,3016963,'2012-12-14 03:46:39',1),(1,170,3016963,'2012-12-14 03:46:39',1),(1,225,3016963,'2012-12-14 03:46:39',1),(1,239,3016963,'2012-12-14 03:46:39',1),(1,127,3016963,'2012-12-14 03:46:39',1),(1,45,3016963,'2012-12-14 03:46:39',1),(1,99,3016963,'2012-12-14 03:46:39',1),(1,75,3016963,'2012-12-14 03:46:39',1),(1,205,3016970,'2012-12-14 03:46:40',1),(1,170,3016970,'2012-12-14 03:46:40',1),(1,225,3016970,'2012-12-14 03:46:40',1),(1,239,3016970,'2012-12-14 03:46:40',1),(1,127,3016970,'2012-12-14 03:46:40',1),(1,45,3016970,'2012-12-14 03:46:40',1),(1,99,3016970,'2012-12-14 03:46:40',1),(1,75,3016970,'2012-12-14 03:46:40',1),(1,22,3017045,'2012-12-14 04:16:13',1),(1,156,3017045,'2012-12-14 04:16:13',1),(1,22,3017037,'2012-12-14 04:16:13',1),(1,4,3017037,'2012-12-14 04:16:13',1),(1,22,3017041,'2012-12-14 04:46:27',1),(1,156,3017041,'2012-12-14 04:46:27',1),(1,205,3017058,'2012-12-14 04:46:32',NULL),(1,170,3017058,'2012-12-14 04:46:32',NULL),(1,225,3017058,'2012-12-14 04:46:32',NULL),(1,239,3017058,'2012-12-14 04:46:32',NULL),(1,127,3017058,'2012-12-14 04:46:32',NULL),(1,71,3017058,'2012-12-14 04:46:32',NULL),(1,45,3017058,'2012-12-14 04:46:32',NULL),(1,99,3017058,'2012-12-14 04:46:32',NULL),(1,22,3017040,'2012-12-14 04:46:49',1),(1,156,3017040,'2012-12-14 04:46:49',1),(1,22,3017052,'2012-12-14 04:46:50',1),(1,156,3017052,'2012-12-14 04:46:50',1),(1,22,3017049,'2012-12-14 05:16:18',1),(1,156,3017049,'2012-12-14 05:16:18',1),(1,198,3017049,'2012-12-14 05:16:18',1),(1,6,3017049,'2012-12-14 05:16:18',1),(1,22,3016966,'2012-12-14 05:16:29',NULL),(1,156,3016966,'2012-12-14 05:16:29',NULL),(1,198,3016966,'2012-12-14 05:16:29',NULL),(1,4,3016966,'2012-12-14 05:16:29',NULL),(1,22,3016967,'2012-12-14 05:16:40',1),(1,156,3016967,'2012-12-14 05:16:40',1),(1,198,3016967,'2012-12-14 05:16:40',1),(1,4,3016967,'2012-12-14 05:16:40',1),(1,205,3017056,'2012-12-14 05:16:41',1),(1,170,3017056,'2012-12-14 05:16:41',1),(1,225,3017056,'2012-12-14 05:16:41',1),(1,239,3017056,'2012-12-14 05:16:41',1),(1,127,3017056,'2012-12-14 05:16:41',1),(1,71,3017056,'2012-12-14 05:16:41',1),(1,45,3017056,'2012-12-14 05:16:41',1),(1,99,3017056,'2012-12-14 05:16:41',1),(1,205,3017039,'2012-12-14 05:16:59',1),(1,170,3017039,'2012-12-14 05:16:59',1),(1,225,3017039,'2012-12-14 05:16:59',1),(1,239,3017039,'2012-12-14 05:16:59',1),(1,127,3017039,'2012-12-14 05:16:59',1),(1,71,3017039,'2012-12-14 05:16:59',1),(1,45,3017039,'2012-12-14 05:16:59',1),(1,99,3017039,'2012-12-14 05:16:59',1),(1,22,3017057,'2012-12-14 05:46:19',1),(1,156,3017057,'2012-12-14 05:46:19',1),(1,198,3017057,'2012-12-14 05:46:19',1),(1,6,3017057,'2012-12-14 05:46:19',1),(1,22,3017043,'2012-12-14 05:46:36',1),(1,156,3017043,'2012-12-14 05:46:36',1),(1,198,3017043,'2012-12-14 05:46:36',1),(1,6,3017043,'2012-12-14 05:46:36',1),(1,6,3017050,'2012-12-14 06:16:31',1),(1,22,3016958,'2012-12-14 06:16:41',1),(1,156,3016959,'2012-12-14 06:16:41',1),(1,22,3017048,'2012-12-14 06:16:41',1),(1,156,3017048,'2012-12-14 06:16:41',1),(1,198,3017048,'2012-12-14 06:16:41',1),(1,6,3017048,'2012-12-14 06:16:41',1),(1,71,3017055,'2012-12-14 06:16:46',1),(1,4,3017061,'2012-12-14 06:16:49',1),(1,127,3017054,'2012-12-14 06:16:56',1),(1,71,3017054,'2012-12-14 06:16:56',1),(1,22,3017044,'2012-12-14 06:16:57',1),(1,156,3017044,'2012-12-14 06:16:57',1),(1,198,3017044,'2012-12-14 06:16:57',1),(1,6,3017044,'2012-12-14 06:16:57',1),(1,198,3016968,'2012-12-14 06:16:59',1),(1,205,3017046,'2012-12-14 06:17:03',1),(1,170,3017046,'2012-12-14 06:17:03',1),(1,225,3017046,'2012-12-14 06:17:03',1),(1,239,3017046,'2012-12-14 06:17:03',1),(1,127,3017046,'2012-12-14 06:17:03',1),(1,71,3017046,'2012-12-14 06:17:03',1),(1,45,3017046,'2012-12-14 06:17:03',1),(1,99,3017046,'2012-12-14 06:17:03',1),(1,205,3017047,'2012-12-14 06:17:03',NULL),(1,170,3017047,'2012-12-14 06:17:03',NULL),(1,225,3017047,'2012-12-14 06:17:03',NULL),(1,239,3017047,'2012-12-14 06:17:03',NULL),(1,127,3017047,'2012-12-14 06:17:03',NULL),(1,71,3017047,'2012-12-14 06:17:03',NULL),(1,45,3017047,'2012-12-14 06:17:03',NULL),(1,99,3017047,'2012-12-14 06:17:03',NULL),(1,198,3017060,'2012-12-14 06:17:04',1),(1,205,3017059,'2012-12-14 06:17:11',1),(1,170,3017059,'2012-12-14 06:17:11',1),(1,225,3017059,'2012-12-14 06:17:11',1),(1,239,3017059,'2012-12-14 06:17:11',1),(1,170,3017051,'2012-12-14 08:16:39',1),(1,127,3017051,'2012-12-14 08:16:39',1),(1,99,3017051,'2012-12-14 08:16:39',1),(1,176,3017051,'2012-12-14 08:16:39',1),(1,251,3017051,'2012-12-14 08:16:39',1),(1,39,3017051,'2012-12-14 08:16:39',1),(1,156,3017051,'2012-12-14 08:16:39',1),(1,103,3017051,'2012-12-14 08:16:39',1),(1,229,3017051,'2012-12-14 08:16:39',1),(1,2,3017051,'2012-12-14 08:16:39',1),(1,230,3017051,'2012-12-14 08:16:39',1),(1,131,3017051,'2012-12-14 08:16:39',1),(1,217,3017051,'2012-12-14 08:16:39',1),(1,218,3017051,'2012-12-14 08:16:39',1),(1,219,3017051,'2012-12-14 08:16:39',1),(1,198,3017051,'2012-12-14 08:16:39',1),(1,99,3016957,'2012-12-14 08:16:41',1),(1,176,3016957,'2012-12-14 08:16:41',1),(1,251,3016957,'2012-12-14 08:16:41',1),(1,39,3016957,'2012-12-14 08:16:41',1),(1,156,3016957,'2012-12-14 08:16:41',1),(1,103,3016957,'2012-12-14 08:16:41',1),(1,229,3016957,'2012-12-14 08:16:41',1),(1,2,3016957,'2012-12-14 08:16:41',1),(1,230,3016957,'2012-12-14 08:16:41',1),(1,131,3016957,'2012-12-14 08:16:41',1),(1,217,3016957,'2012-12-14 08:16:41',1),(1,218,3016957,'2012-12-14 08:16:41',1),(1,219,3016957,'2012-12-14 08:16:41',1),(1,198,3016957,'2012-12-14 08:16:41',1),(1,6,3016957,'2012-12-14 08:16:41',1),(1,4,3016957,'2012-12-14 08:16:41',1),(1,127,3016956,'2012-12-14 08:17:08',1),(1,99,3016956,'2012-12-14 08:17:08',1),(1,176,3016956,'2012-12-14 08:17:08',1),(1,251,3016956,'2012-12-14 08:17:08',1),(1,39,3016956,'2012-12-14 08:17:08',1),(1,156,3016956,'2012-12-14 08:17:08',1),(1,103,3016956,'2012-12-14 08:17:08',1),(1,229,3016956,'2012-12-14 08:17:08',1),(1,2,3016956,'2012-12-14 08:17:08',1),(1,230,3016956,'2012-12-14 08:17:08',1),(1,131,3016956,'2012-12-14 08:17:08',1),(1,217,3016956,'2012-12-14 08:17:08',1),(1,218,3016956,'2012-12-14 08:17:08',1),(1,219,3016956,'2012-12-14 08:17:08',1),(1,198,3016956,'2012-12-14 08:17:08',1),(1,6,3016956,'2012-12-14 08:17:08',1),(1,170,3017042,'2012-12-14 08:46:48',1),(1,127,3017042,'2012-12-14 08:46:48',1),(1,99,3017042,'2012-12-14 08:46:48',1),(1,176,3017042,'2012-12-14 08:46:48',1),(1,251,3017042,'2012-12-14 08:46:48',1),(1,39,3017042,'2012-12-14 08:46:48',1),(1,156,3017042,'2012-12-14 08:46:48',1),(1,103,3017042,'2012-12-14 08:46:48',1),(1,229,3017042,'2012-12-14 08:46:48',1),(1,2,3017042,'2012-12-14 08:46:48',1),(1,230,3017042,'2012-12-14 08:46:48',1),(1,131,3017042,'2012-12-14 08:46:48',1),(1,217,3017042,'2012-12-14 08:46:48',1),(1,218,3017042,'2012-12-14 08:46:48',1),(1,219,3017042,'2012-12-14 08:46:48',1),(1,198,3017042,'2012-12-14 08:46:48',1),(1,170,3017053,'2012-12-14 08:46:59',1),(1,239,3017053,'2012-12-14 08:46:59',1),(1,127,3017053,'2012-12-14 08:46:59',1),(1,99,3017053,'2012-12-14 08:46:59',1),(1,176,3017053,'2012-12-14 08:46:59',1),(1,251,3017053,'2012-12-14 08:46:59',1),(1,39,3017053,'2012-12-14 08:46:59',1),(1,156,3017053,'2012-12-14 08:46:59',1),(1,103,3017053,'2012-12-14 08:46:59',1),(1,229,3017053,'2012-12-14 08:46:59',1),(1,2,3017053,'2012-12-14 08:46:59',1),(1,230,3017053,'2012-12-14 08:46:59',1),(1,131,3017053,'2012-12-14 08:46:59',1),(1,217,3017053,'2012-12-14 08:46:59',1),(1,218,3017053,'2012-12-14 08:46:59',1),(1,219,3017053,'2012-12-14 08:46:59',1),(1,116,3017113,'2012-12-15 00:46:14',NULL),(1,166,3017113,'2012-12-15 00:46:14',NULL),(1,49,3017116,'2012-12-15 00:46:14',1),(1,24,3017116,'2012-12-15 00:46:14',1),(1,116,3017116,'2012-12-15 00:46:14',1),(1,156,3017116,'2012-12-15 00:46:14',1),(1,49,3017115,'2012-12-15 00:46:14',1),(1,24,3017115,'2012-12-15 00:46:14',1),(1,116,3017115,'2012-12-15 00:46:14',1),(1,166,3017115,'2012-12-15 00:46:14',1),(1,24,3017117,'2012-12-15 00:46:14',1),(1,116,3017117,'2012-12-15 00:46:14',1),(1,156,3017117,'2012-12-15 00:46:14',1),(1,9,3017117,'2012-12-15 00:46:14',1),(1,49,3017118,'2012-12-15 00:46:22',1),(1,57,3017118,'2012-12-15 00:46:22',1),(1,234,3017118,'2012-12-15 00:46:22',1),(1,24,3017118,'2012-12-15 00:46:22',1),(1,20,3017119,'2012-12-15 00:46:22',1),(1,233,3017119,'2012-12-15 00:46:22',1),(1,51,3017119,'2012-12-15 00:46:22',1),(1,30,3017119,'2012-12-15 00:46:22',1),(1,116,3017119,'2012-12-15 00:46:22',1),(1,166,3017119,'2012-12-15 00:46:22',1),(1,64,3017119,'2012-12-15 00:46:22',1),(1,110,3017119,'2012-12-15 00:46:22',1),(1,49,3017120,'2012-12-15 00:46:22',NULL),(1,57,3017120,'2012-12-15 00:46:22',NULL),(1,234,3017120,'2012-12-15 00:46:22',NULL),(1,24,3017120,'2012-12-15 00:46:22',NULL),(1,20,3017121,'2012-12-15 00:46:22',1),(1,51,3017121,'2012-12-15 00:46:22',1),(1,116,3017121,'2012-12-15 00:46:22',1),(1,166,3017121,'2012-12-15 00:46:22',1),(1,64,3017121,'2012-12-15 00:46:22',1),(1,110,3017121,'2012-12-15 00:46:22',1),(1,103,3017121,'2012-12-15 00:46:22',1),(1,229,3017121,'2012-12-15 00:46:22',1),(1,64,3017124,'2012-12-15 00:46:30',1),(1,103,3017124,'2012-12-15 00:46:30',1),(1,49,3017122,'2012-12-15 00:46:30',1),(1,20,3017122,'2012-12-15 00:46:30',1),(1,233,3017122,'2012-12-15 00:46:30',1),(1,57,3017122,'2012-12-15 00:46:30',1),(1,234,3017122,'2012-12-15 00:46:30',1),(1,51,3017122,'2012-12-15 00:46:30',1),(1,30,3017122,'2012-12-15 00:46:30',1),(1,24,3017122,'2012-12-15 00:46:30',1),(1,20,3017126,'2012-12-15 00:46:37',1),(1,64,3017126,'2012-12-15 00:46:37',1),(1,110,3017127,'2012-12-15 00:46:38',1),(1,103,3017129,'2012-12-15 00:46:38',1),(1,229,3017112,'2012-12-15 00:46:38',1),(1,4,3017128,'2012-12-15 00:46:46',1),(1,110,3017114,'2012-12-15 00:46:46',1),(1,103,3017114,'2012-12-15 00:46:46',1),(1,20,3017131,'2012-12-15 00:46:46',1),(1,64,3017131,'2012-12-15 00:46:46',1),(1,49,3017123,'2012-12-15 01:16:32',1),(1,20,3017123,'2012-12-15 01:16:32',1),(1,238,3017123,'2012-12-15 01:16:32',1),(1,233,3017123,'2012-12-15 01:16:32',1),(1,57,3017123,'2012-12-15 01:16:32',1),(1,234,3017123,'2012-12-15 01:16:32',1),(1,51,3017123,'2012-12-15 01:16:32',1),(1,30,3017123,'2012-12-15 01:16:32',1),(1,49,3017125,'2012-12-15 01:16:32',NULL),(1,20,3017125,'2012-12-15 01:16:32',NULL),(1,238,3017125,'2012-12-15 01:16:32',NULL),(1,233,3017125,'2012-12-15 01:16:32',NULL),(1,57,3017125,'2012-12-15 01:16:32',NULL),(1,234,3017125,'2012-12-15 01:16:32',NULL),(1,51,3017125,'2012-12-15 01:16:32',NULL),(1,30,3017125,'2012-12-15 01:16:32',NULL),(1,57,3017203,'2012-12-15 01:46:12',1),(1,234,3017203,'2012-12-15 01:46:12',1),(1,20,3017204,'2012-12-15 01:46:12',1),(1,238,3017204,'2012-12-15 01:46:12',1),(1,158,3017204,'2012-12-15 01:46:12',1),(1,233,3017204,'2012-12-15 01:46:12',1),(1,57,3017204,'2012-12-15 01:46:12',1),(1,234,3017204,'2012-12-15 01:46:12',1),(1,51,3017204,'2012-12-15 01:46:12',1),(1,30,3017204,'2012-12-15 01:46:12',1),(1,251,3017205,'2012-12-15 01:46:12',1),(1,236,3017207,'2012-12-15 01:46:12',1),(1,251,3017207,'2012-12-15 01:46:12',1),(1,159,3017207,'2012-12-15 01:46:12',1),(1,6,3017207,'2012-12-15 01:46:12',1),(1,166,3017207,'2012-12-15 01:46:12',1),(1,156,3017207,'2012-12-15 01:46:12',1),(1,64,3017207,'2012-12-15 01:46:12',1),(1,110,3017207,'2012-12-15 01:46:12',1),(1,20,3017209,'2012-12-15 01:46:20',1),(1,238,3017209,'2012-12-15 01:46:20',1),(1,158,3017209,'2012-12-15 01:46:20',1),(1,233,3017209,'2012-12-15 01:46:20',1),(1,159,3017210,'2012-12-15 01:46:20',1),(1,51,3017206,'2012-12-15 01:46:20',1),(1,30,3017206,'2012-12-15 01:46:20',1),(1,76,3017208,'2012-12-15 01:46:20',1),(1,103,3017208,'2012-12-15 01:46:20',1),(1,9,3017208,'2012-12-15 01:46:20',1),(1,229,3017208,'2012-12-15 01:46:20',1),(1,49,3017273,'2012-12-15 02:46:11',1),(1,238,3017273,'2012-12-15 02:46:11',1),(1,233,3017273,'2012-12-15 02:46:11',1),(1,143,3017273,'2012-12-15 02:46:11',1),(1,57,3017273,'2012-12-15 02:46:11',1),(1,234,3017273,'2012-12-15 02:46:11',1),(1,51,3017273,'2012-12-15 02:46:11',1),(1,30,3017273,'2012-12-15 02:46:11',1),(1,248,3017273,'2012-12-15 02:46:11',1),(1,251,3017273,'2012-12-15 02:46:11',1),(1,159,3017273,'2012-12-15 02:46:11',1),(1,24,3017273,'2012-12-15 02:46:11',1),(1,6,3017273,'2012-12-15 02:46:11',1),(1,4,3017273,'2012-12-15 02:46:11',1),(1,116,3017273,'2012-12-15 02:46:11',1),(1,166,3017273,'2012-12-15 02:46:11',1),(1,49,3017271,'2012-12-15 02:46:11',1),(1,238,3017271,'2012-12-15 02:46:11',1),(1,14,3017280,'2012-12-15 02:46:19',1),(1,156,3017280,'2012-12-15 02:46:19',1),(1,64,3017280,'2012-12-15 02:46:19',1),(1,110,3017280,'2012-12-15 02:46:19',1),(1,76,3017280,'2012-12-15 02:46:19',1),(1,103,3017280,'2012-12-15 02:46:19',1),(1,9,3017280,'2012-12-15 02:46:19',1),(1,229,3017280,'2012-12-15 02:46:19',1),(1,233,3017279,'2012-12-15 02:46:19',1),(1,143,3017279,'2012-12-15 02:46:19',1),(1,20,3017283,'2012-12-15 02:46:19',1),(1,14,3017283,'2012-12-15 02:46:19',1),(1,156,3017283,'2012-12-15 02:46:19',1),(1,64,3017283,'2012-12-15 02:46:19',1),(1,110,3017283,'2012-12-15 02:46:19',1),(1,76,3017283,'2012-12-15 02:46:19',1),(1,103,3017283,'2012-12-15 02:46:19',1),(1,9,3017283,'2012-12-15 02:46:19',1),(1,20,3017284,'2012-12-15 02:46:19',1),(1,14,3017284,'2012-12-15 02:46:19',1),(1,156,3017284,'2012-12-15 02:46:19',1),(1,64,3017284,'2012-12-15 02:46:19',1),(1,110,3017284,'2012-12-15 02:46:19',1),(1,76,3017284,'2012-12-15 02:46:19',1),(1,103,3017284,'2012-12-15 02:46:19',1),(1,9,3017284,'2012-12-15 02:46:19',1),(1,49,3017281,'2012-12-15 02:46:27',1),(1,238,3017281,'2012-12-15 02:46:27',1),(1,233,3017281,'2012-12-15 02:46:27',1),(1,143,3017281,'2012-12-15 02:46:27',1),(1,248,3017276,'2012-12-15 02:46:27',1),(1,251,3017276,'2012-12-15 02:46:27',1),(1,49,3017287,'2012-12-15 02:46:27',1),(1,238,3017287,'2012-12-15 02:46:27',1),(1,233,3017287,'2012-12-15 02:46:27',1),(1,143,3017287,'2012-12-15 02:46:27',1),(1,57,3017287,'2012-12-15 02:46:27',1),(1,234,3017287,'2012-12-15 02:46:27',1),(1,51,3017287,'2012-12-15 02:46:27',1),(1,30,3017287,'2012-12-15 02:46:27',1),(1,248,3017287,'2012-12-15 02:46:27',1),(1,251,3017287,'2012-12-15 02:46:27',1),(1,159,3017287,'2012-12-15 02:46:27',1),(1,24,3017287,'2012-12-15 02:46:27',1),(1,6,3017287,'2012-12-15 02:46:27',1),(1,4,3017287,'2012-12-15 02:46:27',1),(1,116,3017287,'2012-12-15 02:46:27',1),(1,166,3017287,'2012-12-15 02:46:27',1),(1,20,3017282,'2012-12-15 02:46:27',1),(1,14,3017282,'2012-12-15 02:46:27',1),(1,156,3017282,'2012-12-15 02:46:27',1),(1,64,3017282,'2012-12-15 02:46:27',1),(1,110,3017282,'2012-12-15 02:46:27',1),(1,76,3017282,'2012-12-15 02:46:27',1),(1,103,3017282,'2012-12-15 02:46:27',1),(1,9,3017282,'2012-12-15 02:46:27',1),(1,248,3017277,'2012-12-15 02:46:35',1),(1,251,3017277,'2012-12-15 02:46:35',1),(1,159,3017277,'2012-12-15 02:46:35',1),(1,24,3017277,'2012-12-15 02:46:35',1),(1,57,3017288,'2012-12-15 02:46:35',1),(1,234,3017288,'2012-12-15 02:46:35',1),(1,51,3017288,'2012-12-15 02:46:35',1),(1,30,3017288,'2012-12-15 02:46:35',1),(1,159,3017285,'2012-12-15 02:46:35',1),(1,24,3017285,'2012-12-15 02:46:35',1),(1,143,3017286,'2012-12-15 02:46:35',1),(1,248,3017278,'2012-12-15 02:46:43',1),(1,251,3017278,'2012-12-15 02:46:43',1),(1,159,3017278,'2012-12-15 02:46:43',1),(1,24,3017278,'2012-12-15 02:46:43',1),(1,233,3017274,'2012-12-15 03:16:14',1),(1,248,3017275,'2012-12-15 03:16:14',1),(1,6,3017272,'2012-12-15 03:16:46',NULL),(1,4,3017272,'2012-12-15 03:16:46',NULL),(1,116,3017272,'2012-12-15 03:16:46',NULL),(1,166,3017272,'2012-12-15 03:16:46',NULL),(1,234,3017360,'2012-12-15 03:46:13',1),(1,51,3017360,'2012-12-15 03:46:13',1),(1,30,3017360,'2012-12-15 03:46:13',1),(1,236,3017360,'2012-12-15 03:46:13',1),(1,248,3017360,'2012-12-15 03:46:13',1),(1,251,3017360,'2012-12-15 03:46:13',1),(1,159,3017360,'2012-12-15 03:46:13',1),(1,24,3017360,'2012-12-15 03:46:13',1),(1,6,3017360,'2012-12-15 03:46:13',1),(1,4,3017360,'2012-12-15 03:46:13',1),(1,116,3017360,'2012-12-15 03:46:13',1),(1,166,3017360,'2012-12-15 03:46:13',1),(1,14,3017360,'2012-12-15 03:46:13',1),(1,156,3017360,'2012-12-15 03:46:13',1),(1,64,3017360,'2012-12-15 03:46:13',1),(1,110,3017360,'2012-12-15 03:46:13',1),(1,233,3017361,'2012-12-15 03:46:13',1),(1,76,3017361,'2012-12-15 03:46:13',1),(1,103,3017361,'2012-12-15 03:46:13',1),(1,9,3017361,'2012-12-15 03:46:13',1),(1,76,3017359,'2012-12-15 03:46:13',1),(1,103,3017359,'2012-12-15 03:46:13',1),(1,233,3017367,'2012-12-15 03:46:21',1),(1,76,3017367,'2012-12-15 03:46:21',1),(1,103,3017367,'2012-12-15 03:46:21',1),(1,9,3017367,'2012-12-15 03:46:21',1),(1,9,3017366,'2012-12-15 03:46:29',1),(1,233,3017362,'2012-12-15 03:46:29',1),(1,76,3017362,'2012-12-15 03:46:29',1),(1,103,3017362,'2012-12-15 03:46:29',1),(1,9,3017362,'2012-12-15 03:46:29',1),(1,76,3017381,'2012-12-15 04:16:23',1),(1,103,3017381,'2012-12-15 04:16:23',1),(1,6,3017364,'2012-12-15 04:16:25',1),(1,4,3017364,'2012-12-15 04:16:25',1),(1,116,3017364,'2012-12-15 04:16:25',1),(1,166,3017364,'2012-12-15 04:16:25',1),(1,14,3017364,'2012-12-15 04:16:25',1),(1,156,3017364,'2012-12-15 04:16:25',1),(1,64,3017364,'2012-12-15 04:16:25',1),(1,110,3017364,'2012-12-15 04:16:25',1),(1,233,3017379,'2012-12-15 04:16:27',1),(1,243,3017379,'2012-12-15 04:16:27',1),(1,234,3017371,'2012-12-15 04:16:31',1),(1,51,3017371,'2012-12-15 04:16:31',1),(1,30,3017371,'2012-12-15 04:16:31',1),(1,236,3017371,'2012-12-15 04:16:31',1),(1,248,3017371,'2012-12-15 04:16:31',1),(1,251,3017371,'2012-12-15 04:16:31',1),(1,159,3017371,'2012-12-15 04:16:31',1),(1,24,3017371,'2012-12-15 04:16:31',1),(1,6,3017371,'2012-12-15 04:16:31',1),(1,4,3017371,'2012-12-15 04:16:31',1),(1,116,3017371,'2012-12-15 04:16:31',1),(1,166,3017371,'2012-12-15 04:16:31',1),(1,14,3017371,'2012-12-15 04:16:31',1),(1,156,3017371,'2012-12-15 04:16:31',1),(1,64,3017371,'2012-12-15 04:16:31',1),(1,110,3017371,'2012-12-15 04:16:31',1),(1,233,3017382,'2012-12-15 04:16:31',1),(1,76,3017382,'2012-12-15 04:16:31',1),(1,103,3017382,'2012-12-15 04:16:31',1),(1,9,3017382,'2012-12-15 04:16:31',1),(1,233,3017368,'2012-12-15 04:16:39',1),(1,243,3017368,'2012-12-15 04:16:39',1),(1,76,3017368,'2012-12-15 04:16:39',1),(1,103,3017368,'2012-12-15 04:16:39',1),(1,9,3017369,'2012-12-15 04:16:39',1),(1,76,3017370,'2012-12-15 04:16:39',1),(1,103,3017370,'2012-12-15 04:16:39',1),(1,64,3017372,'2012-12-15 04:16:47',1),(1,110,3017372,'2012-12-15 04:16:47',1),(1,232,3017373,'2012-12-15 04:16:47',1),(1,233,3017376,'2012-12-15 04:16:57',1),(1,243,3017376,'2012-12-15 04:16:57',1),(1,76,3017376,'2012-12-15 04:16:57',1),(1,103,3017376,'2012-12-15 04:16:57',1),(1,234,3017377,'2012-12-15 04:16:59',1),(1,51,3017377,'2012-12-15 04:16:59',1),(1,30,3017377,'2012-12-15 04:16:59',1),(1,236,3017377,'2012-12-15 04:16:59',1),(1,248,3017377,'2012-12-15 04:16:59',1),(1,251,3017377,'2012-12-15 04:16:59',1),(1,159,3017377,'2012-12-15 04:16:59',1),(1,24,3017377,'2012-12-15 04:16:59',1),(1,6,3017377,'2012-12-15 04:16:59',1),(1,4,3017377,'2012-12-15 04:16:59',1),(1,116,3017377,'2012-12-15 04:16:59',1),(1,166,3017377,'2012-12-15 04:16:59',1),(1,14,3017377,'2012-12-15 04:16:59',1),(1,156,3017377,'2012-12-15 04:16:59',1),(1,64,3017377,'2012-12-15 04:16:59',1),(1,110,3017377,'2012-12-15 04:16:59',1),(1,234,3017380,'2012-12-15 04:46:17',1),(1,51,3017380,'2012-12-15 04:46:17',1),(1,30,3017380,'2012-12-15 04:46:17',1),(1,236,3017380,'2012-12-15 04:46:17',1),(1,248,3017380,'2012-12-15 04:46:17',1),(1,251,3017380,'2012-12-15 04:46:17',1),(1,159,3017380,'2012-12-15 04:46:17',1),(1,24,3017380,'2012-12-15 04:46:17',1),(1,233,3017365,'2012-12-15 04:46:42',1),(1,243,3017365,'2012-12-15 04:46:42',1),(1,6,3017365,'2012-12-15 04:46:42',1),(1,4,3017365,'2012-12-15 04:46:42',1),(1,116,3017365,'2012-12-15 04:46:42',1); +INSERT INTO `ak_on_nodes` VALUES (1,166,3017365,'2012-12-15 04:46:42',1),(1,14,3017365,'2012-12-15 04:46:42',1),(1,156,3017365,'2012-12-15 04:46:42',1),(1,238,3017378,'2012-12-15 04:46:49',1),(1,233,3017378,'2012-12-15 04:46:49',1),(1,243,3017378,'2012-12-15 04:46:49',1),(1,6,3017378,'2012-12-15 04:46:49',1),(1,4,3017378,'2012-12-15 04:46:49',1),(1,116,3017378,'2012-12-15 04:46:49',1),(1,166,3017378,'2012-12-15 04:46:49',1),(1,14,3017378,'2012-12-15 04:46:49',1),(1,64,3017375,'2012-12-15 04:46:58',1),(1,110,3017375,'2012-12-15 04:46:58',1),(1,20,3017363,'2012-12-15 04:47:06',1),(1,57,3017358,'2012-12-15 05:16:51',1),(1,234,3017358,'2012-12-15 05:16:51',1),(1,51,3017358,'2012-12-15 05:16:51',1),(1,30,3017358,'2012-12-15 05:16:51',1),(1,236,3017358,'2012-12-15 05:16:51',1),(1,248,3017358,'2012-12-15 05:16:51',1),(1,251,3017358,'2012-12-15 05:16:51',1),(1,159,3017358,'2012-12-15 05:16:51',1),(1,238,3017374,'2012-12-15 05:17:00',1),(1,233,3017374,'2012-12-15 05:17:00',1),(1,243,3017374,'2012-12-15 05:17:00',1),(1,24,3017374,'2012-12-15 05:17:00',1),(1,6,3017374,'2012-12-15 05:17:00',1),(1,4,3017374,'2012-12-15 05:17:00',1),(1,116,3017374,'2012-12-15 05:17:00',1),(1,166,3017374,'2012-12-15 05:17:00',1),(1,89,3017439,'2012-12-16 00:16:11',1),(1,82,3017439,'2012-12-16 00:16:11',1),(1,121,3017439,'2012-12-16 00:16:11',1),(1,123,3017439,'2012-12-16 00:16:11',1),(1,187,3017437,'2012-12-16 00:46:13',1),(1,197,3017437,'2012-12-16 00:46:13',1),(1,89,3017438,'2012-12-16 00:46:13',1),(1,82,3017438,'2012-12-16 00:46:13',1),(1,121,3017438,'2012-12-16 00:46:13',1),(1,123,3017438,'2012-12-16 00:46:13',1),(1,6,3017442,'2012-12-16 00:46:21',1),(1,244,3017442,'2012-12-16 00:46:21',1),(1,3,3017442,'2012-12-16 00:46:21',1),(1,89,3017442,'2012-12-16 00:46:21',1),(1,82,3017442,'2012-12-16 00:46:21',1),(1,121,3017442,'2012-12-16 00:46:21',1),(1,123,3017442,'2012-12-16 00:46:21',1),(1,187,3017442,'2012-12-16 00:46:21',1),(1,6,3017444,'2012-12-16 00:46:21',1),(1,244,3017444,'2012-12-16 00:46:21',1),(1,3,3017444,'2012-12-16 00:46:21',1),(1,89,3017444,'2012-12-16 00:46:21',1),(1,82,3017444,'2012-12-16 00:46:21',1),(1,121,3017444,'2012-12-16 00:46:21',1),(1,123,3017444,'2012-12-16 00:46:21',1),(1,187,3017444,'2012-12-16 00:46:21',1),(1,6,3017445,'2012-12-16 00:46:30',1),(1,244,3017445,'2012-12-16 00:46:30',1),(1,3,3017445,'2012-12-16 00:46:30',1),(1,89,3017445,'2012-12-16 00:46:30',1),(1,82,3017445,'2012-12-16 00:46:30',1),(1,121,3017445,'2012-12-16 00:46:30',1),(1,123,3017445,'2012-12-16 00:46:30',1),(1,187,3017445,'2012-12-16 00:46:30',1),(1,197,3017447,'2012-12-16 00:46:30',1),(1,39,3017447,'2012-12-16 00:46:30',1),(1,6,3017446,'2012-12-16 00:46:30',1),(1,244,3017446,'2012-12-16 00:46:30',1),(1,3,3017446,'2012-12-16 00:46:30',1),(1,89,3017446,'2012-12-16 00:46:30',1),(1,82,3017446,'2012-12-16 00:46:30',1),(1,121,3017446,'2012-12-16 00:46:30',1),(1,123,3017446,'2012-12-16 00:46:30',1),(1,187,3017446,'2012-12-16 00:46:30',1),(1,6,3017448,'2012-12-16 00:46:30',NULL),(1,244,3017448,'2012-12-16 00:46:30',NULL),(1,3,3017448,'2012-12-16 00:46:30',NULL),(1,89,3017448,'2012-12-16 00:46:30',NULL),(1,82,3017448,'2012-12-16 00:46:30',NULL),(1,121,3017448,'2012-12-16 00:46:30',NULL),(1,123,3017448,'2012-12-16 00:46:30',NULL),(1,187,3017448,'2012-12-16 00:46:30',NULL),(1,197,3017449,'2012-12-16 00:46:37',1),(1,29,3017449,'2012-12-16 00:46:37',1),(1,197,3017436,'2012-12-16 00:46:45',NULL),(1,29,3017436,'2012-12-16 00:46:45',NULL),(1,197,3017455,'2012-12-16 00:46:45',1),(1,29,3017455,'2012-12-16 00:46:45',1),(1,6,3017440,'2012-12-16 01:16:15',1),(1,244,3017440,'2012-12-16 01:16:15',1),(1,3,3017440,'2012-12-16 01:16:15',1),(1,89,3017440,'2012-12-16 01:16:15',1),(1,82,3017441,'2012-12-16 01:16:23',1),(1,121,3017441,'2012-12-16 01:16:23',1),(1,123,3017441,'2012-12-16 01:16:23',1),(1,187,3017441,'2012-12-16 01:16:23',1),(1,6,3017443,'2012-12-16 01:16:23',NULL),(1,244,3017443,'2012-12-16 01:16:23',NULL),(1,3,3017443,'2012-12-16 01:16:23',NULL),(1,89,3017443,'2012-12-16 01:16:23',NULL),(1,214,3017529,'2012-12-16 01:46:12',1),(1,6,3017529,'2012-12-16 01:46:12',1),(1,244,3017529,'2012-12-16 01:46:12',1),(1,3,3017529,'2012-12-16 01:46:12',1),(1,89,3017529,'2012-12-16 01:46:12',1),(1,82,3017529,'2012-12-16 01:46:12',1),(1,121,3017529,'2012-12-16 01:46:12',1),(1,123,3017529,'2012-12-16 01:46:12',1),(1,6,3017530,'2012-12-16 01:46:12',1),(1,244,3017530,'2012-12-16 01:46:12',1),(1,3,3017530,'2012-12-16 01:46:12',1),(1,89,3017530,'2012-12-16 01:46:12',1),(1,187,3017528,'2012-12-16 01:46:20',1),(1,197,3017528,'2012-12-16 01:46:20',1),(1,82,3017531,'2012-12-16 01:46:20',1),(1,121,3017531,'2012-12-16 01:46:20',1),(1,123,3017531,'2012-12-16 01:46:20',1),(1,187,3017531,'2012-12-16 01:46:20',1),(1,197,3017532,'2012-12-16 01:46:20',1),(1,29,3017532,'2012-12-16 01:46:20',1),(1,214,3017526,'2012-12-16 01:46:29',1),(1,6,3017526,'2012-12-16 01:46:29',1),(1,244,3017526,'2012-12-16 01:46:29',1),(1,3,3017526,'2012-12-16 01:46:29',1),(1,89,3017526,'2012-12-16 01:46:29',1),(1,82,3017526,'2012-12-16 01:46:29',1),(1,121,3017526,'2012-12-16 01:46:29',1),(1,123,3017526,'2012-12-16 01:46:29',1),(1,6,3017611,'2012-12-16 02:46:14',1),(1,89,3017611,'2012-12-16 02:46:14',1),(1,82,3017611,'2012-12-16 02:46:14',1),(1,121,3017611,'2012-12-16 02:46:14',1),(1,187,3017615,'2012-12-16 02:46:28',1),(1,29,3017615,'2012-12-16 02:46:28',1),(1,6,3017616,'2012-12-16 02:46:31',1),(1,244,3017616,'2012-12-16 02:46:31',1),(1,3,3017616,'2012-12-16 02:46:31',1),(1,89,3017616,'2012-12-16 02:46:31',1),(1,6,3017617,'2012-12-16 02:46:36',1),(1,244,3017617,'2012-12-16 02:46:36',1),(1,3,3017617,'2012-12-16 02:46:36',1),(1,89,3017617,'2012-12-16 02:46:36',1),(1,123,3017618,'2012-12-16 02:46:38',1),(1,187,3017618,'2012-12-16 02:46:38',1),(1,123,3017622,'2012-12-16 02:46:45',1),(1,187,3017622,'2012-12-16 02:46:45',1),(1,244,3017627,'2012-12-16 02:46:46',1),(1,3,3017627,'2012-12-16 02:46:46',1),(1,6,3017621,'2012-12-16 02:46:46',1),(1,244,3017621,'2012-12-16 02:46:46',1),(1,3,3017621,'2012-12-16 02:46:46',1),(1,89,3017621,'2012-12-16 02:46:46',1),(1,195,3017620,'2012-12-16 04:46:20',1),(1,165,3017620,'2012-12-16 04:46:20',1),(1,177,3017620,'2012-12-16 04:46:20',1),(1,72,3017620,'2012-12-16 04:46:20',1),(1,37,3017620,'2012-12-16 04:46:20',1),(1,29,3017620,'2012-12-16 04:46:20',1),(1,145,3017620,'2012-12-16 04:46:20',1),(1,6,3017620,'2012-12-16 04:46:20',1),(1,195,3017709,'2012-12-16 05:16:19',1),(1,165,3017709,'2012-12-16 05:16:19',1),(1,177,3017709,'2012-12-16 05:16:19',1),(1,72,3017709,'2012-12-16 05:16:19',1),(1,37,3017709,'2012-12-16 05:16:19',1),(1,29,3017709,'2012-12-16 05:16:19',1),(1,145,3017709,'2012-12-16 05:16:19',1),(1,6,3017709,'2012-12-16 05:16:19',1),(1,195,3017624,'2012-12-16 05:16:37',1),(1,165,3017624,'2012-12-16 05:16:37',1),(1,177,3017624,'2012-12-16 05:16:37',1),(1,72,3017624,'2012-12-16 05:16:37',1),(1,37,3017624,'2012-12-16 05:16:37',1),(1,29,3017624,'2012-12-16 05:16:37',1),(1,145,3017624,'2012-12-16 05:16:37',1),(1,6,3017624,'2012-12-16 05:16:37',1),(1,195,3017619,'2012-12-16 05:16:50',1),(1,165,3017619,'2012-12-16 05:16:50',1),(1,177,3017619,'2012-12-16 05:16:50',1),(1,72,3017619,'2012-12-16 05:16:50',1),(1,37,3017619,'2012-12-16 05:16:50',1),(1,29,3017619,'2012-12-16 05:16:50',1),(1,145,3017619,'2012-12-16 05:16:50',1),(1,6,3017619,'2012-12-16 05:16:50',1),(1,195,3017623,'2012-12-16 05:17:08',1),(1,165,3017623,'2012-12-16 05:17:08',1),(1,177,3017623,'2012-12-16 05:17:08',1),(1,72,3017623,'2012-12-16 05:17:08',1),(1,37,3017623,'2012-12-16 05:17:08',1),(1,29,3017623,'2012-12-16 05:17:08',1),(1,145,3017623,'2012-12-16 05:17:08',1),(1,6,3017623,'2012-12-16 05:17:08',1),(1,195,3017710,'2012-12-16 05:46:19',1),(1,165,3017710,'2012-12-16 05:46:19',1),(1,177,3017710,'2012-12-16 05:46:19',1),(1,72,3017710,'2012-12-16 05:46:19',1),(1,37,3017710,'2012-12-16 05:46:19',1),(1,29,3017710,'2012-12-16 05:46:19',1),(1,145,3017710,'2012-12-16 05:46:19',1),(1,6,3017710,'2012-12-16 05:46:19',1),(1,195,3017714,'2012-12-16 05:46:44',1),(1,165,3017714,'2012-12-16 05:46:44',1),(1,177,3017714,'2012-12-16 05:46:44',1),(1,72,3017714,'2012-12-16 05:46:44',1),(1,37,3017714,'2012-12-16 05:46:44',1),(1,29,3017714,'2012-12-16 05:46:44',1),(1,145,3017714,'2012-12-16 05:46:44',1),(1,6,3017714,'2012-12-16 05:46:44',1),(1,195,3017718,'2012-12-16 06:17:02',1),(1,165,3017718,'2012-12-16 06:17:02',1),(1,177,3017718,'2012-12-16 06:17:02',1),(1,72,3017718,'2012-12-16 06:17:02',1),(1,37,3017718,'2012-12-16 06:17:02',1),(1,29,3017718,'2012-12-16 06:17:02',1),(1,145,3017718,'2012-12-16 06:17:02',1),(1,6,3017718,'2012-12-16 06:17:02',1),(1,195,3017717,'2012-12-16 06:17:05',1),(1,165,3017717,'2012-12-16 06:17:05',1),(1,177,3017717,'2012-12-16 06:17:05',1),(1,72,3017717,'2012-12-16 06:17:05',1),(1,37,3017717,'2012-12-16 06:17:05',1),(1,29,3017717,'2012-12-16 06:17:05',1),(1,145,3017717,'2012-12-16 06:17:05',1),(1,6,3017717,'2012-12-16 06:17:05',1),(1,195,3017704,'2012-12-16 06:47:22',1),(1,165,3017704,'2012-12-16 06:47:22',1),(1,177,3017704,'2012-12-16 06:47:22',1),(1,72,3017704,'2012-12-16 06:47:22',1),(1,37,3017704,'2012-12-16 06:47:22',1),(1,29,3017704,'2012-12-16 06:47:22',1),(1,145,3017704,'2012-12-16 06:47:22',1),(1,6,3017704,'2012-12-16 06:47:22',1),(1,37,3017720,'2012-12-16 07:16:25',1),(1,29,3017720,'2012-12-16 07:16:25',1),(1,145,3017720,'2012-12-16 07:16:25',1),(1,6,3017720,'2012-12-16 07:16:25',1),(1,37,3017706,'2012-12-16 07:16:39',1),(1,29,3017706,'2012-12-16 07:16:39',1),(1,145,3017706,'2012-12-16 07:16:39',1),(1,6,3017706,'2012-12-16 07:16:39',1),(1,37,3017723,'2012-12-16 07:16:42',1),(1,29,3017723,'2012-12-16 07:16:42',1),(1,145,3017723,'2012-12-16 07:16:42',1),(1,6,3017723,'2012-12-16 07:16:42',1),(1,37,3017711,'2012-12-16 07:16:47',1),(1,29,3017711,'2012-12-16 07:16:47',1),(1,145,3017711,'2012-12-16 07:16:47',1),(1,6,3017711,'2012-12-16 07:16:47',1),(1,145,3017719,'2012-12-16 07:46:28',1),(1,6,3017719,'2012-12-16 07:46:28',1),(1,177,3017702,'2012-12-16 07:46:35',1),(1,72,3017702,'2012-12-16 07:46:35',1),(1,195,3017713,'2012-12-16 07:46:35',1),(1,165,3017713,'2012-12-16 07:46:35',1),(1,37,3017722,'2012-12-16 07:46:47',1),(1,29,3017722,'2012-12-16 07:46:47',1),(1,37,3017715,'2012-12-16 07:46:55',1),(1,29,3017715,'2012-12-16 07:46:55',1),(1,37,3017708,'2012-12-16 07:47:03',1),(1,29,3017708,'2012-12-16 07:47:03',1),(1,145,3017708,'2012-12-16 07:47:03',1),(1,6,3017708,'2012-12-16 07:47:03',1),(1,195,3017705,'2012-12-16 07:47:04',1),(1,165,3017705,'2012-12-16 07:47:04',1),(1,177,3017705,'2012-12-16 07:47:04',1),(1,72,3017705,'2012-12-16 07:47:04',1),(1,177,3017701,'2012-12-16 07:47:11',1),(1,72,3017701,'2012-12-16 07:47:11',1),(1,195,3017610,'2012-12-16 07:47:20',NULL),(1,165,3017610,'2012-12-16 07:47:20',NULL),(1,177,3017610,'2012-12-16 07:47:20',NULL),(1,72,3017610,'2012-12-16 07:47:20',NULL),(1,212,3017451,'2012-12-16 13:17:39',1),(1,212,3017452,'2012-12-16 13:17:40',1),(1,59,3017527,'2012-12-16 13:47:04',1),(1,59,3017613,'2012-12-16 13:47:05',1),(1,209,3017716,'2012-12-16 13:47:14',1),(1,171,3017626,'2012-12-16 13:47:17',1),(1,38,3017712,'2012-12-16 13:47:20',1),(1,103,3017725,'2012-12-16 13:47:24',1),(1,87,3017533,'2012-12-16 13:47:28',1),(1,87,3017450,'2012-12-16 13:47:39',1),(1,87,3017614,'2012-12-16 13:47:47',1),(1,87,3017453,'2012-12-16 13:47:50',1),(1,87,3017707,'2012-12-16 14:17:38',1),(1,52,3017612,'2012-12-16 20:47:26',1),(1,209,3017612,'2012-12-16 20:47:26',1),(1,78,3017612,'2012-12-16 20:47:26',1),(1,105,3017612,'2012-12-16 20:47:26',1),(1,228,3017612,'2012-12-16 20:47:26',1),(1,91,3017612,'2012-12-16 20:47:26',1),(1,60,3017612,'2012-12-16 20:47:26',1),(1,5,3017612,'2012-12-16 20:47:26',1),(1,241,3017612,'2012-12-16 20:47:26',1),(1,206,3017612,'2012-12-16 20:47:26',1),(1,212,3017612,'2012-12-16 20:47:26',1),(1,81,3017612,'2012-12-16 20:47:26',1),(1,177,3017612,'2012-12-16 20:47:26',1),(1,171,3017612,'2012-12-16 20:47:26',1),(1,63,3017612,'2012-12-16 20:47:26',1),(1,190,3017612,'2012-12-16 20:47:26',1),(1,52,3017703,'2012-12-16 20:47:33',1),(1,209,3017703,'2012-12-16 20:47:33',1),(1,78,3017703,'2012-12-16 20:47:33',1),(1,105,3017703,'2012-12-16 20:47:33',1),(1,228,3017703,'2012-12-16 20:47:33',1),(1,91,3017703,'2012-12-16 20:47:33',1),(1,60,3017703,'2012-12-16 20:47:33',1),(1,5,3017703,'2012-12-16 20:47:33',1),(1,229,3017703,'2012-12-16 20:47:33',1),(1,241,3017703,'2012-12-16 20:47:33',1),(1,206,3017703,'2012-12-16 20:47:33',1),(1,212,3017703,'2012-12-16 20:47:33',1),(1,81,3017703,'2012-12-16 20:47:33',1),(1,177,3017703,'2012-12-16 20:47:33',1),(1,171,3017703,'2012-12-16 20:47:33',1),(1,63,3017703,'2012-12-16 20:47:33',1),(1,52,3017625,'2012-12-16 20:47:40',1),(1,209,3017625,'2012-12-16 20:47:40',1),(1,78,3017625,'2012-12-16 20:47:40',1),(1,105,3017625,'2012-12-16 20:47:40',1),(1,228,3017625,'2012-12-16 20:47:40',1),(1,91,3017625,'2012-12-16 20:47:40',1),(1,60,3017625,'2012-12-16 20:47:40',1),(1,5,3017625,'2012-12-16 20:47:40',1),(1,229,3017625,'2012-12-16 20:47:40',1),(1,241,3017625,'2012-12-16 20:47:40',1),(1,206,3017625,'2012-12-16 20:47:40',1),(1,212,3017625,'2012-12-16 20:47:40',1),(1,81,3017625,'2012-12-16 20:47:40',1),(1,177,3017625,'2012-12-16 20:47:40',1),(1,171,3017625,'2012-12-16 20:47:40',1),(1,63,3017625,'2012-12-16 20:47:40',1),(1,52,3017724,'2012-12-16 21:18:07',1),(1,209,3017724,'2012-12-16 21:18:07',1),(1,78,3017724,'2012-12-16 21:18:07',1),(1,105,3017724,'2012-12-16 21:18:07',1),(1,228,3017724,'2012-12-16 21:18:07',1),(1,91,3017724,'2012-12-16 21:18:07',1),(1,60,3017724,'2012-12-16 21:18:07',1),(1,5,3017724,'2012-12-16 21:18:07',1),(1,229,3017724,'2012-12-16 21:18:07',1),(1,241,3017724,'2012-12-16 21:18:07',1),(1,206,3017724,'2012-12-16 21:18:07',1),(1,212,3017724,'2012-12-16 21:18:07',1),(1,81,3017724,'2012-12-16 21:18:07',1),(1,177,3017724,'2012-12-16 21:18:07',1),(1,171,3017724,'2012-12-16 21:18:07',1),(1,63,3017724,'2012-12-16 21:18:07',1),(1,81,3017721,'2012-12-16 21:48:07',1),(1,52,3017721,'2012-12-16 21:48:07',1),(1,209,3017721,'2012-12-16 21:48:07',1),(1,78,3017721,'2012-12-16 21:48:07',1),(1,105,3017721,'2012-12-16 21:48:07',1),(1,228,3017721,'2012-12-16 21:48:07',1),(1,91,3017721,'2012-12-16 21:48:07',1),(1,204,3017721,'2012-12-16 21:48:07',1),(1,60,3017721,'2012-12-16 21:48:07',1),(1,5,3017721,'2012-12-16 21:48:07',1),(1,229,3017721,'2012-12-16 21:48:07',1),(1,241,3017721,'2012-12-16 21:48:07',1),(1,206,3017721,'2012-12-16 21:48:07',1),(1,49,3017721,'2012-12-16 21:48:07',1),(1,212,3017721,'2012-12-16 21:48:07',1),(1,177,3017721,'2012-12-16 21:48:07',1),(1,212,3017764,'2012-12-17 00:46:12',1),(1,62,3017764,'2012-12-17 00:46:12',1),(1,128,3017764,'2012-12-17 00:46:12',1),(1,63,3017764,'2012-12-17 00:46:12',1),(1,68,3017765,'2012-12-17 00:46:12',1),(1,212,3017765,'2012-12-17 00:46:12',1),(1,62,3017765,'2012-12-17 00:46:12',1),(1,128,3017765,'2012-12-17 00:46:12',1),(1,62,3017766,'2012-12-17 00:46:12',1),(1,128,3017766,'2012-12-17 00:46:12',1),(1,63,3017766,'2012-12-17 00:46:12',1),(1,190,3017766,'2012-12-17 00:46:12',1),(1,62,3017767,'2012-12-17 00:46:12',1),(1,128,3017767,'2012-12-17 00:46:12',1),(1,63,3017767,'2012-12-17 00:46:12',1),(1,190,3017767,'2012-12-17 00:46:12',1),(1,81,3017768,'2012-12-17 00:46:20',1),(1,5,3017768,'2012-12-17 00:46:20',1),(1,229,3017768,'2012-12-17 00:46:20',1),(1,241,3017768,'2012-12-17 00:46:20',1),(1,206,3017768,'2012-12-17 00:46:20',1),(1,49,3017768,'2012-12-17 00:46:20',1),(1,207,3017768,'2012-12-17 00:46:20',1),(1,68,3017768,'2012-12-17 00:46:20',1),(1,5,3017770,'2012-12-17 00:46:20',1),(1,229,3017770,'2012-12-17 00:46:20',1),(1,241,3017770,'2012-12-17 00:46:20',1),(1,206,3017770,'2012-12-17 00:46:20',1),(1,49,3017770,'2012-12-17 00:46:20',1),(1,207,3017770,'2012-12-17 00:46:20',1),(1,68,3017770,'2012-12-17 00:46:20',1),(1,212,3017770,'2012-12-17 00:46:20',1),(1,68,3017769,'2012-12-17 00:46:20',NULL),(1,212,3017769,'2012-12-17 00:46:20',NULL),(1,62,3017769,'2012-12-17 00:46:20',NULL),(1,128,3017769,'2012-12-17 00:46:20',NULL),(1,5,3017771,'2012-12-17 00:46:20',1),(1,229,3017771,'2012-12-17 00:46:20',1),(1,241,3017771,'2012-12-17 00:46:20',1),(1,206,3017771,'2012-12-17 00:46:20',1),(1,49,3017771,'2012-12-17 00:46:20',1),(1,207,3017771,'2012-12-17 00:46:20',1),(1,68,3017771,'2012-12-17 00:46:20',1),(1,212,3017771,'2012-12-17 00:46:20',1),(1,81,3017774,'2012-12-17 00:46:28',NULL),(1,78,3017774,'2012-12-17 00:46:28',NULL),(1,5,3017774,'2012-12-17 00:46:28',NULL),(1,229,3017774,'2012-12-17 00:46:28',NULL),(1,241,3017774,'2012-12-17 00:46:28',NULL),(1,206,3017774,'2012-12-17 00:46:28',NULL),(1,49,3017774,'2012-12-17 00:46:28',NULL),(1,207,3017774,'2012-12-17 00:46:28',NULL),(1,87,3017773,'2012-12-17 00:46:28',1),(1,142,3017773,'2012-12-17 00:46:28',1),(1,81,3017772,'2012-12-17 00:46:28',1),(1,78,3017772,'2012-12-17 00:46:28',1),(1,5,3017772,'2012-12-17 00:46:28',1),(1,229,3017772,'2012-12-17 00:46:28',1),(1,241,3017772,'2012-12-17 00:46:28',1),(1,206,3017772,'2012-12-17 00:46:28',1),(1,49,3017772,'2012-12-17 00:46:28',1),(1,207,3017772,'2012-12-17 00:46:28',1),(1,87,3017775,'2012-12-17 00:46:28',1),(1,142,3017775,'2012-12-17 00:46:28',1),(1,190,3017780,'2012-12-17 00:46:44',NULL),(1,87,3017780,'2012-12-17 00:46:44',NULL),(1,63,3017763,'2012-12-17 00:46:44',1),(1,142,3017763,'2012-12-17 00:46:44',1),(1,63,3017782,'2012-12-17 00:46:48',1),(1,142,3017782,'2012-12-17 00:46:48',1),(1,87,3017776,'2012-12-17 01:16:38',1),(1,190,3017777,'2012-12-17 01:16:38',1),(1,142,3017778,'2012-12-17 01:16:38',1),(1,78,3017779,'2012-12-17 01:16:43',1),(1,10,3017870,'2012-12-17 01:46:11',1),(1,5,3017870,'2012-12-17 01:46:11',1),(1,212,3017872,'2012-12-17 01:46:11',NULL),(1,81,3017872,'2012-12-17 01:46:11',NULL),(1,209,3017872,'2012-12-17 01:46:11',NULL),(1,214,3017872,'2012-12-17 01:46:11',NULL),(1,10,3017872,'2012-12-17 01:46:11',NULL),(1,5,3017872,'2012-12-17 01:46:11',NULL),(1,229,3017872,'2012-12-17 01:46:11',NULL),(1,201,3017872,'2012-12-17 01:46:11',NULL),(1,63,3017868,'2012-12-17 01:46:11',1),(1,190,3017868,'2012-12-17 01:46:11',1),(1,87,3017868,'2012-12-17 01:46:11',1),(1,185,3017868,'2012-12-17 01:46:11',1),(1,229,3017866,'2012-12-17 01:46:11',1),(1,201,3017866,'2012-12-17 01:46:11',1),(1,49,3017865,'2012-12-17 01:46:19',1),(1,212,3017869,'2012-12-17 01:46:19',1),(1,81,3017869,'2012-12-17 01:46:19',1),(1,209,3017869,'2012-12-17 01:46:19',1),(1,214,3017869,'2012-12-17 01:46:19',1),(1,207,3017871,'2012-12-17 01:46:19',1),(1,241,3017867,'2012-12-17 01:46:19',1),(1,206,3017867,'2012-12-17 01:46:19',1),(1,49,3017867,'2012-12-17 01:46:19',1),(1,207,3017867,'2012-12-17 01:46:19',1),(1,68,3017867,'2012-12-17 01:46:19',1),(1,29,3017867,'2012-12-17 01:46:19',1),(1,62,3017867,'2012-12-17 01:46:19',1),(1,128,3017867,'2012-12-17 01:46:19',1),(1,81,3017940,'2012-12-17 02:46:12',1),(1,105,3017940,'2012-12-17 02:46:12',1),(1,10,3017940,'2012-12-17 02:46:12',1),(1,5,3017940,'2012-12-17 02:46:12',1),(1,229,3017940,'2012-12-17 02:46:12',1),(1,201,3017940,'2012-12-17 02:46:12',1),(1,241,3017940,'2012-12-17 02:46:12',1),(1,206,3017940,'2012-12-17 02:46:12',1),(1,49,3017941,'2012-12-17 02:46:12',1),(1,177,3017941,'2012-12-17 02:46:12',1),(1,29,3017941,'2012-12-17 02:46:12',1),(1,62,3017941,'2012-12-17 02:46:12',1),(1,142,3017931,'2012-12-17 02:46:14',1),(1,65,3017945,'2012-12-17 02:46:19',1),(1,185,3017945,'2012-12-17 02:46:19',1),(1,81,3017946,'2012-12-17 02:46:19',1),(1,10,3017946,'2012-12-17 02:46:19',1),(1,5,3017946,'2012-12-17 02:46:19',1),(1,229,3017946,'2012-12-17 02:46:19',1),(1,201,3017946,'2012-12-17 02:46:19',1),(1,241,3017946,'2012-12-17 02:46:19',1),(1,206,3017946,'2012-12-17 02:46:19',1),(1,49,3017946,'2012-12-17 02:46:19',1),(1,177,3017946,'2012-12-17 02:46:19',1),(1,29,3017946,'2012-12-17 02:46:19',1),(1,62,3017946,'2012-12-17 02:46:19',1),(1,128,3017946,'2012-12-17 02:46:19',1),(1,63,3017946,'2012-12-17 02:46:19',1),(1,190,3017946,'2012-12-17 02:46:19',1),(1,87,3017946,'2012-12-17 02:46:19',1),(1,250,3017946,'2012-12-17 02:46:19',1),(1,250,3017930,'2012-12-17 02:46:19',1),(1,128,3017933,'2012-12-17 02:46:27',1),(1,63,3017933,'2012-12-17 02:46:27',1),(1,190,3017933,'2012-12-17 02:46:27',1),(1,87,3017933,'2012-12-17 02:46:27',1),(1,49,3017936,'2012-12-17 02:46:27',1),(1,177,3017936,'2012-12-17 02:46:27',1),(1,29,3017936,'2012-12-17 02:46:27',1),(1,62,3017936,'2012-12-17 02:46:27',1),(1,128,3017936,'2012-12-17 02:46:27',1),(1,63,3017936,'2012-12-17 02:46:27',1),(1,190,3017936,'2012-12-17 02:46:27',1),(1,87,3017936,'2012-12-17 02:46:27',1),(1,250,3017944,'2012-12-17 02:46:27',1),(1,49,3017942,'2012-12-17 02:46:36',1),(1,177,3017942,'2012-12-17 02:46:36',1),(1,29,3017942,'2012-12-17 02:46:36',1),(1,62,3017942,'2012-12-17 02:46:36',1),(1,128,3017942,'2012-12-17 02:46:36',1),(1,63,3017942,'2012-12-17 02:46:36',1),(1,190,3017942,'2012-12-17 02:46:36',1),(1,87,3017942,'2012-12-17 02:46:36',1),(1,81,3017938,'2012-12-17 02:46:39',1),(1,105,3017938,'2012-12-17 02:46:39',1),(1,10,3017938,'2012-12-17 02:46:39',1),(1,5,3017938,'2012-12-17 02:46:39',1),(1,229,3017938,'2012-12-17 02:46:39',1),(1,201,3017938,'2012-12-17 02:46:39',1),(1,241,3017938,'2012-12-17 02:46:39',1),(1,206,3017938,'2012-12-17 02:46:39',1),(1,49,3017938,'2012-12-17 02:46:39',1),(1,177,3017938,'2012-12-17 02:46:39',1),(1,29,3017938,'2012-12-17 02:46:39',1),(1,62,3017938,'2012-12-17 02:46:39',1),(1,128,3017938,'2012-12-17 02:46:39',1),(1,63,3017938,'2012-12-17 02:46:39',1),(1,190,3017938,'2012-12-17 02:46:39',1),(1,87,3017938,'2012-12-17 02:46:39',1),(1,49,3017943,'2012-12-17 02:46:42',1),(1,177,3017943,'2012-12-17 02:46:42',1),(1,29,3017943,'2012-12-17 02:46:42',1),(1,62,3017943,'2012-12-17 02:46:42',1),(1,128,3017943,'2012-12-17 02:46:42',1),(1,63,3017943,'2012-12-17 02:46:42',1),(1,190,3017943,'2012-12-17 02:46:42',1),(1,87,3017943,'2012-12-17 02:46:42',1),(1,90,3017939,'2012-12-17 03:16:13',NULL),(1,65,3017939,'2012-12-17 03:16:13',NULL),(1,185,3017939,'2012-12-17 03:16:13',NULL),(1,142,3017939,'2012-12-17 03:16:13',NULL),(1,81,3017932,'2012-12-17 03:16:25',1),(1,105,3017932,'2012-12-17 03:16:25',1),(1,128,3017934,'2012-12-17 03:16:38',1),(1,63,3017934,'2012-12-17 03:16:38',1),(1,190,3017934,'2012-12-17 03:16:38',1),(1,87,3017934,'2012-12-17 03:16:38',1),(1,10,3017935,'2012-12-17 03:16:41',1),(1,5,3017935,'2012-12-17 03:16:41',1),(1,229,3017937,'2012-12-17 03:16:41',1),(1,201,3017937,'2012-12-17 03:16:41',1),(1,49,3017929,'2012-12-17 03:16:53',1),(1,177,3017929,'2012-12-17 03:16:53',1),(1,29,3017929,'2012-12-17 03:16:53',1),(1,62,3017929,'2012-12-17 03:16:53',1),(1,185,3018034,'2012-12-17 03:46:13',1),(1,142,3018034,'2012-12-17 03:46:13',1),(1,195,3018040,'2012-12-17 03:46:13',1),(1,165,3018040,'2012-12-17 03:46:13',1),(1,72,3018040,'2012-12-17 03:46:13',1),(1,106,3018040,'2012-12-17 03:46:13',1),(1,65,3018035,'2012-12-17 03:46:25',1),(1,185,3018035,'2012-12-17 03:46:25',1),(1,87,3018028,'2012-12-17 03:46:25',1),(1,250,3018028,'2012-12-17 03:46:25',1),(1,87,3018036,'2012-12-17 03:46:25',1),(1,250,3018036,'2012-12-17 03:46:25',1),(1,65,3018036,'2012-12-17 03:46:25',1),(1,185,3018036,'2012-12-17 03:46:25',1),(1,10,3018037,'2012-12-17 03:46:29',1),(1,5,3018037,'2012-12-17 03:46:29',1),(1,229,3018037,'2012-12-17 03:46:29',1),(1,201,3018037,'2012-12-17 03:46:29',1),(1,241,3018037,'2012-12-17 03:46:29',1),(1,206,3018037,'2012-12-17 03:46:29',1),(1,49,3018037,'2012-12-17 03:46:29',1),(1,177,3018037,'2012-12-17 03:46:29',1),(1,29,3018037,'2012-12-17 03:46:29',1),(1,62,3018037,'2012-12-17 03:46:29',1),(1,128,3018037,'2012-12-17 03:46:29',1),(1,63,3018037,'2012-12-17 03:46:29',1),(1,190,3018037,'2012-12-17 03:46:29',1),(1,87,3018037,'2012-12-17 03:46:29',1),(1,250,3018037,'2012-12-17 03:46:29',1),(1,65,3018037,'2012-12-17 03:46:29',1),(1,67,3018030,'2012-12-17 03:46:40',1),(1,67,3018031,'2012-12-17 03:46:40',1),(1,142,3018043,'2012-12-17 03:46:55',1),(1,65,3018027,'2012-12-17 03:46:58',1),(1,62,3018021,'2012-12-17 04:16:15',1),(1,128,3018021,'2012-12-17 04:16:15',1),(1,106,3018021,'2012-12-17 04:16:15',1),(1,63,3018021,'2012-12-17 04:16:15',1),(1,190,3018021,'2012-12-17 04:16:15',1),(1,87,3018021,'2012-12-17 04:16:15',1),(1,250,3018021,'2012-12-17 04:16:15',1),(1,65,3018021,'2012-12-17 04:16:15',1),(1,195,3018022,'2012-12-17 04:16:27',1),(1,165,3018022,'2012-12-17 04:16:27',1),(1,72,3018022,'2012-12-17 04:16:27',1),(1,106,3018022,'2012-12-17 04:16:27',1),(1,185,3018019,'2012-12-17 04:16:30',1),(1,142,3018019,'2012-12-17 04:16:30',1),(1,185,3018038,'2012-12-17 04:16:32',1),(1,142,3018038,'2012-12-17 04:16:32',1),(1,241,3018029,'2012-12-17 04:16:35',1),(1,67,3018029,'2012-12-17 04:16:35',1),(1,206,3018029,'2012-12-17 04:16:35',1),(1,195,3018029,'2012-12-17 04:16:35',1),(1,165,3018029,'2012-12-17 04:16:35',1),(1,177,3018029,'2012-12-17 04:16:35',1),(1,72,3018029,'2012-12-17 04:16:35',1),(1,29,3018029,'2012-12-17 04:16:35',1),(1,105,3018039,'2012-12-17 04:16:45',1),(1,87,3018039,'2012-12-17 04:16:45',1),(1,250,3018039,'2012-12-17 04:16:45',1),(1,65,3018039,'2012-12-17 04:16:45',1),(1,49,3018020,'2012-12-17 04:16:57',1),(1,207,3018020,'2012-12-17 04:16:57',1),(1,105,3018020,'2012-12-17 04:16:57',1),(1,90,3018020,'2012-12-17 04:16:57',1),(1,10,3018020,'2012-12-17 04:16:57',1),(1,5,3018020,'2012-12-17 04:16:57',1),(1,229,3018020,'2012-12-17 04:16:57',1),(1,201,3018020,'2012-12-17 04:16:57',1),(1,241,3018020,'2012-12-17 04:16:57',1),(1,67,3018020,'2012-12-17 04:16:57',1),(1,206,3018020,'2012-12-17 04:16:57',1),(1,195,3018020,'2012-12-17 04:16:57',1),(1,165,3018020,'2012-12-17 04:16:57',1),(1,177,3018020,'2012-12-17 04:16:57',1),(1,72,3018020,'2012-12-17 04:16:57',1),(1,29,3018020,'2012-12-17 04:16:57',1),(1,49,3018026,'2012-12-17 04:16:57',1),(1,207,3018026,'2012-12-17 04:16:57',1),(1,90,3018026,'2012-12-17 04:16:57',1),(1,10,3018026,'2012-12-17 04:16:57',1),(1,5,3018026,'2012-12-17 04:16:57',1),(1,229,3018026,'2012-12-17 04:16:57',1),(1,201,3018026,'2012-12-17 04:16:57',1),(1,241,3018026,'2012-12-17 04:16:57',1),(1,67,3018026,'2012-12-17 04:16:57',1),(1,206,3018026,'2012-12-17 04:16:57',1),(1,177,3018026,'2012-12-17 04:16:57',1),(1,29,3018026,'2012-12-17 04:16:57',1),(1,62,3018026,'2012-12-17 04:16:57',1),(1,128,3018026,'2012-12-17 04:16:57',1),(1,63,3018026,'2012-12-17 04:16:57',1),(1,190,3018026,'2012-12-17 04:16:57',1),(1,185,3018041,'2012-12-17 04:17:05',1),(1,142,3018041,'2012-12-17 04:17:05',1),(1,49,3018033,'2012-12-17 04:46:17',1),(1,207,3018033,'2012-12-17 04:46:17',1),(1,105,3018033,'2012-12-17 04:46:17',1),(1,90,3018033,'2012-12-17 04:46:17',1),(1,10,3018033,'2012-12-17 04:46:17',1),(1,5,3018033,'2012-12-17 04:46:17',1),(1,229,3018033,'2012-12-17 04:46:17',1),(1,201,3018033,'2012-12-17 04:46:17',1),(1,91,3018042,'2012-12-17 04:46:44',1),(1,132,3018042,'2012-12-17 04:46:44',1),(1,204,3018042,'2012-12-17 04:46:44',1),(1,60,3018042,'2012-12-17 04:46:44',1),(1,241,3018025,'2012-12-17 04:47:06',1),(1,67,3018025,'2012-12-17 04:47:06',1),(1,206,3018025,'2012-12-17 04:47:06',1),(1,195,3018025,'2012-12-17 04:47:06',1),(1,165,3018025,'2012-12-17 04:47:06',1),(1,177,3018025,'2012-12-17 04:47:06',1),(1,72,3018025,'2012-12-17 04:47:06',1),(1,29,3018025,'2012-12-17 04:47:06',1),(1,81,3018024,'2012-12-17 04:47:06',1),(1,62,3018024,'2012-12-17 04:47:06',1),(1,128,3018024,'2012-12-17 04:47:06',1),(1,106,3018024,'2012-12-17 04:47:06',1),(1,63,3018024,'2012-12-17 04:47:06',1),(1,190,3018024,'2012-12-17 04:47:06',1),(1,87,3018024,'2012-12-17 04:47:06',1),(1,250,3018024,'2012-12-17 04:47:06',1),(1,171,3018023,'2012-12-17 04:47:06',1),(1,189,3018023,'2012-12-17 04:47:06',1),(1,74,3018023,'2012-12-17 04:47:06',1),(1,166,3018023,'2012-12-17 04:47:06',1),(1,81,3018032,'2012-12-17 04:47:10',1),(1,62,3018032,'2012-12-17 04:47:10',1),(1,128,3018032,'2012-12-17 04:47:10',1),(1,106,3018032,'2012-12-17 04:47:10',1),(1,63,3018032,'2012-12-17 04:47:10',1),(1,190,3018032,'2012-12-17 04:47:10',1),(1,87,3018032,'2012-12-17 04:47:10',1),(1,250,3018032,'2012-12-17 04:47:10',1),(1,6,3018096,'2012-12-18 00:46:21',NULL),(1,4,3018096,'2012-12-18 00:46:21',NULL),(1,6,3018097,'2012-12-18 00:46:21',1),(1,4,3018097,'2012-12-18 00:46:21',1),(1,6,3018098,'2012-12-18 00:46:21',1),(1,4,3018098,'2012-12-18 00:46:21',1),(1,6,3018091,'2012-12-18 00:46:29',1),(1,4,3018091,'2012-12-18 00:46:29',1),(1,6,3018089,'2012-12-18 00:46:45',1),(1,4,3018089,'2012-12-18 00:46:45',1),(1,6,3018176,'2012-12-18 04:46:26',1),(1,4,3018176,'2012-12-18 04:46:26',1),(1,6,3018251,'2012-12-18 05:16:21',1),(1,4,3018251,'2012-12-18 05:16:21',1),(1,200,3018083,'2012-12-18 05:16:35',1),(1,228,3018083,'2012-12-18 05:16:35',1),(1,6,3018083,'2012-12-18 05:16:35',1),(1,4,3018083,'2012-12-18 05:16:35',1),(1,200,3018081,'2012-12-18 05:16:35',1),(1,228,3018081,'2012-12-18 05:16:35',1),(1,6,3018081,'2012-12-18 05:16:35',1),(1,4,3018081,'2012-12-18 05:16:35',1),(1,200,3018082,'2012-12-18 05:16:35',1),(1,228,3018082,'2012-12-18 05:16:35',1),(1,6,3018082,'2012-12-18 05:16:35',1),(1,4,3018082,'2012-12-18 05:16:35',1),(1,6,3018180,'2012-12-18 05:16:43',1),(1,4,3018180,'2012-12-18 05:16:43',1),(1,6,3018256,'2012-12-18 05:16:47',1),(1,4,3018256,'2012-12-18 05:16:47',1),(1,200,3018254,'2012-12-18 05:16:56',1),(1,6,3018254,'2012-12-18 05:16:56',1),(1,200,3018080,'2012-12-18 05:16:58',1),(1,228,3018080,'2012-12-18 05:16:58',1),(1,6,3018080,'2012-12-18 05:16:58',1),(1,4,3018080,'2012-12-18 05:16:58',1),(1,198,3018264,'2012-12-18 05:46:24',1),(1,200,3018264,'2012-12-18 05:46:24',1),(1,214,3018264,'2012-12-18 05:46:24',1),(1,228,3018264,'2012-12-18 05:46:24',1),(1,198,3018253,'2012-12-18 05:46:25',1),(1,200,3018253,'2012-12-18 05:46:25',1),(1,214,3018253,'2012-12-18 05:46:25',1),(1,228,3018253,'2012-12-18 05:46:25',1),(1,101,3018338,'2012-12-18 05:46:28',1),(1,6,3018338,'2012-12-18 05:46:28',1),(1,198,3018178,'2012-12-18 05:46:32',1),(1,200,3018178,'2012-12-18 05:46:32',1),(1,214,3018178,'2012-12-18 05:46:32',1),(1,228,3018178,'2012-12-18 05:46:32',1),(1,198,3018179,'2012-12-18 05:46:46',1),(1,200,3018179,'2012-12-18 05:46:46',1),(1,214,3018179,'2012-12-18 05:46:46',1),(1,228,3018179,'2012-12-18 05:46:46',1),(1,198,3018252,'2012-12-18 05:46:49',1),(1,200,3018252,'2012-12-18 05:46:49',1),(1,214,3018252,'2012-12-18 05:46:49',1),(1,228,3018252,'2012-12-18 05:46:49',1),(1,101,3018349,'2012-12-18 05:46:54',1),(1,6,3018349,'2012-12-18 05:46:54',1),(1,101,3018266,'2012-12-18 05:46:58',1),(1,6,3018266,'2012-12-18 05:46:58',1),(1,101,3018351,'2012-12-18 05:47:04',1),(1,6,3018351,'2012-12-18 05:47:04',1),(1,200,3018085,'2012-12-18 05:47:12',NULL),(1,228,3018085,'2012-12-18 05:47:12',NULL),(1,6,3018085,'2012-12-18 05:47:12',NULL),(1,4,3018085,'2012-12-18 05:47:12',NULL),(1,198,3018262,'2012-12-18 06:17:00',NULL),(1,200,3018262,'2012-12-18 06:17:00',NULL),(1,214,3018262,'2012-12-18 06:17:00',NULL),(1,228,3018262,'2012-12-18 06:17:00',NULL),(1,101,3018348,'2012-12-18 06:17:09',1),(1,6,3018348,'2012-12-18 06:17:09',1),(1,101,3018353,'2012-12-18 06:17:17',1),(1,6,3018353,'2012-12-18 06:17:17',1),(1,112,3018360,'2012-12-18 06:17:21',1),(1,4,3018360,'2012-12-18 06:17:21',1),(1,112,3018337,'2012-12-18 06:46:23',1),(1,198,3018337,'2012-12-18 06:46:23',1),(1,200,3018337,'2012-12-18 06:46:23',1),(1,212,3018337,'2012-12-18 06:46:23',1),(1,4,3018183,'2012-12-18 06:46:36',1),(1,4,3018257,'2012-12-18 06:46:39',1),(1,4,3018094,'2012-12-18 06:46:43',1),(1,6,3018181,'2012-12-18 06:46:50',1),(1,4,3018250,'2012-12-18 06:46:53',1),(1,4,3018095,'2012-12-18 06:47:01',1),(1,198,3018261,'2012-12-18 06:47:06',1),(1,200,3018261,'2012-12-18 06:47:06',1),(1,212,3018261,'2012-12-18 06:47:06',1),(1,214,3018261,'2012-12-18 06:47:06',1),(1,4,3018092,'2012-12-18 06:47:13',1),(1,6,3018093,'2012-12-18 06:47:15',1),(1,4,3018358,'2012-12-18 07:16:25',1),(1,112,3018356,'2012-12-18 07:16:33',1),(1,198,3018356,'2012-12-18 07:16:33',1),(1,200,3018356,'2012-12-18 07:16:33',1),(1,212,3018356,'2012-12-18 07:16:33',1),(1,6,3018359,'2012-12-18 07:16:46',1),(1,112,3018344,'2012-12-18 07:16:47',1),(1,198,3018344,'2012-12-18 07:16:47',1),(1,200,3018344,'2012-12-18 07:16:47',1),(1,212,3018344,'2012-12-18 07:16:47',1),(1,4,3018345,'2012-12-18 07:16:49',1),(1,6,3018343,'2012-12-18 07:17:02',1),(1,112,3018350,'2012-12-18 07:17:13',1),(1,198,3018350,'2012-12-18 07:17:13',1),(1,200,3018350,'2012-12-18 07:17:13',1),(1,212,3018350,'2012-12-18 07:17:13',1),(1,6,3018265,'2012-12-18 07:17:14',1),(1,112,3018341,'2012-12-18 07:17:20',1),(1,198,3018341,'2012-12-18 07:17:20',1),(1,200,3018341,'2012-12-18 07:17:20',1),(1,212,3018341,'2012-12-18 07:17:20',1),(1,112,3018354,'2012-12-18 07:17:24',1),(1,198,3018354,'2012-12-18 07:17:24',1),(1,200,3018354,'2012-12-18 07:17:24',1),(1,212,3018354,'2012-12-18 07:17:24',1),(1,169,3018267,'2012-12-18 12:16:49',1),(1,83,3018267,'2012-12-18 12:16:49',1),(1,85,3018267,'2012-12-18 12:16:49',1),(1,114,3018267,'2012-12-18 12:16:49',1),(1,192,3018267,'2012-12-18 12:16:49',1),(1,144,3018267,'2012-12-18 12:16:49',1),(1,73,3018267,'2012-12-18 12:16:49',1),(1,84,3018267,'2012-12-18 12:16:49',1),(1,86,3018267,'2012-12-18 12:16:49',1),(1,115,3018267,'2012-12-18 12:16:49',1),(1,80,3018267,'2012-12-18 12:16:49',1),(1,117,3018267,'2012-12-18 12:16:49',1),(1,107,3018267,'2012-12-18 12:16:49',1),(1,19,3018267,'2012-12-18 12:16:49',1),(1,193,3018267,'2012-12-18 12:16:49',1),(1,172,3018267,'2012-12-18 12:16:49',1),(1,169,3018182,'2012-12-18 12:47:03',NULL),(1,83,3018182,'2012-12-18 12:47:03',NULL),(1,85,3018182,'2012-12-18 12:47:03',NULL),(1,114,3018182,'2012-12-18 12:47:03',NULL),(1,192,3018182,'2012-12-18 12:47:03',NULL),(1,144,3018182,'2012-12-18 12:47:03',NULL),(1,73,3018182,'2012-12-18 12:47:03',NULL),(1,84,3018182,'2012-12-18 12:47:03',NULL),(1,169,3018177,'2012-12-18 12:47:14',1),(1,83,3018177,'2012-12-18 12:47:14',1),(1,85,3018177,'2012-12-18 12:47:14',1),(1,114,3018177,'2012-12-18 12:47:14',1),(1,192,3018177,'2012-12-18 12:47:14',1),(1,144,3018177,'2012-12-18 12:47:14',1),(1,73,3018177,'2012-12-18 12:47:14',1),(1,84,3018177,'2012-12-18 12:47:14',1),(1,169,3018090,'2012-12-18 12:47:32',NULL),(1,83,3018090,'2012-12-18 12:47:32',NULL),(1,85,3018090,'2012-12-18 12:47:32',NULL),(1,114,3018090,'2012-12-18 12:47:32',NULL),(1,192,3018090,'2012-12-18 12:47:32',NULL),(1,144,3018090,'2012-12-18 12:47:32',NULL),(1,73,3018090,'2012-12-18 12:47:32',NULL),(1,84,3018090,'2012-12-18 12:47:32',NULL),(1,169,3018084,'2012-12-18 12:47:40',1),(1,83,3018084,'2012-12-18 12:47:40',1),(1,85,3018084,'2012-12-18 12:47:40',1),(1,114,3018084,'2012-12-18 12:47:40',1),(1,192,3018084,'2012-12-18 12:47:40',1),(1,144,3018084,'2012-12-18 12:47:40',1),(1,73,3018084,'2012-12-18 12:47:40',1),(1,84,3018084,'2012-12-18 12:47:40',1),(1,169,3018086,'2012-12-18 12:47:45',1),(1,83,3018086,'2012-12-18 12:47:45',1),(1,85,3018086,'2012-12-18 12:47:45',1),(1,114,3018086,'2012-12-18 12:47:45',1),(1,192,3018086,'2012-12-18 12:47:45',1),(1,144,3018086,'2012-12-18 12:47:45',1),(1,73,3018086,'2012-12-18 12:47:45',1),(1,84,3018086,'2012-12-18 12:47:45',1),(1,169,3018087,'2012-12-18 12:47:49',1),(1,83,3018087,'2012-12-18 12:47:49',1),(1,85,3018087,'2012-12-18 12:47:49',1),(1,114,3018087,'2012-12-18 12:47:49',1),(1,192,3018087,'2012-12-18 12:47:49',1),(1,144,3018087,'2012-12-18 12:47:49',1),(1,73,3018087,'2012-12-18 12:47:49',1),(1,84,3018087,'2012-12-18 12:47:49',1),(1,169,3018088,'2012-12-18 12:47:49',1),(1,83,3018088,'2012-12-18 12:47:49',1),(1,85,3018088,'2012-12-18 12:47:49',1),(1,114,3018088,'2012-12-18 12:47:49',1),(1,192,3018088,'2012-12-18 12:47:49',1),(1,144,3018088,'2012-12-18 12:47:49',1),(1,73,3018088,'2012-12-18 12:47:49',1),(1,84,3018088,'2012-12-18 12:47:49',1),(1,85,3018263,'2012-12-18 13:17:18',1),(1,114,3018263,'2012-12-18 13:17:18',1),(1,192,3018263,'2012-12-18 13:17:18',1),(1,144,3018263,'2012-12-18 13:17:18',1),(1,73,3018263,'2012-12-18 13:17:18',1),(1,84,3018263,'2012-12-18 13:17:18',1),(1,107,3018263,'2012-12-18 13:17:18',1),(1,169,3018263,'2012-12-18 13:17:18',1),(1,169,3018258,'2012-12-18 13:17:24',1),(1,83,3018258,'2012-12-18 13:17:24',1),(1,85,3018258,'2012-12-18 13:17:24',1),(1,114,3018258,'2012-12-18 13:17:24',1),(1,192,3018258,'2012-12-18 13:17:24',1),(1,144,3018258,'2012-12-18 13:17:24',1),(1,73,3018258,'2012-12-18 13:17:24',1),(1,84,3018258,'2012-12-18 13:17:24',1),(1,85,3018260,'2012-12-18 13:17:27',1),(1,114,3018260,'2012-12-18 13:17:27',1),(1,192,3018260,'2012-12-18 13:17:27',1),(1,144,3018260,'2012-12-18 13:17:27',1),(1,73,3018260,'2012-12-18 13:17:27',1),(1,84,3018260,'2012-12-18 13:17:27',1),(1,169,3018260,'2012-12-18 13:17:27',1),(1,83,3018260,'2012-12-18 13:17:27',1),(1,85,3018255,'2012-12-18 13:17:40',1),(1,114,3018255,'2012-12-18 13:17:40',1),(1,192,3018255,'2012-12-18 13:17:40',1),(1,144,3018255,'2012-12-18 13:17:40',1),(1,73,3018255,'2012-12-18 13:17:40',1),(1,84,3018255,'2012-12-18 13:17:40',1),(1,107,3018255,'2012-12-18 13:17:40',1),(1,169,3018255,'2012-12-18 13:17:40',1),(1,85,3018340,'2012-12-18 13:47:21',1),(1,114,3018340,'2012-12-18 13:47:21',1),(1,192,3018340,'2012-12-18 13:47:21',1),(1,144,3018340,'2012-12-18 13:47:21',1),(1,73,3018340,'2012-12-18 13:47:21',1),(1,84,3018340,'2012-12-18 13:47:21',1),(1,107,3018340,'2012-12-18 13:47:21',1),(1,169,3018340,'2012-12-18 13:47:21',1),(1,85,3018339,'2012-12-18 13:47:24',1),(1,114,3018339,'2012-12-18 13:47:24',1),(1,192,3018339,'2012-12-18 13:47:24',1),(1,144,3018339,'2012-12-18 13:47:24',1),(1,73,3018339,'2012-12-18 13:47:24',1),(1,84,3018339,'2012-12-18 13:47:24',1),(1,107,3018339,'2012-12-18 13:47:24',1),(1,172,3018339,'2012-12-18 13:47:24',1),(1,85,3018346,'2012-12-18 13:47:31',1),(1,114,3018346,'2012-12-18 13:47:31',1),(1,192,3018346,'2012-12-18 13:47:31',1),(1,144,3018346,'2012-12-18 13:47:31',1),(1,73,3018346,'2012-12-18 13:47:31',1),(1,84,3018346,'2012-12-18 13:47:31',1),(1,173,3018346,'2012-12-18 13:47:31',1),(1,107,3018346,'2012-12-18 13:47:31',1),(1,85,3018347,'2012-12-18 14:17:55',1),(1,114,3018347,'2012-12-18 14:17:55',1),(1,192,3018347,'2012-12-18 14:17:55',1),(1,144,3018347,'2012-12-18 14:17:55',1),(1,73,3018347,'2012-12-18 14:17:55',1),(1,84,3018347,'2012-12-18 14:17:55',1),(1,173,3018347,'2012-12-18 14:17:55',1),(1,107,3018347,'2012-12-18 14:17:55',1),(1,85,3018336,'2012-12-18 14:48:07',1),(1,114,3018336,'2012-12-18 14:48:07',1),(1,192,3018336,'2012-12-18 14:48:07',1),(1,144,3018336,'2012-12-18 14:48:07',1),(1,73,3018336,'2012-12-18 14:48:07',1),(1,84,3018336,'2012-12-18 14:48:07',1),(1,173,3018336,'2012-12-18 14:48:07',1),(1,107,3018336,'2012-12-18 14:48:07',1),(1,85,3018342,'2012-12-18 14:48:16',1),(1,114,3018342,'2012-12-18 14:48:16',1),(1,192,3018342,'2012-12-18 14:48:16',1),(1,144,3018342,'2012-12-18 14:48:16',1),(1,73,3018342,'2012-12-18 14:48:16',1),(1,84,3018342,'2012-12-18 14:48:16',1),(1,173,3018342,'2012-12-18 14:48:16',1),(1,107,3018342,'2012-12-18 14:48:16',1),(1,174,3018573,'2012-12-19 04:16:19',1),(1,107,3018573,'2012-12-19 04:16:19',1),(1,15,3018573,'2012-12-19 04:16:19',1),(1,53,3018573,'2012-12-19 04:16:19',1),(1,168,3018573,'2012-12-19 04:16:19',1),(1,217,3018573,'2012-12-19 04:16:19',1),(1,218,3018573,'2012-12-19 04:16:19',1),(1,219,3018573,'2012-12-19 04:16:19',1),(1,174,3018503,'2012-12-19 04:16:25',1),(1,107,3018503,'2012-12-19 04:16:25',1),(1,15,3018503,'2012-12-19 04:16:25',1),(1,53,3018503,'2012-12-19 04:16:25',1),(1,168,3018503,'2012-12-19 04:16:25',1),(1,217,3018503,'2012-12-19 04:16:25',1),(1,218,3018503,'2012-12-19 04:16:25',1),(1,219,3018503,'2012-12-19 04:16:25',1),(1,221,3018510,'2012-12-19 04:16:25',1),(1,6,3018510,'2012-12-19 04:16:25',1),(1,221,3018420,'2012-12-19 04:16:29',1),(1,6,3018420,'2012-12-19 04:16:29',1),(1,174,3018576,'2012-12-19 04:16:38',1),(1,107,3018576,'2012-12-19 04:16:38',1),(1,15,3018576,'2012-12-19 04:16:38',1),(1,53,3018576,'2012-12-19 04:16:38',1),(1,168,3018576,'2012-12-19 04:16:38',1),(1,217,3018576,'2012-12-19 04:16:38',1),(1,218,3018576,'2012-12-19 04:16:38',1),(1,219,3018576,'2012-12-19 04:16:38',1),(1,174,3018508,'2012-12-19 04:16:41',1),(1,107,3018508,'2012-12-19 04:16:41',1),(1,15,3018508,'2012-12-19 04:16:41',1),(1,53,3018508,'2012-12-19 04:16:41',1),(1,168,3018508,'2012-12-19 04:16:41',1),(1,217,3018508,'2012-12-19 04:16:41',1),(1,218,3018508,'2012-12-19 04:16:41',1),(1,219,3018508,'2012-12-19 04:16:41',1),(1,221,3018426,'2012-12-19 04:16:45',1),(1,6,3018426,'2012-12-19 04:16:45',1),(1,221,3018427,'2012-12-19 04:16:46',1),(1,6,3018427,'2012-12-19 04:16:46',1),(1,160,3018585,'2012-12-19 04:16:51',1),(1,244,3018585,'2012-12-19 04:16:51',1),(1,95,3018585,'2012-12-19 04:16:51',1),(1,140,3018585,'2012-12-19 04:16:51',1),(1,96,3018585,'2012-12-19 04:16:51',1),(1,227,3018585,'2012-12-19 04:16:51',1),(1,237,3018585,'2012-12-19 04:16:51',1),(1,134,3018585,'2012-12-19 04:16:51',1),(1,135,3018585,'2012-12-19 04:16:51',1),(1,246,3018585,'2012-12-19 04:16:51',1),(1,149,3018585,'2012-12-19 04:16:51',1),(1,119,3018585,'2012-12-19 04:16:51',1),(1,136,3018585,'2012-12-19 04:16:51',1),(1,137,3018585,'2012-12-19 04:16:51',1),(1,138,3018585,'2012-12-19 04:16:51',1),(1,42,3018585,'2012-12-19 04:16:51',1),(1,221,3018418,'2012-12-19 04:16:58',1),(1,6,3018418,'2012-12-19 04:16:58',1),(1,249,3018582,'2012-12-19 04:17:04',1),(1,94,3018582,'2012-12-19 04:17:04',1),(1,97,3018582,'2012-12-19 04:17:04',1),(1,3,3018582,'2012-12-19 04:17:04',1),(1,89,3018582,'2012-12-19 04:17:04',1),(1,82,3018582,'2012-12-19 04:17:04',1),(1,121,3018582,'2012-12-19 04:17:04',1),(1,122,3018582,'2012-12-19 04:17:04',1),(1,123,3018582,'2012-12-19 04:17:04',1),(1,150,3018582,'2012-12-19 04:17:04',1),(1,220,3018582,'2012-12-19 04:17:04',1),(1,187,3018582,'2012-12-19 04:17:04',1),(1,197,3018582,'2012-12-19 04:17:04',1),(1,170,3018582,'2012-12-19 04:17:04',1),(1,225,3018582,'2012-12-19 04:17:04',1),(1,146,3018582,'2012-12-19 04:17:04',1),(1,97,3018413,'2012-12-19 04:17:09',1),(1,3,3018413,'2012-12-19 04:17:09',1),(1,192,3018413,'2012-12-19 04:17:09',1),(1,73,3018413,'2012-12-19 04:17:09',1),(1,174,3018413,'2012-12-19 04:17:09',1),(1,53,3018413,'2012-12-19 04:17:09',1),(1,221,3018413,'2012-12-19 04:17:09',1),(1,6,3018413,'2012-12-19 04:17:09',1),(1,239,3018415,'2012-12-19 04:17:15',1),(1,147,3018415,'2012-12-19 04:17:15',1),(1,153,3018415,'2012-12-19 04:17:15',1),(1,127,3018415,'2012-12-19 04:17:15',1),(1,192,3018415,'2012-12-19 04:17:15',1),(1,73,3018415,'2012-12-19 04:17:15',1),(1,174,3018415,'2012-12-19 04:17:15',1),(1,53,3018415,'2012-12-19 04:17:15',1),(1,239,3018416,'2012-12-19 04:17:18',1),(1,147,3018416,'2012-12-19 04:17:18',1),(1,153,3018416,'2012-12-19 04:17:18',1),(1,127,3018416,'2012-12-19 04:17:18',1),(1,192,3018416,'2012-12-19 04:17:18',1),(1,73,3018416,'2012-12-19 04:17:18',1),(1,174,3018416,'2012-12-19 04:17:18',1),(1,53,3018416,'2012-12-19 04:17:18',1),(1,239,3018417,'2012-12-19 04:17:19',1),(1,147,3018417,'2012-12-19 04:17:19',1),(1,153,3018417,'2012-12-19 04:17:19',1),(1,127,3018417,'2012-12-19 04:17:19',1),(1,192,3018417,'2012-12-19 04:17:19',1),(1,73,3018417,'2012-12-19 04:17:19',1),(1,174,3018417,'2012-12-19 04:17:19',1),(1,53,3018417,'2012-12-19 04:17:19',1),(1,71,3018355,'2012-12-19 04:19:01',1),(1,44,3018355,'2012-12-19 04:19:01',1),(1,45,3018355,'2012-12-19 04:19:01',1),(1,12,3018355,'2012-12-19 04:19:01',1),(1,154,3018355,'2012-12-19 04:19:01',1),(1,28,3018355,'2012-12-19 04:19:01',1),(1,162,3018355,'2012-12-19 04:19:01',1),(1,46,3018355,'2012-12-19 04:19:01',1),(1,167,3018355,'2012-12-19 04:19:01',1),(1,186,3018355,'2012-12-19 04:19:01',1),(1,235,3018355,'2012-12-19 04:19:01',1),(1,111,3018355,'2012-12-19 04:19:01',1),(1,54,3018355,'2012-12-19 04:19:01',1),(1,37,3018355,'2012-12-19 04:19:01',1),(1,85,3018355,'2012-12-19 04:19:01',1),(1,17,3018355,'2012-12-19 04:19:01',1),(1,191,3018352,'2012-12-19 04:19:11',1),(1,159,3018352,'2012-12-19 04:19:11',1),(1,114,3018352,'2012-12-19 04:19:11',1),(1,144,3018352,'2012-12-19 04:19:11',1),(1,188,3018352,'2012-12-19 04:19:11',1),(1,23,3018352,'2012-12-19 04:19:11',1),(1,59,3018352,'2012-12-19 04:19:11',1),(1,84,3018352,'2012-12-19 04:19:11',1),(1,173,3018352,'2012-12-19 04:19:11',1),(1,129,3018352,'2012-12-19 04:19:11',1),(1,107,3018352,'2012-12-19 04:19:11',1),(1,15,3018352,'2012-12-19 04:19:11',1),(1,168,3018352,'2012-12-19 04:19:11',1),(1,217,3018352,'2012-12-19 04:19:11',1),(1,218,3018352,'2012-12-19 04:19:11',1),(1,219,3018352,'2012-12-19 04:19:11',1),(1,71,3018259,'2012-12-19 04:19:14',1),(1,44,3018259,'2012-12-19 04:19:14',1),(1,45,3018259,'2012-12-19 04:19:14',1),(1,12,3018259,'2012-12-19 04:19:14',1),(1,154,3018259,'2012-12-19 04:19:14',1),(1,28,3018259,'2012-12-19 04:19:14',1),(1,162,3018259,'2012-12-19 04:19:14',1),(1,46,3018259,'2012-12-19 04:19:14',1),(1,167,3018259,'2012-12-19 04:19:14',1),(1,186,3018259,'2012-12-19 04:19:14',1),(1,235,3018259,'2012-12-19 04:19:14',1),(1,111,3018259,'2012-12-19 04:19:14',1),(1,37,3018259,'2012-12-19 04:19:14',1),(1,191,3018259,'2012-12-19 04:19:14',1),(1,23,3018259,'2012-12-19 04:19:14',1),(1,59,3018259,'2012-12-19 04:19:14',1),(1,144,3018664,'2012-12-19 04:46:15',1),(1,73,3018664,'2012-12-19 04:46:15',1),(1,188,3018664,'2012-12-19 04:46:15',1),(1,23,3018664,'2012-12-19 04:46:15',1),(1,59,3018664,'2012-12-19 04:46:15',1),(1,84,3018664,'2012-12-19 04:46:15',1),(1,173,3018664,'2012-12-19 04:46:15',1),(1,129,3018664,'2012-12-19 04:46:15',1),(1,221,3018569,'2012-12-19 04:46:21',1),(1,6,3018569,'2012-12-19 04:46:21',1),(1,221,3018572,'2012-12-19 04:46:21',1),(1,6,3018572,'2012-12-19 04:46:21',1),(1,221,3018574,'2012-12-19 04:46:21',1),(1,6,3018574,'2012-12-19 04:46:21',1),(1,149,3018505,'2012-12-19 04:46:30',1),(1,119,3018505,'2012-12-19 04:46:30',1),(1,136,3018505,'2012-12-19 04:46:30',1),(1,137,3018505,'2012-12-19 04:46:30',1),(1,197,3018571,'2012-12-19 04:46:36',1),(1,170,3018571,'2012-12-19 04:46:36',1),(1,225,3018571,'2012-12-19 04:46:36',1),(1,146,3018571,'2012-12-19 04:46:36',1),(1,174,3018570,'2012-12-19 04:46:37',1),(1,107,3018570,'2012-12-19 04:46:37',1),(1,15,3018570,'2012-12-19 04:46:37',1),(1,53,3018570,'2012-12-19 04:46:37',1),(1,221,3018506,'2012-12-19 04:46:43',1),(1,6,3018506,'2012-12-19 04:46:43',1),(1,123,3018504,'2012-12-19 04:46:43',1),(1,150,3018504,'2012-12-19 04:46:43',1),(1,220,3018504,'2012-12-19 04:46:43',1),(1,187,3018504,'2012-12-19 04:46:43',1),(1,197,3018673,'2012-12-19 04:46:51',1),(1,170,3018673,'2012-12-19 04:46:51',1),(1,225,3018673,'2012-12-19 04:46:51',1),(1,146,3018673,'2012-12-19 04:46:51',1),(1,249,3018674,'2012-12-19 04:46:51',1),(1,94,3018674,'2012-12-19 04:46:51',1),(1,97,3018674,'2012-12-19 04:46:51',1),(1,3,3018674,'2012-12-19 04:46:51',1),(1,89,3018674,'2012-12-19 04:46:51',1),(1,82,3018674,'2012-12-19 04:46:51',1),(1,121,3018674,'2012-12-19 04:46:51',1),(1,122,3018674,'2012-12-19 04:46:51',1),(1,123,3018674,'2012-12-19 04:46:51',1),(1,150,3018674,'2012-12-19 04:46:51',1),(1,220,3018674,'2012-12-19 04:46:51',1),(1,187,3018674,'2012-12-19 04:46:51',1),(1,197,3018674,'2012-12-19 04:46:51',1),(1,170,3018674,'2012-12-19 04:46:51',1),(1,225,3018674,'2012-12-19 04:46:51',1),(1,146,3018674,'2012-12-19 04:46:51',1),(1,237,3018675,'2012-12-19 04:46:51',1),(1,134,3018675,'2012-12-19 04:46:51',1),(1,135,3018675,'2012-12-19 04:46:51',1),(1,246,3018675,'2012-12-19 04:46:51',1),(1,149,3018675,'2012-12-19 04:46:51',1),(1,119,3018675,'2012-12-19 04:46:51',1),(1,136,3018675,'2012-12-19 04:46:51',1),(1,137,3018675,'2012-12-19 04:46:51',1),(1,174,3018584,'2012-12-19 04:46:57',1),(1,107,3018584,'2012-12-19 04:46:57',1),(1,15,3018584,'2012-12-19 04:46:57',1),(1,53,3018584,'2012-12-19 04:46:57',1),(1,168,3018584,'2012-12-19 04:46:57',1),(1,217,3018584,'2012-12-19 04:46:57',1),(1,218,3018584,'2012-12-19 04:46:57',1),(1,219,3018584,'2012-12-19 04:46:57',1),(1,168,3018428,'2012-12-19 04:46:59',1),(1,217,3018428,'2012-12-19 04:46:59',1),(1,218,3018428,'2012-12-19 04:46:59',1),(1,219,3018428,'2012-12-19 04:46:59',1),(1,174,3018410,'2012-12-19 04:47:00',1),(1,107,3018410,'2012-12-19 04:47:00',1),(1,15,3018410,'2012-12-19 04:47:00',1),(1,53,3018410,'2012-12-19 04:47:00',1),(1,239,3018656,'2012-12-19 04:47:03',1),(1,147,3018656,'2012-12-19 04:47:03',1),(1,153,3018656,'2012-12-19 04:47:03',1),(1,127,3018656,'2012-12-19 04:47:03',1),(1,191,3018656,'2012-12-19 04:47:03',1),(1,159,3018656,'2012-12-19 04:47:03',1),(1,114,3018656,'2012-12-19 04:47:03',1),(1,192,3018656,'2012-12-19 04:47:03',1),(1,144,3018656,'2012-12-19 04:47:03',1),(1,73,3018656,'2012-12-19 04:47:03',1),(1,188,3018656,'2012-12-19 04:47:03',1),(1,23,3018656,'2012-12-19 04:47:03',1),(1,59,3018656,'2012-12-19 04:47:03',1),(1,84,3018656,'2012-12-19 04:47:03',1),(1,173,3018656,'2012-12-19 04:47:03',1),(1,129,3018656,'2012-12-19 04:47:03',1),(1,174,3018579,'2012-12-19 04:47:06',1),(1,107,3018579,'2012-12-19 04:47:06',1),(1,15,3018579,'2012-12-19 04:47:06',1),(1,53,3018579,'2012-12-19 04:47:06',1),(1,168,3018579,'2012-12-19 04:47:06',1),(1,217,3018579,'2012-12-19 04:47:06',1),(1,218,3018579,'2012-12-19 04:47:06',1),(1,219,3018579,'2012-12-19 04:47:06',1),(1,237,3018580,'2012-12-19 04:47:07',1),(1,134,3018580,'2012-12-19 04:47:07',1),(1,135,3018580,'2012-12-19 04:47:07',1),(1,246,3018580,'2012-12-19 04:47:07',1),(1,221,3018568,'2012-12-19 04:47:08',1),(1,6,3018568,'2012-12-19 04:47:08',1),(1,174,3018412,'2012-12-19 04:47:12',1),(1,107,3018412,'2012-12-19 04:47:12',1),(1,15,3018412,'2012-12-19 04:47:12',1),(1,53,3018412,'2012-12-19 04:47:12',1),(1,160,3018671,'2012-12-19 04:47:17',1),(1,244,3018671,'2012-12-19 04:47:17',1),(1,95,3018671,'2012-12-19 04:47:17',1),(1,140,3018671,'2012-12-19 04:47:17',1),(1,96,3018671,'2012-12-19 04:47:17',1),(1,227,3018671,'2012-12-19 04:47:17',1),(1,237,3018671,'2012-12-19 04:47:17',1),(1,134,3018671,'2012-12-19 04:47:17',1),(1,135,3018671,'2012-12-19 04:47:17',1),(1,246,3018671,'2012-12-19 04:47:17',1),(1,149,3018671,'2012-12-19 04:47:17',1),(1,119,3018671,'2012-12-19 04:47:17',1),(1,136,3018671,'2012-12-19 04:47:17',1),(1,137,3018671,'2012-12-19 04:47:17',1),(1,138,3018671,'2012-12-19 04:47:17',1),(1,42,3018671,'2012-12-19 04:47:17',1),(1,237,3018411,'2012-12-19 04:47:20',1),(1,134,3018411,'2012-12-19 04:47:20',1),(1,135,3018411,'2012-12-19 04:47:20',1),(1,246,3018411,'2012-12-19 04:47:20',1),(1,123,3018659,'2012-12-19 04:47:25',1),(1,150,3018659,'2012-12-19 04:47:25',1),(1,220,3018659,'2012-12-19 04:47:25',1),(1,187,3018659,'2012-12-19 04:47:25',1),(1,197,3018659,'2012-12-19 04:47:25',1),(1,170,3018659,'2012-12-19 04:47:25',1),(1,225,3018659,'2012-12-19 04:47:25',1),(1,146,3018659,'2012-12-19 04:47:25',1),(1,239,3018665,'2012-12-19 05:16:17',1),(1,147,3018665,'2012-12-19 05:16:17',1),(1,153,3018665,'2012-12-19 05:16:17',1),(1,127,3018665,'2012-12-19 05:16:17',1),(1,191,3018665,'2012-12-19 05:16:17',1),(1,159,3018665,'2012-12-19 05:16:17',1),(1,114,3018665,'2012-12-19 05:16:17',1),(1,192,3018665,'2012-12-19 05:16:17',1),(1,218,3018676,'2012-12-19 05:16:17',1),(1,249,3018657,'2012-12-19 05:16:17',1),(1,94,3018657,'2012-12-19 05:16:17',1),(1,160,3018657,'2012-12-19 05:16:17',1),(1,244,3018657,'2012-12-19 05:16:17',1),(1,95,3018657,'2012-12-19 05:16:17',1),(1,140,3018657,'2012-12-19 05:16:17',1),(1,96,3018657,'2012-12-19 05:16:17',1),(1,227,3018657,'2012-12-19 05:16:17',1),(1,207,3018667,'2012-12-19 05:16:26',1),(1,221,3018667,'2012-12-19 05:16:26',1),(1,170,3018507,'2012-12-19 05:16:29',1),(1,197,3018668,'2012-12-19 05:16:29',1),(1,170,3018668,'2012-12-19 05:16:29',1),(1,225,3018678,'2012-12-19 05:16:29',1),(1,146,3018678,'2012-12-19 05:16:29',1),(1,219,3018663,'2012-12-19 05:16:30',1),(1,6,3018421,'2012-12-19 05:16:33',1),(1,242,3018422,'2012-12-19 05:16:33',1),(1,6,3018423,'2012-12-19 05:16:34',1),(1,174,3018658,'2012-12-19 05:16:39',1),(1,107,3018658,'2012-12-19 05:16:39',1),(1,15,3018658,'2012-12-19 05:16:39',1),(1,53,3018658,'2012-12-19 05:16:39',1),(1,149,3018669,'2012-12-19 05:16:40',1),(1,119,3018669,'2012-12-19 05:16:40',1),(1,136,3018669,'2012-12-19 05:16:40',1),(1,137,3018669,'2012-12-19 05:16:40',1),(1,6,3018654,'2012-12-19 05:16:43',1),(1,237,3018672,'2012-12-19 05:16:44',1),(1,134,3018672,'2012-12-19 05:16:44',1),(1,146,3018575,'2012-12-19 05:16:46',1),(1,225,3018509,'2012-12-19 05:16:48',1),(1,218,3018424,'2012-12-19 05:16:49',1),(1,144,3018677,'2012-12-19 05:16:54',1),(1,73,3018677,'2012-12-19 05:16:54',1),(1,188,3018677,'2012-12-19 05:16:54',1),(1,23,3018677,'2012-12-19 05:16:54',1),(1,168,3018583,'2012-12-19 05:16:57',1),(1,217,3018583,'2012-12-19 05:16:57',1),(1,218,3018583,'2012-12-19 05:16:57',1),(1,219,3018583,'2012-12-19 05:16:57',1),(1,144,3018577,'2012-12-19 05:16:58',1),(1,59,3018655,'2012-12-19 05:17:05',1),(1,84,3018655,'2012-12-19 05:17:05',1),(1,173,3018655,'2012-12-19 05:17:05',1),(1,129,3018655,'2012-12-19 05:17:05',1),(1,95,3018661,'2012-12-19 05:17:06',1),(1,135,3018670,'2012-12-19 05:17:11',1),(1,246,3018670,'2012-12-19 05:17:11',1),(1,123,3018578,'2012-12-19 05:17:17',NULL),(1,150,3018578,'2012-12-19 05:17:17',NULL),(1,220,3018578,'2012-12-19 05:17:17',NULL),(1,187,3018578,'2012-12-19 05:17:17',NULL),(1,217,3018581,'2012-12-19 05:17:17',1),(1,237,3018662,'2012-12-19 05:17:19',1),(1,134,3018662,'2012-12-19 05:17:19',1),(1,135,3018662,'2012-12-19 05:17:19',1),(1,246,3018662,'2012-12-19 05:17:19',1),(1,149,3018660,'2012-12-19 05:17:22',1),(1,119,3018660,'2012-12-19 05:17:22',1),(1,138,3018666,'2012-12-19 05:17:25',1),(1,42,3018666,'2012-12-19 05:17:25',1),(1,97,3018666,'2012-12-19 05:17:25',1),(1,3,3018666,'2012-12-19 05:17:25',1),(1,89,3018666,'2012-12-19 05:17:25',1),(1,82,3018666,'2012-12-19 05:17:25',1),(1,121,3018666,'2012-12-19 05:17:25',1),(1,122,3018666,'2012-12-19 05:17:25',1),(1,252,3018357,'2012-12-19 13:49:31',1),(1,93,3018357,'2012-12-19 13:49:31',1),(1,130,3018357,'2012-12-19 13:49:31',1),(1,156,3018357,'2012-12-19 13:49:31',1),(1,202,3018357,'2012-12-19 13:49:31',1),(1,240,3018357,'2012-12-19 13:49:31',1),(1,7,3018357,'2012-12-19 13:49:31',1),(1,103,3018357,'2012-12-19 13:49:31',1),(1,38,3018357,'2012-12-19 13:49:31',1),(1,9,3018357,'2012-12-19 13:49:31',1),(1,231,3018357,'2012-12-19 13:49:31',1),(1,2,3018357,'2012-12-19 13:49:31',1),(1,230,3018357,'2012-12-19 13:49:31',1),(1,216,3018357,'2012-12-19 13:49:31',1),(1,50,3018357,'2012-12-19 13:49:31',1),(1,131,3018357,'2012-12-19 13:49:31',1),(1,116,3018734,'2012-12-20 00:46:13',1),(1,61,3018734,'2012-12-20 00:46:13',1),(1,210,3018734,'2012-12-20 00:46:13',1),(1,6,3018734,'2012-12-20 00:46:13',1),(1,82,3018735,'2012-12-20 00:46:13',1),(1,250,3018735,'2012-12-20 00:46:13',1),(1,116,3018735,'2012-12-20 00:46:13',1),(1,61,3018735,'2012-12-20 00:46:13',1),(1,230,3018735,'2012-12-20 00:46:13',1),(1,210,3018735,'2012-12-20 00:46:13',1),(1,6,3018735,'2012-12-20 00:46:13',1),(1,4,3018735,'2012-12-20 00:46:13',1),(1,6,3018740,'2012-12-20 00:46:21',1),(1,4,3018740,'2012-12-20 00:46:21',1),(1,4,3018745,'2012-12-20 00:46:28',1),(1,4,3018744,'2012-12-20 00:46:28',1),(1,4,3018743,'2012-12-20 00:46:28',1),(1,116,3018742,'2012-12-20 00:46:28',1),(1,6,3018742,'2012-12-20 00:46:28',1),(1,4,3018746,'2012-12-20 00:46:36',1),(1,116,3018748,'2012-12-20 00:46:36',1),(1,6,3018748,'2012-12-20 00:46:36',1),(1,116,3018749,'2012-12-20 00:46:36',1),(1,6,3018749,'2012-12-20 00:46:36',1),(1,116,3018750,'2012-12-20 00:46:44',1),(1,61,3018750,'2012-12-20 00:46:44',1),(1,210,3018750,'2012-12-20 00:46:44',1),(1,6,3018750,'2012-12-20 00:46:44',1),(1,116,3018752,'2012-12-20 00:46:48',1),(1,61,3018752,'2012-12-20 00:46:48',1),(1,210,3018752,'2012-12-20 00:46:48',1),(1,6,3018752,'2012-12-20 00:46:48',1),(1,82,3018737,'2012-12-20 01:16:14',1),(1,250,3018737,'2012-12-20 01:16:14',1),(1,116,3018737,'2012-12-20 01:16:14',1),(1,61,3018737,'2012-12-20 01:16:14',1),(1,230,3018737,'2012-12-20 01:16:14',1),(1,210,3018737,'2012-12-20 01:16:14',1),(1,6,3018737,'2012-12-20 01:16:14',1),(1,4,3018737,'2012-12-20 01:16:14',1),(1,82,3018738,'2012-12-20 01:16:22',1),(1,250,3018738,'2012-12-20 01:16:22',1),(1,116,3018738,'2012-12-20 01:16:22',1),(1,61,3018738,'2012-12-20 01:16:22',1),(1,230,3018738,'2012-12-20 01:16:22',1),(1,210,3018738,'2012-12-20 01:16:22',1),(1,6,3018738,'2012-12-20 01:16:22',1),(1,4,3018738,'2012-12-20 01:16:22',1),(1,82,3018739,'2012-12-20 01:16:22',1),(1,189,3018739,'2012-12-20 01:16:22',1),(1,250,3018739,'2012-12-20 01:16:22',1),(1,116,3018739,'2012-12-20 01:16:22',1),(1,61,3018739,'2012-12-20 01:16:22',1),(1,230,3018739,'2012-12-20 01:16:22',1),(1,210,3018739,'2012-12-20 01:16:22',1),(1,6,3018739,'2012-12-20 01:16:22',1),(1,82,3018733,'2012-12-20 01:16:47',1),(1,189,3018733,'2012-12-20 01:16:47',1),(1,250,3018733,'2012-12-20 01:16:47',1),(1,116,3018733,'2012-12-20 01:16:47',1),(1,250,3018836,'2012-12-20 01:46:11',1),(1,156,3018836,'2012-12-20 01:46:11',1),(1,6,3018836,'2012-12-20 01:46:11',1),(1,4,3018836,'2012-12-20 01:46:11',1),(1,6,3018837,'2012-12-20 01:46:14',1),(1,4,3018837,'2012-12-20 01:46:14',1),(1,4,3018838,'2012-12-20 01:46:19',1),(1,252,3018840,'2012-12-20 01:46:19',1),(1,250,3018841,'2012-12-20 01:46:22',1),(1,6,3018841,'2012-12-20 01:46:22',1),(1,250,3018835,'2012-12-20 02:16:13',1),(1,156,3018835,'2012-12-20 02:16:13',1),(1,6,3018835,'2012-12-20 02:16:13',1),(1,4,3018835,'2012-12-20 02:16:13',1),(1,123,3018842,'2012-12-20 02:16:13',1),(1,150,3018842,'2012-12-20 02:16:13',1),(1,220,3018842,'2012-12-20 02:16:13',1),(1,187,3018842,'2012-12-20 02:16:13',1),(1,147,3018842,'2012-12-20 02:16:13',1),(1,153,3018842,'2012-12-20 02:16:13',1),(1,127,3018842,'2012-12-20 02:16:13',1),(1,191,3018842,'2012-12-20 02:16:13',1),(1,123,3018839,'2012-12-20 02:16:21',NULL),(1,150,3018839,'2012-12-20 02:16:21',NULL),(1,220,3018839,'2012-12-20 02:16:21',NULL),(1,187,3018839,'2012-12-20 02:16:21',NULL),(1,147,3018839,'2012-12-20 02:16:21',NULL),(1,153,3018839,'2012-12-20 02:16:21',NULL),(1,127,3018839,'2012-12-20 02:16:21',NULL),(1,191,3018839,'2012-12-20 02:16:21',NULL),(1,189,3018921,'2012-12-20 02:46:13',1),(1,116,3018921,'2012-12-20 02:46:13',1),(1,198,3018921,'2012-12-20 02:46:13',1),(1,6,3018921,'2012-12-20 02:46:13',1),(1,189,3018909,'2012-12-20 02:46:13',1),(1,116,3018909,'2012-12-20 02:46:13',1),(1,198,3018909,'2012-12-20 02:46:13',1),(1,6,3018909,'2012-12-20 02:46:13',1),(1,6,3018911,'2012-12-20 02:46:13',1),(1,4,3018911,'2012-12-20 02:46:13',1),(1,189,3018914,'2012-12-20 02:46:13',1),(1,4,3018918,'2012-12-20 02:46:21',1),(1,14,3018924,'2012-12-20 02:46:28',1),(1,166,3018923,'2012-12-20 02:46:29',1),(1,4,3018923,'2012-12-20 02:46:29',1),(1,250,3018910,'2012-12-20 02:46:37',1),(1,166,3018910,'2012-12-20 02:46:37',1),(1,230,3018910,'2012-12-20 02:46:37',1),(1,210,3018910,'2012-12-20 02:46:37',1),(1,166,3018908,'2012-12-20 02:46:40',1),(1,4,3018908,'2012-12-20 02:46:40',1),(1,166,3018913,'2012-12-20 02:46:44',1),(1,210,3018913,'2012-12-20 02:46:44',1),(1,189,3018925,'2012-12-20 03:16:30',NULL),(1,116,3018925,'2012-12-20 03:16:30',NULL),(1,198,3018925,'2012-12-20 03:16:30',NULL),(1,6,3018925,'2012-12-20 03:16:30',NULL),(1,187,3018917,'2012-12-20 03:16:39',1),(1,153,3018917,'2012-12-20 03:16:39',1),(1,250,3018917,'2012-12-20 03:16:39',1),(1,166,3018917,'2012-12-20 03:16:39',1),(1,220,3018994,'2012-12-20 03:46:11',1),(1,6,3018994,'2012-12-20 03:46:11',1),(1,4,3019015,'2012-12-20 03:46:11',1),(1,4,3018998,'2012-12-20 03:46:19',1),(1,156,3019003,'2012-12-20 03:46:27',1),(1,61,3019003,'2012-12-20 03:46:27',1),(1,220,3019004,'2012-12-20 03:46:28',1),(1,61,3019004,'2012-12-20 03:46:28',1),(1,210,3019004,'2012-12-20 03:46:28',1),(1,6,3019004,'2012-12-20 03:46:28',1),(1,4,3018991,'2012-12-20 03:46:28',1),(1,6,3019007,'2012-12-20 03:46:35',1),(1,156,3019005,'2012-12-20 03:46:36',1),(1,61,3019005,'2012-12-20 03:46:36',1),(1,198,3019008,'2012-12-20 03:46:39',1),(1,6,3019008,'2012-12-20 03:46:39',1),(1,220,3019009,'2012-12-20 03:46:43',1),(1,250,3019009,'2012-12-20 03:46:43',1),(1,61,3019009,'2012-12-20 03:46:43',1),(1,210,3019009,'2012-12-20 03:46:43',1),(1,220,3019012,'2012-12-20 03:46:47',1),(1,250,3019012,'2012-12-20 03:46:47',1),(1,156,3019012,'2012-12-20 03:46:47',1),(1,61,3019012,'2012-12-20 03:46:47',1),(1,147,3018996,'2012-12-20 04:16:21',NULL),(1,4,3018996,'2012-12-20 04:16:21',NULL),(1,123,3018915,'2012-12-20 04:16:27',1),(1,150,3018915,'2012-12-20 04:16:27',1),(1,220,3018915,'2012-12-20 04:16:27',1),(1,153,3018915,'2012-12-20 04:16:27',1),(1,127,3018915,'2012-12-20 04:16:27',1),(1,161,3018915,'2012-12-20 04:16:27',1),(1,189,3018915,'2012-12-20 04:16:27',1),(1,250,3018915,'2012-12-20 04:16:27',1),(1,150,3019002,'2012-12-20 04:16:29',1),(1,189,3019002,'2012-12-20 04:16:29',1),(1,123,3018919,'2012-12-20 04:16:32',1),(1,150,3018919,'2012-12-20 04:16:32',1),(1,220,3018919,'2012-12-20 04:16:32',1),(1,153,3018919,'2012-12-20 04:16:32',1),(1,127,3018919,'2012-12-20 04:16:32',1),(1,161,3018919,'2012-12-20 04:16:32',1),(1,189,3018919,'2012-12-20 04:16:32',1),(1,250,3018919,'2012-12-20 04:16:32',1),(1,123,3018993,'2012-12-20 04:16:54',1),(1,220,3018993,'2012-12-20 04:16:54',1),(1,127,3018993,'2012-12-20 04:16:54',1),(1,250,3018993,'2012-12-20 04:16:54',1),(1,150,3019013,'2012-12-20 04:16:54',1),(1,161,3019013,'2012-12-20 04:16:54',1),(1,189,3019013,'2012-12-20 04:16:54',1),(1,6,3019013,'2012-12-20 04:16:54',1),(1,191,3018997,'2012-12-20 04:16:57',1),(1,14,3018997,'2012-12-20 04:16:57',1),(1,6,3018997,'2012-12-20 04:16:57',1),(1,4,3018997,'2012-12-20 04:16:57',1),(1,123,3018920,'2012-12-20 04:46:39',1),(1,150,3018920,'2012-12-20 04:46:39',1),(1,220,3018920,'2012-12-20 04:46:39',1),(1,153,3018920,'2012-12-20 04:46:39',1),(1,127,3018920,'2012-12-20 04:46:39',1),(1,161,3018920,'2012-12-20 04:46:39',1),(1,189,3018920,'2012-12-20 04:46:39',1),(1,250,3018920,'2012-12-20 04:46:39',1),(1,123,3018912,'2012-12-20 04:46:53',1),(1,150,3018912,'2012-12-20 04:46:53',1),(1,220,3018912,'2012-12-20 04:46:53',1),(1,153,3018912,'2012-12-20 04:46:53',1),(1,127,3018912,'2012-12-20 04:46:53',1),(1,161,3018912,'2012-12-20 04:46:53',1),(1,189,3018912,'2012-12-20 04:46:53',1),(1,250,3018912,'2012-12-20 04:46:53',1),(1,123,3019000,'2012-12-20 05:16:17',1),(1,150,3019000,'2012-12-20 05:16:17',1),(1,220,3019000,'2012-12-20 05:16:17',1),(1,153,3019000,'2012-12-20 05:16:17',1),(1,127,3019000,'2012-12-20 05:16:17',1),(1,161,3019000,'2012-12-20 05:16:17',1),(1,189,3019000,'2012-12-20 05:16:17',1),(1,250,3019000,'2012-12-20 05:16:17',1),(1,123,3018995,'2012-12-20 05:16:18',1),(1,150,3018995,'2012-12-20 05:16:18',1),(1,220,3018995,'2012-12-20 05:16:18',1),(1,153,3018995,'2012-12-20 05:16:18',1),(1,127,3018995,'2012-12-20 05:16:18',1),(1,161,3018995,'2012-12-20 05:16:18',1),(1,189,3018995,'2012-12-20 05:16:18',1),(1,250,3018995,'2012-12-20 05:16:18',1),(1,123,3018999,'2012-12-20 05:16:25',1),(1,150,3018999,'2012-12-20 05:16:25',1),(1,220,3018999,'2012-12-20 05:16:25',1),(1,153,3018999,'2012-12-20 05:16:25',1),(1,127,3018999,'2012-12-20 05:16:25',1),(1,161,3018999,'2012-12-20 05:16:25',1),(1,189,3018999,'2012-12-20 05:16:25',1),(1,250,3018999,'2012-12-20 05:16:25',1),(1,123,3019001,'2012-12-20 06:16:30',1),(1,150,3019001,'2012-12-20 06:16:30',1),(1,220,3019001,'2012-12-20 06:16:30',1),(1,153,3019001,'2012-12-20 06:16:30',1),(1,127,3019001,'2012-12-20 06:16:30',1),(1,161,3019001,'2012-12-20 06:16:30',1),(1,189,3019001,'2012-12-20 06:16:30',1),(1,250,3019001,'2012-12-20 06:16:30',1),(1,123,3019011,'2012-12-20 06:16:54',1),(1,150,3019011,'2012-12-20 06:16:54',1),(1,220,3019011,'2012-12-20 06:16:54',1),(1,153,3019011,'2012-12-20 06:16:54',1),(1,127,3019011,'2012-12-20 06:16:54',1),(1,161,3019011,'2012-12-20 06:16:54',1),(1,189,3019011,'2012-12-20 06:16:54',1),(1,250,3019011,'2012-12-20 06:16:54',1),(1,123,3018992,'2012-12-20 06:47:11',1),(1,150,3018992,'2012-12-20 06:47:11',1),(1,220,3018992,'2012-12-20 06:47:11',1),(1,153,3018992,'2012-12-20 06:47:11',1),(1,127,3018992,'2012-12-20 06:47:11',1),(1,161,3018992,'2012-12-20 06:47:11',1),(1,189,3018992,'2012-12-20 06:47:11',1),(1,250,3018992,'2012-12-20 06:47:11',1),(1,247,3018916,'2012-12-20 13:17:03',1),(1,140,3018916,'2012-12-20 13:17:03',1),(1,96,3018916,'2012-12-20 13:17:03',1),(1,227,3018916,'2012-12-20 13:17:03',1),(1,237,3018916,'2012-12-20 13:17:03',1),(1,137,3018916,'2012-12-20 13:17:03',1),(1,138,3018916,'2012-12-20 13:17:03',1),(1,42,3018916,'2012-12-20 13:17:03',1),(1,97,3018916,'2012-12-20 13:17:03',1),(1,3,3018916,'2012-12-20 13:17:03',1),(1,89,3018916,'2012-12-20 13:17:03',1),(1,82,3018916,'2012-12-20 13:17:03',1),(1,99,3018916,'2012-12-20 13:17:03',1),(1,163,3018916,'2012-12-20 13:17:03',1),(1,33,3018916,'2012-12-20 13:17:03',1),(1,182,3018916,'2012-12-20 13:17:03',1),(1,247,3018922,'2012-12-20 13:17:24',1),(1,140,3018922,'2012-12-20 13:17:24',1),(1,96,3018922,'2012-12-20 13:17:24',1),(1,227,3018922,'2012-12-20 13:17:24',1),(1,237,3018922,'2012-12-20 13:17:24',1),(1,137,3018922,'2012-12-20 13:17:24',1),(1,138,3018922,'2012-12-20 13:17:24',1),(1,42,3018922,'2012-12-20 13:17:24',1),(1,97,3018922,'2012-12-20 13:17:24',1),(1,3,3018922,'2012-12-20 13:17:24',1),(1,89,3018922,'2012-12-20 13:17:24',1),(1,82,3018922,'2012-12-20 13:17:24',1),(1,99,3018922,'2012-12-20 13:17:24',1),(1,163,3018922,'2012-12-20 13:17:24',1),(1,33,3018922,'2012-12-20 13:17:24',1),(1,182,3018922,'2012-12-20 13:17:24',1),(1,247,3019006,'2012-12-20 13:47:15',1),(1,140,3019006,'2012-12-20 13:47:15',1),(1,96,3019006,'2012-12-20 13:47:15',1),(1,227,3019006,'2012-12-20 13:47:15',1),(1,237,3019006,'2012-12-20 13:47:15',1),(1,137,3019006,'2012-12-20 13:47:15',1),(1,138,3019006,'2012-12-20 13:47:15',1),(1,42,3019006,'2012-12-20 13:47:15',1),(1,97,3019006,'2012-12-20 13:47:15',1),(1,3,3019006,'2012-12-20 13:47:15',1),(1,89,3019006,'2012-12-20 13:47:15',1),(1,82,3019006,'2012-12-20 13:47:15',1),(1,99,3019006,'2012-12-20 13:47:15',1),(1,163,3019006,'2012-12-20 13:47:15',1),(1,33,3019006,'2012-12-20 13:47:15',1),(1,182,3019006,'2012-12-20 13:47:15',1),(1,247,3019010,'2012-12-20 14:17:25',1),(1,140,3019010,'2012-12-20 14:17:25',1),(1,96,3019010,'2012-12-20 14:17:25',1),(1,227,3019010,'2012-12-20 14:17:25',1),(1,237,3019010,'2012-12-20 14:17:25',1),(1,137,3019010,'2012-12-20 14:17:25',1),(1,138,3019010,'2012-12-20 14:17:25',1),(1,42,3019010,'2012-12-20 14:17:25',1),(1,97,3019010,'2012-12-20 14:17:25',1),(1,3,3019010,'2012-12-20 14:17:25',1),(1,89,3019010,'2012-12-20 14:17:25',1),(1,82,3019010,'2012-12-20 14:17:25',1),(1,99,3019010,'2012-12-20 14:17:25',1),(1,163,3019010,'2012-12-20 14:17:25',1),(1,33,3019010,'2012-12-20 14:17:25',1),(1,182,3019010,'2012-12-20 14:17:25',1),(1,247,3019014,'2012-12-20 14:17:35',1),(1,140,3019014,'2012-12-20 14:17:35',1),(1,96,3019014,'2012-12-20 14:17:35',1),(1,227,3019014,'2012-12-20 14:17:35',1),(1,237,3019014,'2012-12-20 14:17:35',1),(1,137,3019014,'2012-12-20 14:17:35',1),(1,138,3019014,'2012-12-20 14:17:35',1),(1,42,3019014,'2012-12-20 14:17:35',1),(1,97,3019014,'2012-12-20 14:17:35',1),(1,3,3019014,'2012-12-20 14:17:35',1),(1,89,3019014,'2012-12-20 14:17:35',1),(1,82,3019014,'2012-12-20 14:17:35',1),(1,99,3019014,'2012-12-20 14:17:35',1),(1,163,3019014,'2012-12-20 14:17:35',1),(1,33,3019014,'2012-12-20 14:17:35',1),(1,182,3019014,'2012-12-20 14:17:35',1),(1,45,3019057,'2012-12-21 00:46:14',1),(1,12,3019057,'2012-12-21 00:46:14',1),(1,154,3019057,'2012-12-21 00:46:14',1),(1,28,3019057,'2012-12-21 00:46:14',1),(1,162,3019057,'2012-12-21 00:46:14',1),(1,46,3019057,'2012-12-21 00:46:14',1),(1,167,3019057,'2012-12-21 00:46:14',1),(1,186,3019057,'2012-12-21 00:46:14',1),(1,24,3019059,'2012-12-21 00:46:14',1),(1,123,3019059,'2012-12-21 00:46:14',1),(1,150,3019059,'2012-12-21 00:46:14',1),(1,220,3019059,'2012-12-21 00:46:14',1),(1,153,3019059,'2012-12-21 00:46:14',1),(1,127,3019059,'2012-12-21 00:46:14',1),(1,71,3019059,'2012-12-21 00:46:14',1),(1,44,3019059,'2012-12-21 00:46:14',1),(1,37,3019060,'2012-12-21 00:46:14',1),(1,6,3019060,'2012-12-21 00:46:14',1),(1,24,3019058,'2012-12-21 00:46:14',1),(1,250,3019058,'2012-12-21 00:46:14',1),(1,216,3019058,'2012-12-21 00:46:14',1),(1,123,3019058,'2012-12-21 00:46:14',1),(1,150,3019058,'2012-12-21 00:46:14',1),(1,220,3019058,'2012-12-21 00:46:14',1),(1,153,3019058,'2012-12-21 00:46:14',1),(1,127,3019058,'2012-12-21 00:46:14',1),(1,167,3019062,'2012-12-21 00:46:22',1),(1,186,3019062,'2012-12-21 00:46:22',1),(1,4,3019064,'2012-12-21 00:46:22',1),(1,24,3019063,'2012-12-21 00:46:22',1),(1,240,3019065,'2012-12-21 00:46:29',1),(1,250,3019066,'2012-12-21 00:46:30',1),(1,161,3019068,'2012-12-21 00:46:30',1),(1,54,3019068,'2012-12-21 00:46:30',1),(1,37,3019069,'2012-12-21 00:46:37',1),(1,6,3019069,'2012-12-21 00:46:37',1),(1,24,3019070,'2012-12-21 00:46:37',1),(1,250,3019070,'2012-12-21 00:46:37',1),(1,216,3019070,'2012-12-21 00:46:37',1),(1,123,3019070,'2012-12-21 00:46:37',1),(1,235,3019071,'2012-12-21 00:46:37',1),(1,111,3019071,'2012-12-21 00:46:37',1),(1,161,3019071,'2012-12-21 00:46:37',1),(1,54,3019071,'2012-12-21 00:46:37',1),(1,150,3019073,'2012-12-21 00:46:46',1),(1,220,3019073,'2012-12-21 00:46:46',1),(1,153,3019073,'2012-12-21 00:46:46',1),(1,127,3019073,'2012-12-21 00:46:46',1),(1,154,3019054,'2012-12-21 00:46:46',1),(1,28,3019054,'2012-12-21 00:46:46',1),(1,162,3019054,'2012-12-21 00:46:46',1),(1,46,3019054,'2012-12-21 00:46:46',1),(1,167,3019055,'2012-12-21 00:46:47',1),(1,186,3019055,'2012-12-21 00:46:47',1),(1,235,3019055,'2012-12-21 00:46:47',1),(1,111,3019055,'2012-12-21 00:46:47',1),(1,161,3019055,'2012-12-21 00:46:47',1),(1,54,3019055,'2012-12-21 00:46:47',1),(1,37,3019055,'2012-12-21 00:46:47',1),(1,6,3019055,'2012-12-21 00:46:47',1),(1,4,3019149,'2012-12-21 01:46:12',1),(1,189,3019151,'2012-12-21 01:46:12',1),(1,166,3019151,'2012-12-21 01:46:12',1),(1,240,3019151,'2012-12-21 01:46:12',1),(1,123,3019151,'2012-12-21 01:46:12',1),(1,150,3019151,'2012-12-21 01:46:12',1),(1,220,3019151,'2012-12-21 01:46:12',1),(1,153,3019151,'2012-12-21 01:46:12',1),(1,127,3019151,'2012-12-21 01:46:12',1),(1,189,3019150,'2012-12-21 01:46:12',1),(1,166,3019150,'2012-12-21 01:46:12',1),(1,167,3019152,'2012-12-21 01:46:12',1),(1,186,3019152,'2012-12-21 01:46:12',1),(1,235,3019152,'2012-12-21 01:46:12',1),(1,111,3019152,'2012-12-21 01:46:12',1),(1,161,3019145,'2012-12-21 01:46:20',1),(1,54,3019145,'2012-12-21 01:46:20',1),(1,37,3019145,'2012-12-21 01:46:20',1),(1,6,3019145,'2012-12-21 01:46:20',1),(1,150,3019147,'2012-12-21 01:46:20',1),(1,240,3019146,'2012-12-21 01:46:20',1),(1,123,3019146,'2012-12-21 01:46:20',1),(1,71,3019148,'2012-12-21 01:46:20',1),(1,44,3019148,'2012-12-21 01:46:20',1),(1,45,3019148,'2012-12-21 01:46:20',1),(1,12,3019148,'2012-12-21 01:46:20',1),(1,154,3019148,'2012-12-21 01:46:20',1),(1,28,3019148,'2012-12-21 01:46:20',1),(1,162,3019148,'2012-12-21 01:46:20',1),(1,46,3019148,'2012-12-21 01:46:20',1),(1,189,3019225,'2012-12-21 02:46:11',1),(1,250,3019225,'2012-12-21 02:46:11',1),(1,70,3019225,'2012-12-21 02:46:11',1),(1,123,3019225,'2012-12-21 02:46:11',1),(1,150,3019225,'2012-12-21 02:46:11',1),(1,220,3019225,'2012-12-21 02:46:11',1),(1,153,3019225,'2012-12-21 02:46:11',1),(1,127,3019225,'2012-12-21 02:46:11',1),(1,6,3019229,'2012-12-21 02:46:11',1),(1,4,3019229,'2012-12-21 02:46:11',1),(1,6,3019234,'2012-12-21 02:46:11',1),(1,4,3019234,'2012-12-21 02:46:11',1),(1,111,3019217,'2012-12-21 02:46:11',1),(1,161,3019217,'2012-12-21 02:46:11',1),(1,54,3019217,'2012-12-21 02:46:11',1),(1,37,3019217,'2012-12-21 02:46:11',1),(1,189,3019222,'2012-12-21 02:46:19',1),(1,250,3019222,'2012-12-21 02:46:19',1),(1,70,3019222,'2012-12-21 02:46:19',1),(1,123,3019222,'2012-12-21 02:46:19',1),(1,150,3019222,'2012-12-21 02:46:19',1),(1,220,3019222,'2012-12-21 02:46:19',1),(1,153,3019222,'2012-12-21 02:46:19',1),(1,127,3019222,'2012-12-21 02:46:19',1),(1,123,3019223,'2012-12-21 02:46:19',1),(1,150,3019223,'2012-12-21 02:46:19',1),(1,220,3019223,'2012-12-21 02:46:19',1),(1,153,3019223,'2012-12-21 02:46:19',1),(1,127,3019223,'2012-12-21 02:46:19',1),(1,71,3019223,'2012-12-21 02:46:19',1),(1,44,3019223,'2012-12-21 02:46:19',1),(1,45,3019223,'2012-12-21 02:46:19',1),(1,12,3019223,'2012-12-21 02:46:19',1),(1,154,3019223,'2012-12-21 02:46:19',1),(1,28,3019223,'2012-12-21 02:46:19',1),(1,162,3019223,'2012-12-21 02:46:19',1),(1,46,3019223,'2012-12-21 02:46:19',1),(1,167,3019223,'2012-12-21 02:46:19',1),(1,186,3019223,'2012-12-21 02:46:19',1),(1,235,3019223,'2012-12-21 02:46:19',1),(1,37,3019224,'2012-12-21 02:46:19',1),(1,235,3019232,'2012-12-21 02:46:27',1),(1,111,3019232,'2012-12-21 02:46:27',1),(1,161,3019232,'2012-12-21 02:46:27',1),(1,54,3019232,'2012-12-21 02:46:27',1),(1,167,3019226,'2012-12-21 02:46:27',1),(1,186,3019226,'2012-12-21 02:46:27',1),(1,6,3019226,'2012-12-21 02:46:27',1),(1,4,3019226,'2012-12-21 02:46:27',1),(1,111,3019231,'2012-12-21 02:46:27',1),(1,161,3019231,'2012-12-21 02:46:27',1),(1,54,3019231,'2012-12-21 02:46:27',1),(1,37,3019231,'2012-12-21 02:46:27',1),(1,250,3019233,'2012-12-21 02:46:35',1),(1,123,3019233,'2012-12-21 02:46:35',1),(1,150,3019233,'2012-12-21 02:46:35',1),(1,220,3019233,'2012-12-21 02:46:35',1),(1,153,3019233,'2012-12-21 02:46:35',1),(1,127,3019233,'2012-12-21 02:46:35',1),(1,71,3019233,'2012-12-21 02:46:35',1),(1,44,3019233,'2012-12-21 02:46:35',1),(1,45,3019233,'2012-12-21 02:46:35',1),(1,12,3019233,'2012-12-21 02:46:35',1),(1,154,3019233,'2012-12-21 02:46:35',1),(1,28,3019233,'2012-12-21 02:46:35',1),(1,162,3019233,'2012-12-21 02:46:35',1),(1,46,3019233,'2012-12-21 02:46:35',1),(1,167,3019233,'2012-12-21 02:46:35',1),(1,186,3019233,'2012-12-21 02:46:35',1),(1,6,3019218,'2012-12-21 02:46:35',1),(1,4,3019218,'2012-12-21 02:46:35',1),(1,189,3019219,'2012-12-21 02:46:35',1),(1,250,3019219,'2012-12-21 02:46:35',1),(1,70,3019219,'2012-12-21 02:46:35',1),(1,123,3019219,'2012-12-21 02:46:35',1),(1,150,3019219,'2012-12-21 02:46:35',1),(1,220,3019219,'2012-12-21 02:46:35',1),(1,153,3019219,'2012-12-21 02:46:35',1),(1,127,3019219,'2012-12-21 02:46:35',1),(1,167,3019220,'2012-12-21 02:46:43',1),(1,186,3019220,'2012-12-21 02:46:43',1),(1,6,3019221,'2012-12-21 02:46:43',1),(1,71,3019230,'2012-12-21 03:16:22',1),(1,44,3019230,'2012-12-21 03:16:22',1),(1,45,3019230,'2012-12-21 03:16:22',1),(1,12,3019230,'2012-12-21 03:16:22',1),(1,154,3019230,'2012-12-21 03:16:22',1),(1,28,3019230,'2012-12-21 03:16:22',1),(1,162,3019230,'2012-12-21 03:16:22',1),(1,46,3019230,'2012-12-21 03:16:22',1),(1,37,3019227,'2012-12-21 03:16:30',1),(1,235,3019228,'2012-12-21 03:16:38',NULL),(1,111,3019228,'2012-12-21 03:16:38',NULL),(1,161,3019228,'2012-12-21 03:16:38',NULL),(1,54,3019228,'2012-12-21 03:16:38',NULL),(1,172,3019320,'2012-12-21 03:46:14',1),(1,87,3019320,'2012-12-21 03:46:14',1),(1,24,3019320,'2012-12-21 03:46:14',1),(1,174,3019320,'2012-12-21 03:46:14',1),(1,107,3019308,'2012-12-21 03:46:14',1),(1,15,3019308,'2012-12-21 03:46:14',1),(1,189,3019309,'2012-12-21 03:46:21',1),(1,32,3019309,'2012-12-21 03:46:21',1),(1,189,3019310,'2012-12-21 03:46:21',1),(1,32,3019310,'2012-12-21 03:46:21',1),(1,144,3019310,'2012-12-21 03:46:21',1),(1,188,3019310,'2012-12-21 03:46:21',1),(1,144,3019313,'2012-12-21 03:46:21',1),(1,135,3019313,'2012-12-21 03:46:21',1),(1,246,3019313,'2012-12-21 03:46:21',1),(1,149,3019313,'2012-12-21 03:46:21',1),(1,119,3019313,'2012-12-21 03:46:21',1),(1,136,3019313,'2012-12-21 03:46:21',1),(1,122,3019313,'2012-12-21 03:46:21',1),(1,123,3019313,'2012-12-21 03:46:21',1),(1,150,3019313,'2012-12-21 03:46:21',1),(1,220,3019313,'2012-12-21 03:46:21',1),(1,197,3019313,'2012-12-21 03:46:21',1),(1,170,3019313,'2012-12-21 03:46:21',1),(1,225,3019313,'2012-12-21 03:46:21',1),(1,146,3019313,'2012-12-21 03:46:21',1),(1,153,3019313,'2012-12-21 03:46:21',1),(1,127,3019313,'2012-12-21 03:46:21',1),(1,144,3019315,'2012-12-21 03:46:30',1),(1,188,3019315,'2012-12-21 03:46:30',1),(1,84,3019316,'2012-12-21 03:46:33',1),(1,107,3019316,'2012-12-21 03:46:33',1),(1,15,3019316,'2012-12-21 03:46:33',1),(1,53,3019316,'2012-12-21 03:46:33',1),(1,71,3019317,'2012-12-21 03:46:38',1),(1,44,3019317,'2012-12-21 03:46:38',1),(1,45,3019317,'2012-12-21 03:46:38',1),(1,12,3019317,'2012-12-21 03:46:38',1),(1,154,3019317,'2012-12-21 03:46:38',1),(1,28,3019317,'2012-12-21 03:46:38',1),(1,162,3019317,'2012-12-21 03:46:38',1),(1,46,3019317,'2012-12-21 03:46:38',1),(1,167,3019317,'2012-12-21 03:46:38',1),(1,186,3019317,'2012-12-21 03:46:38',1),(1,235,3019317,'2012-12-21 03:46:38',1),(1,111,3019317,'2012-12-21 03:46:38',1),(1,161,3019317,'2012-12-21 03:46:38',1),(1,54,3019317,'2012-12-21 03:46:38',1),(1,6,3019317,'2012-12-21 03:46:38',1),(1,4,3019317,'2012-12-21 03:46:38',1),(1,87,3019318,'2012-12-21 03:46:38',1),(1,24,3019318,'2012-12-21 03:46:38',1),(1,174,3019318,'2012-12-21 03:46:38',1),(1,107,3019318,'2012-12-21 03:46:38',1),(1,15,3019318,'2012-12-21 03:46:38',1),(1,53,3019318,'2012-12-21 03:46:38',1),(1,6,3019318,'2012-12-21 03:46:38',1),(1,4,3019318,'2012-12-21 03:46:38',1),(1,189,3019323,'2012-12-21 03:46:40',1),(1,32,3019323,'2012-12-21 03:46:40',1),(1,144,3019323,'2012-12-21 03:46:40',1),(1,188,3019323,'2012-12-21 03:46:40',1),(1,84,3019302,'2012-12-21 03:46:46',1),(1,53,3019302,'2012-12-21 03:46:46',1),(1,135,3019322,'2012-12-21 03:46:53',1),(1,246,3019322,'2012-12-21 03:46:53',1),(1,149,3019322,'2012-12-21 03:46:53',1),(1,119,3019322,'2012-12-21 03:46:53',1),(1,136,3019322,'2012-12-21 03:46:53',1),(1,122,3019322,'2012-12-21 03:46:53',1),(1,123,3019322,'2012-12-21 03:46:53',1),(1,150,3019322,'2012-12-21 03:46:53',1),(1,220,3019322,'2012-12-21 03:46:53',1),(1,197,3019322,'2012-12-21 03:46:53',1),(1,170,3019322,'2012-12-21 03:46:53',1),(1,225,3019322,'2012-12-21 03:46:53',1),(1,146,3019322,'2012-12-21 03:46:53',1),(1,153,3019322,'2012-12-21 03:46:53',1),(1,127,3019322,'2012-12-21 03:46:53',1),(1,37,3019322,'2012-12-21 03:46:53',1),(1,71,3019306,'2012-12-21 04:16:16',1),(1,44,3019306,'2012-12-21 04:16:16',1),(1,45,3019306,'2012-12-21 04:16:16',1),(1,12,3019306,'2012-12-21 04:16:16',1),(1,154,3019306,'2012-12-21 04:16:16',1),(1,28,3019306,'2012-12-21 04:16:16',1),(1,162,3019306,'2012-12-21 04:16:16',1),(1,46,3019306,'2012-12-21 04:16:16',1),(1,167,3019307,'2012-12-21 04:16:16',1),(1,186,3019307,'2012-12-21 04:16:16',1),(1,235,3019307,'2012-12-21 04:16:16',1),(1,111,3019307,'2012-12-21 04:16:16',1),(1,161,3019307,'2012-12-21 04:16:16',1),(1,54,3019307,'2012-12-21 04:16:16',1),(1,172,3019307,'2012-12-21 04:16:16',1),(1,84,3019307,'2012-12-21 04:16:16',1),(1,59,3019311,'2012-12-21 04:16:23',1),(1,4,3019314,'2012-12-21 04:16:31',1),(1,59,3019301,'2012-12-21 04:16:31',1),(1,107,3019319,'2012-12-21 04:16:40',1),(1,15,3019319,'2012-12-21 04:16:40',1),(1,53,3019319,'2012-12-21 04:16:40',1),(1,6,3019319,'2012-12-21 04:16:40',1),(1,70,3019321,'2012-12-21 04:16:48',1),(1,189,3019321,'2012-12-21 04:16:48',1),(1,85,3019321,'2012-12-21 04:16:48',1),(1,32,3019321,'2012-12-21 04:16:48',1),(1,70,3019303,'2012-12-21 04:16:48',1),(1,189,3019303,'2012-12-21 04:16:48',1),(1,32,3019303,'2012-12-21 04:16:48',1),(1,144,3019303,'2012-12-21 04:16:48',1),(1,188,3019303,'2012-12-21 04:16:48',1),(1,87,3019303,'2012-12-21 04:16:48',1),(1,24,3019303,'2012-12-21 04:16:48',1),(1,174,3019303,'2012-12-21 04:16:48',1),(1,144,3019304,'2012-12-21 04:16:50',1),(1,188,3019304,'2012-12-21 04:16:50',1),(1,173,3019305,'2012-12-21 04:16:55',1),(1,135,3019325,'2012-12-21 04:16:55',1),(1,246,3019325,'2012-12-21 04:16:55',1),(1,149,3019325,'2012-12-21 04:16:55',1),(1,119,3019325,'2012-12-21 04:16:55',1),(1,136,3019325,'2012-12-21 04:16:55',1),(1,122,3019325,'2012-12-21 04:16:55',1),(1,123,3019325,'2012-12-21 04:16:55',1),(1,150,3019325,'2012-12-21 04:16:55',1),(1,59,3019312,'2012-12-21 04:17:03',1),(1,87,3019312,'2012-12-21 04:17:03',1),(1,220,3019324,'2012-12-21 04:46:58',1),(1,197,3019324,'2012-12-21 04:46:58',1),(1,170,3019324,'2012-12-21 04:46:58',1),(1,225,3019324,'2012-12-21 04:46:58',1),(1,146,3019324,'2012-12-21 04:46:58',1),(1,153,3019324,'2012-12-21 04:46:58',1),(1,127,3019324,'2012-12-21 04:46:58',1),(1,37,3019324,'2012-12-21 04:46:58',1),(1,133,3019431,'2012-12-22 00:46:15',1),(1,88,3019431,'2012-12-22 00:46:15',1),(1,40,3019431,'2012-12-22 00:46:15',1),(1,147,3019431,'2012-12-22 00:46:15',1),(1,191,3019431,'2012-12-22 00:46:15',1),(1,23,3019431,'2012-12-22 00:46:15',1),(1,112,3019431,'2012-12-22 00:46:15',1),(1,130,3019431,'2012-12-22 00:46:15',1),(1,215,3019432,'2012-12-22 00:46:15',1),(1,5,3019432,'2012-12-22 00:46:15',1),(1,229,3019432,'2012-12-22 00:46:15',1),(1,218,3019432,'2012-12-22 00:46:15',1),(1,219,3019432,'2012-12-22 00:46:15',1),(1,200,3019432,'2012-12-22 00:46:15',1),(1,67,3019432,'2012-12-22 00:46:15',1),(1,104,3019432,'2012-12-22 00:46:15',1),(1,147,3019430,'2012-12-22 00:46:15',1),(1,191,3019430,'2012-12-22 00:46:15',1),(1,23,3019430,'2012-12-22 00:46:15',1),(1,112,3019430,'2012-12-22 00:46:15',1),(1,65,3019430,'2012-12-22 00:46:15',1),(1,110,3019430,'2012-12-22 00:46:15',1),(1,108,3019430,'2012-12-22 00:46:15',1),(1,102,3019430,'2012-12-22 00:46:15',1),(1,209,3019433,'2012-12-22 00:46:23',1),(1,90,3019433,'2012-12-22 00:46:23',1),(1,209,3019435,'2012-12-22 00:46:23',1),(1,90,3019435,'2012-12-22 00:46:23',1),(1,69,3019436,'2012-12-22 00:46:27',1),(1,133,3019437,'2012-12-22 00:46:30',1),(1,90,3019438,'2012-12-22 00:46:30',1),(1,209,3019439,'2012-12-22 00:46:33',1),(1,219,3019441,'2012-12-22 00:46:39',1),(1,200,3019441,'2012-12-22 00:46:39',1),(1,67,3019442,'2012-12-22 00:46:39',1),(1,104,3019442,'2012-12-22 00:46:39',1),(1,133,3019443,'2012-12-22 00:46:39',1),(1,88,3019443,'2012-12-22 00:46:39',1),(1,40,3019443,'2012-12-22 00:46:39',1),(1,147,3019443,'2012-12-22 00:46:39',1),(1,98,3019444,'2012-12-22 00:46:40',1),(1,248,3019444,'2012-12-22 00:46:40',1),(1,191,3019444,'2012-12-22 00:46:40',1),(1,23,3019444,'2012-12-22 00:46:40',1),(1,108,3019446,'2012-12-22 00:46:48',1),(1,102,3019446,'2012-12-22 00:46:48',1),(1,215,3019446,'2012-12-22 00:46:48',1),(1,5,3019446,'2012-12-22 00:46:48',1),(1,112,3019447,'2012-12-22 00:46:48',1),(1,130,3019447,'2012-12-22 00:46:48',1),(1,65,3019447,'2012-12-22 00:46:48',1),(1,110,3019447,'2012-12-22 00:46:48',1),(1,219,3019428,'2012-12-22 00:46:52',1),(1,200,3019428,'2012-12-22 00:46:52',1),(1,67,3019428,'2012-12-22 00:46:52',1),(1,104,3019428,'2012-12-22 00:46:52',1),(1,49,3019428,'2012-12-22 00:46:52',1),(1,207,3019428,'2012-12-22 00:46:52',1),(1,213,3019428,'2012-12-22 00:46:52',1),(1,69,3019428,'2012-12-22 00:46:52',1),(1,219,3019534,'2012-12-22 01:46:11',1),(1,200,3019534,'2012-12-22 01:46:11',1),(1,67,3019534,'2012-12-22 01:46:11',1),(1,104,3019534,'2012-12-22 01:46:11',1),(1,191,3019533,'2012-12-22 01:46:11',1),(1,23,3019533,'2012-12-22 01:46:11',1),(1,14,3019533,'2012-12-22 01:46:11',1),(1,112,3019533,'2012-12-22 01:46:11',1),(1,130,3019533,'2012-12-22 01:46:11',1),(1,64,3019533,'2012-12-22 01:46:11',1),(1,65,3019533,'2012-12-22 01:46:11',1),(1,110,3019533,'2012-12-22 01:46:11',1),(1,209,3019532,'2012-12-22 01:46:12',1),(1,90,3019532,'2012-12-22 01:46:12',1),(1,49,3019535,'2012-12-22 01:46:12',1),(1,207,3019535,'2012-12-22 01:46:12',1),(1,213,3019535,'2012-12-22 01:46:12',1),(1,69,3019535,'2012-12-22 01:46:12',1),(1,191,3019528,'2012-12-22 01:46:19',1),(1,23,3019528,'2012-12-22 01:46:19',1),(1,56,3019529,'2012-12-22 01:46:19',1),(1,202,3019530,'2012-12-22 01:46:20',1),(1,108,3019530,'2012-12-22 01:46:20',1),(1,102,3019530,'2012-12-22 01:46:20',1),(1,10,3019530,'2012-12-22 01:46:20',1),(1,215,3019530,'2012-12-22 01:46:20',1),(1,5,3019530,'2012-12-22 01:46:20',1),(1,229,3019530,'2012-12-22 01:46:20',1),(1,218,3019530,'2012-12-22 01:46:20',1),(1,14,3019531,'2012-12-22 01:46:20',1),(1,90,3019604,'2012-12-22 02:46:11',1),(1,56,3019604,'2012-12-22 02:46:11',1),(1,5,3019620,'2012-12-22 02:46:11',1),(1,229,3019620,'2012-12-22 02:46:11',1),(1,218,3019620,'2012-12-22 02:46:11',1),(1,219,3019620,'2012-12-22 02:46:11',1),(1,200,3019620,'2012-12-22 02:46:11',1),(1,67,3019620,'2012-12-22 02:46:11',1),(1,104,3019620,'2012-12-22 02:46:11',1),(1,49,3019620,'2012-12-22 02:46:11',1),(1,207,3019613,'2012-12-22 02:46:11',1),(1,213,3019613,'2012-12-22 02:46:11',1),(1,69,3019613,'2012-12-22 02:46:11',1),(1,209,3019613,'2012-12-22 02:46:11',1),(1,49,3019615,'2012-12-22 02:46:13',1),(1,215,3019619,'2012-12-22 02:46:20',1),(1,5,3019619,'2012-12-22 02:46:20',1),(1,229,3019619,'2012-12-22 02:46:20',1),(1,218,3019619,'2012-12-22 02:46:20',1),(1,219,3019619,'2012-12-22 02:46:20',1),(1,200,3019619,'2012-12-22 02:46:20',1),(1,67,3019619,'2012-12-22 02:46:20',1),(1,104,3019619,'2012-12-22 02:46:20',1),(1,233,3019612,'2012-12-22 02:46:20',1),(1,207,3019612,'2012-12-22 02:46:20',1),(1,213,3019612,'2012-12-22 02:46:20',1),(1,69,3019612,'2012-12-22 02:46:20',1),(1,233,3019621,'2012-12-22 02:46:20',1),(1,207,3019621,'2012-12-22 02:46:20',1),(1,213,3019621,'2012-12-22 02:46:20',1),(1,69,3019621,'2012-12-22 02:46:20',1),(1,233,3019614,'2012-12-22 02:46:24',1),(1,49,3019614,'2012-12-22 02:46:24',1),(1,207,3019614,'2012-12-22 02:46:24',1),(1,213,3019614,'2012-12-22 02:46:24',1),(1,40,3019617,'2012-12-22 02:46:28',1),(1,209,3019617,'2012-12-22 02:46:28',1),(1,209,3019618,'2012-12-22 02:46:28',1),(1,90,3019618,'2012-12-22 02:46:28',1),(1,90,3019611,'2012-12-22 02:46:29',1),(1,48,3019605,'2012-12-22 02:46:37',1),(1,79,3019605,'2012-12-22 02:46:37',1),(1,152,3019605,'2012-12-22 02:46:37',1),(1,191,3019605,'2012-12-22 02:46:37',1),(1,23,3019605,'2012-12-22 02:46:37',1),(1,14,3019605,'2012-12-22 02:46:37',1),(1,112,3019605,'2012-12-22 02:46:37',1),(1,130,3019605,'2012-12-22 02:46:37',1),(1,64,3019605,'2012-12-22 02:46:37',1),(1,65,3019605,'2012-12-22 02:46:37',1),(1,110,3019605,'2012-12-22 02:46:37',1),(1,202,3019605,'2012-12-22 02:46:37',1),(1,108,3019605,'2012-12-22 02:46:37',1),(1,102,3019605,'2012-12-22 02:46:37',1),(1,10,3019605,'2012-12-22 02:46:37',1),(1,215,3019605,'2012-12-22 02:46:37',1),(1,125,3019606,'2012-12-22 02:46:37',1),(1,48,3019606,'2012-12-22 02:46:37',1),(1,79,3019606,'2012-12-22 02:46:37',1),(1,40,3019606,'2012-12-22 02:46:37',1),(1,152,3019606,'2012-12-22 02:46:37',1),(1,191,3019606,'2012-12-22 02:46:37',1),(1,23,3019606,'2012-12-22 02:46:37',1),(1,14,3019606,'2012-12-22 02:46:37',1),(1,90,3019607,'2012-12-22 02:46:38',1),(1,56,3019607,'2012-12-22 02:46:38',1),(1,56,3019608,'2012-12-22 02:46:40',1),(1,125,3019610,'2012-12-22 02:46:44',1),(1,48,3019610,'2012-12-22 02:46:44',1),(1,79,3019610,'2012-12-22 02:46:44',1),(1,152,3019610,'2012-12-22 02:46:44',1),(1,191,3019610,'2012-12-22 02:46:44',1),(1,23,3019610,'2012-12-22 02:46:44',1),(1,14,3019610,'2012-12-22 02:46:44',1),(1,112,3019610,'2012-12-22 02:46:44',1),(1,130,3019610,'2012-12-22 02:46:44',1),(1,64,3019610,'2012-12-22 02:46:44',1),(1,65,3019610,'2012-12-22 02:46:44',1),(1,110,3019610,'2012-12-22 02:46:44',1),(1,202,3019610,'2012-12-22 02:46:44',1),(1,108,3019610,'2012-12-22 02:46:44',1),(1,102,3019610,'2012-12-22 02:46:44',1),(1,10,3019610,'2012-12-22 02:46:44',1),(1,112,3019609,'2012-12-22 02:46:45',1),(1,130,3019609,'2012-12-22 02:46:45',1),(1,64,3019609,'2012-12-22 02:46:45',1),(1,65,3019609,'2012-12-22 02:46:45',1),(1,110,3019609,'2012-12-22 02:46:45',1),(1,202,3019609,'2012-12-22 02:46:45',1),(1,108,3019609,'2012-12-22 02:46:45',1),(1,102,3019609,'2012-12-22 02:46:45',1),(1,104,3019616,'2012-12-22 03:16:30',NULL),(1,69,3019616,'2012-12-22 03:16:30',NULL),(1,209,3019616,'2012-12-22 03:16:30',NULL),(1,56,3019616,'2012-12-22 03:16:30',NULL),(1,209,3019698,'2012-12-22 03:46:11',1),(1,90,3019698,'2012-12-22 03:46:11',1),(1,11,3019699,'2012-12-22 03:46:11',1),(1,18,3019699,'2012-12-22 03:46:11',1),(1,21,3019699,'2012-12-22 03:46:11',1),(1,236,3019699,'2012-12-22 03:46:11',1),(1,209,3019701,'2012-12-22 03:46:11',1),(1,90,3019701,'2012-12-22 03:46:11',1),(1,209,3019721,'2012-12-22 03:46:13',1),(1,90,3019721,'2012-12-22 03:46:13',1),(1,126,3019703,'2012-12-22 03:46:19',1),(1,23,3019703,'2012-12-22 03:46:19',1),(1,14,3019703,'2012-12-22 03:46:19',1),(1,112,3019703,'2012-12-22 03:46:19',1),(1,130,3019703,'2012-12-22 03:46:19',1),(1,64,3019703,'2012-12-22 03:46:19',1),(1,65,3019703,'2012-12-22 03:46:19',1),(1,110,3019703,'2012-12-22 03:46:19',1),(1,202,3019705,'2012-12-22 03:46:20',1),(1,108,3019705,'2012-12-22 03:46:20',1),(1,102,3019705,'2012-12-22 03:46:20',1),(1,104,3019705,'2012-12-22 03:46:20',1),(1,49,3019705,'2012-12-22 03:46:20',1),(1,207,3019705,'2012-12-22 03:46:20',1),(1,213,3019705,'2012-12-22 03:46:20',1),(1,69,3019705,'2012-12-22 03:46:20',1),(1,98,3019707,'2012-12-22 03:46:22',1),(1,56,3019707,'2012-12-22 03:46:22',1),(1,151,3019708,'2012-12-22 03:46:27',1),(1,41,3019708,'2012-12-22 03:46:27',1),(1,158,3019708,'2012-12-22 03:46:27',1),(1,56,3019708,'2012-12-22 03:46:27',1),(1,11,3019709,'2012-12-22 03:46:27',1),(1,69,3019711,'2012-12-22 03:46:27',1),(1,27,3019712,'2012-12-22 03:46:29',1),(1,151,3019712,'2012-12-22 03:46:29',1),(1,151,3019714,'2012-12-22 03:46:35',1),(1,41,3019714,'2012-12-22 03:46:35',1),(1,158,3019714,'2012-12-22 03:46:35',1),(1,56,3019714,'2012-12-22 03:46:35',1),(1,18,3019713,'2012-12-22 03:46:35',1),(1,27,3019697,'2012-12-22 03:46:35',1),(1,151,3019697,'2012-12-22 03:46:35',1),(1,41,3019697,'2012-12-22 03:46:35',1),(1,158,3019697,'2012-12-22 03:46:35',1),(1,27,3019717,'2012-12-22 03:46:43',1),(1,151,3019717,'2012-12-22 03:46:43',1),(1,41,3019717,'2012-12-22 03:46:43',1),(1,158,3019717,'2012-12-22 03:46:43',1),(1,21,3019720,'2012-12-22 03:46:51',1),(1,20,3019704,'2012-12-22 04:16:22',1),(1,88,3019704,'2012-12-22 04:16:22',1),(1,158,3019704,'2012-12-22 04:16:22',1),(1,51,3019704,'2012-12-22 04:16:22',1),(1,69,3019704,'2012-12-22 04:16:22',1),(1,209,3019704,'2012-12-22 04:16:22',1),(1,90,3019704,'2012-12-22 04:16:22',1),(1,56,3019704,'2012-12-22 04:16:22',1),(1,126,3019715,'2012-12-22 04:16:38',1),(1,248,3019715,'2012-12-22 04:16:38',1),(1,23,3019715,'2012-12-22 04:16:38',1),(1,14,3019715,'2012-12-22 04:16:38',1),(1,112,3019715,'2012-12-22 04:16:38',1),(1,130,3019715,'2012-12-22 04:16:38',1),(1,64,3019715,'2012-12-22 04:16:38',1),(1,65,3019715,'2012-12-22 04:16:38',1),(1,110,3019715,'2012-12-22 04:16:38',1),(1,202,3019715,'2012-12-22 04:16:38',1),(1,108,3019715,'2012-12-22 04:16:38',1),(1,102,3019715,'2012-12-22 04:16:38',1),(1,104,3019715,'2012-12-22 04:16:38',1),(1,49,3019715,'2012-12-22 04:16:38',1),(1,207,3019715,'2012-12-22 04:16:38',1),(1,213,3019715,'2012-12-22 04:16:38',1),(1,20,3019718,'2012-12-22 04:16:45',1),(1,51,3019718,'2012-12-22 04:16:45',1),(1,209,3019718,'2012-12-22 04:16:45',1),(1,90,3019718,'2012-12-22 04:16:45',1),(1,126,3019719,'2012-12-22 04:16:46',1),(1,248,3019719,'2012-12-22 04:16:46',1),(1,23,3019719,'2012-12-22 04:16:46',1),(1,14,3019719,'2012-12-22 04:16:46',1),(1,112,3019719,'2012-12-22 04:16:46',1),(1,130,3019719,'2012-12-22 04:16:46',1),(1,64,3019719,'2012-12-22 04:16:46',1),(1,65,3019719,'2012-12-22 04:16:46',1),(1,110,3019719,'2012-12-22 04:16:46',1),(1,202,3019719,'2012-12-22 04:16:46',1),(1,108,3019719,'2012-12-22 04:16:46',1),(1,102,3019719,'2012-12-22 04:16:46',1),(1,104,3019719,'2012-12-22 04:16:46',1),(1,49,3019719,'2012-12-22 04:16:46',1),(1,207,3019719,'2012-12-22 04:16:46',1),(1,213,3019719,'2012-12-22 04:16:46',1),(1,20,3019716,'2012-12-22 04:46:47',1),(1,160,3019716,'2012-12-22 04:46:47',1),(1,88,3019716,'2012-12-22 04:46:47',1),(1,158,3019716,'2012-12-22 04:46:47',1),(1,51,3019716,'2012-12-22 04:46:47',1),(1,69,3019716,'2012-12-22 04:46:47',1),(1,209,3019716,'2012-12-22 04:46:47',1),(1,90,3019716,'2012-12-22 04:46:47',1),(1,20,3019700,'2012-12-22 04:46:55',1),(1,160,3019700,'2012-12-22 04:46:55',1),(1,88,3019700,'2012-12-22 04:46:55',1),(1,41,3019700,'2012-12-22 04:46:55',1),(1,155,3019700,'2012-12-22 04:46:55',1),(1,158,3019700,'2012-12-22 04:46:55',1),(1,51,3019700,'2012-12-22 04:46:55',1),(1,69,3019700,'2012-12-22 04:46:55',1),(1,126,3019710,'2012-12-22 04:46:55',1),(1,248,3019710,'2012-12-22 04:46:55',1),(1,23,3019710,'2012-12-22 04:46:55',1),(1,14,3019710,'2012-12-22 04:46:55',1),(1,112,3019710,'2012-12-22 04:46:55',1),(1,130,3019710,'2012-12-22 04:46:55',1),(1,64,3019710,'2012-12-22 04:46:55',1),(1,65,3019710,'2012-12-22 04:46:55',1),(1,110,3019710,'2012-12-22 04:46:55',1),(1,202,3019710,'2012-12-22 04:46:55',1),(1,108,3019710,'2012-12-22 04:46:55',1),(1,102,3019710,'2012-12-22 04:46:55',1),(1,104,3019710,'2012-12-22 04:46:55',1),(1,49,3019710,'2012-12-22 04:46:55',1),(1,207,3019710,'2012-12-22 04:46:55',1),(1,213,3019710,'2012-12-22 04:46:55',1),(1,41,3019706,'2012-12-22 04:46:58',NULL),(1,155,3019706,'2012-12-22 04:46:58',NULL),(1,126,3019702,'2012-12-22 05:17:05',1),(1,248,3019702,'2012-12-22 05:17:05',1),(1,23,3019702,'2012-12-22 05:17:05',1),(1,14,3019702,'2012-12-22 05:17:05',1),(1,112,3019702,'2012-12-22 05:17:05',1),(1,130,3019702,'2012-12-22 05:17:05',1),(1,64,3019702,'2012-12-22 05:17:05',1),(1,65,3019702,'2012-12-22 05:17:05',1),(1,55,3019784,'2012-12-23 00:46:29',1),(1,55,3019785,'2012-12-23 00:46:29',1),(1,55,3019786,'2012-12-23 00:46:37',1),(1,55,3019787,'2012-12-23 00:46:37',1),(1,55,3019781,'2012-12-23 01:16:24',1),(1,70,3019781,'2012-12-23 01:16:24',1),(1,55,3019783,'2012-12-23 01:16:32',1),(1,70,3019783,'2012-12-23 01:16:32',1),(1,55,3019789,'2012-12-23 01:16:39',1),(1,70,3019789,'2012-12-23 01:16:39',1),(1,70,3019876,'2012-12-23 01:46:13',1),(1,55,3019883,'2012-12-23 01:46:13',1),(1,70,3019883,'2012-12-23 01:46:13',1),(1,55,3019878,'2012-12-23 01:46:13',1),(1,55,3019879,'2012-12-23 01:46:21',1),(1,70,3019879,'2012-12-23 01:46:21',1),(1,55,3019790,'2012-12-23 01:46:49',1),(1,70,3019790,'2012-12-23 01:46:49',1),(1,55,3019964,'2012-12-23 02:46:19',1),(1,70,3019964,'2012-12-23 02:46:19',1),(1,97,3019794,'2012-12-23 02:46:22',1),(1,3,3019794,'2012-12-23 02:46:22',1),(1,89,3019794,'2012-12-23 02:46:22',1),(1,82,3019794,'2012-12-23 02:46:22',1),(1,97,3019795,'2012-12-23 02:46:22',1),(1,3,3019795,'2012-12-23 02:46:22',1),(1,89,3019795,'2012-12-23 02:46:22',1),(1,82,3019795,'2012-12-23 02:46:22',1),(1,247,3019796,'2012-12-23 02:46:23',1),(1,140,3019796,'2012-12-23 02:46:23',1),(1,96,3019796,'2012-12-23 02:46:23',1),(1,227,3019796,'2012-12-23 02:46:23',1),(1,237,3019796,'2012-12-23 02:46:23',1),(1,137,3019796,'2012-12-23 02:46:23',1),(1,138,3019796,'2012-12-23 02:46:23',1),(1,42,3019796,'2012-12-23 02:46:23',1),(1,55,3019965,'2012-12-23 02:46:31',1),(1,70,3019965,'2012-12-23 02:46:31',1),(1,55,3019956,'2012-12-23 02:46:31',1),(1,247,3019778,'2012-12-23 02:46:34',1),(1,140,3019778,'2012-12-23 02:46:34',1),(1,96,3019778,'2012-12-23 02:46:34',1),(1,227,3019778,'2012-12-23 02:46:34',1),(1,237,3019778,'2012-12-23 02:46:34',1),(1,137,3019778,'2012-12-23 02:46:34',1),(1,138,3019778,'2012-12-23 02:46:34',1),(1,42,3019778,'2012-12-23 02:46:34',1),(1,247,3019780,'2012-12-23 02:46:36',1),(1,140,3019780,'2012-12-23 02:46:36',1),(1,96,3019780,'2012-12-23 02:46:36',1),(1,227,3019780,'2012-12-23 02:46:36',1),(1,237,3019780,'2012-12-23 02:46:36',1),(1,137,3019780,'2012-12-23 02:46:36',1),(1,138,3019780,'2012-12-23 02:46:36',1),(1,42,3019780,'2012-12-23 02:46:36',1),(1,55,3019955,'2012-12-23 02:46:37',1),(1,70,3019955,'2012-12-23 02:46:37',1),(1,99,3019959,'2012-12-23 02:46:37',1),(1,33,3019966,'2012-12-23 02:46:46',1),(1,182,3019966,'2012-12-23 02:46:46',1),(1,97,3019791,'2012-12-23 02:46:53',1),(1,3,3019791,'2012-12-23 02:46:53',1),(1,89,3019791,'2012-12-23 02:46:53',1),(1,82,3019791,'2012-12-23 02:46:53',1),(1,247,3019953,'2012-12-23 03:16:13',1),(1,140,3019953,'2012-12-23 03:16:13',1),(1,96,3019953,'2012-12-23 03:16:13',1),(1,227,3019953,'2012-12-23 03:16:13',1),(1,237,3019953,'2012-12-23 03:16:13',1),(1,137,3019953,'2012-12-23 03:16:13',1),(1,138,3019953,'2012-12-23 03:16:13',1),(1,42,3019953,'2012-12-23 03:16:13',1),(1,97,3019953,'2012-12-23 03:16:13',1),(1,3,3019953,'2012-12-23 03:16:13',1),(1,89,3019953,'2012-12-23 03:16:13',1),(1,82,3019953,'2012-12-23 03:16:13',1),(1,99,3019953,'2012-12-23 03:16:13',1),(1,33,3019953,'2012-12-23 03:16:13',1),(1,182,3019953,'2012-12-23 03:16:13',1),(1,55,3019953,'2012-12-23 03:16:13',1),(1,247,3019954,'2012-12-23 03:16:16',1),(1,140,3019954,'2012-12-23 03:16:16',1),(1,96,3019954,'2012-12-23 03:16:16',1),(1,227,3019954,'2012-12-23 03:16:16',1),(1,237,3019954,'2012-12-23 03:16:16',1),(1,137,3019954,'2012-12-23 03:16:16',1),(1,138,3019954,'2012-12-23 03:16:16',1),(1,42,3019954,'2012-12-23 03:16:16',1),(1,247,3019877,'2012-12-23 03:16:21',1),(1,140,3019877,'2012-12-23 03:16:21',1),(1,96,3019877,'2012-12-23 03:16:21',1),(1,227,3019877,'2012-12-23 03:16:21',1),(1,237,3019877,'2012-12-23 03:16:21',1),(1,137,3019877,'2012-12-23 03:16:21',1),(1,138,3019877,'2012-12-23 03:16:21',1),(1,42,3019877,'2012-12-23 03:16:21',1),(1,247,3019958,'2012-12-23 03:16:23',1),(1,140,3019958,'2012-12-23 03:16:23',1),(1,96,3019958,'2012-12-23 03:16:23',1),(1,227,3019958,'2012-12-23 03:16:23',1),(1,237,3019958,'2012-12-23 03:16:23',1),(1,137,3019958,'2012-12-23 03:16:23',1),(1,138,3019958,'2012-12-23 03:16:23',1),(1,42,3019958,'2012-12-23 03:16:23',1),(1,97,3019958,'2012-12-23 03:16:23',1),(1,3,3019958,'2012-12-23 03:16:23',1),(1,89,3019958,'2012-12-23 03:16:23',1),(1,82,3019958,'2012-12-23 03:16:23',1),(1,99,3019958,'2012-12-23 03:16:23',1),(1,163,3019958,'2012-12-23 03:16:23',1),(1,33,3019958,'2012-12-23 03:16:23',1),(1,182,3019958,'2012-12-23 03:16:23',1),(1,97,3019880,'2012-12-23 03:16:32',1),(1,3,3019880,'2012-12-23 03:16:32',1),(1,89,3019880,'2012-12-23 03:16:32',1),(1,82,3019880,'2012-12-23 03:16:32',1),(1,99,3019880,'2012-12-23 03:16:32',1),(1,163,3019880,'2012-12-23 03:16:32',1),(1,33,3019880,'2012-12-23 03:16:32',1),(1,182,3019880,'2012-12-23 03:16:32',1),(1,247,3019957,'2012-12-23 03:16:39',1),(1,140,3019957,'2012-12-23 03:16:39',1),(1,96,3019957,'2012-12-23 03:16:39',1),(1,227,3019957,'2012-12-23 03:16:39',1),(1,237,3019957,'2012-12-23 03:16:39',1),(1,137,3019957,'2012-12-23 03:16:39',1),(1,138,3019957,'2012-12-23 03:16:39',1),(1,42,3019957,'2012-12-23 03:16:39',1),(1,247,3019779,'2012-12-23 03:16:40',1),(1,140,3019779,'2012-12-23 03:16:40',1),(1,96,3019779,'2012-12-23 03:16:40',1),(1,227,3019779,'2012-12-23 03:16:40',1),(1,237,3019779,'2012-12-23 03:16:40',1),(1,137,3019779,'2012-12-23 03:16:40',1),(1,138,3019779,'2012-12-23 03:16:40',1),(1,42,3019779,'2012-12-23 03:16:40',1),(1,163,3019968,'2012-12-23 03:16:46',1),(1,247,3020053,'2012-12-23 03:46:12',1),(1,140,3020053,'2012-12-23 03:46:12',1),(1,96,3020053,'2012-12-23 03:46:12',1),(1,227,3020053,'2012-12-23 03:46:12',1),(1,237,3020053,'2012-12-23 03:46:12',1),(1,137,3020053,'2012-12-23 03:46:12',1),(1,138,3020053,'2012-12-23 03:46:12',1),(1,42,3020053,'2012-12-23 03:46:12',1),(1,97,3020054,'2012-12-23 03:46:12',1),(1,3,3020054,'2012-12-23 03:46:12',1),(1,89,3020054,'2012-12-23 03:46:12',1),(1,82,3020054,'2012-12-23 03:46:12',1),(1,99,3020054,'2012-12-23 03:46:12',1),(1,163,3020054,'2012-12-23 03:46:12',1),(1,33,3020054,'2012-12-23 03:46:12',1),(1,182,3020054,'2012-12-23 03:46:12',1),(1,55,3020057,'2012-12-23 03:46:20',1),(1,97,3019970,'2012-12-23 03:46:35',1),(1,3,3019970,'2012-12-23 03:46:35',1),(1,89,3019970,'2012-12-23 03:46:35',1),(1,82,3019970,'2012-12-23 03:46:35',1),(1,99,3019970,'2012-12-23 03:46:35',1),(1,163,3019970,'2012-12-23 03:46:35',1),(1,33,3019970,'2012-12-23 03:46:35',1),(1,182,3019970,'2012-12-23 03:46:35',1),(1,55,3020058,'2012-12-23 03:46:38',1),(1,55,3020060,'2012-12-23 03:46:44',1),(1,247,3019967,'2012-12-23 03:46:47',1),(1,140,3019967,'2012-12-23 03:46:47',1),(1,96,3019967,'2012-12-23 03:46:47',1),(1,227,3019967,'2012-12-23 03:46:47',1),(1,237,3019967,'2012-12-23 03:46:47',1),(1,137,3019967,'2012-12-23 03:46:47',1),(1,138,3019967,'2012-12-23 03:46:47',1),(1,42,3019967,'2012-12-23 03:46:47',1),(1,55,3020070,'2012-12-23 03:47:00',1),(1,97,3020052,'2012-12-23 04:16:15',1),(1,3,3020052,'2012-12-23 04:16:15',1),(1,89,3020052,'2012-12-23 04:16:15',1),(1,82,3020052,'2012-12-23 04:16:15',1),(1,99,3020052,'2012-12-23 04:16:15',1),(1,163,3020052,'2012-12-23 04:16:15',1),(1,33,3020052,'2012-12-23 04:16:15',1),(1,182,3020052,'2012-12-23 04:16:15',1),(1,99,3019969,'2012-12-23 04:16:17',1),(1,163,3019969,'2012-12-23 04:16:17',1),(1,33,3019969,'2012-12-23 04:16:17',1),(1,182,3019969,'2012-12-23 04:16:17',1),(1,99,3019881,'2012-12-23 04:16:36',1),(1,163,3019881,'2012-12-23 04:16:36',1),(1,33,3019881,'2012-12-23 04:16:36',1),(1,182,3019881,'2012-12-23 04:16:36',1),(1,97,3019882,'2012-12-23 04:16:37',1),(1,3,3019882,'2012-12-23 04:16:37',1),(1,89,3019882,'2012-12-23 04:16:37',1),(1,82,3019882,'2012-12-23 04:16:37',1),(1,247,3020072,'2012-12-23 04:16:39',1),(1,140,3020072,'2012-12-23 04:16:39',1),(1,96,3020072,'2012-12-23 04:16:39',1),(1,227,3020072,'2012-12-23 04:16:39',1),(1,237,3020072,'2012-12-23 04:16:39',1),(1,137,3020072,'2012-12-23 04:16:39',1),(1,138,3020072,'2012-12-23 04:16:39',1),(1,42,3020072,'2012-12-23 04:16:39',1),(1,97,3020068,'2012-12-23 04:16:42',1),(1,3,3020068,'2012-12-23 04:16:42',1),(1,89,3020068,'2012-12-23 04:16:42',1),(1,82,3020068,'2012-12-23 04:16:42',1),(1,99,3020068,'2012-12-23 04:16:42',1),(1,163,3020068,'2012-12-23 04:16:42',1),(1,33,3020068,'2012-12-23 04:16:42',1),(1,182,3020068,'2012-12-23 04:16:42',1),(1,97,3020064,'2012-12-23 04:16:54',1),(1,3,3020064,'2012-12-23 04:16:54',1),(1,89,3020064,'2012-12-23 04:16:54',1),(1,82,3020064,'2012-12-23 04:16:54',1),(1,99,3020064,'2012-12-23 04:16:54',1),(1,163,3020064,'2012-12-23 04:16:54',1),(1,33,3020064,'2012-12-23 04:16:54',1),(1,182,3020064,'2012-12-23 04:16:54',1),(1,97,3019792,'2012-12-23 04:16:59',1),(1,3,3019792,'2012-12-23 04:16:59',1),(1,89,3019792,'2012-12-23 04:16:59',1),(1,82,3019792,'2012-12-23 04:16:59',1),(1,99,3020055,'2012-12-23 04:46:17',1),(1,163,3020055,'2012-12-23 04:46:17',1),(1,247,3019963,'2012-12-23 04:46:19',NULL),(1,140,3019963,'2012-12-23 04:46:19',NULL),(1,96,3019963,'2012-12-23 04:46:19',NULL),(1,227,3019963,'2012-12-23 04:46:19',NULL),(1,237,3020056,'2012-12-23 04:46:25',1),(1,137,3020056,'2012-12-23 04:46:25',1),(1,138,3020056,'2012-12-23 04:46:25',1),(1,42,3020056,'2012-12-23 04:46:25',1),(1,33,3020051,'2012-12-23 04:46:28',1),(1,182,3020051,'2012-12-23 04:46:28',1),(1,237,3019960,'2012-12-23 04:46:30',1),(1,137,3019960,'2012-12-23 04:46:30',1),(1,138,3019960,'2012-12-23 04:46:30',1),(1,42,3019960,'2012-12-23 04:46:30',1),(1,97,3019961,'2012-12-23 04:46:31',1),(1,3,3019961,'2012-12-23 04:46:31',1),(1,89,3019961,'2012-12-23 04:46:31',1),(1,82,3019961,'2012-12-23 04:46:31',1),(1,33,3020050,'2012-12-23 04:46:35',1),(1,182,3020050,'2012-12-23 04:46:35',1),(1,97,3020049,'2012-12-23 04:46:35',1),(1,3,3020049,'2012-12-23 04:46:35',1),(1,89,3020049,'2012-12-23 04:46:35',1),(1,82,3020049,'2012-12-23 04:46:35',1),(1,237,3020066,'2012-12-23 04:46:36',1),(1,137,3020066,'2012-12-23 04:46:36',1),(1,138,3020066,'2012-12-23 04:46:36',1),(1,42,3020066,'2012-12-23 04:46:36',1),(1,97,3020061,'2012-12-23 04:46:50',1),(1,3,3020061,'2012-12-23 04:46:50',1),(1,89,3020061,'2012-12-23 04:46:50',1),(1,82,3020061,'2012-12-23 04:46:50',1),(1,138,3020048,'2012-12-23 04:46:52',1),(1,42,3020048,'2012-12-23 04:46:52',1),(1,99,3020062,'2012-12-23 04:46:52',1),(1,163,3020062,'2012-12-23 04:46:52',1),(1,33,3020062,'2012-12-23 04:46:52',1),(1,182,3020062,'2012-12-23 04:46:52',1),(1,99,3019962,'2012-12-23 04:46:56',1),(1,163,3019962,'2012-12-23 04:46:56',1),(1,33,3019962,'2012-12-23 04:46:56',1),(1,182,3019962,'2012-12-23 04:46:56',1),(1,97,3020065,'2012-12-23 04:46:59',1),(1,3,3020065,'2012-12-23 04:46:59',1),(1,89,3020065,'2012-12-23 04:46:59',1),(1,82,3020065,'2012-12-23 04:46:59',1),(1,97,3020059,'2012-12-23 04:46:59',1),(1,3,3020059,'2012-12-23 04:46:59',1),(1,247,3020069,'2012-12-23 05:16:29',1),(1,140,3020069,'2012-12-23 05:16:29',1),(1,96,3020069,'2012-12-23 05:16:29',1),(1,227,3020069,'2012-12-23 05:16:29',1),(1,237,3020069,'2012-12-23 05:16:29',1),(1,137,3020069,'2012-12-23 05:16:29',1),(1,138,3020069,'2012-12-23 05:16:29',1),(1,42,3020069,'2012-12-23 05:16:29',1),(1,97,3020069,'2012-12-23 05:16:29',1),(1,3,3020069,'2012-12-23 05:16:29',1),(1,89,3020069,'2012-12-23 05:16:29',1),(1,82,3020069,'2012-12-23 05:16:29',1),(1,99,3020069,'2012-12-23 05:16:29',1),(1,163,3020069,'2012-12-23 05:16:29',1),(1,33,3020069,'2012-12-23 05:16:29',1),(1,182,3020069,'2012-12-23 05:16:29',1),(1,237,3020071,'2012-12-23 05:16:44',1),(1,137,3020071,'2012-12-23 05:16:44',1),(1,247,3020067,'2012-12-23 05:46:37',1),(1,140,3020067,'2012-12-23 05:46:37',1),(1,96,3020067,'2012-12-23 05:46:37',1),(1,227,3020067,'2012-12-23 05:46:37',1),(1,237,3020067,'2012-12-23 05:46:37',1),(1,137,3020067,'2012-12-23 05:46:37',1),(1,138,3020067,'2012-12-23 05:46:37',1),(1,42,3020067,'2012-12-23 05:46:37',1),(1,97,3020067,'2012-12-23 05:46:37',1),(1,3,3020067,'2012-12-23 05:46:37',1),(1,89,3020067,'2012-12-23 05:46:37',1),(1,82,3020067,'2012-12-23 05:46:37',1),(1,99,3020067,'2012-12-23 05:46:37',1),(1,163,3020067,'2012-12-23 05:46:37',1),(1,33,3020067,'2012-12-23 05:46:37',1),(1,182,3020067,'2012-12-23 05:46:37',1),(1,247,3020063,'2012-12-23 05:47:01',1),(1,140,3020063,'2012-12-23 05:47:01',1),(1,96,3020063,'2012-12-23 05:47:01',1),(1,227,3020063,'2012-12-23 05:47:01',1),(1,237,3020063,'2012-12-23 05:47:01',1),(1,137,3020063,'2012-12-23 05:47:01',1),(1,138,3020063,'2012-12-23 05:47:01',1),(1,42,3020063,'2012-12-23 05:47:01',1),(1,97,3020063,'2012-12-23 05:47:01',1),(1,3,3020063,'2012-12-23 05:47:01',1),(1,89,3020063,'2012-12-23 05:47:01',1),(1,82,3020063,'2012-12-23 05:47:01',1),(1,99,3020063,'2012-12-23 05:47:01',1),(1,163,3020063,'2012-12-23 05:47:01',1),(1,33,3020063,'2012-12-23 05:47:01',1),(1,182,3020063,'2012-12-23 05:47:01',1),(1,23,3020118,'2012-12-24 00:46:13',1),(1,67,3020117,'2012-12-24 00:46:13',1),(1,29,3020119,'2012-12-24 00:46:13',1),(1,219,3020121,'2012-12-24 00:46:21',1),(1,4,3020121,'2012-12-24 00:46:21',1),(1,236,3020115,'2012-12-24 00:46:23',1),(1,171,3020115,'2012-12-24 00:46:23',1),(1,17,3020122,'2012-12-24 00:46:23',1),(1,191,3020122,'2012-12-24 00:46:23',1),(1,31,3020123,'2012-12-24 00:46:25',1),(1,236,3020123,'2012-12-24 00:46:25',1),(1,171,3020123,'2012-12-24 00:46:25',1),(1,17,3020123,'2012-12-24 00:46:25',1),(1,48,3020124,'2012-12-24 00:46:33',1),(1,79,3020124,'2012-12-24 00:46:33',1),(1,40,3020124,'2012-12-24 00:46:33',1),(1,152,3020124,'2012-12-24 00:46:33',1),(1,48,3020126,'2012-12-24 00:46:33',1),(1,79,3020126,'2012-12-24 00:46:33',1),(1,40,3020126,'2012-12-24 00:46:33',1),(1,152,3020126,'2012-12-24 00:46:33',1),(1,191,3020127,'2012-12-24 00:46:34',1),(1,23,3020127,'2012-12-24 00:46:34',1),(1,8,3020127,'2012-12-24 00:46:34',1),(1,6,3020127,'2012-12-24 00:46:34',1),(1,125,3020110,'2012-12-24 00:46:37',1),(1,48,3020110,'2012-12-24 00:46:37',1),(1,79,3020110,'2012-12-24 00:46:37',1),(1,40,3020110,'2012-12-24 00:46:37',1),(1,152,3020110,'2012-12-24 00:46:37',1),(1,232,3020110,'2012-12-24 00:46:37',1),(1,194,3020110,'2012-12-24 00:46:37',1),(1,29,3020110,'2012-12-24 00:46:37',1),(1,31,3020128,'2012-12-24 00:46:37',1),(1,236,3020128,'2012-12-24 00:46:37',1),(1,171,3020128,'2012-12-24 00:46:37',1),(1,17,3020128,'2012-12-24 00:46:37',1),(1,191,3020128,'2012-12-24 00:46:37',1),(1,23,3020128,'2012-12-24 00:46:37',1),(1,8,3020128,'2012-12-24 00:46:37',1),(1,219,3020128,'2012-12-24 00:46:37',1),(1,6,3020116,'2012-12-24 00:46:39',1),(1,125,3020111,'2012-12-24 00:46:46',1),(1,48,3020111,'2012-12-24 00:46:46',1),(1,79,3020111,'2012-12-24 00:46:46',1),(1,40,3020111,'2012-12-24 00:46:46',1),(1,152,3020111,'2012-12-24 00:46:46',1),(1,232,3020111,'2012-12-24 00:46:46',1),(1,194,3020111,'2012-12-24 00:46:46',1),(1,29,3020111,'2012-12-24 00:46:46',1),(1,232,3020113,'2012-12-24 00:46:47',1),(1,194,3020113,'2012-12-24 00:46:47',1),(1,125,3020112,'2012-12-24 00:46:47',1),(1,48,3020112,'2012-12-24 00:46:47',1),(1,79,3020112,'2012-12-24 00:46:47',1),(1,40,3020112,'2012-12-24 00:46:47',1),(1,152,3020112,'2012-12-24 00:46:47',1),(1,232,3020112,'2012-12-24 00:46:47',1),(1,194,3020112,'2012-12-24 00:46:47',1),(1,29,3020112,'2012-12-24 00:46:47',1),(1,79,3020216,'2012-12-24 01:46:12',1),(1,40,3020216,'2012-12-24 01:46:12',1),(1,152,3020216,'2012-12-24 01:46:12',1),(1,232,3020216,'2012-12-24 01:46:12',1),(1,194,3020216,'2012-12-24 01:46:12',1),(1,29,3020216,'2012-12-24 01:46:12',1),(1,31,3020216,'2012-12-24 01:46:12',1),(1,236,3020216,'2012-12-24 01:46:12',1),(1,232,3020218,'2012-12-24 01:46:12',1),(1,194,3020218,'2012-12-24 01:46:12',1),(1,29,3020218,'2012-12-24 01:46:12',1),(1,31,3020218,'2012-12-24 01:46:12',1),(1,133,3020217,'2012-12-24 01:46:12',1),(1,79,3020217,'2012-12-24 01:46:12',1),(1,40,3020217,'2012-12-24 01:46:12',1),(1,152,3020217,'2012-12-24 01:46:12',1),(1,17,3020214,'2012-12-24 01:46:12',1),(1,191,3020220,'2012-12-24 01:46:20',1),(1,219,3020219,'2012-12-24 01:46:20',1),(1,67,3020219,'2012-12-24 01:46:20',1),(1,236,3020215,'2012-12-24 01:46:20',1),(1,171,3020215,'2012-12-24 01:46:20',1),(1,171,3020213,'2012-12-24 01:46:20',1),(1,17,3020213,'2012-12-24 01:46:20',1),(1,191,3020213,'2012-12-24 01:46:20',1),(1,23,3020213,'2012-12-24 01:46:20',1),(1,8,3020213,'2012-12-24 01:46:20',1),(1,112,3020213,'2012-12-24 01:46:20',1),(1,6,3020213,'2012-12-24 01:46:20',1),(1,4,3020213,'2012-12-24 01:46:20',1),(1,152,3020293,'2012-12-24 02:46:12',1),(1,232,3020293,'2012-12-24 02:46:12',1),(1,112,3020299,'2012-12-24 02:46:12',1),(1,142,3020299,'2012-12-24 02:46:12',1),(1,219,3020299,'2012-12-24 02:46:12',1),(1,67,3020299,'2012-12-24 02:46:12',1),(1,112,3020298,'2012-12-24 02:46:12',1),(1,142,3020298,'2012-12-24 02:46:12',1),(1,219,3020298,'2012-12-24 02:46:12',1),(1,67,3020298,'2012-12-24 02:46:12',1),(1,133,3020295,'2012-12-24 02:46:12',1),(1,48,3020295,'2012-12-24 02:46:12',1),(1,79,3020295,'2012-12-24 02:46:12',1),(1,40,3020295,'2012-12-24 02:46:12',1),(1,152,3020295,'2012-12-24 02:46:12',1),(1,232,3020295,'2012-12-24 02:46:12',1),(1,194,3020295,'2012-12-24 02:46:12',1),(1,29,3020295,'2012-12-24 02:46:12',1),(1,31,3020300,'2012-12-24 02:46:20',1),(1,236,3020300,'2012-12-24 02:46:20',1),(1,171,3020300,'2012-12-24 02:46:20',1),(1,17,3020300,'2012-12-24 02:46:20',1),(1,191,3020300,'2012-12-24 02:46:20',1),(1,23,3020300,'2012-12-24 02:46:20',1),(1,8,3020300,'2012-12-24 02:46:20',1),(1,6,3020300,'2012-12-24 02:46:20',1),(1,112,3020302,'2012-12-24 02:46:20',1),(1,142,3020302,'2012-12-24 02:46:20',1),(1,219,3020302,'2012-12-24 02:46:20',1),(1,67,3020302,'2012-12-24 02:46:20',1),(1,133,3020304,'2012-12-24 02:46:20',1),(1,48,3020304,'2012-12-24 02:46:20',1),(1,79,3020304,'2012-12-24 02:46:20',1),(1,40,3020304,'2012-12-24 02:46:20',1),(1,152,3020304,'2012-12-24 02:46:20',1),(1,232,3020304,'2012-12-24 02:46:20',1),(1,194,3020304,'2012-12-24 02:46:20',1),(1,29,3020304,'2012-12-24 02:46:20',1),(1,31,3020304,'2012-12-24 02:46:20',1),(1,236,3020304,'2012-12-24 02:46:20',1),(1,171,3020304,'2012-12-24 02:46:20',1),(1,17,3020304,'2012-12-24 02:46:20',1),(1,191,3020304,'2012-12-24 02:46:20',1),(1,23,3020304,'2012-12-24 02:46:20',1),(1,8,3020304,'2012-12-24 02:46:20',1),(1,6,3020304,'2012-12-24 02:46:20',1),(1,133,3020292,'2012-12-24 02:46:27',1),(1,48,3020292,'2012-12-24 02:46:27',1),(1,79,3020292,'2012-12-24 02:46:27',1),(1,40,3020292,'2012-12-24 02:46:27',1),(1,152,3020292,'2012-12-24 02:46:27',1),(1,232,3020292,'2012-12-24 02:46:27',1),(1,194,3020292,'2012-12-24 02:46:27',1),(1,29,3020292,'2012-12-24 02:46:27',1),(1,4,3020307,'2012-12-24 02:46:27',1),(1,194,3020308,'2012-12-24 02:46:27',1),(1,29,3020308,'2012-12-24 02:46:27',1),(1,133,3020306,'2012-12-24 02:46:35',1),(1,48,3020306,'2012-12-24 02:46:35',1),(1,79,3020306,'2012-12-24 02:46:35',1),(1,40,3020306,'2012-12-24 02:46:35',1),(1,152,3020306,'2012-12-24 02:46:35',1),(1,232,3020306,'2012-12-24 02:46:35',1),(1,194,3020306,'2012-12-24 02:46:35',1),(1,29,3020306,'2012-12-24 02:46:35',1),(1,67,3020294,'2012-12-24 02:46:35',1),(1,31,3020305,'2012-12-24 02:46:35',1),(1,236,3020305,'2012-12-24 02:46:35',1),(1,133,3020296,'2012-12-24 02:46:43',1),(1,48,3020296,'2012-12-24 02:46:43',1),(1,79,3020296,'2012-12-24 02:46:43',1),(1,40,3020296,'2012-12-24 02:46:43',1),(1,152,3020296,'2012-12-24 02:46:43',1),(1,232,3020296,'2012-12-24 02:46:43',1),(1,194,3020296,'2012-12-24 02:46:43',1),(1,29,3020296,'2012-12-24 02:46:43',1),(1,31,3020296,'2012-12-24 02:46:43',1),(1,236,3020296,'2012-12-24 02:46:43',1),(1,171,3020296,'2012-12-24 02:46:43',1),(1,17,3020296,'2012-12-24 02:46:43',1),(1,191,3020296,'2012-12-24 02:46:43',1),(1,23,3020296,'2012-12-24 02:46:43',1),(1,8,3020296,'2012-12-24 02:46:43',1),(1,6,3020296,'2012-12-24 02:46:43',1),(1,67,3020297,'2012-12-24 02:46:43',1),(1,112,3020301,'2012-12-24 03:16:21',NULL),(1,142,3020301,'2012-12-24 03:16:21',NULL),(1,219,3020301,'2012-12-24 03:16:21',NULL),(1,4,3020301,'2012-12-24 03:16:21',NULL),(1,133,3020309,'2012-12-24 03:16:29',1),(1,48,3020309,'2012-12-24 03:16:29',1),(1,79,3020309,'2012-12-24 03:16:29',1),(1,40,3020309,'2012-12-24 03:16:29',1),(1,152,3020303,'2012-12-24 03:16:37',1),(1,232,3020303,'2012-12-24 03:16:37',1),(1,6,3020407,'2012-12-24 03:46:11',1),(1,4,3020407,'2012-12-24 03:46:11',1),(1,67,3020393,'2012-12-24 03:46:11',1),(1,67,3020394,'2012-12-24 03:46:11',1),(1,6,3020395,'2012-12-24 03:46:19',1),(1,4,3020395,'2012-12-24 03:46:19',1),(1,125,3020396,'2012-12-24 03:46:19',1),(1,133,3020385,'2012-12-24 03:46:19',1),(1,16,3020385,'2012-12-24 03:46:19',1),(1,48,3020385,'2012-12-24 03:46:19',1),(1,79,3020385,'2012-12-24 03:46:19',1),(1,40,3020385,'2012-12-24 03:46:19',1),(1,152,3020385,'2012-12-24 03:46:19',1),(1,232,3020385,'2012-12-24 03:46:19',1),(1,194,3020385,'2012-12-24 03:46:19',1),(1,29,3020385,'2012-12-24 03:46:19',1),(1,31,3020385,'2012-12-24 03:46:19',1),(1,236,3020385,'2012-12-24 03:46:19',1),(1,171,3020385,'2012-12-24 03:46:19',1),(1,17,3020385,'2012-12-24 03:46:19',1),(1,191,3020385,'2012-12-24 03:46:19',1),(1,23,3020385,'2012-12-24 03:46:19',1),(1,8,3020385,'2012-12-24 03:46:19',1),(1,112,3020397,'2012-12-24 03:46:19',1),(1,142,3020397,'2012-12-24 03:46:19',1),(1,219,3020397,'2012-12-24 03:46:19',1),(1,67,3020397,'2012-12-24 03:46:19',1),(1,112,3020399,'2012-12-24 03:46:27',1),(1,142,3020399,'2012-12-24 03:46:27',1),(1,219,3020399,'2012-12-24 03:46:27',1),(1,67,3020399,'2012-12-24 03:46:27',1),(1,6,3020398,'2012-12-24 03:46:27',1),(1,4,3020398,'2012-12-24 03:46:27',1),(1,112,3020402,'2012-12-24 03:46:27',1),(1,142,3020402,'2012-12-24 03:46:27',1),(1,219,3020402,'2012-12-24 03:46:27',1),(1,67,3020402,'2012-12-24 03:46:27',1),(1,133,3020400,'2012-12-24 04:16:30',1),(1,16,3020400,'2012-12-24 04:16:30',1),(1,48,3020400,'2012-12-24 04:16:30',1),(1,79,3020400,'2012-12-24 04:16:30',1),(1,40,3020400,'2012-12-24 04:16:30',1),(1,152,3020400,'2012-12-24 04:16:30',1),(1,232,3020400,'2012-12-24 04:16:30',1),(1,194,3020400,'2012-12-24 04:16:30',1),(1,29,3020400,'2012-12-24 04:16:30',1),(1,31,3020400,'2012-12-24 04:16:30',1),(1,236,3020400,'2012-12-24 04:16:30',1),(1,171,3020400,'2012-12-24 04:16:30',1),(1,17,3020400,'2012-12-24 04:16:30',1),(1,191,3020400,'2012-12-24 04:16:30',1),(1,23,3020400,'2012-12-24 04:16:30',1),(1,8,3020400,'2012-12-24 04:16:30',1),(1,112,3020403,'2012-12-24 04:16:38',1),(1,142,3020403,'2012-12-24 04:16:38',1),(1,131,3020403,'2012-12-24 04:16:38',1),(1,219,3020403,'2012-12-24 04:16:38',1),(1,133,3020404,'2012-12-24 04:16:38',1),(1,16,3020404,'2012-12-24 04:16:38',1),(1,125,3020404,'2012-12-24 04:16:38',1),(1,48,3020404,'2012-12-24 04:16:38',1),(1,79,3020404,'2012-12-24 04:16:38',1),(1,40,3020404,'2012-12-24 04:16:38',1),(1,152,3020404,'2012-12-24 04:16:38',1),(1,232,3020404,'2012-12-24 04:16:38',1),(1,194,3020404,'2012-12-24 04:16:38',1),(1,29,3020404,'2012-12-24 04:16:38',1),(1,31,3020404,'2012-12-24 04:16:38',1),(1,236,3020404,'2012-12-24 04:16:38',1),(1,171,3020404,'2012-12-24 04:16:38',1),(1,17,3020404,'2012-12-24 04:16:38',1),(1,191,3020404,'2012-12-24 04:16:38',1),(1,23,3020404,'2012-12-24 04:16:38',1),(1,4,3020406,'2012-12-24 04:16:38',1),(1,133,3020405,'2012-12-24 04:16:38',1),(1,16,3020405,'2012-12-24 04:16:38',1),(1,125,3020405,'2012-12-24 04:16:38',1),(1,48,3020405,'2012-12-24 04:16:38',1),(1,79,3020405,'2012-12-24 04:16:38',1),(1,40,3020405,'2012-12-24 04:16:38',1),(1,152,3020405,'2012-12-24 04:16:38',1),(1,232,3020405,'2012-12-24 04:16:38',1),(1,194,3020401,'2012-12-24 04:16:46',1),(1,29,3020401,'2012-12-24 04:16:46',1),(1,31,3020401,'2012-12-24 04:16:46',1),(1,236,3020401,'2012-12-24 04:16:46',1),(1,171,3020401,'2012-12-24 04:16:46',1),(1,17,3020401,'2012-12-24 04:16:46',1),(1,191,3020401,'2012-12-24 04:16:46',1),(1,23,3020401,'2012-12-24 04:16:46',1),(1,67,3020408,'2012-12-24 04:16:46',1),(1,6,3020408,'2012-12-24 04:16:46',1),(1,67,3020409,'2012-12-24 04:16:46',1),(1,6,3020409,'2012-12-24 04:16:46',1),(1,4,3020409,'2012-12-24 04:16:46',1),(1,125,3020409,'2012-12-24 04:16:46',1),(1,8,3020386,'2012-12-24 04:16:46',1),(1,112,3020386,'2012-12-24 04:16:46',1),(1,8,3020392,'2012-12-24 04:16:54',1),(1,112,3020392,'2012-12-24 04:16:54',1),(1,142,3020392,'2012-12-24 04:16:54',1),(1,131,3020392,'2012-12-24 04:16:54',1),(1,142,3020390,'2012-12-24 04:16:54',1),(1,131,3020390,'2012-12-24 04:16:54',1),(1,8,3020391,'2012-12-24 04:46:15',1),(1,112,3020391,'2012-12-24 04:46:15',1),(1,142,3020391,'2012-12-24 04:46:15',1),(1,131,3020391,'2012-12-24 04:46:15',1),(1,219,3020391,'2012-12-24 04:46:15',1),(1,67,3020391,'2012-12-24 04:46:15',1),(1,6,3020391,'2012-12-24 04:46:15',1),(1,4,3020391,'2012-12-24 04:46:15',1),(1,194,3020387,'2012-12-24 04:46:58',1),(1,29,3020387,'2012-12-24 04:46:58',1),(1,31,3020387,'2012-12-24 04:46:58',1),(1,236,3020387,'2012-12-24 04:46:58',1),(1,171,3020387,'2012-12-24 04:46:58',1),(1,17,3020387,'2012-12-24 04:46:58',1),(1,191,3020387,'2012-12-24 04:46:58',1),(1,23,3020387,'2012-12-24 04:46:58',1),(1,194,3020389,'2012-12-24 04:47:04',1),(1,29,3020389,'2012-12-24 04:47:04',1),(1,31,3020389,'2012-12-24 04:47:04',1),(1,236,3020389,'2012-12-24 04:47:04',1),(1,171,3020389,'2012-12-24 04:47:04',1),(1,17,3020389,'2012-12-24 04:47:04',1),(1,191,3020389,'2012-12-24 04:47:04',1),(1,23,3020389,'2012-12-24 04:47:04',1),(1,133,3020388,'2012-12-24 05:17:00',1),(1,16,3020388,'2012-12-24 05:17:00',1),(1,125,3020388,'2012-12-24 05:17:00',1),(1,48,3020388,'2012-12-24 05:17:00',1),(1,79,3020388,'2012-12-24 05:17:00',1),(1,40,3020388,'2012-12-24 05:17:00',1),(1,152,3020388,'2012-12-24 05:17:00',1),(1,232,3020388,'2012-12-24 05:17:00',1),(1,6,3020449,'2012-12-25 00:46:30',1),(1,4,3020449,'2012-12-25 00:46:30',1),(1,6,3020451,'2012-12-25 00:46:37',1),(1,4,3020451,'2012-12-25 00:46:37',1),(1,6,3020454,'2012-12-25 00:46:37',1),(1,4,3020453,'2012-12-25 00:46:37',1),(1,6,3020452,'2012-12-25 00:46:37',1),(1,4,3020455,'2012-12-25 00:46:45',1),(1,6,3020457,'2012-12-25 00:46:45',1),(1,4,3020457,'2012-12-25 00:46:45',1),(1,6,3020458,'2012-12-25 00:46:45',1),(1,4,3020458,'2012-12-25 00:46:45',1),(1,6,3020553,'2012-12-25 01:46:11',1),(1,4,3020553,'2012-12-25 01:46:11',1),(1,6,3020557,'2012-12-25 01:46:19',1),(1,4,3020557,'2012-12-25 01:46:19',1),(1,4,3020558,'2012-12-25 01:46:19',1),(1,6,3020552,'2012-12-25 01:46:20',1),(1,6,3020631,'2012-12-25 02:46:11',1),(1,4,3020631,'2012-12-25 02:46:11',1),(1,6,3020618,'2012-12-25 02:46:28',1),(1,4,3020618,'2012-12-25 02:46:28',1),(1,6,3020634,'2012-12-25 02:46:28',1),(1,6,3020633,'2012-12-25 02:46:29',1),(1,4,3020633,'2012-12-25 02:46:29',1),(1,4,3020630,'2012-12-25 02:46:36',1),(1,6,3020621,'2012-12-25 02:46:44',1),(1,6,3020635,'2012-12-25 02:46:46',1),(1,4,3020635,'2012-12-25 02:46:46',1),(1,6,3020718,'2012-12-25 03:46:22',1),(1,4,3020718,'2012-12-25 03:46:22',1),(1,6,3020719,'2012-12-25 03:46:23',1),(1,4,3020719,'2012-12-25 03:46:23',1),(1,6,3020723,'2012-12-25 03:46:34',1),(1,4,3020723,'2012-12-25 03:46:34',1),(1,184,3020632,'2012-12-25 04:16:19',1),(1,60,3020632,'2012-12-25 04:16:19',1),(1,66,3020632,'2012-12-25 04:16:19',1),(1,201,3020632,'2012-12-25 04:16:19',1),(1,52,3020632,'2012-12-25 04:16:19',1),(1,210,3020632,'2012-12-25 04:16:19',1),(1,224,3020632,'2012-12-25 04:16:19',1),(1,221,3020632,'2012-12-25 04:16:19',1),(1,184,3020554,'2012-12-25 04:16:21',1),(1,60,3020554,'2012-12-25 04:16:21',1),(1,66,3020554,'2012-12-25 04:16:21',1),(1,201,3020554,'2012-12-25 04:16:21',1),(1,52,3020554,'2012-12-25 04:16:21',1),(1,210,3020554,'2012-12-25 04:16:21',1),(1,224,3020554,'2012-12-25 04:16:21',1),(1,221,3020554,'2012-12-25 04:16:21',1),(1,223,3020720,'2012-12-25 04:16:25',1),(1,184,3020559,'2012-12-25 04:16:32',1),(1,60,3020559,'2012-12-25 04:16:32',1),(1,66,3020559,'2012-12-25 04:16:32',1),(1,201,3020559,'2012-12-25 04:16:32',1),(1,52,3020559,'2012-12-25 04:16:32',1),(1,210,3020559,'2012-12-25 04:16:32',1),(1,224,3020559,'2012-12-25 04:16:32',1),(1,221,3020559,'2012-12-25 04:16:32',1),(1,184,3020447,'2012-12-25 04:16:33',1),(1,60,3020447,'2012-12-25 04:16:33',1),(1,66,3020447,'2012-12-25 04:16:33',1),(1,201,3020447,'2012-12-25 04:16:33',1),(1,52,3020447,'2012-12-25 04:16:33',1),(1,210,3020447,'2012-12-25 04:16:33',1),(1,224,3020447,'2012-12-25 04:16:33',1),(1,221,3020447,'2012-12-25 04:16:33',1),(1,184,3020464,'2012-12-25 04:16:40',1),(1,60,3020464,'2012-12-25 04:16:40',1),(1,66,3020464,'2012-12-25 04:16:40',1),(1,201,3020464,'2012-12-25 04:16:40',1),(1,52,3020464,'2012-12-25 04:16:40',1),(1,210,3020464,'2012-12-25 04:16:40',1),(1,224,3020464,'2012-12-25 04:16:40',1),(1,221,3020464,'2012-12-25 04:16:40',1),(1,184,3020465,'2012-12-25 04:16:42',1),(1,60,3020465,'2012-12-25 04:16:42',1),(1,66,3020465,'2012-12-25 04:16:42',1),(1,201,3020465,'2012-12-25 04:16:42',1),(1,52,3020465,'2012-12-25 04:16:42',1),(1,210,3020465,'2012-12-25 04:16:42',1),(1,224,3020465,'2012-12-25 04:16:42',1),(1,221,3020465,'2012-12-25 04:16:42',1),(1,184,3020448,'2012-12-25 04:16:50',1),(1,60,3020448,'2012-12-25 04:16:50',1),(1,66,3020448,'2012-12-25 04:16:50',1),(1,201,3020448,'2012-12-25 04:16:50',1),(1,52,3020448,'2012-12-25 04:16:50',1),(1,210,3020448,'2012-12-25 04:16:50',1),(1,224,3020448,'2012-12-25 04:16:50',1),(1,221,3020448,'2012-12-25 04:16:50',1),(1,6,3020730,'2012-12-25 04:16:52',1),(1,6,3020731,'2012-12-25 04:16:53',1),(1,4,3020731,'2012-12-25 04:16:53',1),(1,91,3020717,'2012-12-25 04:16:53',1),(1,6,3020709,'2012-12-25 04:16:59',1),(1,4,3020709,'2012-12-25 04:16:59',1),(1,6,3020713,'2012-12-25 04:16:59',1),(1,4,3020713,'2012-12-25 04:16:59',1),(1,4,3020716,'2012-12-25 04:17:03',1),(1,184,3020624,'2012-12-25 04:46:29',1),(1,60,3020624,'2012-12-25 04:46:29',1),(1,66,3020624,'2012-12-25 04:46:29',1),(1,201,3020624,'2012-12-25 04:46:29',1),(1,52,3020624,'2012-12-25 04:46:29',1),(1,210,3020624,'2012-12-25 04:46:29',1),(1,224,3020624,'2012-12-25 04:46:29',1),(1,221,3020624,'2012-12-25 04:46:29',1),(1,184,3020628,'2012-12-25 04:46:39',1),(1,60,3020628,'2012-12-25 04:46:39',1),(1,66,3020628,'2012-12-25 04:46:39',1),(1,201,3020628,'2012-12-25 04:46:39',1),(1,52,3020628,'2012-12-25 04:46:39',1),(1,210,3020628,'2012-12-25 04:46:39',1),(1,224,3020628,'2012-12-25 04:46:39',1),(1,221,3020628,'2012-12-25 04:46:39',1),(1,184,3020619,'2012-12-25 04:46:49',1),(1,60,3020619,'2012-12-25 04:46:49',1),(1,66,3020619,'2012-12-25 04:46:49',1),(1,201,3020619,'2012-12-25 04:46:49',1),(1,52,3020619,'2012-12-25 04:46:49',1),(1,210,3020619,'2012-12-25 04:46:49',1),(1,224,3020619,'2012-12-25 04:46:49',1),(1,221,3020619,'2012-12-25 04:46:49',1),(1,184,3020711,'2012-12-25 05:16:20',1),(1,60,3020711,'2012-12-25 05:16:20',1),(1,66,3020711,'2012-12-25 05:16:20',1),(1,201,3020711,'2012-12-25 05:16:20',1),(1,52,3020711,'2012-12-25 05:16:20',1),(1,210,3020711,'2012-12-25 05:16:20',1),(1,224,3020711,'2012-12-25 05:16:20',1),(1,221,3020711,'2012-12-25 05:16:20',1),(1,184,3020712,'2012-12-25 05:46:22',1),(1,60,3020712,'2012-12-25 05:46:22',1),(1,66,3020712,'2012-12-25 05:46:22',1),(1,201,3020712,'2012-12-25 05:46:22',1),(1,52,3020712,'2012-12-25 05:46:22',1),(1,210,3020712,'2012-12-25 05:46:22',1),(1,224,3020712,'2012-12-25 05:46:22',1),(1,221,3020712,'2012-12-25 05:46:22',1),(1,184,3020714,'2012-12-25 05:46:22',1),(1,60,3020714,'2012-12-25 05:46:22',1),(1,66,3020714,'2012-12-25 05:46:22',1),(1,201,3020714,'2012-12-25 05:46:22',1),(1,52,3020714,'2012-12-25 05:46:22',1),(1,210,3020714,'2012-12-25 05:46:22',1),(1,224,3020714,'2012-12-25 05:46:22',1),(1,221,3020714,'2012-12-25 05:46:22',1),(1,184,3020710,'2012-12-25 06:16:24',1),(1,60,3020710,'2012-12-25 06:16:24',1),(1,66,3020710,'2012-12-25 06:16:24',1),(1,201,3020710,'2012-12-25 06:16:24',1),(1,52,3020710,'2012-12-25 06:16:24',1),(1,210,3020710,'2012-12-25 06:16:24',1),(1,224,3020710,'2012-12-25 06:16:24',1),(1,221,3020710,'2012-12-25 06:16:24',1),(1,184,3020622,'2012-12-25 06:16:27',1),(1,60,3020622,'2012-12-25 06:16:27',1),(1,66,3020622,'2012-12-25 06:16:27',1),(1,201,3020622,'2012-12-25 06:16:27',1),(1,52,3020626,'2012-12-25 06:16:27',1),(1,210,3020626,'2012-12-25 06:16:27',1),(1,224,3020626,'2012-12-25 06:16:27',1),(1,221,3020626,'2012-12-25 06:16:27',1),(1,184,3020555,'2012-12-25 06:16:30',1),(1,60,3020555,'2012-12-25 06:16:30',1),(1,66,3020555,'2012-12-25 06:16:30',1),(1,201,3020555,'2012-12-25 06:16:30',1),(1,52,3020556,'2012-12-25 06:16:30',1),(1,210,3020556,'2012-12-25 06:16:30',1),(1,224,3020556,'2012-12-25 06:16:30',1),(1,221,3020556,'2012-12-25 06:16:30',1),(1,184,3020459,'2012-12-25 06:16:38',1),(1,60,3020459,'2012-12-25 06:16:38',1),(1,66,3020459,'2012-12-25 06:16:38',1),(1,201,3020459,'2012-12-25 06:16:38',1),(1,52,3020460,'2012-12-25 06:16:41',1),(1,210,3020460,'2012-12-25 06:16:41',1),(1,224,3020460,'2012-12-25 06:16:41',1),(1,221,3020460,'2012-12-25 06:16:41',1),(1,52,3020462,'2012-12-25 06:16:47',1),(1,210,3020462,'2012-12-25 06:16:47',1),(1,224,3020462,'2012-12-25 06:16:47',1),(1,221,3020462,'2012-12-25 06:16:47',1),(1,184,3020463,'2012-12-25 06:16:48',1),(1,60,3020463,'2012-12-25 06:16:48',1),(1,66,3020463,'2012-12-25 06:16:48',1),(1,201,3020463,'2012-12-25 06:16:48',1),(1,184,3020729,'2012-12-25 06:16:59',1),(1,60,3020729,'2012-12-25 06:16:59',1),(1,66,3020729,'2012-12-25 06:16:59',1),(1,201,3020729,'2012-12-25 06:16:59',1),(1,52,3020729,'2012-12-25 06:16:59',1),(1,210,3020729,'2012-12-25 06:16:59',1),(1,224,3020729,'2012-12-25 06:16:59',1),(1,221,3020729,'2012-12-25 06:16:59',1),(1,184,3020732,'2012-12-25 06:17:07',1),(1,60,3020732,'2012-12-25 06:17:07',1),(1,66,3020732,'2012-12-25 06:17:07',1),(1,201,3020732,'2012-12-25 06:17:07',1),(1,52,3020732,'2012-12-25 06:17:07',1),(1,210,3020732,'2012-12-25 06:17:07',1),(1,224,3020732,'2012-12-25 06:17:07',1),(1,221,3020732,'2012-12-25 06:17:07',1),(1,52,3020715,'2012-12-25 06:46:35',1),(1,210,3020715,'2012-12-25 06:46:35',1),(1,224,3020715,'2012-12-25 06:46:35',1),(1,221,3020715,'2012-12-25 06:46:35',1),(1,52,3020623,'2012-12-25 06:46:37',1),(1,210,3020623,'2012-12-25 06:46:37',1),(1,224,3020623,'2012-12-25 06:46:37',1),(1,221,3020623,'2012-12-25 06:46:37',1),(1,184,3020625,'2012-12-25 06:46:41',NULL),(1,60,3020625,'2012-12-25 06:46:41',NULL),(1,66,3020625,'2012-12-25 06:46:41',NULL),(1,201,3020625,'2012-12-25 06:46:41',NULL),(1,52,3020708,'2012-12-25 06:46:48',1),(1,210,3020708,'2012-12-25 06:46:48',1),(1,224,3020708,'2012-12-25 06:46:48',1),(1,221,3020708,'2012-12-25 06:46:48',1),(1,52,3020724,'2012-12-25 06:46:52',1),(1,210,3020724,'2012-12-25 06:46:52',1),(1,224,3020724,'2012-12-25 06:46:52',1),(1,221,3020724,'2012-12-25 06:46:52',1),(1,52,3020629,'2012-12-25 06:46:57',1),(1,210,3020629,'2012-12-25 06:46:57',1),(1,224,3020629,'2012-12-25 06:46:57',1),(1,221,3020629,'2012-12-25 06:46:57',1),(1,184,3020722,'2012-12-25 07:16:49',1),(1,60,3020722,'2012-12-25 07:16:49',1),(1,66,3020722,'2012-12-25 07:16:49',1),(1,201,3020722,'2012-12-25 07:16:49',1),(1,184,3020726,'2012-12-25 07:16:57',1),(1,60,3020726,'2012-12-25 07:16:57',1),(1,66,3020726,'2012-12-25 07:16:57',1),(1,201,3020726,'2012-12-25 07:16:57',1),(1,52,3020727,'2012-12-25 07:17:19',1),(1,210,3020727,'2012-12-25 07:17:19',1),(1,224,3020727,'2012-12-25 07:17:19',1),(1,221,3020727,'2012-12-25 07:17:19',1),(1,20,3020627,'2012-12-25 13:47:09',1),(1,249,3020627,'2012-12-25 13:47:09',1),(1,94,3020627,'2012-12-25 13:47:09',1),(1,160,3020627,'2012-12-25 13:47:09',1),(1,88,3020627,'2012-12-25 13:47:09',1),(1,27,3020627,'2012-12-25 13:47:09',1),(1,134,3020627,'2012-12-25 13:47:09',1),(1,135,3020627,'2012-12-25 13:47:09',1),(1,246,3020627,'2012-12-25 13:47:09',1),(1,149,3020627,'2012-12-25 13:47:09',1),(1,119,3020627,'2012-12-25 13:47:09',1),(1,136,3020627,'2012-12-25 13:47:09',1),(1,11,3020627,'2012-12-25 13:47:09',1),(1,124,3020627,'2012-12-25 13:47:09',1),(1,18,3020627,'2012-12-25 13:47:09',1),(1,151,3020627,'2012-12-25 13:47:09',1),(1,20,3020721,'2012-12-25 14:17:14',1),(1,249,3020721,'2012-12-25 14:17:14',1),(1,94,3020721,'2012-12-25 14:17:14',1),(1,160,3020721,'2012-12-25 14:17:14',1),(1,88,3020721,'2012-12-25 14:17:14',1),(1,27,3020721,'2012-12-25 14:17:14',1),(1,134,3020721,'2012-12-25 14:17:14',1),(1,135,3020721,'2012-12-25 14:17:14',1),(1,246,3020721,'2012-12-25 14:17:14',1),(1,149,3020721,'2012-12-25 14:17:14',1),(1,119,3020721,'2012-12-25 14:17:14',1),(1,136,3020721,'2012-12-25 14:17:14',1),(1,11,3020721,'2012-12-25 14:17:14',1),(1,124,3020721,'2012-12-25 14:17:14',1),(1,18,3020721,'2012-12-25 14:17:14',1),(1,151,3020721,'2012-12-25 14:17:14',1),(1,126,3020725,'2012-12-25 14:17:24',1),(1,41,3020725,'2012-12-25 14:17:24',1),(1,239,3020725,'2012-12-25 14:17:24',1),(1,147,3020725,'2012-12-25 14:17:24',1),(1,21,3020725,'2012-12-25 14:17:24',1),(1,155,3020725,'2012-12-25 14:17:24',1),(1,238,3020725,'2012-12-25 14:17:24',1),(1,158,3020725,'2012-12-25 14:17:24',1),(1,98,3020725,'2012-12-25 14:17:24',1),(1,233,3020725,'2012-12-25 14:17:24',1),(1,51,3020725,'2012-12-25 14:17:24',1),(1,179,3020725,'2012-12-25 14:17:24',1),(1,195,3020725,'2012-12-25 14:17:24',1),(1,157,3020725,'2012-12-25 14:17:24',1),(1,165,3020725,'2012-12-25 14:17:24',1),(1,175,3020725,'2012-12-25 14:17:24',1),(1,20,3020728,'2012-12-25 14:17:26',1),(1,249,3020728,'2012-12-25 14:17:26',1),(1,94,3020728,'2012-12-25 14:17:26',1),(1,160,3020728,'2012-12-25 14:17:26',1),(1,88,3020728,'2012-12-25 14:17:26',1),(1,27,3020728,'2012-12-25 14:17:26',1),(1,134,3020728,'2012-12-25 14:17:26',1),(1,135,3020728,'2012-12-25 14:17:26',1),(1,246,3020728,'2012-12-25 14:17:26',1),(1,149,3020728,'2012-12-25 14:17:26',1),(1,119,3020728,'2012-12-25 14:17:26',1),(1,136,3020728,'2012-12-25 14:17:26',1),(1,11,3020728,'2012-12-25 14:17:26',1),(1,124,3020728,'2012-12-25 14:17:26',1),(1,18,3020728,'2012-12-25 14:17:26',1),(1,151,3020728,'2012-12-25 14:17:26',1),(1,126,3020620,'2012-12-25 14:17:30',1),(1,41,3020620,'2012-12-25 14:17:30',1),(1,239,3020620,'2012-12-25 14:17:30',1),(1,147,3020620,'2012-12-25 14:17:30',1),(1,21,3020620,'2012-12-25 14:17:30',1),(1,155,3020620,'2012-12-25 14:17:30',1),(1,238,3020620,'2012-12-25 14:17:30',1),(1,158,3020620,'2012-12-25 14:17:30',1),(1,98,3020620,'2012-12-25 14:17:30',1),(1,233,3020620,'2012-12-25 14:17:30',1),(1,51,3020620,'2012-12-25 14:17:30',1),(1,179,3020620,'2012-12-25 14:17:30',1),(1,195,3020620,'2012-12-25 14:17:30',1),(1,157,3020620,'2012-12-25 14:17:30',1),(1,165,3020620,'2012-12-25 14:17:30',1),(1,175,3020620,'2012-12-25 14:17:30',1),(1,71,3020788,'2012-12-26 00:16:44',1),(1,44,3020788,'2012-12-26 00:16:44',1),(1,45,3020788,'2012-12-26 00:16:44',1),(1,12,3020788,'2012-12-26 00:16:44',1),(1,154,3020788,'2012-12-26 00:16:44',1),(1,28,3020788,'2012-12-26 00:16:44',1),(1,162,3020788,'2012-12-26 00:16:44',1),(1,46,3020788,'2012-12-26 00:16:44',1),(1,67,3020779,'2012-12-26 00:46:13',1),(1,68,3020780,'2012-12-26 00:46:13',1),(1,25,3020792,'2012-12-26 00:46:13',1),(1,113,3020792,'2012-12-26 00:46:13',1),(1,184,3020792,'2012-12-26 00:46:13',1),(1,118,3020792,'2012-12-26 00:46:13',1),(1,150,3020792,'2012-12-26 00:46:13',1),(1,245,3020792,'2012-12-26 00:46:13',1),(1,220,3020792,'2012-12-26 00:46:13',1),(1,164,3020792,'2012-12-26 00:46:13',1),(1,81,3020781,'2012-12-26 00:46:13',1),(1,116,3020789,'2012-12-26 00:46:21',1),(1,129,3020789,'2012-12-26 00:46:21',1),(1,13,3020789,'2012-12-26 00:46:21',1),(1,174,3020789,'2012-12-26 00:46:21',1),(1,60,3020775,'2012-12-26 00:46:22',1),(1,61,3020775,'2012-12-26 00:46:22',1),(1,230,3020777,'2012-12-26 00:46:29',1),(1,131,3020777,'2012-12-26 00:46:29',1),(1,52,3020778,'2012-12-26 00:46:29',1),(1,219,3020783,'2012-12-26 00:46:32',1),(1,66,3020783,'2012-12-26 00:46:32',1),(1,77,3020784,'2012-12-26 00:46:38',1),(1,241,3020784,'2012-12-26 00:46:38',1),(1,117,3020785,'2012-12-26 00:46:39',1),(1,107,3020785,'2012-12-26 00:46:39',1),(1,15,3020785,'2012-12-26 00:46:39',1),(1,112,3020785,'2012-12-26 00:46:39',1),(1,53,3020786,'2012-12-26 00:46:39',1),(1,242,3020786,'2012-12-26 00:46:39',1),(1,185,3020786,'2012-12-26 00:46:39',1),(1,142,3020786,'2012-12-26 00:46:39',1),(1,167,3020791,'2012-12-26 00:46:47',1),(1,186,3020791,'2012-12-26 00:46:47',1),(1,57,3020791,'2012-12-26 00:46:47',1),(1,235,3020791,'2012-12-26 00:46:47',1),(1,111,3020791,'2012-12-26 00:46:47',1),(1,161,3020791,'2012-12-26 00:46:47',1),(1,54,3020791,'2012-12-26 00:46:47',1),(1,37,3020791,'2012-12-26 00:46:47',1),(1,243,3020774,'2012-12-26 00:46:47',1),(1,145,3020774,'2012-12-26 00:46:47',1),(1,248,3020774,'2012-12-26 00:46:47',1),(1,128,3020774,'2012-12-26 00:46:47',1),(1,172,3020774,'2012-12-26 00:46:47',1),(1,59,3020774,'2012-12-26 00:46:47',1),(1,115,3020774,'2012-12-26 00:46:47',1),(1,8,3020774,'2012-12-26 00:46:47',1),(1,132,3020790,'2012-12-26 00:46:47',1),(1,103,3020790,'2012-12-26 00:46:47',1),(1,38,3020790,'2012-12-26 00:46:47',1),(1,9,3020790,'2012-12-26 00:46:47',1),(1,71,3020881,'2012-12-26 01:46:11',1),(1,44,3020881,'2012-12-26 01:46:11',1),(1,45,3020881,'2012-12-26 01:46:11',1),(1,12,3020881,'2012-12-26 01:46:11',1),(1,25,3020879,'2012-12-26 01:46:11',1),(1,113,3020879,'2012-12-26 01:46:11',1),(1,184,3020879,'2012-12-26 01:46:11',1),(1,118,3020879,'2012-12-26 01:46:11',1),(1,150,3020879,'2012-12-26 01:46:11',1),(1,245,3020879,'2012-12-26 01:46:11',1),(1,220,3020879,'2012-12-26 01:46:11',1),(1,164,3020879,'2012-12-26 01:46:11',1),(1,167,3020882,'2012-12-26 01:46:11',1),(1,186,3020882,'2012-12-26 01:46:11',1),(1,111,3020883,'2012-12-26 01:46:11',1),(1,187,3020884,'2012-12-26 01:46:19',1),(1,197,3020884,'2012-12-26 01:46:19',1),(1,170,3020884,'2012-12-26 01:46:19',1),(1,225,3020884,'2012-12-26 01:46:19',1),(1,146,3020884,'2012-12-26 01:46:19',1),(1,43,3020884,'2012-12-26 01:46:19',1),(1,153,3020884,'2012-12-26 01:46:19',1),(1,127,3020884,'2012-12-26 01:46:19',1),(1,57,3020878,'2012-12-26 01:46:19',1),(1,235,3020878,'2012-12-26 01:46:19',1),(1,161,3020885,'2012-12-26 01:46:19',1),(1,154,3020880,'2012-12-26 01:46:20',1),(1,28,3020880,'2012-12-26 01:46:20',1),(1,162,3020880,'2012-12-26 01:46:20',1),(1,46,3020880,'2012-12-26 01:46:20',1),(1,219,3020963,'2012-12-26 02:46:12',1),(1,66,3020963,'2012-12-26 02:46:12',1),(1,201,3020963,'2012-12-26 02:46:12',1),(1,205,3020963,'2012-12-26 02:46:12',1),(1,77,3020963,'2012-12-26 02:46:12',1),(1,241,3020963,'2012-12-26 02:46:12',1),(1,67,3020963,'2012-12-26 02:46:12',1),(1,68,3020963,'2012-12-26 02:46:12',1),(1,219,3020955,'2012-12-26 02:46:12',1),(1,66,3020955,'2012-12-26 02:46:12',1),(1,201,3020955,'2012-12-26 02:46:12',1),(1,205,3020955,'2012-12-26 02:46:12',1),(1,77,3020955,'2012-12-26 02:46:12',1),(1,241,3020955,'2012-12-26 02:46:12',1),(1,67,3020955,'2012-12-26 02:46:12',1),(1,68,3020955,'2012-12-26 02:46:12',1),(1,81,3020955,'2012-12-26 02:46:12',1),(1,52,3020955,'2012-12-26 02:46:12',1),(1,208,3020955,'2012-12-26 02:46:12',1),(1,78,3020955,'2012-12-26 02:46:12',1),(1,105,3020955,'2012-12-26 02:46:12',1),(1,210,3020955,'2012-12-26 02:46:12',1),(1,70,3020955,'2012-12-26 02:46:12',1),(1,224,3020955,'2012-12-26 02:46:12',1),(1,81,3020947,'2012-12-26 02:46:20',1),(1,52,3020947,'2012-12-26 02:46:20',1),(1,208,3020947,'2012-12-26 02:46:20',1),(1,78,3020947,'2012-12-26 02:46:20',1),(1,105,3020947,'2012-12-26 02:46:20',1),(1,210,3020947,'2012-12-26 02:46:20',1),(1,70,3020947,'2012-12-26 02:46:20',1),(1,224,3020947,'2012-12-26 02:46:20',1),(1,81,3020960,'2012-12-26 02:46:20',1),(1,52,3020960,'2012-12-26 02:46:20',1),(1,208,3020960,'2012-12-26 02:46:20',1),(1,78,3020960,'2012-12-26 02:46:20',1),(1,4,3020961,'2012-12-26 02:46:24',1),(1,105,3020952,'2012-12-26 02:46:28',1),(1,210,3020952,'2012-12-26 02:46:28',1),(1,70,3020952,'2012-12-26 02:46:28',1),(1,224,3020952,'2012-12-26 02:46:28',1),(1,4,3020950,'2012-12-26 02:46:28',1),(1,208,3020948,'2012-12-26 02:46:28',1),(1,78,3020948,'2012-12-26 02:46:28',1),(1,105,3020951,'2012-12-26 02:46:36',1),(1,210,3020951,'2012-12-26 02:46:36',1),(1,70,3020951,'2012-12-26 02:46:36',1),(1,224,3020951,'2012-12-26 02:46:36',1),(1,105,3020964,'2012-12-26 02:46:37',1),(1,210,3020964,'2012-12-26 02:46:37',1),(1,70,3020964,'2012-12-26 02:46:37',1),(1,224,3020964,'2012-12-26 02:46:37',1),(1,81,3020958,'2012-12-26 02:46:37',1),(1,52,3020958,'2012-12-26 02:46:37',1),(1,208,3020958,'2012-12-26 02:46:37',1),(1,78,3020958,'2012-12-26 02:46:37',1),(1,105,3020958,'2012-12-26 02:46:37',1),(1,210,3020958,'2012-12-26 02:46:37',1),(1,70,3020958,'2012-12-26 02:46:37',1),(1,224,3020958,'2012-12-26 02:46:37',1),(1,4,3020957,'2012-12-26 02:46:37',1),(1,219,3020949,'2012-12-26 02:46:45',1),(1,66,3020949,'2012-12-26 02:46:45',1),(1,201,3020949,'2012-12-26 02:46:45',1),(1,205,3020949,'2012-12-26 02:46:45',1),(1,77,3020949,'2012-12-26 02:46:45',1),(1,241,3020949,'2012-12-26 02:46:45',1),(1,67,3020949,'2012-12-26 02:46:45',1),(1,68,3020949,'2012-12-26 02:46:45',1),(1,81,3020949,'2012-12-26 02:46:45',1),(1,52,3020949,'2012-12-26 02:46:45',1),(1,208,3020949,'2012-12-26 02:46:45',1),(1,78,3020949,'2012-12-26 02:46:45',1),(1,105,3020949,'2012-12-26 02:46:45',1),(1,210,3020949,'2012-12-26 02:46:45',1),(1,70,3020949,'2012-12-26 02:46:45',1),(1,224,3020949,'2012-12-26 02:46:45',1),(1,219,3020953,'2012-12-26 02:46:45',1),(1,66,3020953,'2012-12-26 02:46:45',1),(1,201,3020953,'2012-12-26 02:46:45',1),(1,205,3020953,'2012-12-26 02:46:45',1),(1,77,3020953,'2012-12-26 02:46:45',1),(1,241,3020953,'2012-12-26 02:46:45',1),(1,67,3020953,'2012-12-26 02:46:45',1),(1,68,3020953,'2012-12-26 02:46:45',1),(1,223,3020954,'2012-12-26 03:16:14',NULL),(1,228,3020954,'2012-12-26 03:16:14',NULL),(1,91,3020954,'2012-12-26 03:16:14',NULL),(1,6,3020954,'2012-12-26 03:16:14',NULL),(1,105,3020956,'2012-12-26 03:16:14',1),(1,210,3020956,'2012-12-26 03:16:14',1),(1,70,3020959,'2012-12-26 03:16:23',1),(1,224,3020959,'2012-12-26 03:16:23',1),(1,81,3020962,'2012-12-26 03:16:30',1),(1,52,3020962,'2012-12-26 03:16:30',1),(1,4,3021059,'2012-12-26 03:46:12',1),(1,219,3021055,'2012-12-26 03:46:20',1),(1,66,3021055,'2012-12-26 03:46:20',1),(1,201,3021055,'2012-12-26 03:46:20',1),(1,205,3021055,'2012-12-26 03:46:20',1),(1,77,3021055,'2012-12-26 03:46:20',1),(1,241,3021055,'2012-12-26 03:46:20',1),(1,67,3021055,'2012-12-26 03:46:20',1),(1,68,3021055,'2012-12-26 03:46:20',1),(1,81,3021055,'2012-12-26 03:46:20',1),(1,52,3021055,'2012-12-26 03:46:20',1),(1,208,3021055,'2012-12-26 03:46:20',1),(1,78,3021055,'2012-12-26 03:46:20',1),(1,105,3021055,'2012-12-26 03:46:20',1),(1,210,3021055,'2012-12-26 03:46:20',1),(1,70,3021055,'2012-12-26 03:46:20',1),(1,224,3021055,'2012-12-26 03:46:20',1),(1,4,3021046,'2012-12-26 03:46:20',1),(1,223,3021043,'2012-12-26 03:46:23',1),(1,228,3021043,'2012-12-26 03:46:23',1),(1,91,3021043,'2012-12-26 03:46:23',1),(1,6,3021043,'2012-12-26 03:46:23',1),(1,4,3021057,'2012-12-26 03:46:36',1),(1,223,3021053,'2012-12-26 03:46:37',1),(1,228,3021053,'2012-12-26 03:46:37',1),(1,91,3021053,'2012-12-26 03:46:37',1),(1,6,3021053,'2012-12-26 03:46:37',1),(1,4,3021063,'2012-12-26 03:46:44',1),(1,213,3021042,'2012-12-26 04:16:14',1),(1,69,3021042,'2012-12-26 04:16:14',1),(1,209,3021042,'2012-12-26 04:16:14',1),(1,214,3021042,'2012-12-26 04:16:14',1),(1,90,3021042,'2012-12-26 04:16:14',1),(1,56,3021042,'2012-12-26 04:16:14',1),(1,92,3021042,'2012-12-26 04:16:14',1),(1,222,3021042,'2012-12-26 04:16:14',1),(1,223,3021062,'2012-12-26 04:16:14',1),(1,228,3021062,'2012-12-26 04:16:14',1),(1,101,3021056,'2012-12-26 04:16:14',1),(1,14,3021056,'2012-12-26 04:16:14',1),(1,200,3021056,'2012-12-26 04:16:14',1),(1,104,3021056,'2012-12-26 04:16:14',1),(1,49,3021056,'2012-12-26 04:16:14',1),(1,207,3021056,'2012-12-26 04:16:14',1),(1,211,3021056,'2012-12-26 04:16:14',1),(1,212,3021056,'2012-12-26 04:16:14',1),(1,219,3021039,'2012-12-26 04:16:22',1),(1,66,3021039,'2012-12-26 04:16:22',1),(1,201,3021039,'2012-12-26 04:16:22',1),(1,205,3021039,'2012-12-26 04:16:22',1),(1,77,3021039,'2012-12-26 04:16:22',1),(1,241,3021039,'2012-12-26 04:16:22',1),(1,67,3021039,'2012-12-26 04:16:22',1),(1,68,3021039,'2012-12-26 04:16:22',1),(1,91,3021060,'2012-12-26 04:16:30',1),(1,6,3021060,'2012-12-26 04:16:30',1),(1,219,3021052,'2012-12-26 04:16:31',1),(1,66,3021052,'2012-12-26 04:16:31',1),(1,201,3021052,'2012-12-26 04:16:31',1),(1,205,3021052,'2012-12-26 04:16:31',1),(1,77,3021052,'2012-12-26 04:16:31',1),(1,241,3021052,'2012-12-26 04:16:31',1),(1,67,3021052,'2012-12-26 04:16:31',1),(1,68,3021052,'2012-12-26 04:16:31',1),(1,81,3021052,'2012-12-26 04:16:31',1),(1,52,3021052,'2012-12-26 04:16:31',1),(1,208,3021052,'2012-12-26 04:16:31',1),(1,78,3021052,'2012-12-26 04:16:31',1),(1,105,3021052,'2012-12-26 04:16:31',1),(1,210,3021052,'2012-12-26 04:16:31',1),(1,70,3021052,'2012-12-26 04:16:31',1),(1,224,3021052,'2012-12-26 04:16:31',1),(1,101,3021047,'2012-12-26 04:16:33',1),(1,14,3021047,'2012-12-26 04:16:33',1),(1,200,3021047,'2012-12-26 04:16:33',1),(1,104,3021047,'2012-12-26 04:16:33',1),(1,49,3021047,'2012-12-26 04:16:33',1),(1,207,3021047,'2012-12-26 04:16:33',1),(1,211,3021047,'2012-12-26 04:16:33',1),(1,212,3021047,'2012-12-26 04:16:33',1),(1,213,3021047,'2012-12-26 04:16:33',1),(1,69,3021047,'2012-12-26 04:16:33',1),(1,209,3021047,'2012-12-26 04:16:33',1),(1,214,3021047,'2012-12-26 04:16:33',1),(1,90,3021047,'2012-12-26 04:16:33',1),(1,56,3021047,'2012-12-26 04:16:33',1),(1,92,3021047,'2012-12-26 04:16:33',1),(1,222,3021047,'2012-12-26 04:16:33',1),(1,219,3021045,'2012-12-26 04:16:38',1),(1,66,3021045,'2012-12-26 04:16:38',1),(1,223,3021054,'2012-12-26 04:16:46',1),(1,228,3021054,'2012-12-26 04:16:46',1),(1,91,3021054,'2012-12-26 04:16:46',1),(1,6,3021054,'2012-12-26 04:16:46',1),(1,223,3021048,'2012-12-26 04:16:46',1),(1,228,3021048,'2012-12-26 04:16:46',1),(1,91,3021048,'2012-12-26 04:16:46',1),(1,6,3021048,'2012-12-26 04:16:46',1),(1,77,3021049,'2012-12-26 04:16:46',1),(1,241,3021049,'2012-12-26 04:16:46',1),(1,81,3021041,'2012-12-26 04:16:54',1),(1,52,3021041,'2012-12-26 04:16:54',1),(1,208,3021041,'2012-12-26 04:16:54',1),(1,78,3021041,'2012-12-26 04:16:54',1),(1,105,3021041,'2012-12-26 04:16:54',1),(1,210,3021041,'2012-12-26 04:16:54',1),(1,70,3021041,'2012-12-26 04:16:54',1),(1,224,3021041,'2012-12-26 04:16:54',1),(1,223,3021050,'2012-12-26 04:16:54',1),(1,228,3021050,'2012-12-26 04:16:54',1),(1,91,3021050,'2012-12-26 04:16:54',1),(1,6,3021050,'2012-12-26 04:16:54',1),(1,223,3021051,'2012-12-26 04:16:58',1),(1,228,3021051,'2012-12-26 04:16:58',1),(1,91,3021051,'2012-12-26 04:16:58',1),(1,6,3021051,'2012-12-26 04:16:58',1),(1,219,3021061,'2012-12-26 04:17:02',1),(1,66,3021061,'2012-12-26 04:17:02',1),(1,201,3021061,'2012-12-26 04:17:02',1),(1,205,3021061,'2012-12-26 04:17:02',1),(1,77,3021061,'2012-12-26 04:17:02',1),(1,241,3021061,'2012-12-26 04:17:02',1),(1,67,3021061,'2012-12-26 04:17:02',1),(1,68,3021061,'2012-12-26 04:17:02',1),(1,223,3021044,'2012-12-26 04:46:32',1),(1,228,3021044,'2012-12-26 04:46:32',1),(1,201,3021058,'2012-12-26 04:46:40',1),(1,205,3021058,'2012-12-26 04:46:40',1),(1,101,3021040,'2012-12-26 04:46:56',1),(1,14,3021040,'2012-12-26 04:46:56',1),(1,200,3021040,'2012-12-26 04:46:56',1),(1,104,3021040,'2012-12-26 04:46:56',1),(1,49,3021040,'2012-12-26 04:46:56',1),(1,207,3021040,'2012-12-26 04:46:56',1),(1,211,3021040,'2012-12-26 04:46:56',1),(1,212,3021040,'2012-12-26 04:46:56',1),(1,92,3021100,'2012-12-27 00:46:12',1),(1,224,3021100,'2012-12-27 00:46:12',1),(1,179,3021117,'2012-12-27 00:46:12',1),(1,175,3021117,'2012-12-27 00:46:12',1),(1,100,3021117,'2012-12-27 00:46:12',1),(1,29,3021117,'2012-12-27 00:46:12',1),(1,190,3021117,'2012-12-27 00:46:12',1),(1,23,3021117,'2012-12-27 00:46:12',1),(1,75,3021117,'2012-12-27 00:46:12',1),(1,67,3021117,'2012-12-27 00:46:12',1),(1,67,3021119,'2012-12-27 00:46:12',1),(1,49,3021119,'2012-12-27 00:46:12',1),(1,212,3021119,'2012-12-27 00:46:12',1),(1,81,3021119,'2012-12-27 00:46:12',1),(1,56,3021102,'2012-12-27 00:46:20',1),(1,92,3021102,'2012-12-27 00:46:20',1),(1,90,3021103,'2012-12-27 00:46:20',1),(1,224,3021104,'2012-12-27 00:46:26',1),(1,56,3021105,'2012-12-27 00:46:28',1),(1,92,3021106,'2012-12-27 00:46:30',1),(1,77,3021108,'2012-12-27 00:46:31',1),(1,67,3021108,'2012-12-27 00:46:31',1),(1,81,3021109,'2012-12-27 00:46:36',1),(1,210,3021109,'2012-12-27 00:46:36',1),(1,6,3021110,'2012-12-27 00:46:38',1),(1,4,3021110,'2012-12-27 00:46:38',1),(1,14,3021110,'2012-12-27 00:46:38',1),(1,75,3021110,'2012-12-27 00:46:38',1),(1,144,3021111,'2012-12-27 00:46:38',1),(1,73,3021111,'2012-12-27 00:46:38',1),(1,188,3021111,'2012-12-27 00:46:38',1),(1,23,3021111,'2012-12-27 00:46:38',1),(1,23,3021113,'2012-12-27 00:46:45',1),(1,6,3021113,'2012-12-27 00:46:45',1),(1,14,3021113,'2012-12-27 00:46:45',1),(1,75,3021113,'2012-12-27 00:46:45',1),(1,217,3021113,'2012-12-27 00:46:45',1),(1,219,3021113,'2012-12-27 00:46:45',1),(1,199,3021113,'2012-12-27 00:46:45',1),(1,77,3021113,'2012-12-27 00:46:45',1),(1,237,3021115,'2012-12-27 00:46:45',1),(1,42,3021115,'2012-12-27 00:46:45',1),(1,158,3021115,'2012-12-27 00:46:45',1),(1,98,3021115,'2012-12-27 00:46:45',1),(1,179,3021115,'2012-12-27 00:46:45',1),(1,175,3021115,'2012-12-27 00:46:45',1),(1,34,3021115,'2012-12-27 00:46:45',1),(1,100,3021115,'2012-12-27 00:46:45',1),(1,29,3021116,'2012-12-27 00:46:45',1),(1,171,3021116,'2012-12-27 00:46:45',1),(1,39,3021116,'2012-12-27 00:46:45',1),(1,193,3021116,'2012-12-27 00:46:45',1),(1,169,3021116,'2012-12-27 00:46:45',1),(1,190,3021116,'2012-12-27 00:46:45',1),(1,85,3021116,'2012-12-27 00:46:45',1),(1,159,3021116,'2012-12-27 00:46:45',1),(1,217,3021114,'2012-12-27 00:46:45',1),(1,219,3021114,'2012-12-27 00:46:45',1),(1,199,3021114,'2012-12-27 00:46:45',1),(1,201,3021114,'2012-12-27 00:46:45',1),(1,68,3021206,'2012-12-27 01:46:13',1),(1,90,3021206,'2012-12-27 01:46:13',1),(1,140,3021201,'2012-12-27 01:46:13',1),(1,26,3021201,'2012-12-27 01:46:13',1),(1,233,3021201,'2012-12-27 01:46:13',1),(1,198,3021201,'2012-12-27 01:46:13',1),(1,246,3021202,'2012-12-27 01:46:13',1),(1,149,3021202,'2012-12-27 01:46:13',1),(1,141,3021202,'2012-12-27 01:46:13',1),(1,119,3021202,'2012-12-27 01:46:13',1),(1,136,3021203,'2012-12-27 01:46:17',1),(1,42,3021203,'2012-12-27 01:46:17',1),(1,120,3021204,'2012-12-27 01:46:19',1),(1,20,3021205,'2012-12-27 01:46:20',1),(1,247,3021205,'2012-12-27 01:46:20',1),(1,249,3021205,'2012-12-27 01:46:20',1),(1,94,3021205,'2012-12-27 01:46:20',1),(1,160,3021205,'2012-12-27 01:46:20',1),(1,133,3021205,'2012-12-27 01:46:20',1),(1,16,3021205,'2012-12-27 01:46:20',1),(1,244,3021205,'2012-12-27 01:46:20',1),(1,82,3021207,'2012-12-27 01:46:21',1),(1,88,3021200,'2012-12-27 01:46:25',1),(1,125,3021200,'2012-12-27 01:46:25',1),(1,183,3021200,'2012-12-27 01:46:25',1),(1,27,3021200,'2012-12-27 01:46:25',1),(1,140,3021200,'2012-12-27 01:46:25',1),(1,237,3021200,'2012-12-27 01:46:25',1),(1,134,3021200,'2012-12-27 01:46:25',1),(1,135,3021200,'2012-12-27 01:46:25',1),(1,212,3021277,'2012-12-27 02:16:10',1),(1,90,3021277,'2012-12-27 02:16:10',1),(1,70,3021277,'2012-12-27 02:16:10',1),(1,56,3021277,'2012-12-27 02:16:10',1),(1,223,3021275,'2012-12-27 02:46:12',1),(1,237,3021278,'2012-12-27 02:46:12',1),(1,134,3021278,'2012-12-27 02:46:12',1),(1,35,3021278,'2012-12-27 02:46:12',1),(1,191,3021278,'2012-12-27 02:46:12',1),(1,32,3021278,'2012-12-27 02:46:12',1),(1,93,3021278,'2012-12-27 02:46:12',1),(1,67,3021278,'2012-12-27 02:46:12',1),(1,104,3021278,'2012-12-27 02:46:12',1),(1,92,3021276,'2012-12-27 02:46:12',1),(1,224,3021276,'2012-12-27 02:46:12',1),(1,221,3021276,'2012-12-27 02:46:12',1),(1,222,3021276,'2012-12-27 02:46:12',1),(1,129,3021281,'2012-12-27 02:46:20',1),(1,174,3021281,'2012-12-27 02:46:20',1),(1,135,3021280,'2012-12-27 02:46:20',1),(1,149,3021280,'2012-12-27 02:46:20',1),(1,138,3021280,'2012-12-27 02:46:20',1),(1,22,3021280,'2012-12-27 02:46:20',1),(1,34,3021280,'2012-12-27 02:46:20',1),(1,30,3021280,'2012-12-27 02:46:20',1),(1,236,3021280,'2012-12-27 02:46:20',1),(1,171,3021280,'2012-12-27 02:46:20',1),(1,106,3021280,'2012-12-27 02:46:20',1),(1,83,3021280,'2012-12-27 02:46:20',1),(1,63,3021280,'2012-12-27 02:46:20',1),(1,114,3021280,'2012-12-27 02:46:20',1),(1,53,3021280,'2012-12-27 02:46:20',1),(1,64,3021280,'2012-12-27 02:46:20',1),(1,201,3021280,'2012-12-27 02:46:20',1),(1,212,3021280,'2012-12-27 02:46:20',1),(1,70,3021282,'2012-12-27 02:46:24',1),(1,56,3021282,'2012-12-27 02:46:24',1),(1,64,3021290,'2012-12-27 02:46:28',1),(1,135,3021291,'2012-12-27 02:46:28',1),(1,149,3021291,'2012-12-27 02:46:28',1),(1,141,3021291,'2012-12-27 02:46:28',1),(1,119,3021291,'2012-12-27 02:46:28',1),(1,138,3021291,'2012-12-27 02:46:28',1),(1,48,3021291,'2012-12-27 02:46:28',1),(1,40,3021291,'2012-12-27 02:46:28',1),(1,233,3021291,'2012-12-27 02:46:28',1),(1,22,3021291,'2012-12-27 02:46:28',1),(1,34,3021291,'2012-12-27 02:46:28',1),(1,30,3021291,'2012-12-27 02:46:28',1),(1,236,3021291,'2012-12-27 02:46:28',1),(1,171,3021291,'2012-12-27 02:46:28',1),(1,39,3021291,'2012-12-27 02:46:28',1),(1,106,3021291,'2012-12-27 02:46:28',1),(1,83,3021291,'2012-12-27 02:46:28',1),(1,107,3021274,'2012-12-27 02:46:28',1),(1,15,3021274,'2012-12-27 02:46:28',1),(1,63,3021283,'2012-12-27 02:46:33',1),(1,190,3021283,'2012-12-27 02:46:33',1),(1,114,3021283,'2012-12-27 02:46:33',1),(1,4,3021283,'2012-12-27 02:46:33',1),(1,226,3021283,'2012-12-27 02:46:33',1),(1,129,3021283,'2012-12-27 02:46:33',1),(1,174,3021283,'2012-12-27 02:46:33',1),(1,53,3021283,'2012-12-27 02:46:33',1),(1,242,3021285,'2012-12-27 02:46:37',1),(1,53,3021286,'2012-12-27 02:46:37',1),(1,130,3021286,'2012-12-27 02:46:37',1),(1,92,3021288,'2012-12-27 02:46:37',1),(1,224,3021288,'2012-12-27 02:46:37',1),(1,221,3021288,'2012-12-27 02:46:37',1),(1,222,3021288,'2012-12-27 02:46:37',1),(1,64,3021287,'2012-12-27 02:46:37',1),(1,242,3021287,'2012-12-27 02:46:37',1),(1,76,3021287,'2012-12-27 02:46:37',1),(1,185,3021287,'2012-12-27 02:46:37',1),(1,240,3021287,'2012-12-27 02:46:37',1),(1,66,3021287,'2012-12-27 02:46:37',1),(1,201,3021287,'2012-12-27 02:46:37',1),(1,212,3021287,'2012-12-27 02:46:37',1),(1,147,3021289,'2012-12-27 02:46:45',1),(1,238,3021289,'2012-12-27 02:46:45',1),(1,98,3021289,'2012-12-27 02:46:45',1),(1,1,3021289,'2012-12-27 02:46:45',1),(1,63,3021289,'2012-12-27 02:46:45',1),(1,190,3021289,'2012-12-27 02:46:45',1),(1,85,3021289,'2012-12-27 02:46:45',1),(1,114,3021289,'2012-12-27 02:46:45',1),(1,192,3021284,'2012-12-27 02:46:45',1),(1,86,3021284,'2012-12-27 02:46:45',1),(1,4,3021284,'2012-12-27 02:46:45',1),(1,226,3021284,'2012-12-27 02:46:45',1),(1,18,3021373,'2012-12-27 03:16:17',1),(1,48,3021373,'2012-12-27 03:16:17',1),(1,78,3021279,'2012-12-27 03:16:22',NULL),(1,214,3021279,'2012-12-27 03:16:22',NULL),(1,105,3021279,'2012-12-27 03:16:22',NULL),(1,90,3021279,'2012-12-27 03:16:22',NULL),(1,140,3021363,'2012-12-27 03:46:11',1),(1,227,3021363,'2012-12-27 03:46:11',1),(1,237,3021363,'2012-12-27 03:46:11',1),(1,134,3021363,'2012-12-27 03:46:11',1),(1,135,3021363,'2012-12-27 03:46:11',1),(1,149,3021363,'2012-12-27 03:46:11',1),(1,141,3021363,'2012-12-27 03:46:11',1),(1,119,3021363,'2012-12-27 03:46:11',1),(1,247,3021365,'2012-12-27 03:46:11',1),(1,94,3021365,'2012-12-27 03:46:11',1),(1,160,3021365,'2012-12-27 03:46:11',1),(1,133,3021365,'2012-12-27 03:46:11',1),(1,16,3021365,'2012-12-27 03:46:11',1),(1,244,3021365,'2012-12-27 03:46:11',1),(1,95,3021365,'2012-12-27 03:46:11',1),(1,125,3021365,'2012-12-27 03:46:11',1),(1,26,3021384,'2012-12-27 03:46:11',1),(1,137,3021375,'2012-12-27 03:46:11',1),(1,138,3021375,'2012-12-27 03:46:11',1),(1,42,3021375,'2012-12-27 03:46:11',1),(1,3,3021375,'2012-12-27 03:46:11',1),(1,123,3021386,'2012-12-27 03:46:19',1),(1,124,3021386,'2012-12-27 03:46:19',1),(1,139,3021366,'2012-12-27 03:46:19',1),(1,82,3021366,'2012-12-27 03:46:19',1),(1,120,3021366,'2012-12-27 03:46:19',1),(1,121,3021366,'2012-12-27 03:46:19',1),(1,40,3021362,'2012-12-27 03:46:19',1),(1,199,3021368,'2012-12-27 03:46:27',1),(1,200,3021368,'2012-12-27 03:46:27',1),(1,203,3021377,'2012-12-27 03:46:27',1),(1,76,3021377,'2012-12-27 03:46:27',1),(1,185,3021377,'2012-12-27 03:46:27',1),(1,108,3021377,'2012-12-27 03:46:27',1),(1,137,3021376,'2012-12-27 03:46:27',1),(1,138,3021376,'2012-12-27 03:46:27',1),(1,42,3021376,'2012-12-27 03:46:27',1),(1,3,3021376,'2012-12-27 03:46:27',1),(1,18,3021376,'2012-12-27 03:46:27',1),(1,48,3021376,'2012-12-27 03:46:27',1),(1,26,3021376,'2012-12-27 03:46:27',1),(1,41,3021376,'2012-12-27 03:46:27',1),(1,152,3021376,'2012-12-27 03:46:27',1),(1,239,3021376,'2012-12-27 03:46:27',1),(1,21,3021376,'2012-12-27 03:46:27',1),(1,155,3021376,'2012-12-27 03:46:27',1),(1,232,3021376,'2012-12-27 03:46:27',1),(1,47,3021376,'2012-12-27 03:46:27',1),(1,158,3021376,'2012-12-27 03:46:27',1),(1,233,3021376,'2012-12-27 03:46:27',1),(1,102,3021378,'2012-12-27 03:46:31',1),(1,204,3021378,'2012-12-27 03:46:31',1),(1,10,3021378,'2012-12-27 03:46:31',1),(1,60,3021378,'2012-12-27 03:46:31',1),(1,143,3021380,'2012-12-27 03:46:35',1),(1,51,3021380,'2012-12-27 03:46:35',1),(1,194,3021380,'2012-12-27 03:46:35',1),(1,179,3021380,'2012-12-27 03:46:35',1),(1,195,3021380,'2012-12-27 03:46:35',1),(1,196,3021380,'2012-12-27 03:46:35',1),(1,22,3021380,'2012-12-27 03:46:35',1),(1,165,3021380,'2012-12-27 03:46:35',1),(1,175,3021380,'2012-12-27 03:46:35',1),(1,163,3021380,'2012-12-27 03:46:35',1),(1,176,3021380,'2012-12-27 03:46:35',1),(1,58,3021380,'2012-12-27 03:46:35',1),(1,177,3021380,'2012-12-27 03:46:35',1),(1,148,3021380,'2012-12-27 03:46:35',1),(1,109,3021380,'2012-12-27 03:46:35',1),(1,33,3021380,'2012-12-27 03:46:35',1),(1,193,3021379,'2012-12-27 03:46:35',1),(1,169,3021379,'2012-12-27 03:46:35',1),(1,189,3021379,'2012-12-27 03:46:35',1),(1,191,3021379,'2012-12-27 03:46:35',1),(1,32,3021379,'2012-12-27 03:46:35',1),(1,192,3021379,'2012-12-27 03:46:35',1),(1,73,3021379,'2012-12-27 03:46:35',1),(1,188,3021379,'2012-12-27 03:46:35',1),(1,59,3021381,'2012-12-27 03:46:35',1),(1,84,3021381,'2012-12-27 03:46:35',1),(1,86,3021381,'2012-12-27 03:46:35',1),(1,115,3021381,'2012-12-27 03:46:35',1),(1,8,3021381,'2012-12-27 03:46:35',1),(1,173,3021381,'2012-12-27 03:46:35',1),(1,80,3021381,'2012-12-27 03:46:35',1),(1,4,3021381,'2012-12-27 03:46:35',1),(1,68,3021382,'2012-12-27 03:46:39',1),(1,252,3021364,'2012-12-27 03:46:47',1),(1,250,3021364,'2012-12-27 03:46:47',1),(1,93,3021364,'2012-12-27 03:46:47',1),(1,101,3021364,'2012-12-27 03:46:47',1),(1,226,3021364,'2012-12-27 03:46:47',1),(1,116,3021364,'2012-12-27 03:46:47',1),(1,129,3021364,'2012-12-27 03:46:47',1),(1,13,3021364,'2012-12-27 03:46:47',1),(1,213,3021370,'2012-12-27 03:46:47',1),(1,178,3021371,'2012-12-27 03:46:47',1),(1,34,3021371,'2012-12-27 03:46:47',1),(1,182,3021371,'2012-12-27 03:46:47',1),(1,100,3021371,'2012-12-27 03:46:47',1),(1,35,3021371,'2012-12-27 03:46:47',1),(1,36,3021371,'2012-12-27 03:46:47',1),(1,29,3021371,'2012-12-27 03:46:47',1),(1,30,3021371,'2012-12-27 03:46:47',1),(1,31,3021371,'2012-12-27 03:46:47',1),(1,236,3021371,'2012-12-27 03:46:47',1),(1,251,3021371,'2012-12-27 03:46:47',1),(1,171,3021371,'2012-12-27 03:46:47',1),(1,62,3021371,'2012-12-27 03:46:47',1),(1,39,3021371,'2012-12-27 03:46:47',1),(1,19,3021371,'2012-12-27 03:46:47',1),(1,106,3021371,'2012-12-27 03:46:47',1),(1,215,3021372,'2012-12-27 03:46:50',1),(1,5,3021372,'2012-12-27 03:46:50',1),(1,229,3021372,'2012-12-27 03:46:50',1),(1,216,3021372,'2012-12-27 03:46:50',1),(1,205,3021383,'2012-12-27 03:46:54',1),(1,77,3021383,'2012-12-27 03:46:54',1),(1,50,3021374,'2012-12-27 03:46:54',1),(1,131,3021374,'2012-12-27 03:46:54',1),(1,217,3021374,'2012-12-27 03:46:54',1),(1,219,3021374,'2012-12-27 03:46:54',1),(1,241,3021367,'2012-12-27 03:46:54',1),(1,49,3021367,'2012-12-27 03:46:54',1),(1,174,3021385,'2012-12-27 03:46:57',1),(1,117,3021385,'2012-12-27 03:46:57',1),(1,14,3021385,'2012-12-27 03:46:57',1),(1,75,3021385,'2012-12-27 03:46:57',1),(1,55,3021385,'2012-12-27 03:46:57',1),(1,156,3021385,'2012-12-27 03:46:57',1),(1,168,3021385,'2012-12-27 03:46:57',1),(1,242,3021385,'2012-12-27 03:46:57',1),(1,207,3021369,'2012-12-27 03:47:01',1),(1,211,3021369,'2012-12-27 03:47:01',1),(1,118,3021706,'2012-12-28 12:16:46',1),(1,141,3021706,'2012-12-28 12:16:46',1),(1,119,3021706,'2012-12-28 12:16:46',1),(1,136,3021706,'2012-12-28 12:16:46',1),(1,66,3021716,'2012-12-28 12:16:46',1),(1,201,3021716,'2012-12-28 12:16:46',1),(1,205,3021716,'2012-12-28 12:16:46',1),(1,77,3021716,'2012-12-28 12:16:46',1),(1,92,3021606,'2012-12-28 12:16:49',1),(1,224,3021606,'2012-12-28 12:16:49',1),(1,221,3021606,'2012-12-28 12:16:49',1),(1,222,3021606,'2012-12-28 12:16:49',1),(1,140,3021607,'2012-12-28 12:16:51',NULL),(1,96,3021607,'2012-12-28 12:16:51',NULL),(1,227,3021607,'2012-12-28 12:16:51',NULL),(1,237,3021607,'2012-12-28 12:16:51',NULL),(1,134,3021607,'2012-12-28 12:16:51',NULL),(1,135,3021607,'2012-12-28 12:16:51',NULL),(1,246,3021607,'2012-12-28 12:16:51',NULL),(1,149,3021607,'2012-12-28 12:16:51',NULL),(1,50,3021609,'2012-12-28 12:16:51',1),(1,131,3021609,'2012-12-28 12:16:51',1),(1,217,3021609,'2012-12-28 12:16:51',1),(1,218,3021609,'2012-12-28 12:16:51',1),(1,219,3021609,'2012-12-28 12:16:51',1),(1,198,3021609,'2012-12-28 12:16:51',1),(1,199,3021609,'2012-12-28 12:16:51',1),(1,200,3021609,'2012-12-28 12:16:51',1),(1,66,3021609,'2012-12-28 12:16:51',1),(1,201,3021609,'2012-12-28 12:16:51',1),(1,205,3021609,'2012-12-28 12:16:51',1),(1,77,3021609,'2012-12-28 12:16:51',1),(1,241,3021609,'2012-12-28 12:16:51',1),(1,67,3021609,'2012-12-28 12:16:51',1),(1,104,3021609,'2012-12-28 12:16:51',1),(1,206,3021609,'2012-12-28 12:16:51',1),(1,140,3021528,'2012-12-28 12:16:53',1),(1,96,3021528,'2012-12-28 12:16:53',1),(1,209,3021527,'2012-12-28 12:16:54',1),(1,78,3021527,'2012-12-28 12:16:54',1),(1,214,3021527,'2012-12-28 12:16:54',1),(1,105,3021527,'2012-12-28 12:16:54',1),(1,20,3021533,'2012-12-28 12:16:56',1),(1,247,3021533,'2012-12-28 12:16:56',1),(1,249,3021533,'2012-12-28 12:16:56',1),(1,94,3021533,'2012-12-28 12:16:56',1),(1,160,3021533,'2012-12-28 12:16:56',1),(1,133,3021533,'2012-12-28 12:16:56',1),(1,16,3021533,'2012-12-28 12:16:56',1),(1,244,3021533,'2012-12-28 12:16:56',1),(1,189,3021693,'2012-12-28 12:16:57',1),(1,190,3021693,'2012-12-28 12:16:57',1),(1,85,3021693,'2012-12-28 12:16:57',1),(1,17,3021693,'2012-12-28 12:16:57',1),(1,191,3021693,'2012-12-28 12:16:57',1),(1,159,3021693,'2012-12-28 12:16:57',1),(1,32,3021693,'2012-12-28 12:16:57',1),(1,114,3021693,'2012-12-28 12:16:57',1),(1,246,3021610,'2012-12-28 12:17:04',1),(1,149,3021610,'2012-12-28 12:17:04',1),(1,134,3021611,'2012-12-28 12:17:05',NULL),(1,135,3021611,'2012-12-28 12:17:05',NULL),(1,191,3021612,'2012-12-28 12:17:05',1),(1,159,3021612,'2012-12-28 12:17:05',1),(1,201,3021440,'2012-12-28 12:17:11',1),(1,205,3021440,'2012-12-28 12:17:11',1),(1,77,3021440,'2012-12-28 12:17:11',1),(1,241,3021440,'2012-12-28 12:17:11',1),(1,67,3021440,'2012-12-28 12:17:11',1),(1,104,3021440,'2012-12-28 12:17:11',1),(1,206,3021440,'2012-12-28 12:17:11',1),(1,69,3021440,'2012-12-28 12:17:11',1),(1,23,3021698,'2012-12-28 12:17:12',1),(1,59,3021698,'2012-12-28 12:17:12',1),(1,215,3021441,'2012-12-28 12:17:12',1),(1,61,3021441,'2012-12-28 12:17:12',1),(1,5,3021441,'2012-12-28 12:17:12',1),(1,229,3021441,'2012-12-28 12:17:12',1),(1,2,3021441,'2012-12-28 12:17:12',1),(1,230,3021441,'2012-12-28 12:17:12',1),(1,216,3021441,'2012-12-28 12:17:12',1),(1,50,3021441,'2012-12-28 12:17:12',1),(1,117,3021701,'2012-12-28 12:17:15',NULL),(1,166,3021701,'2012-12-28 12:17:15',NULL),(1,107,3021701,'2012-12-28 12:17:15',NULL),(1,14,3021701,'2012-12-28 12:17:15',NULL),(1,15,3021701,'2012-12-28 12:17:15',NULL),(1,75,3021701,'2012-12-28 12:17:15',NULL),(1,55,3021701,'2012-12-28 12:17:15',NULL),(1,112,3021701,'2012-12-28 12:17:15',NULL),(1,53,3021701,'2012-12-28 12:17:15',NULL),(1,130,3021701,'2012-12-28 12:17:15',NULL),(1,156,3021701,'2012-12-28 12:17:15',NULL),(1,168,3021701,'2012-12-28 12:17:15',NULL),(1,64,3021701,'2012-12-28 12:17:15',NULL),(1,65,3021701,'2012-12-28 12:17:15',NULL),(1,242,3021701,'2012-12-28 12:17:15',NULL),(1,110,3021701,'2012-12-28 12:17:15',NULL),(1,84,3021699,'2012-12-28 12:17:15',1),(1,86,3021699,'2012-12-28 12:17:15',1),(1,210,3021526,'2012-12-28 12:17:17',1),(1,90,3021526,'2012-12-28 12:17:17',1),(1,70,3021526,'2012-12-28 12:17:17',1),(1,56,3021526,'2012-12-28 12:17:17',1),(1,95,3021530,'2012-12-28 12:17:20',1),(1,88,3021530,'2012-12-28 12:17:20',1),(1,25,3021530,'2012-12-28 12:17:20',1),(1,125,3021530,'2012-12-28 12:17:20',1),(1,183,3021530,'2012-12-28 12:17:20',1),(1,113,3021530,'2012-12-28 12:17:20',1),(1,27,3021530,'2012-12-28 12:17:20',1),(1,184,3021530,'2012-12-28 12:17:20',1),(1,227,3021531,'2012-12-28 12:17:20',1),(1,237,3021531,'2012-12-28 12:17:20',1),(1,192,3021617,'2012-12-28 12:17:22',1),(1,144,3021617,'2012-12-28 12:17:22',1),(1,158,3021618,'2012-12-28 12:17:24',1),(1,98,3021618,'2012-12-28 12:17:24',1),(1,233,3021618,'2012-12-28 12:17:24',1),(1,143,3021618,'2012-12-28 12:17:24',1),(1,57,3021618,'2012-12-28 12:17:24',1),(1,234,3021618,'2012-12-28 12:17:24',1),(1,51,3021618,'2012-12-28 12:17:24',1),(1,235,3021618,'2012-12-28 12:17:24',1),(1,118,3021620,'2012-12-28 12:17:25',1),(1,141,3021620,'2012-12-28 12:17:25',1),(1,119,3021620,'2012-12-28 12:17:25',1),(1,136,3021620,'2012-12-28 12:17:25',1),(1,137,3021620,'2012-12-28 12:17:25',1),(1,138,3021620,'2012-12-28 12:17:25',1),(1,42,3021620,'2012-12-28 12:17:25',1),(1,97,3021620,'2012-12-28 12:17:25',1),(1,223,3021443,'2012-12-28 12:17:28',1),(1,228,3021443,'2012-12-28 12:17:28',1),(1,219,3021444,'2012-12-28 12:17:30',1),(1,198,3021444,'2012-12-28 12:17:30',1),(1,199,3021444,'2012-12-28 12:17:30',1),(1,200,3021444,'2012-12-28 12:17:30',1),(1,66,3021426,'2012-12-28 12:17:30',1),(1,201,3021426,'2012-12-28 12:17:30',1),(1,202,3021709,'2012-12-28 12:17:34',1),(1,203,3021709,'2012-12-28 12:17:34',1),(1,76,3021709,'2012-12-28 12:17:34',1),(1,185,3021709,'2012-12-28 12:17:34',1),(1,108,3021709,'2012-12-28 12:17:34',1),(1,142,3021709,'2012-12-28 12:17:34',1),(1,240,3021709,'2012-12-28 12:17:34',1),(1,7,3021709,'2012-12-28 12:17:34',1),(1,132,3021709,'2012-12-28 12:17:34',1),(1,102,3021709,'2012-12-28 12:17:34',1),(1,103,3021709,'2012-12-28 12:17:34',1),(1,204,3021709,'2012-12-28 12:17:34',1),(1,38,3021709,'2012-12-28 12:17:34',1),(1,9,3021709,'2012-12-28 12:17:34',1),(1,10,3021709,'2012-12-28 12:17:34',1),(1,60,3021709,'2012-12-28 12:17:34',1),(1,194,3021615,'2012-12-28 12:17:37',1),(1,111,3021615,'2012-12-28 12:17:37',1),(1,179,3021615,'2012-12-28 12:17:37',1),(1,99,3021615,'2012-12-28 12:17:37',1),(1,180,3021615,'2012-12-28 12:17:37',1),(1,195,3021615,'2012-12-28 12:17:37',1),(1,161,3021615,'2012-12-28 12:17:37',1),(1,196,3021615,'2012-12-28 12:17:37',1),(1,183,3021621,'2012-12-28 12:17:37',1),(1,113,3021621,'2012-12-28 12:17:37',1),(1,27,3021621,'2012-12-28 12:17:37',1),(1,184,3021621,'2012-12-28 12:17:37',1),(1,151,3021613,'2012-12-28 12:17:39',1),(1,164,3021613,'2012-12-28 12:17:39',1),(1,187,3021613,'2012-12-28 12:17:39',1),(1,197,3021613,'2012-12-28 12:17:39',1),(1,126,3021613,'2012-12-28 12:17:39',1),(1,79,3021613,'2012-12-28 12:17:39',1),(1,40,3021613,'2012-12-28 12:17:39',1),(1,170,3021613,'2012-12-28 12:17:39',1),(1,225,3021613,'2012-12-28 12:17:39',1),(1,146,3021613,'2012-12-28 12:17:39',1),(1,41,3021613,'2012-12-28 12:17:39',1),(1,152,3021613,'2012-12-28 12:17:39',1),(1,239,3021613,'2012-12-28 12:17:39',1),(1,43,3021613,'2012-12-28 12:17:39',1),(1,147,3021613,'2012-12-28 12:17:39',1),(1,153,3021613,'2012-12-28 12:17:39',1),(1,192,3021710,'2012-12-28 12:17:45',1),(1,144,3021710,'2012-12-28 12:17:45',1),(1,73,3021710,'2012-12-28 12:17:45',1),(1,188,3021710,'2012-12-28 12:17:45',1),(1,23,3021710,'2012-12-28 12:17:45',1),(1,59,3021710,'2012-12-28 12:17:45',1),(1,84,3021710,'2012-12-28 12:17:45',1),(1,86,3021710,'2012-12-28 12:17:45',1),(1,74,3021694,'2012-12-28 12:17:47',1),(1,87,3021694,'2012-12-28 12:17:47',1),(1,189,3021695,'2012-12-28 12:17:47',1),(1,190,3021695,'2012-12-28 12:17:47',1),(1,85,3021695,'2012-12-28 12:17:47',1),(1,17,3021695,'2012-12-28 12:17:47',1),(1,134,3021605,'2012-12-28 12:17:50',NULL),(1,135,3021605,'2012-12-28 12:17:50',NULL),(1,246,3021605,'2012-12-28 12:17:50',NULL),(1,149,3021605,'2012-12-28 12:17:50',NULL),(1,140,3021619,'2012-12-28 12:17:52',1),(1,96,3021619,'2012-12-28 12:17:52',1),(1,227,3021619,'2012-12-28 12:17:52',1),(1,237,3021619,'2012-12-28 12:17:52',1),(1,205,3021432,'2012-12-28 12:17:53',1),(1,77,3021432,'2012-12-28 12:17:53',1),(1,32,3021433,'2012-12-28 12:17:55',1),(1,114,3021433,'2012-12-28 12:17:55',1),(1,66,3021434,'2012-12-28 12:17:57',1),(1,201,3021434,'2012-12-28 12:17:57',1),(1,205,3021434,'2012-12-28 12:17:57',1),(1,77,3021434,'2012-12-28 12:17:57',1),(1,174,3021692,'2012-12-28 12:17:59',NULL),(1,215,3021692,'2012-12-28 12:17:59',NULL),(1,61,3021692,'2012-12-28 12:17:59',NULL),(1,5,3021692,'2012-12-28 12:17:59',NULL),(1,229,3021692,'2012-12-28 12:17:59',NULL),(1,2,3021692,'2012-12-28 12:17:59',NULL),(1,230,3021692,'2012-12-28 12:17:59',NULL),(1,216,3021692,'2012-12-28 12:17:59',NULL),(1,115,3021708,'2012-12-28 12:18:01',NULL),(1,8,3021708,'2012-12-28 12:18:01',NULL),(1,74,3021708,'2012-12-28 12:18:01',NULL),(1,87,3021708,'2012-12-28 12:18:01',NULL),(1,173,3021708,'2012-12-28 12:18:01',NULL),(1,24,3021708,'2012-12-28 12:18:01',NULL),(1,80,3021708,'2012-12-28 12:18:01',NULL),(1,13,3021708,'2012-12-28 12:18:01',NULL),(1,191,3021702,'2012-12-28 12:18:01',1),(1,159,3021702,'2012-12-28 12:18:01',1),(1,32,3021702,'2012-12-28 12:18:01',1),(1,114,3021702,'2012-12-28 12:18:01',1),(1,173,3021703,'2012-12-28 12:18:01',1),(1,24,3021703,'2012-12-28 12:18:01',1),(1,241,3021438,'2012-12-28 12:18:04',1),(1,67,3021438,'2012-12-28 12:18:04',1),(1,104,3021438,'2012-12-28 12:18:04',1),(1,206,3021438,'2012-12-28 12:18:04',1),(1,52,3021437,'2012-12-28 12:18:04',1),(1,208,3021437,'2012-12-28 12:18:04',1),(1,209,3021437,'2012-12-28 12:18:04',1),(1,78,3021437,'2012-12-28 12:18:04',1),(1,214,3021437,'2012-12-28 12:18:04',1),(1,105,3021437,'2012-12-28 12:18:04',1),(1,210,3021437,'2012-12-28 12:18:04',1),(1,90,3021437,'2012-12-28 12:18:04',1),(1,70,3021439,'2012-12-28 12:18:06',1),(1,56,3021439,'2012-12-28 12:18:06',1),(1,92,3021439,'2012-12-28 12:18:06',1),(1,224,3021439,'2012-12-28 12:18:06',1),(1,221,3021439,'2012-12-28 12:18:06',1),(1,222,3021439,'2012-12-28 12:18:06',1),(1,223,3021439,'2012-12-28 12:18:06',1),(1,228,3021439,'2012-12-28 12:18:06',1),(1,81,3021435,'2012-12-28 12:18:08',1),(1,69,3021435,'2012-12-28 12:18:08',1),(1,52,3021435,'2012-12-28 12:18:08',1),(1,208,3021435,'2012-12-28 12:18:08',1),(1,137,3021707,'2012-12-28 12:46:49',1),(1,138,3021707,'2012-12-28 12:46:49',1),(1,42,3021707,'2012-12-28 12:46:49',1),(1,97,3021707,'2012-12-28 12:46:49',1),(1,182,3021714,'2012-12-28 12:46:50',1),(1,100,3021714,'2012-12-28 12:46:50',1),(1,181,3021714,'2012-12-28 12:46:50',1),(1,35,3021714,'2012-12-28 12:46:50',1),(1,36,3021714,'2012-12-28 12:46:50',1),(1,37,3021714,'2012-12-28 12:46:50',1),(1,29,3021714,'2012-12-28 12:46:50',1),(1,30,3021714,'2012-12-28 12:46:50',1),(1,95,3021608,'2012-12-28 12:46:53',NULL),(1,88,3021608,'2012-12-28 12:46:53',NULL),(1,25,3021608,'2012-12-28 12:46:53',NULL),(1,125,3021608,'2012-12-28 12:46:53',NULL),(1,243,3021713,'2012-12-28 12:46:58',1),(1,31,3021713,'2012-12-28 12:46:58',1),(1,236,3021713,'2012-12-28 12:46:58',1),(1,145,3021713,'2012-12-28 12:46:58',1),(1,248,3021713,'2012-12-28 12:46:58',1),(1,251,3021713,'2012-12-28 12:46:58',1),(1,171,3021713,'2012-12-28 12:46:58',1),(1,62,3021713,'2012-12-28 12:46:58',1),(1,21,3021705,'2012-12-28 12:47:02',1),(1,127,3021705,'2012-12-28 12:47:02',1),(1,71,3021705,'2012-12-28 12:47:02',1),(1,44,3021705,'2012-12-28 12:47:02',1),(1,45,3021705,'2012-12-28 12:47:02',1),(1,12,3021705,'2012-12-28 12:47:02',1),(1,154,3021705,'2012-12-28 12:47:02',1),(1,28,3021705,'2012-12-28 12:47:02',1),(1,162,3021705,'2012-12-28 12:47:02',1),(1,46,3021705,'2012-12-28 12:47:02',1),(1,167,3021705,'2012-12-28 12:47:02',1),(1,186,3021705,'2012-12-28 12:47:02',1),(1,155,3021705,'2012-12-28 12:47:02',1),(1,232,3021705,'2012-12-28 12:47:02',1),(1,47,3021705,'2012-12-28 12:47:02',1),(1,238,3021705,'2012-12-28 12:47:02',1),(1,73,3021697,'2012-12-28 12:47:02',1),(1,188,3021697,'2012-12-28 12:47:02',1),(1,162,3021529,'2012-12-28 12:47:05',1),(1,167,3021614,'2012-12-28 12:47:07',1),(1,241,3021704,'2012-12-28 12:47:14',1),(1,67,3021704,'2012-12-28 12:47:14',1),(1,104,3021704,'2012-12-28 12:47:14',1),(1,206,3021704,'2012-12-28 12:47:14',1),(1,46,3021532,'2012-12-28 12:47:18',1),(1,186,3021604,'2012-12-28 12:47:23',1),(1,47,3021696,'2012-12-28 12:47:33',1),(1,232,3021711,'2012-12-28 12:47:33',1),(1,115,3021712,'2012-12-28 12:47:36',1),(1,8,3021712,'2012-12-28 12:47:36',1),(1,155,3021616,'2012-12-28 12:47:42',1),(1,154,3021427,'2012-12-28 12:47:42',1),(1,12,3021428,'2012-12-28 12:47:42',1),(1,45,3021429,'2012-12-28 12:47:46',1),(1,28,3021430,'2012-12-28 12:47:46',1),(1,238,3021700,'2012-12-28 12:47:50',1),(1,241,3021715,'2012-12-28 12:48:10',1),(1,88,3021768,'2012-12-29 00:46:14',NULL),(1,43,3021768,'2012-12-29 00:46:14',NULL),(1,128,3021768,'2012-12-29 00:46:14',NULL),(1,106,3021768,'2012-12-29 00:46:14',NULL),(1,172,3021768,'2012-12-29 00:46:14',NULL),(1,226,3021768,'2012-12-29 00:46:14',NULL),(1,168,3021768,'2012-12-29 00:46:14',NULL),(1,76,3021768,'2012-12-29 00:46:14',NULL),(1,185,3021759,'2012-12-29 00:46:14',1),(1,102,3021759,'2012-12-29 00:46:14',1),(1,103,3021753,'2012-12-29 00:46:14',1),(1,99,3021770,'2012-12-29 00:46:22',1),(1,180,3021770,'2012-12-29 00:46:22',1),(1,111,3021752,'2012-12-29 00:46:22',1),(1,179,3021752,'2012-12-29 00:46:22',1),(1,56,3021771,'2012-12-29 00:46:22',1),(1,92,3021771,'2012-12-29 00:46:22',1),(1,224,3021771,'2012-12-29 00:46:22',1),(1,222,3021771,'2012-12-29 00:46:22',1),(1,95,3021760,'2012-12-29 00:46:22',1),(1,88,3021760,'2012-12-29 00:46:22',1),(1,227,3021760,'2012-12-29 00:46:22',1),(1,237,3021760,'2012-12-29 00:46:22',1),(1,88,3021763,'2012-12-29 00:46:30',NULL),(1,227,3021763,'2012-12-29 00:46:30',NULL),(1,237,3021763,'2012-12-29 00:46:30',NULL),(1,43,3021763,'2012-12-29 00:46:30',NULL),(1,143,3021763,'2012-12-29 00:46:30',NULL),(1,57,3021763,'2012-12-29 00:46:30',NULL),(1,51,3021763,'2012-12-29 00:46:30',NULL),(1,111,3021763,'2012-12-29 00:46:30',NULL),(1,135,3021761,'2012-12-29 00:46:30',1),(1,43,3021761,'2012-12-29 00:46:30',1),(1,147,3021761,'2012-12-29 00:46:30',1),(1,233,3021761,'2012-12-29 00:46:30',1),(1,143,3021764,'2012-12-29 00:46:30',1),(1,57,3021764,'2012-12-29 00:46:30',1),(1,234,3021764,'2012-12-29 00:46:30',1),(1,51,3021764,'2012-12-29 00:46:30',1),(1,148,3021754,'2012-12-29 00:46:38',1),(1,248,3021755,'2012-12-29 00:46:38',1),(1,251,3021756,'2012-12-29 00:46:38',1),(1,172,3021767,'2012-12-29 00:46:46',NULL),(1,63,3021767,'2012-12-29 00:46:46',NULL),(1,85,3021767,'2012-12-29 00:46:46',NULL),(1,226,3021767,'2012-12-29 00:46:46',NULL),(1,130,3021767,'2012-12-29 00:46:46',NULL),(1,156,3021767,'2012-12-29 00:46:46',NULL),(1,168,3021767,'2012-12-29 00:46:46',NULL),(1,203,3021767,'2012-12-29 00:46:46',NULL),(1,76,3021765,'2012-12-29 00:46:46',1),(1,185,3021765,'2012-12-29 00:46:46',1),(1,240,3021765,'2012-12-29 00:46:46',1),(1,102,3021765,'2012-12-29 00:46:46',1),(1,204,3021765,'2012-12-29 00:46:46',1),(1,38,3021765,'2012-12-29 00:46:46',1),(1,215,3021765,'2012-12-29 00:46:46',1),(1,61,3021765,'2012-12-29 00:46:46',1),(1,157,3021758,'2012-12-29 00:46:46',1),(1,72,3021758,'2012-12-29 00:46:46',1),(1,52,3021867,'2012-12-29 01:46:12',1),(1,92,3021867,'2012-12-29 01:46:12',1),(1,221,3021867,'2012-12-29 01:46:12',1),(1,222,3021867,'2012-12-29 01:46:12',1),(1,88,3021860,'2012-12-29 01:46:12',1),(1,140,3021860,'2012-12-29 01:46:12',1),(1,96,3021860,'2012-12-29 01:46:12',1),(1,227,3021860,'2012-12-29 01:46:12',1),(1,228,3021861,'2012-12-29 01:46:12',1),(1,6,3021861,'2012-12-29 01:46:12',1),(1,109,3021862,'2012-12-29 01:46:12',1),(1,88,3021863,'2012-12-29 01:46:24',NULL),(1,140,3021863,'2012-12-29 01:46:24',NULL),(1,96,3021863,'2012-12-29 01:46:24',NULL),(1,227,3021863,'2012-12-29 01:46:24',NULL),(1,235,3021863,'2012-12-29 01:46:24',NULL),(1,1,3021863,'2012-12-29 01:46:24',NULL),(1,109,3021863,'2012-12-29 01:46:24',NULL),(1,251,3021863,'2012-12-29 01:46:24',NULL),(1,172,3021866,'2012-12-29 01:46:24',NULL),(1,226,3021866,'2012-12-29 01:46:24',NULL),(1,107,3021866,'2012-12-29 01:46:24',NULL),(1,202,3021866,'2012-12-29 01:46:24',NULL),(1,203,3021866,'2012-12-29 01:46:24',NULL),(1,38,3021866,'2012-12-29 01:46:24',NULL),(1,60,3021866,'2012-12-29 01:46:24',NULL),(1,229,3021866,'2012-12-29 01:46:24',NULL),(1,235,3021864,'2012-12-29 01:46:24',1),(1,1,3021864,'2012-12-29 01:46:24',1),(1,251,3021865,'2012-12-29 01:46:24',1),(1,160,3021928,'2012-12-29 02:46:12',NULL),(1,227,3021928,'2012-12-29 02:46:12',NULL),(1,135,3021928,'2012-12-29 02:46:12',NULL),(1,118,3021928,'2012-12-29 02:46:12',NULL),(1,158,3021928,'2012-12-29 02:46:12',NULL),(1,235,3021928,'2012-12-29 02:46:12',NULL),(1,248,3021928,'2012-12-29 02:46:12',NULL),(1,171,3021928,'2012-12-29 02:46:12',NULL),(1,19,3021928,'2012-12-29 02:46:12',NULL),(1,250,3021928,'2012-12-29 02:46:12',NULL),(1,226,3021928,'2012-12-29 02:46:12',NULL),(1,156,3021928,'2012-12-29 02:46:12',NULL),(1,65,3021928,'2012-12-29 02:46:12',NULL),(1,132,3021928,'2012-12-29 02:46:12',NULL),(1,103,3021928,'2012-12-29 02:46:12',NULL),(1,229,3021928,'2012-12-29 02:46:12',NULL),(1,160,3021926,'2012-12-29 02:46:13',NULL),(1,118,3021926,'2012-12-29 02:46:13',NULL),(1,19,3021926,'2012-12-29 02:46:13',NULL),(1,226,3021926,'2012-12-29 02:46:13',NULL),(1,65,3021926,'2012-12-29 02:46:13',NULL),(1,103,3021926,'2012-12-29 02:46:13',NULL),(1,67,3021926,'2012-12-29 02:46:13',NULL),(1,208,3021926,'2012-12-29 02:46:13',NULL),(1,70,3021929,'2012-12-29 02:46:13',1),(1,221,3021929,'2012-12-29 02:46:13',1),(1,56,3021931,'2012-12-29 02:46:21',1),(1,221,3021931,'2012-12-29 02:46:21',1),(1,195,3021930,'2012-12-29 02:46:21',1),(1,1,3021930,'2012-12-29 02:46:21',1),(1,91,3021932,'2012-12-29 02:46:21',1),(1,248,3021925,'2012-12-29 02:46:21',1),(1,171,3021925,'2012-12-29 02:46:21',1),(1,19,3021925,'2012-12-29 02:46:21',1),(1,172,3021925,'2012-12-29 02:46:21',1),(1,91,3021933,'2012-12-29 02:46:31',1),(1,222,3021940,'2012-12-29 02:46:31',1),(1,2,3021934,'2012-12-29 02:46:31',1),(1,230,3021934,'2012-12-29 02:46:31',1),(1,160,3021939,'2012-12-29 02:46:32',NULL),(1,88,3021939,'2012-12-29 02:46:32',NULL),(1,227,3021939,'2012-12-29 02:46:32',NULL),(1,135,3021939,'2012-12-29 02:46:32',NULL),(1,118,3021939,'2012-12-29 02:46:32',NULL),(1,43,3021939,'2012-12-29 02:46:32',NULL),(1,158,3021939,'2012-12-29 02:46:32',NULL),(1,235,3021939,'2012-12-29 02:46:32',NULL),(1,248,3021939,'2012-12-29 02:46:32',NULL),(1,171,3021939,'2012-12-29 02:46:32',NULL),(1,19,3021939,'2012-12-29 02:46:32',NULL),(1,172,3021939,'2012-12-29 02:46:32',NULL),(1,63,3021939,'2012-12-29 02:46:32',NULL),(1,250,3021939,'2012-12-29 02:46:32',NULL),(1,226,3021939,'2012-12-29 02:46:32',NULL),(1,156,3021939,'2012-12-29 02:46:32',NULL),(1,63,3021941,'2012-12-29 02:46:41',NULL),(1,250,3021941,'2012-12-29 02:46:41',NULL),(1,226,3021941,'2012-12-29 02:46:41',NULL),(1,156,3021941,'2012-12-29 02:46:41',NULL),(1,168,3021935,'2012-12-29 02:46:41',NULL),(1,65,3021935,'2012-12-29 02:46:41',NULL),(1,7,3021935,'2012-12-29 02:46:41',NULL),(1,132,3021935,'2012-12-29 02:46:41',NULL),(1,103,3021935,'2012-12-29 02:46:41',NULL),(1,204,3021935,'2012-12-29 02:46:41',NULL),(1,5,3021935,'2012-12-29 02:46:41',NULL),(1,229,3021935,'2012-12-29 02:46:41',NULL),(1,168,3021937,'2012-12-29 02:46:43',NULL),(1,65,3021937,'2012-12-29 02:46:43',NULL),(1,7,3021937,'2012-12-29 02:46:43',NULL),(1,132,3021937,'2012-12-29 02:46:43',NULL),(1,2,3021938,'2012-12-29 02:46:43',1),(1,230,3021938,'2012-12-29 02:46:43',1),(1,201,3021938,'2012-12-29 02:46:43',1),(1,210,3021938,'2012-12-29 02:46:43',1),(1,56,3021938,'2012-12-29 02:46:43',1),(1,221,3021938,'2012-12-29 02:46:43',1),(1,223,3021938,'2012-12-29 02:46:43',1),(1,4,3021938,'2012-12-29 02:46:43',1),(1,160,3021936,'2012-12-29 02:46:50',NULL),(1,88,3021936,'2012-12-29 02:46:50',NULL),(1,227,3021936,'2012-12-29 02:46:50',NULL),(1,135,3021936,'2012-12-29 02:46:50',NULL),(1,118,3021936,'2012-12-29 02:46:50',NULL),(1,43,3021936,'2012-12-29 02:46:50',NULL),(1,158,3021936,'2012-12-29 02:46:50',NULL),(1,235,3021936,'2012-12-29 02:46:50',NULL),(1,103,3021924,'2012-12-29 02:46:50',1),(1,204,3021924,'2012-12-29 02:46:50',1),(1,5,3021924,'2012-12-29 02:46:50',1),(1,229,3021924,'2012-12-29 02:46:50',1),(1,66,3021927,'2012-12-29 03:16:14',NULL),(1,67,3021927,'2012-12-29 03:16:14',NULL),(1,208,3021927,'2012-12-29 03:16:14',NULL),(1,70,3021927,'2012-12-29 03:16:14',NULL),(1,52,3022036,'2012-12-29 03:46:11',1),(1,208,3022036,'2012-12-29 03:46:11',1),(1,209,3022036,'2012-12-29 03:46:11',1),(1,78,3022036,'2012-12-29 03:46:11',1),(1,191,3022039,'2012-12-29 03:46:12',NULL),(1,250,3022039,'2012-12-29 03:46:12',NULL),(1,93,3022039,'2012-12-29 03:46:12',NULL),(1,101,3022039,'2012-12-29 03:46:12',NULL),(1,226,3022039,'2012-12-29 03:46:12',NULL),(1,116,3022039,'2012-12-29 03:46:12',NULL),(1,129,3022039,'2012-12-29 03:46:12',NULL),(1,117,3022039,'2012-12-29 03:46:12',NULL),(1,91,3022027,'2012-12-29 03:46:12',1),(1,4,3022027,'2012-12-29 03:46:12',1),(1,214,3022028,'2012-12-29 03:46:12',1),(1,105,3022028,'2012-12-29 03:46:12',1),(1,210,3022028,'2012-12-29 03:46:12',1),(1,90,3022028,'2012-12-29 03:46:12',1),(1,166,3022037,'2012-12-29 03:46:19',NULL),(1,107,3022037,'2012-12-29 03:46:19',NULL),(1,14,3022037,'2012-12-29 03:46:19',NULL),(1,53,3022037,'2012-12-29 03:46:19',NULL),(1,130,3022037,'2012-12-29 03:46:19',NULL),(1,156,3022037,'2012-12-29 03:46:19',NULL),(1,168,3022037,'2012-12-29 03:46:19',NULL),(1,65,3022037,'2012-12-29 03:46:19',NULL),(1,242,3022038,'2012-12-29 03:46:20',1),(1,110,3022038,'2012-12-29 03:46:20',1),(1,202,3022038,'2012-12-29 03:46:20',1),(1,203,3022038,'2012-12-29 03:46:20',1),(1,76,3022038,'2012-12-29 03:46:20',1),(1,185,3022038,'2012-12-29 03:46:20',1),(1,108,3022038,'2012-12-29 03:46:20',1),(1,142,3022038,'2012-12-29 03:46:20',1),(1,91,3022021,'2012-12-29 03:46:20',1),(1,4,3022021,'2012-12-29 03:46:20',1),(1,70,3022029,'2012-12-29 03:46:20',1),(1,56,3022029,'2012-12-29 03:46:20',1),(1,92,3022029,'2012-12-29 03:46:20',1),(1,224,3022029,'2012-12-29 03:46:20',1),(1,95,3022025,'2012-12-29 03:46:28',NULL),(1,88,3022025,'2012-12-29 03:46:28',NULL),(1,140,3022025,'2012-12-29 03:46:28',NULL),(1,96,3022025,'2012-12-29 03:46:28',NULL),(1,227,3022025,'2012-12-29 03:46:28',NULL),(1,237,3022025,'2012-12-29 03:46:28',NULL),(1,134,3022025,'2012-12-29 03:46:28',NULL),(1,135,3022025,'2012-12-29 03:46:28',NULL),(1,118,3022025,'2012-12-29 03:46:28',NULL),(1,141,3022025,'2012-12-29 03:46:28',NULL),(1,43,3022025,'2012-12-29 03:46:28',NULL),(1,147,3022025,'2012-12-29 03:46:28',NULL),(1,158,3022025,'2012-12-29 03:46:28',NULL),(1,98,3022025,'2012-12-29 03:46:28',NULL),(1,233,3022025,'2012-12-29 03:46:28',NULL),(1,235,3022025,'2012-12-29 03:46:28',NULL),(1,60,3022041,'2012-12-29 03:46:30',1),(1,215,3022041,'2012-12-29 03:46:30',1),(1,221,3022030,'2012-12-29 03:46:31',1),(1,222,3022030,'2012-12-29 03:46:31',1),(1,223,3022030,'2012-12-29 03:46:31',1),(1,228,3022030,'2012-12-29 03:46:31',1),(1,240,3022031,'2012-12-29 03:46:31',1),(1,7,3022031,'2012-12-29 03:46:31',1),(1,132,3022031,'2012-12-29 03:46:31',1),(1,102,3022031,'2012-12-29 03:46:31',1),(1,103,3022031,'2012-12-29 03:46:31',1),(1,204,3022031,'2012-12-29 03:46:31',1),(1,38,3022031,'2012-12-29 03:46:31',1),(1,9,3022031,'2012-12-29 03:46:31',1),(1,194,3022032,'2012-12-29 03:46:38',1),(1,111,3022032,'2012-12-29 03:46:38',1),(1,179,3022032,'2012-12-29 03:46:38',1),(1,99,3022032,'2012-12-29 03:46:38',1),(1,180,3022032,'2012-12-29 03:46:38',1),(1,195,3022032,'2012-12-29 03:46:38',1),(1,161,3022032,'2012-12-29 03:46:38',1),(1,196,3022032,'2012-12-29 03:46:38',1),(1,157,3022032,'2012-12-29 03:46:38',1),(1,72,3022032,'2012-12-29 03:46:38',1),(1,148,3022032,'2012-12-29 03:46:38',1),(1,1,3022032,'2012-12-29 03:46:38',1),(1,109,3022032,'2012-12-29 03:46:38',1),(1,33,3022032,'2012-12-29 03:46:38',1),(1,178,3022032,'2012-12-29 03:46:38',1),(1,34,3022032,'2012-12-29 03:46:38',1),(1,61,3022035,'2012-12-29 03:46:41',NULL),(1,5,3022035,'2012-12-29 03:46:41',NULL),(1,60,3022033,'2012-12-29 03:46:41',1),(1,215,3022033,'2012-12-29 03:46:41',1),(1,61,3022033,'2012-12-29 03:46:41',1),(1,5,3022033,'2012-12-29 03:46:41',1),(1,229,3022033,'2012-12-29 03:46:41',1),(1,2,3022033,'2012-12-29 03:46:41',1),(1,230,3022033,'2012-12-29 03:46:41',1),(1,216,3022033,'2012-12-29 03:46:41',1),(1,70,3022034,'2012-12-29 03:46:41',1),(1,66,3022024,'2012-12-29 03:46:49',NULL),(1,201,3022024,'2012-12-29 03:46:49',NULL),(1,205,3022024,'2012-12-29 03:46:49',NULL),(1,77,3022024,'2012-12-29 03:46:49',NULL),(1,241,3022024,'2012-12-29 03:46:49',NULL),(1,67,3022024,'2012-12-29 03:46:49',NULL),(1,104,3022024,'2012-12-29 03:46:49',NULL),(1,206,3022024,'2012-12-29 03:46:49',NULL),(1,229,3022022,'2012-12-29 03:46:49',1),(1,2,3022022,'2012-12-29 03:46:49',1),(1,52,3022019,'2012-12-29 03:46:50',1),(1,208,3022019,'2012-12-29 03:46:50',1),(1,209,3022019,'2012-12-29 03:46:50',1),(1,78,3022019,'2012-12-29 03:46:50',1),(1,56,3022023,'2012-12-29 03:46:51',1),(1,92,3022020,'2012-12-29 03:46:57',1),(1,230,3022018,'2012-12-29 03:46:58',1),(1,216,3022018,'2012-12-29 03:46:58',1),(1,248,3022040,'2012-12-29 03:46:58',1),(1,251,3022040,'2012-12-29 03:46:58',1),(1,171,3022040,'2012-12-29 03:46:58',1),(1,62,3022040,'2012-12-29 03:46:58',1),(1,128,3022040,'2012-12-29 03:46:58',1),(1,39,3022040,'2012-12-29 03:46:58',1),(1,19,3022040,'2012-12-29 03:46:58',1),(1,106,3022040,'2012-12-29 03:46:58',1),(1,193,3022040,'2012-12-29 03:46:58',1),(1,172,3022040,'2012-12-29 03:46:58',1),(1,169,3022040,'2012-12-29 03:46:58',1),(1,83,3022040,'2012-12-29 03:46:58',1),(1,63,3022040,'2012-12-29 03:46:58',1),(1,189,3022040,'2012-12-29 03:46:58',1),(1,85,3022040,'2012-12-29 03:46:58',1),(1,17,3022040,'2012-12-29 03:46:58',1),(1,224,3022017,'2012-12-29 03:46:59',1),(1,52,3022026,'2012-12-29 03:47:07',1),(1,208,3022026,'2012-12-29 03:47:07',1),(1,209,3022026,'2012-12-29 03:47:07',1),(1,78,3022026,'2012-12-29 03:47:07',1),(1,4,3022079,'2012-12-30 00:46:14',1),(1,189,3022080,'2012-12-30 00:46:14',1),(1,187,3022081,'2012-12-30 00:46:14',1),(1,197,3022083,'2012-12-30 00:46:21',1),(1,161,3022083,'2012-12-30 00:46:21',1),(1,191,3022084,'2012-12-30 00:46:21',1),(1,6,3022084,'2012-12-30 00:46:21',1),(1,197,3022085,'2012-12-30 00:46:21',1),(1,161,3022085,'2012-12-30 00:46:21',1),(1,109,3022085,'2012-12-30 00:46:21',1),(1,39,3022085,'2012-12-30 00:46:21',1),(1,193,3022086,'2012-12-30 00:46:21',1),(1,83,3022086,'2012-12-30 00:46:21',1),(1,189,3022086,'2012-12-30 00:46:21',1),(1,190,3022086,'2012-12-30 00:46:21',1),(1,101,3022088,'2012-12-30 00:46:30',NULL),(1,202,3022088,'2012-12-30 00:46:30',NULL),(1,102,3022088,'2012-12-30 00:46:30',NULL),(1,247,3022088,'2012-12-30 00:46:30',NULL),(1,160,3022088,'2012-12-30 00:46:30',NULL),(1,135,3022088,'2012-12-30 00:46:30',NULL),(1,118,3022088,'2012-12-30 00:46:30',NULL),(1,141,3022088,'2012-12-30 00:46:30',NULL),(1,250,3022089,'2012-12-30 00:46:30',1),(1,119,3022089,'2012-12-30 00:46:30',1),(1,136,3022089,'2012-12-30 00:46:30',1),(1,137,3022089,'2012-12-30 00:46:30',1),(1,119,3022090,'2012-12-30 00:46:30',1),(1,136,3022090,'2012-12-30 00:46:30',1),(1,137,3022090,'2012-12-30 00:46:30',1),(1,138,3022090,'2012-12-30 00:46:30',1),(1,42,3022090,'2012-12-30 00:46:30',1),(1,151,3022090,'2012-12-30 00:46:30',1),(1,164,3022090,'2012-12-30 00:46:30',1),(1,187,3022090,'2012-12-30 00:46:30',1),(1,101,3022093,'2012-12-30 00:46:38',NULL),(1,202,3022093,'2012-12-30 00:46:38',NULL),(1,102,3022093,'2012-12-30 00:46:38',NULL),(1,247,3022093,'2012-12-30 00:46:38',NULL),(1,160,3022093,'2012-12-30 00:46:38',NULL),(1,135,3022093,'2012-12-30 00:46:38',NULL),(1,118,3022093,'2012-12-30 00:46:38',NULL),(1,141,3022093,'2012-12-30 00:46:38',NULL),(1,119,3022092,'2012-12-30 00:46:38',1),(1,136,3022092,'2012-12-30 00:46:38',1),(1,137,3022092,'2012-12-30 00:46:38',1),(1,138,3022092,'2012-12-30 00:46:38',1),(1,42,3022092,'2012-12-30 00:46:38',1),(1,151,3022092,'2012-12-30 00:46:38',1),(1,164,3022092,'2012-12-30 00:46:38',1),(1,187,3022092,'2012-12-30 00:46:38',1),(1,109,3022095,'2012-12-30 00:46:46',1),(1,39,3022095,'2012-12-30 00:46:46',1),(1,138,3022096,'2012-12-30 00:46:46',1),(1,42,3022096,'2012-12-30 00:46:46',1),(1,151,3022096,'2012-12-30 00:46:46',1),(1,164,3022096,'2012-12-30 00:46:46',1),(1,193,3022097,'2012-12-30 00:46:46',1),(1,83,3022097,'2012-12-30 00:46:46',1),(1,191,3022078,'2012-12-30 00:46:47',1),(1,6,3022173,'2012-12-30 01:16:10',1),(1,4,3022173,'2012-12-30 01:16:10',1),(1,187,3022173,'2012-12-30 01:16:10',1),(1,197,3022173,'2012-12-30 01:16:10',1),(1,161,3022173,'2012-12-30 01:16:10',1),(1,109,3022173,'2012-12-30 01:16:10',1),(1,39,3022173,'2012-12-30 01:16:10',1),(1,193,3022173,'2012-12-30 01:16:10',1),(1,83,3022169,'2012-12-30 01:46:12',1),(1,189,3022172,'2012-12-30 01:46:13',1),(1,6,3022170,'2012-12-30 01:46:13',1),(1,4,3022170,'2012-12-30 01:46:13',1),(1,187,3022170,'2012-12-30 01:46:13',1),(1,197,3022170,'2012-12-30 01:46:13',1),(1,161,3022170,'2012-12-30 01:46:13',1),(1,109,3022170,'2012-12-30 01:46:13',1),(1,39,3022170,'2012-12-30 01:46:13',1),(1,193,3022170,'2012-12-30 01:46:13',1),(1,161,3022171,'2012-12-30 01:46:20',1),(1,109,3022171,'2012-12-30 01:46:20',1),(1,104,3022168,'2012-12-30 01:46:20',1),(1,92,3022168,'2012-12-30 01:46:20',1),(1,6,3022174,'2012-12-30 01:46:21',1),(1,4,3022174,'2012-12-30 01:46:21',1),(1,187,3022174,'2012-12-30 01:46:21',1),(1,197,3022174,'2012-12-30 01:46:21',1),(1,189,3022175,'2012-12-30 01:46:24',1),(1,190,3022175,'2012-12-30 01:46:24',1),(1,191,3022175,'2012-12-30 01:46:24',1),(1,166,3022175,'2012-12-30 01:46:24',1),(1,224,3022265,'2012-12-30 02:16:17',1),(1,166,3022259,'2012-12-30 02:46:11',NULL),(1,64,3022259,'2012-12-30 02:46:11',NULL),(1,142,3022259,'2012-12-30 02:46:11',NULL),(1,204,3022259,'2012-12-30 02:46:11',NULL),(1,205,3022259,'2012-12-30 02:46:11',NULL),(1,67,3022259,'2012-12-30 02:46:11',NULL),(1,104,3022259,'2012-12-30 02:46:11',NULL),(1,92,3022259,'2012-12-30 02:46:11',NULL),(1,166,3022260,'2012-12-30 02:46:11',NULL),(1,64,3022260,'2012-12-30 02:46:11',NULL),(1,142,3022260,'2012-12-30 02:46:11',NULL),(1,204,3022260,'2012-12-30 02:46:11',NULL),(1,6,3022261,'2012-12-30 02:46:11',NULL),(1,4,3022261,'2012-12-30 02:46:11',NULL),(1,94,3022261,'2012-12-30 02:46:11',NULL),(1,95,3022261,'2012-12-30 02:46:11',NULL),(1,97,3022261,'2012-12-30 02:46:11',NULL),(1,187,3022261,'2012-12-30 02:46:11',NULL),(1,197,3022261,'2012-12-30 02:46:11',NULL),(1,161,3022261,'2012-12-30 02:46:11',NULL),(1,109,3022261,'2012-12-30 02:46:11',NULL),(1,39,3022261,'2012-12-30 02:46:11',NULL),(1,193,3022261,'2012-12-30 02:46:11',NULL),(1,83,3022261,'2012-12-30 02:46:11',NULL),(1,189,3022261,'2012-12-30 02:46:11',NULL),(1,190,3022261,'2012-12-30 02:46:11',NULL),(1,191,3022261,'2012-12-30 02:46:11',NULL),(1,13,3022261,'2012-12-30 02:46:11',NULL),(1,109,3022262,'2012-12-30 02:46:16',1),(1,39,3022262,'2012-12-30 02:46:16',1),(1,189,3022263,'2012-12-30 02:46:19',1),(1,190,3022263,'2012-12-30 02:46:19',1),(1,193,3022264,'2012-12-30 02:46:19',1),(1,83,3022264,'2012-12-30 02:46:19',1),(1,224,3022266,'2012-12-30 02:46:24',1),(1,6,3022267,'2012-12-30 02:46:28',NULL),(1,4,3022267,'2012-12-30 02:46:28',NULL),(1,94,3022267,'2012-12-30 02:46:28',NULL),(1,95,3022267,'2012-12-30 02:46:28',NULL),(1,97,3022267,'2012-12-30 02:46:28',NULL),(1,187,3022267,'2012-12-30 02:46:28',NULL),(1,197,3022267,'2012-12-30 02:46:28',NULL),(1,161,3022267,'2012-12-30 02:46:28',NULL),(1,109,3022267,'2012-12-30 02:46:28',NULL),(1,39,3022267,'2012-12-30 02:46:28',NULL),(1,193,3022267,'2012-12-30 02:46:28',NULL),(1,83,3022267,'2012-12-30 02:46:28',NULL),(1,189,3022267,'2012-12-30 02:46:28',NULL),(1,190,3022267,'2012-12-30 02:46:28',NULL),(1,191,3022267,'2012-12-30 02:46:28',NULL),(1,13,3022267,'2012-12-30 02:46:28',NULL),(1,205,3022258,'2012-12-30 02:46:29',1),(1,67,3022258,'2012-12-30 02:46:29',1),(1,104,3022258,'2012-12-30 02:46:29',1),(1,92,3022258,'2012-12-30 02:46:29',1),(1,191,3022275,'2012-12-30 02:46:30',1),(1,13,3022275,'2012-12-30 02:46:30',1),(1,6,3022274,'2012-12-30 02:46:33',1),(1,166,3022271,'2012-12-30 02:46:38',NULL),(1,64,3022271,'2012-12-30 02:46:38',NULL),(1,142,3022271,'2012-12-30 02:46:38',NULL),(1,204,3022271,'2012-12-30 02:46:38',NULL),(1,205,3022271,'2012-12-30 02:46:38',NULL),(1,67,3022271,'2012-12-30 02:46:38',NULL),(1,104,3022271,'2012-12-30 02:46:38',NULL),(1,92,3022271,'2012-12-30 02:46:38',NULL),(1,205,3022273,'2012-12-30 02:46:38',1),(1,67,3022273,'2012-12-30 02:46:38',1),(1,104,3022273,'2012-12-30 02:46:38',1),(1,92,3022273,'2012-12-30 02:46:38',1),(1,6,3022272,'2012-12-30 02:46:40',NULL),(1,4,3022272,'2012-12-30 02:46:40',NULL),(1,94,3022272,'2012-12-30 02:46:40',NULL),(1,95,3022272,'2012-12-30 02:46:40',NULL),(1,97,3022272,'2012-12-30 02:46:40',NULL),(1,187,3022272,'2012-12-30 02:46:40',NULL),(1,197,3022272,'2012-12-30 02:46:40',NULL),(1,161,3022272,'2012-12-30 02:46:40',NULL),(1,6,3022268,'2012-12-30 02:46:44',NULL),(1,4,3022268,'2012-12-30 02:46:44',NULL),(1,94,3022268,'2012-12-30 02:46:44',NULL),(1,95,3022268,'2012-12-30 02:46:44',NULL),(1,109,3022269,'2012-12-30 02:46:44',NULL),(1,39,3022269,'2012-12-30 02:46:44',NULL),(1,193,3022269,'2012-12-30 02:46:44',NULL),(1,83,3022269,'2012-12-30 02:46:44',NULL),(1,189,3022269,'2012-12-30 02:46:44',NULL),(1,190,3022269,'2012-12-30 02:46:44',NULL),(1,191,3022269,'2012-12-30 02:46:44',NULL),(1,13,3022269,'2012-12-30 02:46:44',NULL),(1,97,3022270,'2012-12-30 02:46:45',1),(1,187,3022270,'2012-12-30 02:46:45',1),(1,197,3022270,'2012-12-30 02:46:45',1),(1,161,3022270,'2012-12-30 02:46:45',1),(1,64,3022369,'2012-12-30 03:46:12',NULL),(1,142,3022369,'2012-12-30 03:46:12',NULL),(1,204,3022369,'2012-12-30 03:46:12',NULL),(1,66,3022369,'2012-12-30 03:46:12',NULL),(1,205,3022369,'2012-12-30 03:46:12',NULL),(1,67,3022369,'2012-12-30 03:46:12',NULL),(1,104,3022369,'2012-12-30 03:46:12',NULL),(1,78,3022369,'2012-12-30 03:46:12',NULL),(1,4,3022368,'2012-12-30 03:46:12',NULL),(1,94,3022368,'2012-12-30 03:46:12',NULL),(1,95,3022368,'2012-12-30 03:46:12',NULL),(1,97,3022368,'2012-12-30 03:46:12',NULL),(1,187,3022368,'2012-12-30 03:46:12',NULL),(1,197,3022368,'2012-12-30 03:46:12',NULL),(1,161,3022368,'2012-12-30 03:46:12',NULL),(1,109,3022368,'2012-12-30 03:46:12',NULL),(1,39,3022368,'2012-12-30 03:46:12',NULL),(1,193,3022368,'2012-12-30 03:46:12',NULL),(1,83,3022368,'2012-12-30 03:46:12',NULL),(1,189,3022368,'2012-12-30 03:46:12',NULL),(1,190,3022368,'2012-12-30 03:46:12',NULL),(1,191,3022368,'2012-12-30 03:46:12',NULL),(1,13,3022368,'2012-12-30 03:46:12',NULL),(1,166,3022368,'2012-12-30 03:46:12',NULL),(1,210,3022370,'2012-12-30 03:46:12',1),(1,92,3022371,'2012-12-30 03:46:12',1),(1,224,3022371,'2012-12-30 03:46:12',1),(1,64,3022373,'2012-12-30 03:46:21',NULL),(1,142,3022373,'2012-12-30 03:46:21',NULL),(1,204,3022373,'2012-12-30 03:46:21',NULL),(1,66,3022373,'2012-12-30 03:46:21',NULL),(1,205,3022373,'2012-12-30 03:46:21',NULL),(1,67,3022373,'2012-12-30 03:46:21',NULL),(1,104,3022373,'2012-12-30 03:46:21',NULL),(1,78,3022373,'2012-12-30 03:46:21',NULL),(1,4,3022375,'2012-12-30 03:46:23',NULL),(1,94,3022375,'2012-12-30 03:46:23',NULL),(1,95,3022375,'2012-12-30 03:46:23',NULL),(1,97,3022375,'2012-12-30 03:46:23',NULL),(1,187,3022375,'2012-12-30 03:46:23',NULL),(1,197,3022375,'2012-12-30 03:46:23',NULL),(1,161,3022375,'2012-12-30 03:46:23',NULL),(1,109,3022375,'2012-12-30 03:46:23',NULL),(1,4,3022378,'2012-12-30 03:46:23',NULL),(1,94,3022378,'2012-12-30 03:46:23',NULL),(1,95,3022378,'2012-12-30 03:46:23',NULL),(1,97,3022378,'2012-12-30 03:46:23',NULL),(1,187,3022378,'2012-12-30 03:46:23',NULL),(1,197,3022378,'2012-12-30 03:46:23',NULL),(1,161,3022378,'2012-12-30 03:46:23',NULL),(1,109,3022378,'2012-12-30 03:46:23',NULL),(1,39,3022378,'2012-12-30 03:46:23',NULL),(1,193,3022378,'2012-12-30 03:46:23',NULL),(1,83,3022378,'2012-12-30 03:46:23',NULL),(1,189,3022378,'2012-12-30 03:46:23',NULL),(1,190,3022378,'2012-12-30 03:46:23',NULL),(1,191,3022378,'2012-12-30 03:46:23',NULL),(1,13,3022378,'2012-12-30 03:46:23',NULL),(1,166,3022378,'2012-12-30 03:46:23',NULL),(1,4,3022355,'2012-12-30 03:46:27',NULL),(1,94,3022355,'2012-12-30 03:46:27',NULL),(1,95,3022355,'2012-12-30 03:46:27',NULL),(1,97,3022355,'2012-12-30 03:46:27',NULL),(1,187,3022355,'2012-12-30 03:46:27',NULL),(1,197,3022355,'2012-12-30 03:46:27',NULL),(1,161,3022355,'2012-12-30 03:46:27',NULL),(1,109,3022355,'2012-12-30 03:46:27',NULL),(1,39,3022355,'2012-12-30 03:46:27',NULL),(1,193,3022355,'2012-12-30 03:46:27',NULL),(1,83,3022355,'2012-12-30 03:46:27',NULL),(1,189,3022355,'2012-12-30 03:46:27',NULL),(1,190,3022355,'2012-12-30 03:46:27',NULL),(1,191,3022355,'2012-12-30 03:46:27',NULL),(1,13,3022355,'2012-12-30 03:46:27',NULL),(1,166,3022355,'2012-12-30 03:46:27',NULL),(1,224,3022357,'2012-12-30 03:46:31',1),(1,210,3022359,'2012-12-30 03:46:38',1),(1,92,3022363,'2012-12-30 03:46:41',1),(1,224,3022363,'2012-12-30 03:46:41',1),(1,241,3022354,'2012-12-30 03:46:46',1),(1,224,3022354,'2012-12-30 03:46:46',1),(1,210,3022361,'2012-12-30 03:46:49',1),(1,64,3022374,'2012-12-30 04:16:23',NULL),(1,142,3022374,'2012-12-30 04:16:23',NULL),(1,204,3022374,'2012-12-30 04:16:23',NULL),(1,66,3022374,'2012-12-30 04:16:23',NULL),(1,205,3022374,'2012-12-30 04:16:23',NULL),(1,67,3022374,'2012-12-30 04:16:23',NULL),(1,104,3022374,'2012-12-30 04:16:23',NULL),(1,78,3022374,'2012-12-30 04:16:23',NULL),(1,39,3022367,'2012-12-30 04:16:33',1),(1,193,3022367,'2012-12-30 04:16:33',1),(1,83,3022367,'2012-12-30 04:16:33',1),(1,189,3022367,'2012-12-30 04:16:33',1),(1,190,3022367,'2012-12-30 04:16:33',1),(1,191,3022367,'2012-12-30 04:16:33',1),(1,13,3022367,'2012-12-30 04:16:33',1),(1,166,3022367,'2012-12-30 04:16:33',1),(1,39,3022377,'2012-12-30 04:16:40',1),(1,193,3022377,'2012-12-30 04:16:40',1),(1,83,3022377,'2012-12-30 04:16:40',1),(1,189,3022377,'2012-12-30 04:16:40',1),(1,4,3022360,'2012-12-30 04:16:42',NULL),(1,94,3022360,'2012-12-30 04:16:42',NULL),(1,95,3022360,'2012-12-30 04:16:42',NULL),(1,97,3022360,'2012-12-30 04:16:42',NULL),(1,187,3022360,'2012-12-30 04:16:42',NULL),(1,197,3022360,'2012-12-30 04:16:42',NULL),(1,161,3022360,'2012-12-30 04:16:42',NULL),(1,109,3022360,'2012-12-30 04:16:42',NULL),(1,190,3022364,'2012-12-30 04:16:48',1),(1,191,3022364,'2012-12-30 04:16:48',1),(1,13,3022364,'2012-12-30 04:16:48',1),(1,166,3022364,'2012-12-30 04:16:48',1),(1,241,3022365,'2012-12-30 04:16:50',1),(1,210,3022365,'2012-12-30 04:16:50',1),(1,205,3022358,'2012-12-30 04:16:55',1),(1,67,3022358,'2012-12-30 04:16:55',1),(1,64,3022362,'2012-12-30 04:16:56',NULL),(1,142,3022362,'2012-12-30 04:16:56',NULL),(1,204,3022362,'2012-12-30 04:16:56',NULL),(1,66,3022362,'2012-12-30 04:16:56',NULL),(1,39,3022356,'2012-12-30 04:16:59',1),(1,193,3022356,'2012-12-30 04:16:59',1),(1,83,3022356,'2012-12-30 04:16:59',1),(1,189,3022356,'2012-12-30 04:16:59',1),(1,205,3022372,'2012-12-30 04:16:59',1),(1,67,3022372,'2012-12-30 04:16:59',1),(1,104,3022372,'2012-12-30 04:16:59',1),(1,78,3022372,'2012-12-30 04:16:59',1),(1,104,3022376,'2012-12-30 04:17:07',1),(1,78,3022376,'2012-12-30 04:17:07',1),(1,156,3022366,'2012-12-30 04:46:33',NULL),(1,242,3022366,'2012-12-30 04:46:33',NULL),(1,185,3022366,'2012-12-30 04:46:33',NULL),(1,92,3022366,'2012-12-30 04:46:33',NULL),(1,14,3022430,'2012-12-31 00:46:15',NULL),(1,20,3022430,'2012-12-31 00:46:15',NULL),(1,94,3022430,'2012-12-31 00:46:15',NULL),(1,133,3022430,'2012-12-31 00:46:15',NULL),(1,244,3022430,'2012-12-31 00:46:15',NULL),(1,88,3022430,'2012-12-31 00:46:15',NULL),(1,140,3022430,'2012-12-31 00:46:15',NULL),(1,96,3022430,'2012-12-31 00:46:15',NULL),(1,6,3022432,'2012-12-31 00:46:15',1),(1,4,3022432,'2012-12-31 00:46:15',1),(1,186,3022433,'2012-12-31 00:46:15',1),(1,155,3022433,'2012-12-31 00:46:15',1),(1,6,3022433,'2012-12-31 00:46:15',1),(1,4,3022433,'2012-12-31 00:46:15',1),(1,218,3022435,'2012-12-31 00:46:24',1),(1,138,3022416,'2012-12-31 00:46:24',1),(1,6,3022434,'2012-12-31 00:46:24',1),(1,4,3022434,'2012-12-31 00:46:24',1),(1,199,3022417,'2012-12-31 00:46:24',1),(1,227,3022418,'2012-12-31 00:46:31',1),(1,199,3022420,'2012-12-31 00:46:32',1),(1,6,3022420,'2012-12-31 00:46:32',1),(1,6,3022421,'2012-12-31 00:46:32',1),(1,4,3022421,'2012-12-31 00:46:32',1),(1,198,3022422,'2012-12-31 00:46:39',NULL),(1,20,3022422,'2012-12-31 00:46:39',NULL),(1,94,3022422,'2012-12-31 00:46:39',NULL),(1,133,3022422,'2012-12-31 00:46:39',NULL),(1,14,3022427,'2012-12-31 00:46:39',NULL),(1,20,3022427,'2012-12-31 00:46:39',NULL),(1,94,3022427,'2012-12-31 00:46:39',NULL),(1,133,3022427,'2012-12-31 00:46:39',NULL),(1,244,3022427,'2012-12-31 00:46:39',NULL),(1,88,3022427,'2012-12-31 00:46:39',NULL),(1,140,3022427,'2012-12-31 00:46:39',NULL),(1,96,3022427,'2012-12-31 00:46:39',NULL),(1,244,3022423,'2012-12-31 00:46:39',1),(1,88,3022423,'2012-12-31 00:46:39',1),(1,140,3022423,'2012-12-31 00:46:39',1),(1,96,3022423,'2012-12-31 00:46:39',1),(1,14,3022428,'2012-12-31 00:46:47',NULL),(1,20,3022428,'2012-12-31 00:46:47',NULL),(1,94,3022428,'2012-12-31 00:46:47',NULL),(1,133,3022428,'2012-12-31 00:46:47',NULL),(1,244,3022428,'2012-12-31 00:46:47',NULL),(1,88,3022428,'2012-12-31 00:46:47',NULL),(1,140,3022428,'2012-12-31 00:46:47',NULL),(1,96,3022428,'2012-12-31 00:46:47',NULL),(1,227,3022429,'2012-12-31 00:46:49',NULL),(1,237,3022429,'2012-12-31 00:46:49',NULL),(1,97,3022429,'2012-12-31 00:46:49',NULL),(1,167,3022429,'2012-12-31 00:46:49',NULL),(1,186,3022429,'2012-12-31 00:46:49',NULL),(1,155,3022429,'2012-12-31 00:46:49',NULL),(1,6,3022429,'2012-12-31 00:46:49',NULL),(1,4,3022429,'2012-12-31 00:46:49',NULL),(1,227,3022425,'2012-12-31 00:46:49',NULL),(1,237,3022425,'2012-12-31 00:46:49',NULL),(1,97,3022425,'2012-12-31 00:46:49',NULL),(1,167,3022425,'2012-12-31 00:46:49',NULL),(1,186,3022425,'2012-12-31 00:46:49',NULL),(1,155,3022425,'2012-12-31 00:46:49',NULL),(1,6,3022425,'2012-12-31 00:46:49',NULL),(1,4,3022425,'2012-12-31 00:46:49',NULL),(1,227,3022426,'2012-12-31 00:46:55',NULL),(1,237,3022426,'2012-12-31 00:46:55',NULL),(1,138,3022426,'2012-12-31 00:46:55',NULL),(1,97,3022426,'2012-12-31 00:46:55',NULL),(1,219,3022524,'2012-12-31 01:46:12',1),(1,104,3022524,'2012-12-31 01:46:12',1),(1,20,3022524,'2012-12-31 01:46:12',1),(1,94,3022524,'2012-12-31 01:46:12',1),(1,133,3022524,'2012-12-31 01:46:12',1),(1,244,3022524,'2012-12-31 01:46:12',1),(1,88,3022524,'2012-12-31 01:46:12',1),(1,140,3022524,'2012-12-31 01:46:12',1),(1,133,3022525,'2012-12-31 01:46:12',1),(1,244,3022525,'2012-12-31 01:46:12',1),(1,96,3022526,'2012-12-31 01:46:12',1),(1,96,3022527,'2012-12-31 01:46:13',NULL),(1,227,3022527,'2012-12-31 01:46:13',NULL),(1,237,3022527,'2012-12-31 01:46:13',NULL),(1,138,3022527,'2012-12-31 01:46:13',NULL),(1,97,3022527,'2012-12-31 01:46:13',NULL),(1,167,3022527,'2012-12-31 01:46:13',NULL),(1,186,3022527,'2012-12-31 01:46:13',NULL),(1,155,3022527,'2012-12-31 01:46:13',NULL),(1,219,3022529,'2012-12-31 01:46:21',NULL),(1,104,3022529,'2012-12-31 01:46:21',NULL),(1,20,3022529,'2012-12-31 01:46:21',NULL),(1,94,3022529,'2012-12-31 01:46:21',NULL),(1,88,3022528,'2012-12-31 01:46:21',1),(1,140,3022528,'2012-12-31 01:46:21',1),(1,14,3022530,'2012-12-31 01:46:21',1),(1,218,3022530,'2012-12-31 01:46:21',1),(1,6,3022530,'2012-12-31 01:46:21',1),(1,4,3022530,'2012-12-31 01:46:21',1),(1,227,3022523,'2012-12-31 01:46:21',1),(1,198,3022595,'2012-12-31 02:46:12',NULL),(1,20,3022595,'2012-12-31 02:46:12',NULL),(1,94,3022595,'2012-12-31 02:46:12',NULL),(1,133,3022595,'2012-12-31 02:46:12',NULL),(1,244,3022595,'2012-12-31 02:46:12',NULL),(1,88,3022595,'2012-12-31 02:46:12',NULL),(1,140,3022595,'2012-12-31 02:46:12',NULL),(1,96,3022595,'2012-12-31 02:46:12',NULL),(1,227,3022595,'2012-12-31 02:46:12',NULL),(1,237,3022595,'2012-12-31 02:46:12',NULL),(1,138,3022595,'2012-12-31 02:46:12',NULL),(1,97,3022595,'2012-12-31 02:46:12',NULL),(1,167,3022595,'2012-12-31 02:46:12',NULL),(1,186,3022595,'2012-12-31 02:46:12',NULL),(1,155,3022595,'2012-12-31 02:46:12',NULL),(1,14,3022595,'2012-12-31 02:46:12',NULL),(1,4,3022604,'2012-12-31 02:46:12',1),(1,185,3022596,'2012-12-31 02:46:12',1),(1,4,3022596,'2012-12-31 02:46:12',1),(1,10,3022597,'2012-12-31 02:46:12',1),(1,6,3022597,'2012-12-31 02:46:12',1),(1,14,3022598,'2012-12-31 02:46:19',NULL),(1,6,3022598,'2012-12-31 02:46:19',NULL),(1,96,3022599,'2012-12-31 02:46:20',1),(1,227,3022600,'2012-12-31 02:46:20',1),(1,10,3022594,'2012-12-31 02:46:23',NULL),(1,198,3022594,'2012-12-31 02:46:23',NULL),(1,20,3022594,'2012-12-31 02:46:23',NULL),(1,94,3022594,'2012-12-31 02:46:23',NULL),(1,133,3022608,'2012-12-31 02:46:28',1),(1,244,3022608,'2012-12-31 02:46:28',1),(1,88,3022608,'2012-12-31 02:46:28',1),(1,140,3022608,'2012-12-31 02:46:28',1),(1,185,3022603,'2012-12-31 02:46:28',1),(1,4,3022603,'2012-12-31 02:46:28',1),(1,198,3022601,'2012-12-31 02:46:29',NULL),(1,20,3022601,'2012-12-31 02:46:29',NULL),(1,94,3022601,'2012-12-31 02:46:29',NULL),(1,133,3022601,'2012-12-31 02:46:29',NULL),(1,244,3022601,'2012-12-31 02:46:29',NULL),(1,88,3022601,'2012-12-31 02:46:29',NULL),(1,140,3022601,'2012-12-31 02:46:29',NULL),(1,96,3022601,'2012-12-31 02:46:29',NULL),(1,227,3022601,'2012-12-31 02:46:29',NULL),(1,237,3022601,'2012-12-31 02:46:29',NULL),(1,138,3022601,'2012-12-31 02:46:29',NULL),(1,97,3022601,'2012-12-31 02:46:29',NULL),(1,167,3022601,'2012-12-31 02:46:29',NULL),(1,186,3022601,'2012-12-31 02:46:29',NULL),(1,155,3022601,'2012-12-31 02:46:29',NULL),(1,14,3022601,'2012-12-31 02:46:29',NULL),(1,96,3022602,'2012-12-31 02:46:32',NULL),(1,227,3022602,'2012-12-31 02:46:32',NULL),(1,237,3022602,'2012-12-31 02:46:32',NULL),(1,138,3022602,'2012-12-31 02:46:32',NULL),(1,198,3022609,'2012-12-31 02:46:37',NULL),(1,20,3022609,'2012-12-31 02:46:37',NULL),(1,94,3022609,'2012-12-31 02:46:37',NULL),(1,133,3022609,'2012-12-31 02:46:37',NULL),(1,244,3022609,'2012-12-31 02:46:37',NULL),(1,88,3022609,'2012-12-31 02:46:37',NULL),(1,140,3022609,'2012-12-31 02:46:37',NULL),(1,96,3022609,'2012-12-31 02:46:37',NULL),(1,97,3022610,'2012-12-31 02:46:37',1),(1,167,3022610,'2012-12-31 02:46:37',1),(1,186,3022610,'2012-12-31 02:46:37',1),(1,155,3022610,'2012-12-31 02:46:37',1),(1,133,3022605,'2012-12-31 02:46:38',1),(1,244,3022605,'2012-12-31 02:46:38',1),(1,88,3022605,'2012-12-31 02:46:38',1),(1,140,3022605,'2012-12-31 02:46:38',1),(1,227,3022606,'2012-12-31 02:46:39',NULL),(1,237,3022606,'2012-12-31 02:46:39',NULL),(1,138,3022606,'2012-12-31 02:46:39',NULL),(1,97,3022606,'2012-12-31 02:46:39',NULL),(1,167,3022606,'2012-12-31 02:46:39',NULL),(1,186,3022606,'2012-12-31 02:46:39',NULL),(1,155,3022606,'2012-12-31 02:46:39',NULL),(1,14,3022606,'2012-12-31 02:46:39',NULL),(1,198,3022607,'2012-12-31 02:46:46',NULL),(1,20,3022607,'2012-12-31 02:46:46',NULL),(1,94,3022607,'2012-12-31 02:46:46',NULL),(1,133,3022607,'2012-12-31 02:46:46',NULL),(1,244,3022607,'2012-12-31 02:46:46',NULL),(1,88,3022607,'2012-12-31 02:46:46',NULL),(1,140,3022607,'2012-12-31 02:46:46',NULL),(1,96,3022607,'2012-12-31 02:46:46',NULL),(1,227,3022593,'2012-12-31 02:46:47',NULL),(1,237,3022593,'2012-12-31 02:46:47',NULL),(1,138,3022593,'2012-12-31 02:46:47',NULL),(1,97,3022593,'2012-12-31 02:46:47',NULL),(1,167,3022593,'2012-12-31 02:46:47',NULL),(1,186,3022593,'2012-12-31 02:46:47',NULL),(1,155,3022593,'2012-12-31 02:46:47',NULL),(1,14,3022593,'2012-12-31 02:46:47',NULL),(1,199,3022685,'2012-12-31 03:46:12',NULL),(1,20,3022685,'2012-12-31 03:46:12',NULL),(1,94,3022685,'2012-12-31 03:46:12',NULL),(1,133,3022685,'2012-12-31 03:46:12',NULL),(1,244,3022685,'2012-12-31 03:46:12',NULL),(1,88,3022685,'2012-12-31 03:46:12',NULL),(1,140,3022685,'2012-12-31 03:46:12',NULL),(1,96,3022685,'2012-12-31 03:46:12',NULL),(1,227,3022685,'2012-12-31 03:46:12',NULL),(1,237,3022685,'2012-12-31 03:46:12',NULL),(1,138,3022685,'2012-12-31 03:46:12',NULL),(1,97,3022685,'2012-12-31 03:46:12',NULL),(1,187,3022685,'2012-12-31 03:46:12',NULL),(1,197,3022685,'2012-12-31 03:46:12',NULL),(1,167,3022685,'2012-12-31 03:46:12',NULL),(1,186,3022685,'2012-12-31 03:46:12',NULL),(1,4,3022699,'2012-12-31 03:46:12',1),(1,185,3022700,'2012-12-31 03:46:12',1),(1,4,3022700,'2012-12-31 03:46:12',1),(1,105,3022706,'2012-12-31 03:46:12',1),(1,203,3022706,'2012-12-31 03:46:12',1),(1,155,3022705,'2012-12-31 03:46:24',NULL),(1,236,3022705,'2012-12-31 03:46:24',NULL),(1,14,3022705,'2012-12-31 03:46:24',NULL),(1,6,3022705,'2012-12-31 03:46:24',NULL),(1,155,3022686,'2012-12-31 03:46:30',NULL),(1,236,3022686,'2012-12-31 03:46:30',NULL),(1,14,3022686,'2012-12-31 03:46:30',NULL),(1,6,3022686,'2012-12-31 03:46:30',NULL),(1,105,3022687,'2012-12-31 03:46:30',1),(1,199,3022689,'2012-12-31 03:46:38',1),(1,203,3022707,'2012-12-31 03:46:47',1),(1,20,3022694,'2012-12-31 03:46:52',NULL),(1,94,3022694,'2012-12-31 03:46:52',NULL),(1,133,3022694,'2012-12-31 03:46:52',NULL),(1,244,3022694,'2012-12-31 03:46:52',NULL),(1,88,3022694,'2012-12-31 03:46:52',NULL),(1,140,3022694,'2012-12-31 03:46:52',NULL),(1,96,3022694,'2012-12-31 03:46:52',NULL),(1,227,3022694,'2012-12-31 03:46:52',NULL),(1,237,3022694,'2012-12-31 03:46:52',NULL),(1,138,3022694,'2012-12-31 03:46:52',NULL),(1,97,3022694,'2012-12-31 03:46:52',NULL),(1,187,3022694,'2012-12-31 03:46:52',NULL),(1,197,3022694,'2012-12-31 03:46:52',NULL),(1,167,3022694,'2012-12-31 03:46:52',NULL),(1,186,3022694,'2012-12-31 03:46:52',NULL),(1,185,3022694,'2012-12-31 03:46:52',NULL),(1,227,3022703,'2012-12-31 04:16:23',NULL),(1,237,3022703,'2012-12-31 04:16:23',NULL),(1,138,3022703,'2012-12-31 04:16:23',NULL),(1,97,3022703,'2012-12-31 04:16:23',NULL),(1,187,3022703,'2012-12-31 04:16:23',NULL),(1,197,3022703,'2012-12-31 04:16:23',NULL),(1,167,3022703,'2012-12-31 04:16:23',NULL),(1,186,3022703,'2012-12-31 04:16:23',NULL),(1,6,3022704,'2012-12-31 04:16:23',1),(1,4,3022704,'2012-12-31 04:16:23',1),(1,208,3022693,'2012-12-31 04:16:30',1),(1,105,3022693,'2012-12-31 04:16:30',1),(1,155,3022709,'2012-12-31 04:16:39',NULL),(1,236,3022709,'2012-12-31 04:16:39',NULL),(1,14,3022709,'2012-12-31 04:16:39',NULL),(1,185,3022709,'2012-12-31 04:16:39',NULL),(1,198,3022688,'2012-12-31 04:16:39',1),(1,208,3022688,'2012-12-31 04:16:39',1),(1,105,3022688,'2012-12-31 04:16:39',1),(1,4,3022688,'2012-12-31 04:16:39',1),(1,203,3022691,'2012-12-31 04:16:46',1),(1,6,3022691,'2012-12-31 04:16:46',1),(1,203,3022708,'2012-12-31 04:16:46',1),(1,6,3022708,'2012-12-31 04:16:46',1),(1,185,3022692,'2012-12-31 04:16:50',1),(1,155,3022692,'2012-12-31 04:16:50',1),(1,196,3022692,'2012-12-31 04:16:50',1),(1,236,3022692,'2012-12-31 04:16:50',1),(1,199,3022697,'2012-12-31 04:16:58',NULL),(1,20,3022697,'2012-12-31 04:16:58',NULL),(1,94,3022697,'2012-12-31 04:16:58',NULL),(1,133,3022697,'2012-12-31 04:16:58',NULL),(1,244,3022697,'2012-12-31 04:16:58',NULL),(1,88,3022697,'2012-12-31 04:16:58',NULL),(1,140,3022697,'2012-12-31 04:16:58',NULL),(1,96,3022697,'2012-12-31 04:16:58',NULL),(1,227,3022697,'2012-12-31 04:16:58',NULL),(1,237,3022697,'2012-12-31 04:16:58',NULL),(1,138,3022697,'2012-12-31 04:16:58',NULL),(1,97,3022697,'2012-12-31 04:16:58',NULL),(1,187,3022697,'2012-12-31 04:16:58',NULL),(1,197,3022697,'2012-12-31 04:16:58',NULL),(1,167,3022697,'2012-12-31 04:16:58',NULL),(1,186,3022697,'2012-12-31 04:16:58',NULL),(1,199,3022702,'2012-12-31 04:46:25',1),(1,20,3022702,'2012-12-31 04:46:25',1),(1,94,3022702,'2012-12-31 04:46:25',1),(1,133,3022702,'2012-12-31 04:46:25',1),(1,244,3022702,'2012-12-31 04:46:25',1),(1,88,3022702,'2012-12-31 04:46:25',1),(1,140,3022702,'2012-12-31 04:46:25',1),(1,96,3022702,'2012-12-31 04:46:25',1),(1,227,3022701,'2012-12-31 04:46:31',NULL),(1,237,3022701,'2012-12-31 04:46:31',NULL),(1,138,3022701,'2012-12-31 04:46:31',NULL),(1,97,3022701,'2012-12-31 04:46:31',NULL),(1,187,3022701,'2012-12-31 04:46:31',NULL),(1,197,3022701,'2012-12-31 04:46:31',NULL),(1,167,3022701,'2012-12-31 04:46:31',NULL),(1,186,3022701,'2012-12-31 04:46:31',NULL),(1,227,3022690,'2012-12-31 04:46:44',NULL),(1,237,3022690,'2012-12-31 04:46:44',NULL),(1,138,3022690,'2012-12-31 04:46:44',NULL),(1,97,3022690,'2012-12-31 04:46:44',NULL),(1,187,3022690,'2012-12-31 04:46:44',NULL),(1,197,3022690,'2012-12-31 04:46:44',NULL),(1,167,3022690,'2012-12-31 04:46:44',NULL),(1,186,3022690,'2012-12-31 04:46:44',NULL),(1,198,3022695,'2012-12-31 04:46:56',NULL),(1,208,3022695,'2012-12-31 04:46:56',NULL),(1,105,3022695,'2012-12-31 04:46:56',NULL),(1,14,3022695,'2012-12-31 04:46:56',NULL),(1,199,3022696,'2012-12-31 04:46:57',NULL),(1,20,3022696,'2012-12-31 04:46:57',NULL),(1,94,3022696,'2012-12-31 04:46:57',NULL),(1,133,3022696,'2012-12-31 04:46:57',NULL),(1,244,3022696,'2012-12-31 04:46:57',NULL),(1,88,3022696,'2012-12-31 04:46:57',NULL),(1,140,3022696,'2012-12-31 04:46:57',NULL),(1,96,3022696,'2012-12-31 04:46:57',NULL),(1,199,3022698,'2012-12-31 04:47:05',NULL),(1,20,3022698,'2012-12-31 04:47:05',NULL),(1,94,3022698,'2012-12-31 04:47:05',NULL),(1,133,3022698,'2012-12-31 04:47:05',NULL),(1,244,3022698,'2012-12-31 04:47:05',NULL),(1,88,3022698,'2012-12-31 04:47:05',NULL),(1,140,3022698,'2012-12-31 04:47:05',NULL),(1,96,3022698,'2012-12-31 04:47:05',NULL),(1,112,3022754,'2013-01-01 00:46:14',NULL),(1,2,3022754,'2013-01-01 00:46:14',NULL),(1,50,3022754,'2013-01-01 00:46:14',NULL),(1,218,3022754,'2013-01-01 00:46:14',NULL),(1,173,3022753,'2013-01-01 00:46:14',NULL),(1,13,3022753,'2013-01-01 00:46:14',NULL),(1,117,3022753,'2013-01-01 00:46:14',NULL),(1,75,3022753,'2013-01-01 00:46:14',NULL),(1,6,3022752,'2013-01-01 00:46:14',1),(1,4,3022752,'2013-01-01 00:46:14',1),(1,13,3022756,'2013-01-01 00:46:22',NULL),(1,75,3022756,'2013-01-01 00:46:22',NULL),(1,112,3022756,'2013-01-01 00:46:22',NULL),(1,2,3022756,'2013-01-01 00:46:22',NULL),(1,50,3022756,'2013-01-01 00:46:22',NULL),(1,218,3022756,'2013-01-01 00:46:22',NULL),(1,66,3022756,'2013-01-01 00:46:22',NULL),(1,104,3022756,'2013-01-01 00:46:22',NULL),(1,244,3022758,'2013-01-01 00:46:22',NULL),(1,25,3022758,'2013-01-01 00:46:22',NULL),(1,119,3022758,'2013-01-01 00:46:22',NULL),(1,89,3022758,'2013-01-01 00:46:22',NULL),(1,120,3022758,'2013-01-01 00:46:22',NULL),(1,122,3022758,'2013-01-01 00:46:22',NULL),(1,150,3022758,'2013-01-01 00:46:22',NULL),(1,124,3022758,'2013-01-01 00:46:22',NULL),(1,66,3022757,'2013-01-01 00:46:22',1),(1,104,3022757,'2013-01-01 00:46:22',1),(1,6,3022757,'2013-01-01 00:46:22',1),(1,4,3022757,'2013-01-01 00:46:22',1),(1,244,3022760,'2013-01-01 00:46:31',NULL),(1,25,3022760,'2013-01-01 00:46:31',NULL),(1,134,3022760,'2013-01-01 00:46:31',NULL),(1,119,3022760,'2013-01-01 00:46:31',NULL),(1,89,3022760,'2013-01-01 00:46:31',NULL),(1,120,3022760,'2013-01-01 00:46:31',NULL),(1,122,3022760,'2013-01-01 00:46:31',NULL),(1,150,3022760,'2013-01-01 00:46:31',NULL),(1,124,3022761,'2013-01-01 00:46:31',1),(1,18,3022761,'2013-01-01 00:46:31',1),(1,111,3022761,'2013-01-01 00:46:31',1),(1,22,3022761,'2013-01-01 00:46:31',1),(1,165,3022761,'2013-01-01 00:46:31',1),(1,175,3022761,'2013-01-01 00:46:31',1),(1,35,3022761,'2013-01-01 00:46:31',1),(1,87,3022761,'2013-01-01 00:46:31',1),(1,150,3022751,'2013-01-01 00:46:31',1),(1,124,3022751,'2013-01-01 00:46:31',1),(1,173,3022749,'2013-01-01 00:46:39',1),(1,22,3022763,'2013-01-01 00:46:39',1),(1,165,3022763,'2013-01-01 00:46:39',1),(1,119,3022764,'2013-01-01 00:46:43',1),(1,89,3022764,'2013-01-01 00:46:43',1),(1,120,3022764,'2013-01-01 00:46:43',1),(1,122,3022764,'2013-01-01 00:46:43',1),(1,175,3022765,'2013-01-01 00:46:49',1),(1,35,3022765,'2013-01-01 00:46:49',1),(1,13,3022766,'2013-01-01 00:46:49',1),(1,117,3022767,'2013-01-01 00:46:51',1),(1,75,3022748,'2013-01-01 00:46:52',1),(1,244,3022863,'2013-01-01 01:16:09',1),(1,25,3022863,'2013-01-01 01:16:09',1),(1,183,3022863,'2013-01-01 01:16:09',1),(1,227,3022863,'2013-01-01 01:16:09',1),(1,244,3022859,'2013-01-01 01:46:12',NULL),(1,25,3022859,'2013-01-01 01:46:12',NULL),(1,183,3022859,'2013-01-01 01:46:12',NULL),(1,227,3022859,'2013-01-01 01:46:12',NULL),(1,134,3022859,'2013-01-01 01:46:12',NULL),(1,3,3022859,'2013-01-01 01:46:12',NULL),(1,89,3022859,'2013-01-01 01:46:12',NULL),(1,82,3022859,'2013-01-01 01:46:12',NULL),(1,119,3022862,'2013-01-01 01:46:12',1),(1,134,3022858,'2013-01-01 01:46:12',1),(1,35,3022860,'2013-01-01 01:46:20',1),(1,37,3022860,'2013-01-01 01:46:20',1),(1,165,3022861,'2013-01-01 01:46:20',1),(1,175,3022861,'2013-01-01 01:46:20',1),(1,54,3022861,'2013-01-01 01:46:20',1),(1,181,3022861,'2013-01-01 01:46:20',1),(1,120,3022856,'2013-01-01 01:46:20',1),(1,122,3022856,'2013-01-01 01:46:20',1),(1,150,3022856,'2013-01-01 01:46:20',1),(1,124,3022856,'2013-01-01 01:46:20',1),(1,18,3022856,'2013-01-01 01:46:20',1),(1,111,3022856,'2013-01-01 01:46:20',1),(1,161,3022856,'2013-01-01 01:46:20',1),(1,22,3022856,'2013-01-01 01:46:20',1),(1,193,3022857,'2013-01-01 01:46:24',1),(1,172,3022857,'2013-01-01 01:46:24',1),(1,133,3022932,'2013-01-01 02:46:12',NULL),(1,244,3022932,'2013-01-01 02:46:12',NULL),(1,25,3022932,'2013-01-01 02:46:12',NULL),(1,183,3022932,'2013-01-01 02:46:12',NULL),(1,184,3022932,'2013-01-01 02:46:12',NULL),(1,96,3022932,'2013-01-01 02:46:12',NULL),(1,227,3022932,'2013-01-01 02:46:12',NULL),(1,134,3022932,'2013-01-01 02:46:12',NULL),(1,119,3022932,'2013-01-01 02:46:12',NULL),(1,42,3022932,'2013-01-01 02:46:12',NULL),(1,3,3022932,'2013-01-01 02:46:12',NULL),(1,89,3022932,'2013-01-01 02:46:12',NULL),(1,82,3022932,'2013-01-01 02:46:12',NULL),(1,120,3022932,'2013-01-01 02:46:12',NULL),(1,122,3022932,'2013-01-01 02:46:12',NULL),(1,150,3022932,'2013-01-01 02:46:12',NULL),(1,4,3022930,'2013-01-01 02:46:12',1),(1,66,3022933,'2013-01-01 02:46:12',1),(1,104,3022933,'2013-01-01 02:46:12',1),(1,91,3022933,'2013-01-01 02:46:12',1),(1,6,3022933,'2013-01-01 02:46:12',1),(1,161,3022937,'2013-01-01 02:46:19',1),(1,22,3022937,'2013-01-01 02:46:19',1),(1,165,3022937,'2013-01-01 02:46:19',1),(1,175,3022937,'2013-01-01 02:46:19',1),(1,173,3022935,'2013-01-01 02:46:20',NULL),(1,80,3022935,'2013-01-01 02:46:20',NULL),(1,129,3022935,'2013-01-01 02:46:20',NULL),(1,13,3022935,'2013-01-01 02:46:20',NULL),(1,117,3022935,'2013-01-01 02:46:20',NULL),(1,75,3022935,'2013-01-01 02:46:20',NULL),(1,112,3022935,'2013-01-01 02:46:20',NULL),(1,168,3022935,'2013-01-01 02:46:20',NULL),(1,54,3022940,'2013-01-01 02:46:20',1),(1,177,3022940,'2013-01-01 02:46:20',1),(1,181,3022940,'2013-01-01 02:46:20',1),(1,35,3022940,'2013-01-01 02:46:20',1),(1,64,3022938,'2013-01-01 02:46:24',NULL),(1,65,3022938,'2013-01-01 02:46:24',NULL),(1,142,3022938,'2013-01-01 02:46:24',NULL),(1,2,3022938,'2013-01-01 02:46:24',NULL),(1,50,3022938,'2013-01-01 02:46:24',NULL),(1,131,3022938,'2013-01-01 02:46:24',NULL),(1,218,3022938,'2013-01-01 02:46:24',NULL),(1,198,3022938,'2013-01-01 02:46:24',NULL),(1,87,3022927,'2013-01-01 02:46:27',1),(1,64,3022927,'2013-01-01 02:46:27',1),(1,124,3022926,'2013-01-01 02:46:28',1),(1,18,3022926,'2013-01-01 02:46:28',1),(1,111,3022926,'2013-01-01 02:46:28',1),(1,161,3022926,'2013-01-01 02:46:28',1),(1,22,3022926,'2013-01-01 02:46:28',1),(1,165,3022926,'2013-01-01 02:46:28',1),(1,175,3022926,'2013-01-01 02:46:28',1),(1,54,3022926,'2013-01-01 02:46:28',1),(1,177,3022926,'2013-01-01 02:46:28',1),(1,181,3022926,'2013-01-01 02:46:28',1),(1,35,3022926,'2013-01-01 02:46:28',1),(1,37,3022926,'2013-01-01 02:46:28',1),(1,193,3022926,'2013-01-01 02:46:28',1),(1,172,3022926,'2013-01-01 02:46:28',1),(1,17,3022926,'2013-01-01 02:46:28',1),(1,87,3022926,'2013-01-01 02:46:28',1),(1,65,3022929,'2013-01-01 02:46:29',1),(1,142,3022929,'2013-01-01 02:46:29',1),(1,2,3022928,'2013-01-01 02:46:31',1),(1,50,3022928,'2013-01-01 02:46:31',1),(1,198,3022931,'2013-01-01 02:46:36',1),(1,133,3022941,'2013-01-01 02:46:38',1),(1,244,3022941,'2013-01-01 02:46:38',1),(1,25,3022941,'2013-01-01 02:46:38',1),(1,183,3022941,'2013-01-01 02:46:38',1),(1,113,3022941,'2013-01-01 02:46:38',1),(1,184,3022941,'2013-01-01 02:46:38',1),(1,96,3022941,'2013-01-01 02:46:38',1),(1,227,3022941,'2013-01-01 02:46:38',1),(1,131,3022942,'2013-01-01 02:46:39',1),(1,218,3022942,'2013-01-01 02:46:39',1),(1,37,3022936,'2013-01-01 02:46:39',1),(1,193,3022936,'2013-01-01 02:46:39',1),(1,172,3022936,'2013-01-01 02:46:39',1),(1,17,3022936,'2013-01-01 02:46:39',1),(1,134,3022939,'2013-01-01 02:46:45',NULL),(1,119,3022939,'2013-01-01 02:46:45',NULL),(1,42,3022939,'2013-01-01 02:46:45',NULL),(1,3,3022939,'2013-01-01 02:46:45',NULL),(1,89,3022939,'2013-01-01 02:46:45',NULL),(1,82,3022939,'2013-01-01 02:46:45',NULL),(1,120,3022939,'2013-01-01 02:46:45',NULL),(1,122,3022939,'2013-01-01 02:46:45',NULL),(1,66,3022934,'2013-01-01 02:46:45',1),(1,150,3022925,'2013-01-01 03:16:15',NULL),(1,124,3022925,'2013-01-01 03:16:15',NULL),(1,18,3022925,'2013-01-01 03:16:15',NULL),(1,111,3022925,'2013-01-01 03:16:15',NULL),(1,227,3023019,'2013-01-01 03:46:11',NULL),(1,134,3023019,'2013-01-01 03:46:11',NULL),(1,119,3023019,'2013-01-01 03:46:11',NULL),(1,42,3023019,'2013-01-01 03:46:11',NULL),(1,4,3023020,'2013-01-01 03:46:11',1),(1,91,3023033,'2013-01-01 03:46:12',1),(1,6,3023033,'2013-01-01 03:46:12',1),(1,2,3023021,'2013-01-01 03:46:13',1),(1,50,3023021,'2013-01-01 03:46:13',1),(1,131,3023021,'2013-01-01 03:46:13',1),(1,218,3023021,'2013-01-01 03:46:13',1),(1,198,3023021,'2013-01-01 03:46:13',1),(1,66,3023021,'2013-01-01 03:46:13',1),(1,104,3023021,'2013-01-01 03:46:13',1),(1,105,3023021,'2013-01-01 03:46:13',1),(1,121,3023022,'2013-01-01 03:46:19',1),(1,4,3023022,'2013-01-01 03:46:19',1),(1,121,3023023,'2013-01-01 03:46:19',1),(1,4,3023023,'2013-01-01 03:46:19',1),(1,3,3023024,'2013-01-01 03:46:23',1),(1,89,3023024,'2013-01-01 03:46:23',1),(1,82,3023024,'2013-01-01 03:46:23',1),(1,120,3023024,'2013-01-01 03:46:23',1),(1,4,3023025,'2013-01-01 03:46:23',1),(1,133,3023026,'2013-01-01 03:46:27',NULL),(1,244,3023026,'2013-01-01 03:46:27',NULL),(1,88,3023026,'2013-01-01 03:46:27',NULL),(1,25,3023026,'2013-01-01 03:46:27',NULL),(1,183,3023026,'2013-01-01 03:46:27',NULL),(1,113,3023026,'2013-01-01 03:46:27',NULL),(1,184,3023026,'2013-01-01 03:46:27',NULL),(1,96,3023026,'2013-01-01 03:46:27',NULL),(1,227,3023026,'2013-01-01 03:46:27',NULL),(1,134,3023026,'2013-01-01 03:46:27',NULL),(1,119,3023026,'2013-01-01 03:46:27',NULL),(1,42,3023026,'2013-01-01 03:46:27',NULL),(1,3,3023026,'2013-01-01 03:46:27',NULL),(1,89,3023026,'2013-01-01 03:46:27',NULL),(1,82,3023026,'2013-01-01 03:46:27',NULL),(1,120,3023026,'2013-01-01 03:46:27',NULL),(1,133,3023028,'2013-01-01 03:46:30',1),(1,244,3023028,'2013-01-01 03:46:30',1),(1,88,3023028,'2013-01-01 03:46:30',1),(1,25,3023028,'2013-01-01 03:46:30',1),(1,183,3023028,'2013-01-01 03:46:30',1),(1,113,3023028,'2013-01-01 03:46:30',1),(1,184,3023028,'2013-01-01 03:46:30',1),(1,96,3023028,'2013-01-01 03:46:30',1),(1,122,3023029,'2013-01-01 03:46:32',1),(1,150,3023029,'2013-01-01 03:46:32',1),(1,124,3023029,'2013-01-01 03:46:32',1),(1,18,3023029,'2013-01-01 03:46:32',1),(1,111,3023029,'2013-01-01 03:46:32',1),(1,161,3023029,'2013-01-01 03:46:32',1),(1,22,3023029,'2013-01-01 03:46:32',1),(1,165,3023029,'2013-01-01 03:46:32',1),(1,175,3023029,'2013-01-01 03:46:32',1),(1,54,3023029,'2013-01-01 03:46:32',1),(1,177,3023029,'2013-01-01 03:46:32',1),(1,181,3023029,'2013-01-01 03:46:32',1),(1,35,3023029,'2013-01-01 03:46:32',1),(1,37,3023029,'2013-01-01 03:46:32',1),(1,30,3023029,'2013-01-01 03:46:32',1),(1,243,3023029,'2013-01-01 03:46:32',1),(1,227,3023030,'2013-01-01 03:46:38',1),(1,134,3023030,'2013-01-01 03:46:38',1),(1,119,3023030,'2013-01-01 03:46:38',1),(1,42,3023030,'2013-01-01 03:46:38',1),(1,3,3023030,'2013-01-01 03:46:38',1),(1,89,3023030,'2013-01-01 03:46:38',1),(1,82,3023030,'2013-01-01 03:46:38',1),(1,120,3023030,'2013-01-01 03:46:38',1),(1,121,3023016,'2013-01-01 03:46:38',1),(1,122,3023016,'2013-01-01 03:46:38',1),(1,150,3023016,'2013-01-01 03:46:38',1),(1,124,3023016,'2013-01-01 03:46:38',1),(1,30,3023031,'2013-01-01 03:46:39',1),(1,193,3023032,'2013-01-01 03:46:42',NULL),(1,172,3023032,'2013-01-01 03:46:42',NULL),(1,17,3023032,'2013-01-01 03:46:42',NULL),(1,87,3023032,'2013-01-01 03:46:42',NULL),(1,173,3023032,'2013-01-01 03:46:42',NULL),(1,80,3023032,'2013-01-01 03:46:42',NULL),(1,129,3023032,'2013-01-01 03:46:42',NULL),(1,13,3023032,'2013-01-01 03:46:42',NULL),(1,117,3023032,'2013-01-01 03:46:42',NULL),(1,75,3023032,'2013-01-01 03:46:42',NULL),(1,112,3023032,'2013-01-01 03:46:42',NULL),(1,168,3023032,'2013-01-01 03:46:42',NULL),(1,64,3023032,'2013-01-01 03:46:42',NULL),(1,65,3023032,'2013-01-01 03:46:42',NULL),(1,108,3023032,'2013-01-01 03:46:42',NULL),(1,142,3023032,'2013-01-01 03:46:42',NULL),(1,121,3023040,'2013-01-01 03:46:47',1),(1,29,3023040,'2013-01-01 03:46:47',1),(1,193,3023035,'2013-01-01 03:46:47',1),(1,172,3023035,'2013-01-01 03:46:47',1),(1,17,3023035,'2013-01-01 03:46:47',1),(1,87,3023035,'2013-01-01 03:46:47',1),(1,173,3023035,'2013-01-01 03:46:47',1),(1,80,3023035,'2013-01-01 03:46:47',1),(1,129,3023035,'2013-01-01 03:46:47',1),(1,13,3023035,'2013-01-01 03:46:47',1),(1,117,3023036,'2013-01-01 03:46:49',NULL),(1,75,3023036,'2013-01-01 03:46:49',NULL),(1,112,3023036,'2013-01-01 03:46:49',NULL),(1,168,3023036,'2013-01-01 03:46:49',NULL),(1,64,3023036,'2013-01-01 03:46:49',NULL),(1,65,3023036,'2013-01-01 03:46:49',NULL),(1,108,3023036,'2013-01-01 03:46:49',NULL),(1,142,3023036,'2013-01-01 03:46:49',NULL),(1,181,3023037,'2013-01-01 03:46:52',1),(1,35,3023037,'2013-01-01 03:46:52',1),(1,117,3023039,'2013-01-01 03:46:57',NULL),(1,75,3023039,'2013-01-01 03:46:57',NULL),(1,112,3023039,'2013-01-01 03:46:57',NULL),(1,168,3023039,'2013-01-01 03:46:57',NULL),(1,64,3023039,'2013-01-01 03:46:57',NULL),(1,65,3023039,'2013-01-01 03:46:57',NULL),(1,108,3023039,'2013-01-01 03:46:57',NULL),(1,142,3023039,'2013-01-01 03:46:57',NULL),(1,18,3023038,'2013-01-01 03:46:57',1),(1,111,3023038,'2013-01-01 03:46:57',1),(1,161,3023038,'2013-01-01 03:46:57',1),(1,22,3023038,'2013-01-01 03:46:57',1),(1,165,3023018,'2013-01-01 03:47:02',1),(1,175,3023018,'2013-01-01 03:47:02',1),(1,54,3023018,'2013-01-01 03:47:02',1),(1,177,3023018,'2013-01-01 03:47:02',1),(1,243,3023017,'2013-01-01 03:47:10',1),(1,189,3023027,'2013-01-01 04:16:32',1),(1,91,3023027,'2013-01-01 04:16:32',1),(1,6,3023027,'2013-01-01 04:16:32',1),(1,4,3023027,'2013-01-01 04:16:32',1),(1,37,3023034,'2013-01-01 04:17:06',1),(1,29,3023034,'2013-01-01 04:17:06',1),(1,168,3023081,'2013-01-02 00:46:12',1),(1,10,3023098,'2013-01-02 00:46:12',1),(1,230,3023099,'2013-01-02 00:46:13',1),(1,80,3023084,'2013-01-02 00:46:21',1),(1,55,3023084,'2013-01-02 00:46:21',1),(1,137,3023085,'2013-01-02 00:46:24',1),(1,138,3023085,'2013-01-02 00:46:24',1),(1,120,3023085,'2013-01-02 00:46:24',1),(1,48,3023085,'2013-01-02 00:46:24',1),(1,220,3023086,'2013-01-02 00:46:26',1),(1,57,3023086,'2013-01-02 00:46:26',1),(1,33,3023086,'2013-01-02 00:46:26',1),(1,243,3023086,'2013-01-02 00:46:26',1),(1,249,3023088,'2013-01-02 00:46:31',NULL),(1,137,3023088,'2013-01-02 00:46:31',NULL),(1,138,3023088,'2013-01-02 00:46:31',NULL),(1,120,3023088,'2013-01-02 00:46:31',NULL),(1,48,3023088,'2013-01-02 00:46:31',NULL),(1,220,3023088,'2013-01-02 00:46:31',NULL),(1,57,3023088,'2013-01-02 00:46:31',NULL),(1,33,3023088,'2013-01-02 00:46:31',NULL),(1,243,3023090,'2013-01-02 00:46:31',NULL),(1,172,3023090,'2013-01-02 00:46:31',NULL),(1,74,3023090,'2013-01-02 00:46:31',NULL),(1,80,3023090,'2013-01-02 00:46:31',NULL),(1,55,3023090,'2013-01-02 00:46:31',NULL),(1,168,3023090,'2013-01-02 00:46:31',NULL),(1,10,3023090,'2013-01-02 00:46:31',NULL),(1,218,3023090,'2013-01-02 00:46:31',NULL),(1,218,3023089,'2013-01-02 00:46:31',1),(1,66,3023089,'2013-01-02 00:46:31',1),(1,224,3023089,'2013-01-02 00:46:31',1),(1,6,3023089,'2013-01-02 00:46:31',1),(1,123,3023092,'2013-01-02 00:46:39',NULL),(1,243,3023092,'2013-01-02 00:46:39',NULL),(1,193,3023092,'2013-01-02 00:46:39',NULL),(1,172,3023092,'2013-01-02 00:46:39',NULL),(1,74,3023092,'2013-01-02 00:46:39',NULL),(1,80,3023092,'2013-01-02 00:46:39',NULL),(1,55,3023092,'2013-01-02 00:46:39',NULL),(1,168,3023092,'2013-01-02 00:46:39',NULL),(1,243,3023093,'2013-01-02 00:46:41',NULL),(1,172,3023093,'2013-01-02 00:46:41',NULL),(1,74,3023093,'2013-01-02 00:46:41',NULL),(1,80,3023093,'2013-01-02 00:46:41',NULL),(1,55,3023093,'2013-01-02 00:46:41',NULL),(1,168,3023093,'2013-01-02 00:46:41',NULL),(1,10,3023093,'2013-01-02 00:46:41',NULL),(1,230,3023093,'2013-01-02 00:46:41',NULL),(1,224,3023095,'2013-01-02 00:46:43',1),(1,6,3023095,'2013-01-02 00:46:43',1),(1,66,3023097,'2013-01-02 00:46:47',1),(1,224,3023097,'2013-01-02 00:46:47',1),(1,10,3023096,'2013-01-02 00:46:47',1),(1,229,3023096,'2013-01-02 00:46:47',1),(1,230,3023096,'2013-01-02 00:46:47',1),(1,218,3023096,'2013-01-02 00:46:47',1),(1,224,3023083,'2013-01-02 00:46:52',1),(1,6,3023083,'2013-01-02 00:46:52',1),(1,4,3023100,'2013-01-02 00:46:52',1),(1,249,3023182,'2013-01-02 01:46:12',NULL),(1,137,3023182,'2013-01-02 01:46:12',NULL),(1,138,3023182,'2013-01-02 01:46:12',NULL),(1,89,3023182,'2013-01-02 01:46:12',NULL),(1,120,3023182,'2013-01-02 01:46:12',NULL),(1,123,3023182,'2013-01-02 01:46:12',NULL),(1,48,3023182,'2013-01-02 01:46:12',NULL),(1,220,3023182,'2013-01-02 01:46:12',NULL),(1,138,3023181,'2013-01-02 01:46:12',1),(1,6,3023183,'2013-01-02 01:46:12',1),(1,4,3023183,'2013-01-02 01:46:12',1),(1,168,3023184,'2013-01-02 01:46:16',1),(1,242,3023184,'2013-01-02 01:46:16',1),(1,10,3023184,'2013-01-02 01:46:16',1),(1,229,3023184,'2013-01-02 01:46:16',1),(1,57,3023185,'2013-01-02 01:46:19',1),(1,33,3023185,'2013-01-02 01:46:19',1),(1,243,3023185,'2013-01-02 01:46:19',1),(1,193,3023185,'2013-01-02 01:46:19',1),(1,172,3023185,'2013-01-02 01:46:19',1),(1,74,3023185,'2013-01-02 01:46:19',1),(1,80,3023185,'2013-01-02 01:46:19',1),(1,55,3023185,'2013-01-02 01:46:19',1),(1,89,3023186,'2013-01-02 01:46:19',1),(1,230,3023187,'2013-01-02 01:46:25',1),(1,218,3023187,'2013-01-02 01:46:25',1),(1,66,3023187,'2013-01-02 01:46:25',1),(1,224,3023187,'2013-01-02 01:46:25',1),(1,249,3023180,'2013-01-02 01:46:27',1),(1,137,3023180,'2013-01-02 01:46:27',1),(1,224,3023249,'2013-01-02 02:46:29',1),(1,6,3023249,'2013-01-02 02:46:29',1),(1,224,3023250,'2013-01-02 02:46:29',1),(1,6,3023250,'2013-01-02 02:46:29',1),(1,224,3023251,'2013-01-02 02:46:29',1),(1,6,3023251,'2013-01-02 02:46:29',1),(1,4,3023252,'2013-01-02 02:46:31',1),(1,4,3023253,'2013-01-02 02:46:36',1),(1,249,3023254,'2013-01-02 02:46:37',NULL),(1,137,3023254,'2013-01-02 02:46:37',NULL),(1,138,3023254,'2013-01-02 02:46:37',NULL),(1,89,3023254,'2013-01-02 02:46:37',NULL),(1,120,3023254,'2013-01-02 02:46:37',NULL),(1,123,3023254,'2013-01-02 02:46:37',NULL),(1,48,3023254,'2013-01-02 02:46:37',NULL),(1,220,3023254,'2013-01-02 02:46:37',NULL),(1,57,3023254,'2013-01-02 02:46:37',NULL),(1,33,3023254,'2013-01-02 02:46:37',NULL),(1,243,3023254,'2013-01-02 02:46:37',NULL),(1,193,3023254,'2013-01-02 02:46:37',NULL),(1,172,3023254,'2013-01-02 02:46:37',NULL),(1,189,3023254,'2013-01-02 02:46:37',NULL),(1,74,3023254,'2013-01-02 02:46:37',NULL),(1,80,3023254,'2013-01-02 02:46:37',NULL),(1,55,3023259,'2013-01-02 02:46:40',NULL),(1,168,3023259,'2013-01-02 02:46:40',NULL),(1,242,3023259,'2013-01-02 02:46:40',NULL),(1,10,3023259,'2013-01-02 02:46:40',NULL),(1,229,3023259,'2013-01-02 02:46:40',NULL),(1,230,3023259,'2013-01-02 02:46:40',NULL),(1,218,3023259,'2013-01-02 02:46:40',NULL),(1,66,3023259,'2013-01-02 02:46:40',NULL),(1,57,3023255,'2013-01-02 02:46:42',1),(1,33,3023255,'2013-01-02 02:46:42',1),(1,243,3023255,'2013-01-02 02:46:42',1),(1,193,3023255,'2013-01-02 02:46:42',1),(1,249,3023257,'2013-01-02 02:46:46',NULL),(1,137,3023257,'2013-01-02 02:46:46',NULL),(1,138,3023257,'2013-01-02 02:46:46',NULL),(1,89,3023257,'2013-01-02 02:46:46',NULL),(1,55,3023264,'2013-01-02 02:46:49',NULL),(1,168,3023264,'2013-01-02 02:46:49',NULL),(1,242,3023264,'2013-01-02 02:46:49',NULL),(1,10,3023264,'2013-01-02 02:46:49',NULL),(1,229,3023264,'2013-01-02 02:46:49',NULL),(1,230,3023264,'2013-01-02 02:46:49',NULL),(1,218,3023264,'2013-01-02 02:46:49',NULL),(1,66,3023264,'2013-01-02 02:46:49',NULL),(1,120,3023260,'2013-01-02 02:46:49',1),(1,123,3023260,'2013-01-02 02:46:49',1),(1,48,3023260,'2013-01-02 02:46:49',1),(1,220,3023260,'2013-01-02 02:46:49',1),(1,242,3023265,'2013-01-02 02:46:54',1),(1,55,3023261,'2013-01-02 02:46:55',NULL),(1,168,3023261,'2013-01-02 02:46:55',NULL),(1,242,3023261,'2013-01-02 02:46:55',NULL),(1,10,3023261,'2013-01-02 02:46:55',NULL),(1,229,3023261,'2013-01-02 02:46:55',NULL),(1,230,3023261,'2013-01-02 02:46:55',NULL),(1,218,3023261,'2013-01-02 02:46:55',NULL),(1,66,3023261,'2013-01-02 02:46:55',NULL),(1,55,3023262,'2013-01-02 02:46:57',1),(1,168,3023262,'2013-01-02 02:46:57',1),(1,249,3023248,'2013-01-02 02:46:59',NULL),(1,137,3023248,'2013-01-02 02:46:59',NULL),(1,138,3023248,'2013-01-02 02:46:59',NULL),(1,89,3023248,'2013-01-02 02:46:59',NULL),(1,120,3023248,'2013-01-02 02:46:59',NULL),(1,123,3023248,'2013-01-02 02:46:59',NULL),(1,48,3023248,'2013-01-02 02:46:59',NULL),(1,220,3023248,'2013-01-02 02:46:59',NULL),(1,57,3023248,'2013-01-02 02:46:59',NULL),(1,33,3023248,'2013-01-02 02:46:59',NULL),(1,243,3023248,'2013-01-02 02:46:59',NULL),(1,193,3023248,'2013-01-02 02:46:59',NULL),(1,172,3023248,'2013-01-02 02:46:59',NULL),(1,189,3023248,'2013-01-02 02:46:59',NULL),(1,74,3023248,'2013-01-02 02:46:59',NULL),(1,80,3023248,'2013-01-02 02:46:59',NULL),(1,57,3023263,'2013-01-02 02:47:02',1),(1,33,3023263,'2013-01-02 02:47:02',1),(1,243,3023263,'2013-01-02 02:47:02',1),(1,193,3023263,'2013-01-02 02:47:02',1),(1,249,3023258,'2013-01-02 02:47:03',NULL),(1,137,3023258,'2013-01-02 02:47:03',NULL),(1,138,3023258,'2013-01-02 02:47:03',NULL),(1,89,3023258,'2013-01-02 02:47:03',NULL),(1,120,3023258,'2013-01-02 02:47:03',NULL),(1,123,3023258,'2013-01-02 02:47:03',NULL),(1,48,3023258,'2013-01-02 02:47:03',NULL),(1,220,3023258,'2013-01-02 02:47:03',NULL),(1,172,3023256,'2013-01-02 03:16:49',NULL),(1,189,3023256,'2013-01-02 03:16:49',NULL),(1,74,3023256,'2013-01-02 03:16:49',NULL),(1,80,3023256,'2013-01-02 03:16:49',NULL),(1,4,3023339,'2013-01-02 03:46:17',1),(1,4,3023341,'2013-01-02 03:46:18',1),(1,160,3023356,'2013-01-02 03:46:18',1),(1,4,3023356,'2013-01-02 03:46:18',1),(1,160,3023346,'2013-01-02 03:46:21',1),(1,160,3023344,'2013-01-02 03:46:22',NULL),(1,4,3023344,'2013-01-02 03:46:22',NULL),(1,90,3023340,'2013-01-02 03:46:25',1),(1,224,3023340,'2013-01-02 03:46:25',1),(1,6,3023340,'2013-01-02 03:46:25',1),(1,4,3023340,'2013-01-02 03:46:25',1),(1,249,3023354,'2013-01-02 03:46:31',NULL),(1,246,3023354,'2013-01-02 03:46:31',NULL),(1,137,3023354,'2013-01-02 03:46:31',NULL),(1,138,3023354,'2013-01-02 03:46:31',NULL),(1,89,3023354,'2013-01-02 03:46:31',NULL),(1,120,3023354,'2013-01-02 03:46:31',NULL),(1,123,3023354,'2013-01-02 03:46:31',NULL),(1,48,3023354,'2013-01-02 03:46:31',NULL),(1,245,3023354,'2013-01-02 03:46:31',NULL),(1,220,3023354,'2013-01-02 03:46:31',NULL),(1,57,3023354,'2013-01-02 03:46:31',NULL),(1,111,3023354,'2013-01-02 03:46:31',NULL),(1,165,3023354,'2013-01-02 03:46:31',NULL),(1,33,3023354,'2013-01-02 03:46:31',NULL),(1,243,3023354,'2013-01-02 03:46:31',NULL),(1,193,3023354,'2013-01-02 03:46:31',NULL),(1,55,3023357,'2013-01-02 03:46:34',NULL),(1,168,3023357,'2013-01-02 03:46:34',NULL),(1,242,3023357,'2013-01-02 03:46:34',NULL),(1,10,3023357,'2013-01-02 03:46:34',NULL),(1,229,3023357,'2013-01-02 03:46:34',NULL),(1,230,3023357,'2013-01-02 03:46:34',NULL),(1,218,3023357,'2013-01-02 03:46:34',NULL),(1,66,3023357,'2013-01-02 03:46:34',NULL),(1,55,3023358,'2013-01-02 03:46:35',NULL),(1,168,3023358,'2013-01-02 03:46:35',NULL),(1,242,3023358,'2013-01-02 03:46:35',NULL),(1,10,3023358,'2013-01-02 03:46:35',NULL),(1,229,3023358,'2013-01-02 03:46:35',NULL),(1,230,3023358,'2013-01-02 03:46:35',NULL),(1,218,3023358,'2013-01-02 03:46:35',NULL),(1,66,3023358,'2013-01-02 03:46:35',NULL),(1,15,3023360,'2013-01-02 03:46:41',NULL),(1,90,3023360,'2013-01-02 03:46:41',NULL),(1,224,3023360,'2013-01-02 03:46:41',NULL),(1,6,3023360,'2013-01-02 03:46:41',NULL),(1,249,3023361,'2013-01-02 03:46:43',1),(1,246,3023361,'2013-01-02 03:46:43',1),(1,137,3023361,'2013-01-02 03:46:43',1),(1,138,3023361,'2013-01-02 03:46:43',1),(1,89,3023361,'2013-01-02 03:46:43',1),(1,120,3023361,'2013-01-02 03:46:43',1),(1,123,3023361,'2013-01-02 03:46:43',1),(1,48,3023361,'2013-01-02 03:46:43',1),(1,15,3023362,'2013-01-02 03:46:44',NULL),(1,90,3023362,'2013-01-02 03:46:44',NULL),(1,224,3023362,'2013-01-02 03:46:44',NULL),(1,6,3023362,'2013-01-02 03:46:44',NULL),(1,172,3023347,'2013-01-02 03:46:50',NULL),(1,189,3023347,'2013-01-02 03:46:50',NULL),(1,17,3023347,'2013-01-02 03:46:50',NULL),(1,144,3023347,'2013-01-02 03:46:50',NULL),(1,8,3023347,'2013-01-02 03:46:50',NULL),(1,74,3023347,'2013-01-02 03:46:50',NULL),(1,80,3023347,'2013-01-02 03:46:50',NULL),(1,252,3023347,'2013-01-02 03:46:50',NULL),(1,55,3023347,'2013-01-02 03:46:50',NULL),(1,168,3023347,'2013-01-02 03:46:50',NULL),(1,242,3023347,'2013-01-02 03:46:50',NULL),(1,10,3023347,'2013-01-02 03:46:50',NULL),(1,229,3023347,'2013-01-02 03:46:50',NULL),(1,230,3023347,'2013-01-02 03:46:50',NULL),(1,218,3023347,'2013-01-02 03:46:50',NULL),(1,66,3023347,'2013-01-02 03:46:50',NULL),(1,15,3023351,'2013-01-02 03:46:58',NULL),(1,55,3023351,'2013-01-02 03:46:58',NULL),(1,168,3023351,'2013-01-02 03:46:58',NULL),(1,242,3023351,'2013-01-02 03:46:58',NULL),(1,10,3023351,'2013-01-02 03:46:58',NULL),(1,229,3023351,'2013-01-02 03:46:58',NULL),(1,230,3023351,'2013-01-02 03:46:58',NULL),(1,218,3023351,'2013-01-02 03:46:58',NULL),(1,249,3023350,'2013-01-02 03:46:58',1),(1,246,3023350,'2013-01-02 03:46:58',1),(1,137,3023350,'2013-01-02 03:46:58',1),(1,138,3023350,'2013-01-02 03:46:58',1),(1,89,3023350,'2013-01-02 03:46:58',1),(1,120,3023350,'2013-01-02 03:46:58',1),(1,123,3023350,'2013-01-02 03:46:58',1),(1,48,3023350,'2013-01-02 03:46:58',1),(1,245,3023350,'2013-01-02 03:46:58',1),(1,220,3023350,'2013-01-02 03:46:58',1),(1,57,3023350,'2013-01-02 03:46:58',1),(1,111,3023350,'2013-01-02 03:46:58',1),(1,165,3023350,'2013-01-02 03:46:58',1),(1,33,3023350,'2013-01-02 03:46:58',1),(1,243,3023350,'2013-01-02 03:46:58',1),(1,193,3023350,'2013-01-02 03:46:58',1),(1,7,3023353,'2013-01-02 03:47:05',1),(1,172,3023342,'2013-01-02 04:16:20',NULL),(1,189,3023342,'2013-01-02 04:16:20',NULL),(1,17,3023342,'2013-01-02 04:16:20',NULL),(1,144,3023342,'2013-01-02 04:16:20',NULL),(1,8,3023342,'2013-01-02 04:16:20',NULL),(1,74,3023342,'2013-01-02 04:16:20',NULL),(1,80,3023342,'2013-01-02 04:16:20',NULL),(1,252,3023342,'2013-01-02 04:16:20',NULL),(1,160,3023363,'2013-01-02 04:16:28',NULL),(1,4,3023363,'2013-01-02 04:16:28',NULL),(1,15,3023355,'2013-01-02 04:16:35',1),(1,55,3023355,'2013-01-02 04:16:35',1),(1,7,3023343,'2013-01-02 04:16:51',1),(1,10,3023343,'2013-01-02 04:16:51',1),(1,66,3023345,'2013-01-02 04:16:52',1),(1,90,3023345,'2013-01-02 04:16:52',1),(1,224,3023345,'2013-01-02 04:16:52',1),(1,6,3023345,'2013-01-02 04:16:52',1),(1,249,3023348,'2013-01-02 04:16:56',1),(1,246,3023348,'2013-01-02 04:16:56',1),(1,137,3023348,'2013-01-02 04:16:56',1),(1,138,3023348,'2013-01-02 04:16:56',1),(1,245,3023349,'2013-01-02 04:16:59',1),(1,220,3023349,'2013-01-02 04:16:59',1),(1,57,3023349,'2013-01-02 04:16:59',1),(1,111,3023349,'2013-01-02 04:16:59',1),(1,165,3023349,'2013-01-02 04:16:59',1),(1,33,3023349,'2013-01-02 04:16:59',1),(1,243,3023349,'2013-01-02 04:16:59',1),(1,193,3023349,'2013-01-02 04:16:59',1),(1,89,3023352,'2013-01-02 04:17:05',1),(1,120,3023352,'2013-01-02 04:17:05',1),(1,123,3023352,'2013-01-02 04:17:05',1),(1,48,3023352,'2013-01-02 04:17:05',1),(1,168,3023359,'2013-01-02 04:46:44',NULL),(1,242,3023359,'2013-01-02 04:46:44',NULL),(1,93,3023719,'2013-01-02 15:54:59',1),(1,167,3023721,'2013-01-02 15:58:54',1),(1,84,3023721,'2013-01-02 15:58:54',1),(1,8,3023721,'2013-01-02 15:58:54',1),(1,74,3023721,'2013-01-02 15:58:54',1),(1,173,3023721,'2013-01-02 15:58:54',1),(1,101,3023721,'2013-01-02 15:58:54',1),(1,116,3023721,'2013-01-02 15:58:54',1),(1,15,3023721,'2013-01-02 15:58:54',1),(1,56,3023720,'2013-01-02 15:58:54',1),(1,91,3023720,'2013-01-02 15:58:54',1),(1,93,3023723,'2013-01-02 15:58:54',1),(1,129,3023723,'2013-01-02 15:58:54',1),(1,55,3023723,'2013-01-02 15:58:54',1),(1,65,3023723,'2013-01-02 15:58:54',1),(1,129,3023722,'2013-01-02 15:58:54',1),(1,6,3023401,'2013-01-03 00:46:16',1),(1,4,3023401,'2013-01-03 00:46:16',1),(1,122,3023403,'2013-01-03 00:46:16',1),(1,124,3023403,'2013-01-03 00:46:16',1),(1,13,3023403,'2013-01-03 00:46:16',1),(1,228,3023403,'2013-01-03 00:46:16',1),(1,6,3023402,'2013-01-03 00:46:16',1),(1,4,3023402,'2013-01-03 00:46:16',1),(1,122,3023404,'2013-01-03 00:46:16',1),(1,124,3023404,'2013-01-03 00:46:16',1),(1,13,3023404,'2013-01-03 00:46:16',1),(1,228,3023404,'2013-01-03 00:46:16',1),(1,13,3023405,'2013-01-03 00:46:24',1),(1,122,3023407,'2013-01-03 00:46:24',1),(1,124,3023407,'2013-01-03 00:46:24',1),(1,13,3023407,'2013-01-03 00:46:24',1),(1,228,3023407,'2013-01-03 00:46:24',1),(1,122,3023412,'2013-01-03 00:46:32',1),(1,124,3023412,'2013-01-03 00:46:32',1),(1,13,3023412,'2013-01-03 00:46:32',1),(1,228,3023412,'2013-01-03 00:46:32',1),(1,6,3023413,'2013-01-03 00:46:39',1),(1,4,3023413,'2013-01-03 00:46:39',1),(1,122,3023415,'2013-01-03 00:46:39',1),(1,124,3023415,'2013-01-03 00:46:39',1),(1,122,3023414,'2013-01-03 00:46:39',1),(1,124,3023414,'2013-01-03 00:46:39',1),(1,13,3023414,'2013-01-03 00:46:39',1),(1,228,3023414,'2013-01-03 00:46:39',1),(1,6,3023400,'2013-01-03 00:46:39',1),(1,4,3023400,'2013-01-03 00:46:39',1),(1,6,3023416,'2013-01-03 00:46:47',1),(1,228,3023417,'2013-01-03 00:46:47',1),(1,122,3023418,'2013-01-03 00:46:47',1),(1,4,3023419,'2013-01-03 00:46:52',1),(1,6,3023505,'2013-01-03 01:46:11',1),(1,6,3023507,'2013-01-03 01:46:11',1),(1,4,3023507,'2013-01-03 01:46:11',1),(1,6,3023502,'2013-01-03 01:46:19',1),(1,4,3023502,'2013-01-03 01:46:19',1),(1,4,3023500,'2013-01-03 01:46:19',1),(1,26,3023593,'2013-01-03 02:46:11',1),(1,6,3023593,'2013-01-03 02:46:11',1),(1,26,3023579,'2013-01-03 02:46:12',1),(1,104,3023579,'2013-01-03 02:46:12',1),(1,26,3023506,'2013-01-03 02:46:15',1),(1,201,3023506,'2013-01-03 02:46:15',1),(1,104,3023506,'2013-01-03 02:46:15',1),(1,6,3023506,'2013-01-03 02:46:15',1),(1,4,3023591,'2013-01-03 02:46:19',1),(1,26,3023503,'2013-01-03 02:46:23',1),(1,201,3023503,'2013-01-03 02:46:23',1),(1,104,3023503,'2013-01-03 02:46:23',1),(1,6,3023503,'2013-01-03 02:46:23',1),(1,6,3023583,'2013-01-03 02:46:27',1),(1,26,3023580,'2013-01-03 02:46:36',1),(1,104,3023580,'2013-01-03 02:46:36',1),(1,6,3023581,'2013-01-03 02:46:44',1),(1,4,3023581,'2013-01-03 02:46:44',1),(1,4,3023582,'2013-01-03 02:46:44',1),(1,26,3023595,'2013-01-03 03:16:16',1),(1,201,3023595,'2013-01-03 03:16:16',1),(1,104,3023595,'2013-01-03 03:16:16',1),(1,6,3023595,'2013-01-03 03:16:16',1),(1,26,3023590,'2013-01-03 03:16:21',1),(1,201,3023590,'2013-01-03 03:16:21',1),(1,104,3023590,'2013-01-03 03:16:21',1),(1,6,3023590,'2013-01-03 03:16:21',1),(1,4,3023669,'2013-01-03 03:46:11',1),(1,4,3023689,'2013-01-03 03:46:11',1),(1,149,3023668,'2013-01-03 03:46:11',1),(1,4,3023668,'2013-01-03 03:46:11',1),(1,26,3023586,'2013-01-03 03:46:32',NULL),(1,201,3023586,'2013-01-03 03:46:32',NULL),(1,104,3023586,'2013-01-03 03:46:32',NULL),(1,6,3023586,'2013-01-03 03:46:32',NULL),(1,26,3023585,'2013-01-03 03:46:32',1),(1,201,3023585,'2013-01-03 03:46:32',1),(1,104,3023585,'2013-01-03 03:46:32',1),(1,6,3023585,'2013-01-03 03:46:32',1),(1,26,3023587,'2013-01-03 03:46:40',1),(1,201,3023587,'2013-01-03 03:46:40',1),(1,104,3023587,'2013-01-03 03:46:40',1),(1,6,3023587,'2013-01-03 03:46:40',1),(1,26,3023672,'2013-01-03 04:16:21',1),(1,201,3023672,'2013-01-03 04:16:21',1),(1,104,3023672,'2013-01-03 04:16:21',1),(1,6,3023672,'2013-01-03 04:16:21',1),(1,26,3023674,'2013-01-03 04:16:25',1),(1,201,3023674,'2013-01-03 04:16:25',1),(1,104,3023674,'2013-01-03 04:16:25',1),(1,6,3023674,'2013-01-03 04:16:25',1),(1,149,3023691,'2013-01-03 04:16:37',1),(1,4,3023691,'2013-01-03 04:16:37',1),(1,149,3023681,'2013-01-03 04:16:38',1),(1,4,3023681,'2013-01-03 04:16:38',1),(1,149,3023684,'2013-01-03 04:16:48',1),(1,4,3023684,'2013-01-03 04:16:48',1),(1,149,3023688,'2013-01-03 04:16:54',1),(1,4,3023688,'2013-01-03 04:16:54',1),(1,149,3023671,'2013-01-03 04:17:02',1),(1,4,3023671,'2013-01-03 04:17:02',1),(1,149,3023690,'2013-01-03 04:46:25',1),(1,26,3023678,'2013-01-03 04:46:32',1),(1,201,3023678,'2013-01-03 04:46:32',1),(1,104,3023678,'2013-01-03 04:46:32',1),(1,6,3023678,'2013-01-03 04:46:32',1),(1,4,3023679,'2013-01-03 04:46:39',1),(1,149,3023692,'2013-01-03 04:46:48',1),(1,26,3023692,'2013-01-03 04:46:48',1),(1,201,3023692,'2013-01-03 04:46:48',1),(1,104,3023692,'2013-01-03 04:46:48',1),(1,149,3023685,'2013-01-03 04:46:51',1),(1,26,3023685,'2013-01-03 04:46:51',1),(1,201,3023685,'2013-01-03 04:46:51',1),(1,104,3023685,'2013-01-03 04:46:51',1),(1,149,3023687,'2013-01-03 04:46:56',1),(1,26,3023687,'2013-01-03 04:46:56',1),(1,201,3023687,'2013-01-03 04:46:56',1),(1,104,3023687,'2013-01-03 04:46:56',1),(1,36,3023594,'2013-01-03 13:46:56',NULL),(1,85,3023594,'2013-01-03 13:46:56',NULL),(1,86,3023594,'2013-01-03 13:46:56',NULL),(1,115,3023594,'2013-01-03 13:46:56',NULL),(1,226,3023594,'2013-01-03 13:46:56',NULL),(1,15,3023594,'2013-01-03 13:46:56',NULL),(1,142,3023594,'2013-01-03 13:46:56',NULL),(1,102,3023594,'2013-01-03 13:46:56',NULL),(1,231,3023594,'2013-01-03 13:46:56',NULL),(1,216,3023594,'2013-01-03 13:46:56',NULL),(1,155,3023594,'2013-01-03 13:46:56',NULL),(1,158,3023594,'2013-01-03 13:46:56',NULL),(1,98,3023594,'2013-01-03 13:46:56',NULL),(1,235,3023594,'2013-01-03 13:46:56',NULL),(1,194,3023594,'2013-01-03 13:46:56',NULL),(1,111,3023594,'2013-01-03 13:46:56',NULL),(1,199,3023406,'2013-01-03 13:47:18',1),(1,56,3023406,'2013-01-03 13:47:18',1),(1,127,3023406,'2013-01-03 13:47:18',1),(1,71,3023406,'2013-01-03 13:47:18',1),(1,44,3023406,'2013-01-03 13:47:18',1),(1,45,3023406,'2013-01-03 13:47:18',1),(1,12,3023406,'2013-01-03 13:47:18',1),(1,154,3023406,'2013-01-03 13:47:18',1),(1,28,3023589,'2013-01-03 13:47:27',1),(1,162,3023589,'2013-01-03 13:47:27',1),(1,46,3023589,'2013-01-03 13:47:27',1),(1,186,3023589,'2013-01-03 13:47:27',1),(1,57,3023589,'2013-01-03 13:47:27',1),(1,161,3023589,'2013-01-03 13:47:27',1),(1,58,3023589,'2013-01-03 13:47:27',1),(1,1,3023589,'2013-01-03 13:47:27',1),(1,199,3023677,'2013-01-03 14:17:13',1),(1,56,3023677,'2013-01-03 14:17:13',1),(1,46,3023677,'2013-01-03 14:17:13',1),(1,186,3023677,'2013-01-03 14:17:13',1),(1,57,3023677,'2013-01-03 14:17:13',1),(1,161,3023677,'2013-01-03 14:17:13',1),(1,58,3023677,'2013-01-03 14:17:13',1),(1,1,3023677,'2013-01-03 14:17:13',1),(1,1,3023408,'2013-01-03 14:17:23',1),(1,109,3023408,'2013-01-03 14:17:23',1),(1,36,3023408,'2013-01-03 14:17:23',1),(1,85,3023408,'2013-01-03 14:17:23',1),(1,86,3023408,'2013-01-03 14:17:23',1),(1,115,3023408,'2013-01-03 14:17:23',1),(1,55,3023408,'2013-01-03 14:17:23',1),(1,65,3023408,'2013-01-03 14:17:23',1),(1,226,3023686,'2013-01-03 14:17:38',NULL),(1,15,3023686,'2013-01-03 14:17:38',NULL),(1,142,3023686,'2013-01-03 14:17:38',NULL),(1,102,3023686,'2013-01-03 14:17:38',NULL),(1,231,3023686,'2013-01-03 14:17:38',NULL),(1,216,3023686,'2013-01-03 14:17:38',NULL),(1,194,3023686,'2013-01-03 14:17:38',NULL),(1,111,3023686,'2013-01-03 14:17:38',NULL),(1,1,3023411,'2013-01-03 14:17:38',1),(1,109,3023411,'2013-01-03 14:17:38',1),(1,36,3023411,'2013-01-03 14:17:38',1),(1,85,3023411,'2013-01-03 14:17:38',1),(1,86,3023411,'2013-01-03 14:17:38',1),(1,115,3023411,'2013-01-03 14:17:38',1),(1,55,3023411,'2013-01-03 14:17:38',1),(1,65,3023411,'2013-01-03 14:17:38',1),(1,231,3023584,'2013-01-03 15:17:19',NULL),(1,123,3023584,'2013-01-03 15:17:19',NULL),(1,18,3023584,'2013-01-03 15:17:19',NULL),(1,48,3023584,'2013-01-03 15:17:19',NULL),(1,245,3023584,'2013-01-03 15:17:19',NULL),(1,220,3023584,'2013-01-03 15:17:19',NULL),(1,197,3023584,'2013-01-03 15:17:19',NULL),(1,126,3023584,'2013-01-03 15:17:19',NULL),(1,79,3023584,'2013-01-03 15:17:19',NULL),(1,40,3023584,'2013-01-03 15:17:19',NULL),(1,170,3023584,'2013-01-03 15:17:19',NULL),(1,225,3023584,'2013-01-03 15:17:19',NULL),(1,146,3023584,'2013-01-03 15:17:19',NULL),(1,239,3023584,'2013-01-03 15:17:19',NULL),(1,43,3023584,'2013-01-03 15:17:19',NULL),(1,44,3023584,'2013-01-03 15:17:19',NULL),(1,40,3023596,'2013-01-03 15:47:13',1),(1,225,3023596,'2013-01-03 15:47:13',1),(1,239,3023596,'2013-01-03 15:47:13',1),(1,127,3023596,'2013-01-03 15:47:13',1),(1,71,3023596,'2013-01-03 15:47:13',1),(1,44,3023596,'2013-01-03 15:47:13',1),(1,12,3023596,'2013-01-03 15:47:13',1),(1,56,3023596,'2013-01-03 15:47:13',1),(1,91,3023501,'2013-01-03 15:47:13',1),(1,51,3023501,'2013-01-03 15:47:13',1),(1,235,3023501,'2013-01-03 15:47:13',1),(1,194,3023501,'2013-01-03 15:47:13',1),(1,111,3023501,'2013-01-03 15:47:13',1),(1,161,3023501,'2013-01-03 15:47:13',1),(1,58,3023501,'2013-01-03 15:47:13',1),(1,117,3023501,'2013-01-03 15:47:13',1),(1,91,3023592,'2013-01-03 15:47:14',1),(1,186,3023592,'2013-01-03 15:47:14',1),(1,155,3023592,'2013-01-03 15:47:14',1),(1,51,3023592,'2013-01-03 15:47:14',1),(1,235,3023592,'2013-01-03 15:47:14',1),(1,194,3023592,'2013-01-03 15:47:14',1),(1,111,3023592,'2013-01-03 15:47:14',1),(1,161,3023592,'2013-01-03 15:47:14',1),(1,91,3023504,'2013-01-03 15:47:22',1),(1,186,3023504,'2013-01-03 15:47:22',1),(1,155,3023504,'2013-01-03 15:47:22',1),(1,51,3023504,'2013-01-03 15:47:22',1),(1,235,3023504,'2013-01-03 15:47:22',1),(1,194,3023504,'2013-01-03 15:47:22',1),(1,111,3023504,'2013-01-03 15:47:22',1),(1,161,3023504,'2013-01-03 15:47:22',1),(1,117,3023409,'2013-01-03 15:47:40',1),(1,231,3023409,'2013-01-03 15:47:40',1),(1,199,3023409,'2013-01-03 15:47:40',1),(1,158,3023409,'2013-01-03 15:47:40',1),(1,98,3023409,'2013-01-03 15:47:40',1),(1,57,3023409,'2013-01-03 15:47:40',1),(1,51,3023409,'2013-01-03 15:47:40',1),(1,235,3023409,'2013-01-03 15:47:40',1),(1,117,3023410,'2013-01-03 15:47:40',1),(1,231,3023410,'2013-01-03 15:47:40',1),(1,199,3023410,'2013-01-03 15:47:40',1),(1,158,3023410,'2013-01-03 15:47:40',1),(1,98,3023410,'2013-01-03 15:47:40',1),(1,57,3023410,'2013-01-03 15:47:40',1),(1,51,3023410,'2013-01-03 15:47:40',1),(1,235,3023410,'2013-01-03 15:47:40',1),(1,16,3023670,'2013-01-03 16:17:03',1),(1,227,3023670,'2013-01-03 16:17:03',1),(1,237,3023670,'2013-01-03 16:17:03',1),(1,246,3023670,'2013-01-03 16:17:03',1),(1,137,3023670,'2013-01-03 16:17:03',1),(1,97,3023670,'2013-01-03 16:17:03',1),(1,89,3023670,'2013-01-03 16:17:03',1),(1,197,3023670,'2013-01-03 16:17:03',1),(1,91,3023673,'2013-01-03 16:17:11',1),(1,154,3023673,'2013-01-03 16:17:11',1),(1,28,3023673,'2013-01-03 16:17:11',1),(1,162,3023673,'2013-01-03 16:17:11',1),(1,186,3023673,'2013-01-03 16:17:11',1),(1,155,3023673,'2013-01-03 16:17:11',1),(1,158,3023673,'2013-01-03 16:17:11',1),(1,98,3023673,'2013-01-03 16:17:11',1),(1,57,3023673,'2013-01-03 16:17:11',1),(1,51,3023673,'2013-01-03 16:17:11',1),(1,235,3023673,'2013-01-03 16:17:11',1),(1,194,3023673,'2013-01-03 16:17:11',1),(1,111,3023673,'2013-01-03 16:17:11',1),(1,161,3023673,'2013-01-03 16:17:11',1),(1,117,3023673,'2013-01-03 16:17:11',1),(1,56,3023673,'2013-01-03 16:17:11',1),(1,183,3023675,'2013-01-03 16:17:21',1),(1,119,3023675,'2013-01-03 16:17:21',1),(1,136,3023675,'2013-01-03 16:17:21',1),(1,138,3023675,'2013-01-03 16:17:21',1),(1,139,3023675,'2013-01-03 16:17:21',1),(1,121,3023675,'2013-01-03 16:17:21',1),(1,11,3023675,'2013-01-03 16:17:21',1),(1,123,3023675,'2013-01-03 16:17:21',1),(1,94,3023676,'2013-01-03 16:17:21',1),(1,160,3023676,'2013-01-03 16:17:21',1),(1,133,3023676,'2013-01-03 16:17:21',1),(1,244,3023676,'2013-01-03 16:17:21',1),(1,88,3023676,'2013-01-03 16:17:21',1),(1,25,3023676,'2013-01-03 16:17:21',1),(1,125,3023676,'2013-01-03 16:17:21',1),(1,18,3023676,'2013-01-03 16:17:21',1),(1,48,3023676,'2013-01-03 16:17:21',1),(1,245,3023676,'2013-01-03 16:17:21',1),(1,220,3023676,'2013-01-03 16:17:21',1),(1,79,3023676,'2013-01-03 16:17:21',1),(1,225,3023676,'2013-01-03 16:17:21',1),(1,239,3023676,'2013-01-03 16:17:21',1),(1,43,3023676,'2013-01-03 16:17:21',1),(1,127,3023676,'2013-01-03 16:17:21',1),(1,44,3023588,'2013-01-03 16:17:34',NULL),(1,12,3023588,'2013-01-03 16:17:34',NULL),(1,46,3023588,'2013-01-03 16:17:34',NULL),(1,58,3023588,'2013-01-03 16:17:34',NULL),(1,75,3023588,'2013-01-03 16:17:34',NULL),(1,231,3023588,'2013-01-03 16:17:34',NULL),(1,216,3023588,'2013-01-03 16:17:34',NULL),(1,199,3023588,'2013-01-03 16:17:34',NULL),(1,91,3023680,'2013-01-03 16:47:28',1),(1,126,3023680,'2013-01-03 16:47:28',1),(1,40,3023680,'2013-01-03 16:47:28',1),(1,170,3023680,'2013-01-03 16:47:28',1),(1,146,3023680,'2013-01-03 16:47:28',1),(1,21,3023680,'2013-01-03 16:47:28',1),(1,71,3023680,'2013-01-03 16:47:28',1),(1,45,3023680,'2013-01-03 16:47:28',1),(1,154,3023680,'2013-01-03 16:47:28',1),(1,28,3023680,'2013-01-03 16:47:28',1),(1,162,3023680,'2013-01-03 16:47:28',1),(1,186,3023680,'2013-01-03 16:47:28',1),(1,155,3023680,'2013-01-03 16:47:28',1),(1,158,3023680,'2013-01-03 16:47:28',1),(1,98,3023680,'2013-01-03 16:47:28',1),(1,57,3023680,'2013-01-03 16:47:28',1),(1,44,3023683,'2013-01-03 16:47:40',1),(1,12,3023683,'2013-01-03 16:47:40',1),(1,46,3023683,'2013-01-03 16:47:40',1),(1,51,3023683,'2013-01-03 16:47:40',1),(1,235,3023683,'2013-01-03 16:47:40',1),(1,194,3023683,'2013-01-03 16:47:40',1),(1,111,3023683,'2013-01-03 16:47:40',1),(1,161,3023683,'2013-01-03 16:47:40',1),(1,87,3023682,'2013-01-03 17:47:54',NULL),(1,117,3023682,'2013-01-03 17:47:54',NULL),(1,75,3023682,'2013-01-03 17:47:54',NULL),(1,231,3023682,'2013-01-03 17:47:54',NULL),(1,216,3023682,'2013-01-03 17:47:54',NULL),(1,199,3023682,'2013-01-03 17:47:54',NULL),(1,56,3023682,'2013-01-03 17:47:54',NULL),(1,91,3023682,'2013-01-03 17:47:54',NULL),(1,87,3023744,'2013-01-04 00:46:14',1),(1,231,3023744,'2013-01-04 00:46:14',1),(1,227,3023744,'2013-01-04 00:46:14',1),(1,6,3023744,'2013-01-04 00:46:14',1),(1,4,3023746,'2013-01-04 00:46:14',1),(1,227,3023743,'2013-01-04 00:46:14',1),(1,4,3023743,'2013-01-04 00:46:14',1),(1,87,3023745,'2013-01-04 00:46:14',1),(1,231,3023745,'2013-01-04 00:46:14',1),(1,56,3023745,'2013-01-04 00:46:14',1),(1,227,3023745,'2013-01-04 00:46:14',1),(1,227,3023749,'2013-01-04 00:46:21',1),(1,169,3023749,'2013-01-04 00:46:21',1),(1,73,3023749,'2013-01-04 00:46:21',1),(1,87,3023749,'2013-01-04 00:46:21',1),(1,231,3023749,'2013-01-04 00:46:21',1),(1,198,3023749,'2013-01-04 00:46:21',1),(1,56,3023749,'2013-01-04 00:46:21',1),(1,6,3023749,'2013-01-04 00:46:21',1),(1,227,3023747,'2013-01-04 00:46:22',1),(1,169,3023747,'2013-01-04 00:46:22',1),(1,73,3023747,'2013-01-04 00:46:22',1),(1,87,3023747,'2013-01-04 00:46:22',1),(1,231,3023747,'2013-01-04 00:46:22',1),(1,198,3023747,'2013-01-04 00:46:22',1),(1,56,3023747,'2013-01-04 00:46:22',1),(1,6,3023747,'2013-01-04 00:46:22',1),(1,169,3023748,'2013-01-04 00:46:22',1),(1,87,3023748,'2013-01-04 00:46:22',1),(1,231,3023748,'2013-01-04 00:46:22',1),(1,56,3023748,'2013-01-04 00:46:22',1),(1,227,3023750,'2013-01-04 00:46:22',1),(1,169,3023750,'2013-01-04 00:46:22',1),(1,73,3023750,'2013-01-04 00:46:22',1),(1,87,3023750,'2013-01-04 00:46:22',1),(1,231,3023750,'2013-01-04 00:46:22',1),(1,56,3023750,'2013-01-04 00:46:22',1),(1,6,3023750,'2013-01-04 00:46:22',1),(1,4,3023750,'2013-01-04 00:46:22',1),(1,227,3023751,'2013-01-04 00:46:30',1),(1,169,3023751,'2013-01-04 00:46:30',1),(1,73,3023751,'2013-01-04 00:46:30',1),(1,87,3023751,'2013-01-04 00:46:30',1),(1,231,3023751,'2013-01-04 00:46:30',1),(1,198,3023751,'2013-01-04 00:46:30',1),(1,56,3023751,'2013-01-04 00:46:30',1),(1,6,3023751,'2013-01-04 00:46:30',1),(1,227,3023752,'2013-01-04 00:46:30',1),(1,169,3023752,'2013-01-04 00:46:30',1),(1,73,3023752,'2013-01-04 00:46:30',1),(1,87,3023752,'2013-01-04 00:46:30',1),(1,231,3023752,'2013-01-04 00:46:30',1),(1,198,3023752,'2013-01-04 00:46:30',1),(1,56,3023752,'2013-01-04 00:46:30',1),(1,6,3023752,'2013-01-04 00:46:30',1),(1,227,3023753,'2013-01-04 00:46:30',1),(1,98,3023753,'2013-01-04 00:46:30',1),(1,169,3023753,'2013-01-04 00:46:30',1),(1,73,3023753,'2013-01-04 00:46:30',1),(1,227,3023754,'2013-01-04 00:46:30',1),(1,98,3023754,'2013-01-04 00:46:30',1),(1,87,3023755,'2013-01-04 00:46:38',1),(1,231,3023755,'2013-01-04 00:46:38',1),(1,198,3023755,'2013-01-04 00:46:38',1),(1,56,3023755,'2013-01-04 00:46:38',1),(1,87,3023756,'2013-01-04 00:46:39',1),(1,231,3023756,'2013-01-04 00:46:39',1),(1,169,3023757,'2013-01-04 00:46:40',1),(1,73,3023757,'2013-01-04 00:46:40',1),(1,6,3023758,'2013-01-04 00:46:42',1),(1,6,3023759,'2013-01-04 00:46:47',1),(1,4,3023760,'2013-01-04 00:46:49',1),(1,4,3023761,'2013-01-04 00:46:49',1),(1,198,3023742,'2013-01-04 00:46:50',1),(1,56,3023742,'2013-01-04 00:46:50',1),(1,231,3023851,'2013-01-04 01:16:10',NULL),(1,6,3023851,'2013-01-04 01:16:10',NULL),(1,73,3023852,'2013-01-04 01:46:13',NULL),(1,231,3023852,'2013-01-04 01:46:13',NULL),(1,6,3023852,'2013-01-04 01:46:13',NULL),(1,4,3023852,'2013-01-04 01:46:13',NULL),(1,4,3023854,'2013-01-04 01:46:16',1),(1,231,3023856,'2013-01-04 01:46:20',NULL),(1,6,3023856,'2013-01-04 01:46:20',NULL),(1,73,3023855,'2013-01-04 01:46:20',NULL),(1,231,3023855,'2013-01-04 01:46:20',NULL),(1,49,3023855,'2013-01-04 01:46:20',NULL),(1,6,3023855,'2013-01-04 01:46:20',NULL),(1,4,3023857,'2013-01-04 01:46:20',1),(1,197,3023920,'2013-01-04 02:46:13',1),(1,231,3023922,'2013-01-04 02:46:16',NULL),(1,49,3023922,'2013-01-04 02:46:16',NULL),(1,137,3023922,'2013-01-04 02:46:16',NULL),(1,197,3023922,'2013-01-04 02:46:16',NULL),(1,91,3023853,'2013-01-04 02:46:20',1),(1,197,3023853,'2013-01-04 02:46:20',1),(1,170,3023853,'2013-01-04 02:46:20',1),(1,87,3023853,'2013-01-04 02:46:20',1),(1,75,3023853,'2013-01-04 02:46:20',1),(1,216,3023853,'2013-01-04 02:46:20',1),(1,6,3023853,'2013-01-04 02:46:20',1),(1,4,3023853,'2013-01-04 02:46:20',1),(1,216,3023924,'2013-01-04 02:46:21',1),(1,197,3023924,'2013-01-04 02:46:21',1),(1,170,3023924,'2013-01-04 02:46:21',1),(1,87,3023924,'2013-01-04 02:46:21',1),(1,216,3023927,'2013-01-04 02:46:28',1),(1,6,3023928,'2013-01-04 02:46:32',1),(1,4,3023928,'2013-01-04 02:46:32',1),(1,6,3023917,'2013-01-04 02:46:32',1),(1,4,3023917,'2013-01-04 02:46:32',1),(1,197,3023930,'2013-01-04 02:46:37',1),(1,6,3023930,'2013-01-04 02:46:37',1),(1,91,3023918,'2013-01-04 02:46:46',1),(1,216,3023918,'2013-01-04 02:46:46',1),(1,197,3023919,'2013-01-04 02:46:47',1),(1,76,3023923,'2013-01-04 03:16:20',NULL),(1,231,3023923,'2013-01-04 03:16:20',NULL),(1,49,3023923,'2013-01-04 03:16:20',NULL),(1,137,3023923,'2013-01-04 03:16:20',NULL),(1,231,3023933,'2013-01-04 03:16:28',NULL),(1,216,3023933,'2013-01-04 03:16:28',NULL),(1,6,3023933,'2013-01-04 03:16:28',NULL),(1,4,3023933,'2013-01-04 03:16:28',NULL),(1,91,3023925,'2013-01-04 03:16:31',1),(1,197,3023925,'2013-01-04 03:16:31',1),(1,170,3023925,'2013-01-04 03:16:31',1),(1,87,3023925,'2013-01-04 03:16:31',1),(1,75,3023925,'2013-01-04 03:16:31',1),(1,216,3023925,'2013-01-04 03:16:31',1),(1,6,3023925,'2013-01-04 03:16:31',1),(1,4,3023925,'2013-01-04 03:16:31',1),(1,49,3023934,'2013-01-04 03:16:33',1),(1,91,3023934,'2013-01-04 03:16:33',1),(1,137,3023934,'2013-01-04 03:16:33',1),(1,197,3023934,'2013-01-04 03:16:33',1),(1,170,3023934,'2013-01-04 03:16:33',1),(1,87,3023934,'2013-01-04 03:16:33',1),(1,75,3023934,'2013-01-04 03:16:33',1),(1,76,3023934,'2013-01-04 03:16:33',1),(1,91,3023850,'2013-01-04 03:16:34',1),(1,197,3023850,'2013-01-04 03:16:34',1),(1,170,3023850,'2013-01-04 03:16:34',1),(1,87,3023850,'2013-01-04 03:16:34',1),(1,75,3023850,'2013-01-04 03:16:34',1),(1,216,3023850,'2013-01-04 03:16:34',1),(1,6,3023850,'2013-01-04 03:16:34',1),(1,4,3023850,'2013-01-04 03:16:34',1),(1,49,3023932,'2013-01-04 03:16:41',1),(1,91,3023932,'2013-01-04 03:16:41',1),(1,137,3023932,'2013-01-04 03:16:41',1),(1,197,3023932,'2013-01-04 03:16:41',1),(1,170,3023932,'2013-01-04 03:16:41',1),(1,87,3023932,'2013-01-04 03:16:41',1),(1,75,3023932,'2013-01-04 03:16:41',1),(1,76,3023932,'2013-01-04 03:16:41',1),(1,216,3023926,'2013-01-04 03:16:45',1),(1,49,3023926,'2013-01-04 03:16:45',1),(1,91,3023926,'2013-01-04 03:16:45',1),(1,137,3023926,'2013-01-04 03:16:45',1),(1,197,3023926,'2013-01-04 03:16:45',1),(1,170,3023926,'2013-01-04 03:16:45',1),(1,87,3023926,'2013-01-04 03:16:45',1),(1,117,3023926,'2013-01-04 03:16:45',1),(1,231,3024005,'2013-01-04 03:46:11',NULL),(1,137,3024005,'2013-01-04 03:46:11',NULL),(1,197,3024005,'2013-01-04 03:46:11',NULL),(1,170,3024005,'2013-01-04 03:46:11',NULL),(1,111,3024005,'2013-01-04 03:46:11',NULL),(1,75,3024005,'2013-01-04 03:46:11',NULL),(1,76,3024005,'2013-01-04 03:46:11',NULL),(1,6,3024005,'2013-01-04 03:46:11',NULL),(1,4,3024006,'2013-01-04 03:46:11',1),(1,87,3024007,'2013-01-04 03:46:11',1),(1,117,3024007,'2013-01-04 03:46:11',1),(1,4,3024010,'2013-01-04 03:46:19',1),(1,137,3024008,'2013-01-04 03:46:20',1),(1,197,3024008,'2013-01-04 03:46:20',1),(1,170,3024008,'2013-01-04 03:46:20',1),(1,111,3024008,'2013-01-04 03:46:20',1),(1,87,3024016,'2013-01-04 03:46:28',1),(1,117,3024016,'2013-01-04 03:46:28',1),(1,4,3024017,'2013-01-04 03:46:33',1),(1,6,3024028,'2013-01-04 03:46:42',1),(1,4,3024028,'2013-01-04 03:46:42',1),(1,75,3023931,'2013-01-04 03:46:45',NULL),(1,76,3023931,'2013-01-04 03:46:45',NULL),(1,231,3023931,'2013-01-04 03:46:45',NULL),(1,6,3023931,'2013-01-04 03:46:45',NULL),(1,6,3024004,'2013-01-04 03:47:00',1),(1,76,3024012,'2013-01-04 04:16:22',NULL),(1,231,3024012,'2013-01-04 04:16:22',NULL),(1,137,3024012,'2013-01-04 04:16:22',NULL),(1,197,3024012,'2013-01-04 04:16:22',NULL),(1,170,3024012,'2013-01-04 04:16:22',NULL),(1,111,3024012,'2013-01-04 04:16:22',NULL),(1,169,3024012,'2013-01-04 04:16:22',NULL),(1,75,3024012,'2013-01-04 04:16:22',NULL),(1,75,3024014,'2013-01-04 04:16:30',NULL),(1,76,3024014,'2013-01-04 04:16:30',NULL),(1,231,3024014,'2013-01-04 04:16:30',NULL),(1,137,3024014,'2013-01-04 04:16:30',NULL),(1,197,3024014,'2013-01-04 04:16:30',NULL),(1,170,3024014,'2013-01-04 04:16:30',NULL),(1,111,3024014,'2013-01-04 04:16:30',NULL),(1,169,3024014,'2013-01-04 04:16:30',NULL),(1,87,3024015,'2013-01-04 04:16:30',1),(1,117,3024015,'2013-01-04 04:16:30',1),(1,6,3024015,'2013-01-04 04:16:30',1),(1,4,3024015,'2013-01-04 04:16:30',1),(1,131,3024019,'2013-01-04 04:16:42',1),(1,73,3024019,'2013-01-04 04:16:42',1),(1,87,3024022,'2013-01-04 04:16:50',1),(1,6,3024022,'2013-01-04 04:16:50',1),(1,87,3024023,'2013-01-04 04:16:52',1),(1,117,3024023,'2013-01-04 04:16:52',1),(1,6,3024023,'2013-01-04 04:16:52',1),(1,4,3024023,'2013-01-04 04:16:52',1),(1,87,3024025,'2013-01-04 04:16:56',1),(1,117,3024025,'2013-01-04 04:16:56',1),(1,6,3024025,'2013-01-04 04:16:56',1),(1,4,3024025,'2013-01-04 04:16:56',1),(1,227,3024026,'2013-01-04 04:16:59',1),(1,4,3024026,'2013-01-04 04:16:59',1),(1,117,3024020,'2013-01-04 04:17:02',1),(1,147,3024020,'2013-01-04 04:17:02',1),(1,87,3024020,'2013-01-04 04:17:02',1),(1,6,3024020,'2013-01-04 04:17:02',1),(1,75,3024021,'2013-01-04 05:16:51',NULL),(1,76,3024021,'2013-01-04 05:16:51',NULL),(1,231,3024021,'2013-01-04 05:16:51',NULL),(1,137,3024021,'2013-01-04 05:16:51',NULL),(1,197,3024021,'2013-01-04 05:16:51',NULL),(1,170,3024021,'2013-01-04 05:16:51',NULL),(1,111,3024021,'2013-01-04 05:16:51',NULL),(1,169,3024021,'2013-01-04 05:16:51',NULL),(1,117,3024011,'2013-01-04 05:17:08',NULL),(1,131,3024011,'2013-01-04 05:17:08',NULL),(1,147,3024011,'2013-01-04 05:17:08',NULL),(1,73,3024011,'2013-01-04 05:17:08',NULL),(1,227,3023921,'2013-01-04 05:47:42',NULL),(1,137,3023921,'2013-01-04 05:47:42',NULL),(1,197,3023921,'2013-01-04 05:47:42',NULL),(1,170,3023921,'2013-01-04 05:47:42',NULL),(1,147,3023921,'2013-01-04 05:47:42',NULL),(1,111,3023921,'2013-01-04 05:47:42',NULL),(1,169,3023921,'2013-01-04 05:47:42',NULL),(1,73,3023921,'2013-01-04 05:47:42',NULL),(1,87,3023921,'2013-01-04 05:47:42',NULL),(1,117,3023921,'2013-01-04 05:47:42',NULL),(1,75,3023921,'2013-01-04 05:47:42',NULL),(1,76,3023921,'2013-01-04 05:47:42',NULL),(1,231,3023921,'2013-01-04 05:47:42',NULL),(1,131,3023921,'2013-01-04 05:47:42',NULL),(1,6,3023921,'2013-01-04 05:47:42',NULL),(1,4,3023921,'2013-01-04 05:47:42',NULL),(1,227,3023929,'2013-01-04 05:47:52',NULL),(1,137,3023929,'2013-01-04 05:47:52',NULL),(1,197,3023929,'2013-01-04 05:47:52',NULL),(1,170,3023929,'2013-01-04 05:47:52',NULL),(1,147,3023929,'2013-01-04 05:47:52',NULL),(1,98,3023929,'2013-01-04 05:47:52',NULL),(1,111,3023929,'2013-01-04 05:47:52',NULL),(1,169,3023929,'2013-01-04 05:47:52',NULL),(1,73,3023929,'2013-01-04 05:47:52',NULL),(1,87,3023929,'2013-01-04 05:47:52',NULL),(1,117,3023929,'2013-01-04 05:47:52',NULL),(1,75,3023929,'2013-01-04 05:47:52',NULL),(1,130,3023929,'2013-01-04 05:47:52',NULL),(1,76,3023929,'2013-01-04 05:47:52',NULL),(1,231,3023929,'2013-01-04 05:47:52',NULL),(1,131,3023929,'2013-01-04 05:47:52',NULL),(1,227,3024009,'2013-01-04 06:48:31',NULL),(1,137,3024009,'2013-01-04 06:48:31',NULL),(1,197,3024009,'2013-01-04 06:48:31',NULL),(1,170,3024009,'2013-01-04 06:48:31',NULL),(1,147,3024009,'2013-01-04 06:48:31',NULL),(1,98,3024009,'2013-01-04 06:48:31',NULL),(1,111,3024009,'2013-01-04 06:48:31',NULL),(1,169,3024009,'2013-01-04 06:48:31',NULL),(1,73,3024009,'2013-01-04 06:48:31',NULL),(1,87,3024009,'2013-01-04 06:48:31',NULL),(1,117,3024009,'2013-01-04 06:48:31',NULL),(1,75,3024009,'2013-01-04 06:48:31',NULL),(1,130,3024009,'2013-01-04 06:48:31',NULL),(1,76,3024009,'2013-01-04 06:48:31',NULL),(1,231,3024009,'2013-01-04 06:48:31',NULL),(1,131,3024009,'2013-01-04 06:48:31',NULL),(1,227,3024013,'2013-01-04 07:18:33',NULL),(1,137,3024013,'2013-01-04 07:18:33',NULL),(1,197,3024013,'2013-01-04 07:18:33',NULL),(1,170,3024013,'2013-01-04 07:18:33',NULL),(1,147,3024013,'2013-01-04 07:18:33',NULL),(1,98,3024013,'2013-01-04 07:18:33',NULL),(1,111,3024013,'2013-01-04 07:18:33',NULL),(1,169,3024013,'2013-01-04 07:18:33',NULL),(1,73,3024013,'2013-01-04 07:18:33',NULL),(1,87,3024013,'2013-01-04 07:18:33',NULL),(1,117,3024013,'2013-01-04 07:18:33',NULL),(1,75,3024013,'2013-01-04 07:18:33',NULL),(1,130,3024013,'2013-01-04 07:18:33',NULL),(1,76,3024013,'2013-01-04 07:18:33',NULL),(1,231,3024013,'2013-01-04 07:18:33',NULL),(1,131,3024013,'2013-01-04 07:18:33',NULL),(1,227,3024018,'2013-01-04 07:48:46',NULL),(1,137,3024018,'2013-01-04 07:48:46',NULL),(1,197,3024018,'2013-01-04 07:48:46',NULL),(1,170,3024018,'2013-01-04 07:48:46',NULL),(1,147,3024018,'2013-01-04 07:48:46',NULL),(1,98,3024018,'2013-01-04 07:48:46',NULL),(1,111,3024018,'2013-01-04 07:48:46',NULL),(1,169,3024018,'2013-01-04 07:48:46',NULL),(1,73,3024018,'2013-01-04 07:48:46',NULL),(1,87,3024018,'2013-01-04 07:48:46',NULL),(1,117,3024018,'2013-01-04 07:48:46',NULL),(1,75,3024018,'2013-01-04 07:48:46',NULL),(1,130,3024018,'2013-01-04 07:48:46',NULL),(1,76,3024018,'2013-01-04 07:48:46',NULL),(1,231,3024018,'2013-01-04 07:48:46',NULL),(1,131,3024018,'2013-01-04 07:48:46',NULL),(1,189,3024024,'2013-01-04 07:48:52',1),(1,190,3024024,'2013-01-04 07:48:52',1),(1,17,3024024,'2013-01-04 07:48:52',1),(1,191,3024024,'2013-01-04 07:48:52',1),(1,32,3024024,'2013-01-04 07:48:52',1),(1,114,3024024,'2013-01-04 07:48:52',1),(1,144,3024024,'2013-01-04 07:48:52',1),(1,23,3024024,'2013-01-04 07:48:52',1),(1,189,3024027,'2013-01-04 07:48:52',1),(1,190,3024027,'2013-01-04 07:48:52',1),(1,17,3024027,'2013-01-04 07:48:52',1),(1,191,3024027,'2013-01-04 07:48:52',1),(1,32,3024027,'2013-01-04 07:48:52',1),(1,114,3024027,'2013-01-04 07:48:52',1),(1,144,3024027,'2013-01-04 07:48:52',1),(1,23,3024027,'2013-01-04 07:48:52',1),(1,156,3024253,'2013-01-05 10:46:44',1),(1,168,3024253,'2013-01-05 10:46:44',1),(1,242,3024253,'2013-01-05 10:46:44',1),(1,202,3024253,'2013-01-05 10:46:44',1),(1,240,3024253,'2013-01-05 10:46:44',1),(1,7,3024253,'2013-01-05 10:46:44',1),(1,38,3024253,'2013-01-05 10:46:44',1),(1,10,3024253,'2013-01-05 10:46:44',1),(1,5,3024253,'2013-01-05 10:46:44',1),(1,229,3024253,'2013-01-05 10:46:44',1),(1,230,3024253,'2013-01-05 10:46:44',1),(1,218,3024253,'2013-01-05 10:46:44',1),(1,66,3024253,'2013-01-05 10:46:44',1),(1,205,3024253,'2013-01-05 10:46:44',1),(1,207,3024253,'2013-01-05 10:46:44',1),(1,211,3024253,'2013-01-05 10:46:44',1),(1,212,3024346,'2013-01-05 11:16:41',1),(1,213,3024346,'2013-01-05 11:16:41',1),(1,81,3024346,'2013-01-05 11:16:41',1),(1,52,3024346,'2013-01-05 11:16:41',1),(1,208,3024346,'2013-01-05 11:16:41',1),(1,209,3024346,'2013-01-05 11:16:41',1),(1,78,3024346,'2013-01-05 11:16:41',1),(1,214,3024346,'2013-01-05 11:16:41',1),(1,105,3024346,'2013-01-05 11:16:41',1),(1,210,3024346,'2013-01-05 11:16:41',1),(1,90,3024346,'2013-01-05 11:16:41',1),(1,70,3024346,'2013-01-05 11:16:41',1),(1,92,3024346,'2013-01-05 11:16:41',1),(1,224,3024346,'2013-01-05 11:16:41',1),(1,221,3024346,'2013-01-05 11:16:41',1),(1,222,3024346,'2013-01-05 11:16:41',1),(1,105,3024065,'2013-01-05 11:17:01',1),(1,210,3024065,'2013-01-05 11:17:01',1),(1,90,3024065,'2013-01-05 11:17:01',1),(1,70,3024065,'2013-01-05 11:17:01',1),(1,90,3024066,'2013-01-05 11:17:02',1),(1,70,3024066,'2013-01-05 11:17:02',1),(1,92,3024066,'2013-01-05 11:17:02',1),(1,224,3024066,'2013-01-05 11:17:02',1),(1,207,3024067,'2013-01-05 11:17:02',1),(1,211,3024068,'2013-01-05 11:17:02',1),(1,212,3024068,'2013-01-05 11:17:02',1),(1,213,3024068,'2013-01-05 11:17:02',1),(1,81,3024068,'2013-01-05 11:17:02',1),(1,52,3024068,'2013-01-05 11:17:02',1),(1,208,3024068,'2013-01-05 11:17:02',1),(1,209,3024068,'2013-01-05 11:17:02',1),(1,78,3024068,'2013-01-05 11:17:02',1),(1,196,3024337,'2013-01-05 11:17:06',1),(1,156,3024337,'2013-01-05 11:17:06',1),(1,168,3024337,'2013-01-05 11:17:06',1),(1,242,3024337,'2013-01-05 11:17:06',1),(1,202,3024337,'2013-01-05 11:17:06',1),(1,240,3024337,'2013-01-05 11:17:06',1),(1,7,3024337,'2013-01-05 11:17:06',1),(1,38,3024337,'2013-01-05 11:17:06',1),(1,10,3024337,'2013-01-05 11:17:06',1),(1,5,3024337,'2013-01-05 11:17:06',1),(1,229,3024337,'2013-01-05 11:17:06',1),(1,230,3024337,'2013-01-05 11:17:06',1),(1,218,3024337,'2013-01-05 11:17:06',1),(1,66,3024337,'2013-01-05 11:17:06',1),(1,205,3024337,'2013-01-05 11:17:06',1),(1,211,3024337,'2013-01-05 11:17:06',1),(1,179,3024243,'2013-01-05 11:17:16',1),(1,196,3024243,'2013-01-05 11:17:16',1),(1,156,3024243,'2013-01-05 11:17:16',1),(1,168,3024243,'2013-01-05 11:17:16',1),(1,242,3024243,'2013-01-05 11:17:16',1),(1,202,3024243,'2013-01-05 11:17:16',1),(1,240,3024243,'2013-01-05 11:17:16',1),(1,7,3024243,'2013-01-05 11:17:16',1),(1,38,3024243,'2013-01-05 11:17:16',1),(1,10,3024243,'2013-01-05 11:17:16',1),(1,5,3024243,'2013-01-05 11:17:16',1),(1,229,3024243,'2013-01-05 11:17:16',1),(1,230,3024243,'2013-01-05 11:17:16',1),(1,218,3024243,'2013-01-05 11:17:16',1),(1,66,3024243,'2013-01-05 11:17:16',1),(1,205,3024243,'2013-01-05 11:17:16',1),(1,90,3024069,'2013-01-05 11:17:18',1),(1,70,3024069,'2013-01-05 11:17:18',1),(1,92,3024069,'2013-01-05 11:17:18',1),(1,224,3024069,'2013-01-05 11:17:18',1),(1,214,3024071,'2013-01-05 11:17:19',1),(1,105,3024071,'2013-01-05 11:17:19',1),(1,210,3024071,'2013-01-05 11:17:19',1),(1,90,3024071,'2013-01-05 11:17:19',1),(1,70,3024071,'2013-01-05 11:17:19',1),(1,92,3024071,'2013-01-05 11:17:19',1),(1,224,3024071,'2013-01-05 11:17:19',1),(1,221,3024071,'2013-01-05 11:17:19',1),(1,212,3024072,'2013-01-05 11:17:19',1),(1,213,3024072,'2013-01-05 11:17:19',1),(1,81,3024072,'2013-01-05 11:17:19',1),(1,52,3024072,'2013-01-05 11:17:19',1),(1,208,3024072,'2013-01-05 11:17:19',1),(1,209,3024072,'2013-01-05 11:17:19',1),(1,78,3024072,'2013-01-05 11:17:19',1),(1,214,3024072,'2013-01-05 11:17:19',1),(1,92,3024075,'2013-01-05 11:17:32',1),(1,224,3024075,'2013-01-05 11:17:32',1),(1,179,3024079,'2013-01-05 11:17:40',1),(1,162,3024165,'2013-01-05 11:46:56',NULL),(1,195,3024165,'2013-01-05 11:46:56',NULL),(1,196,3024165,'2013-01-05 11:46:56',NULL),(1,177,3024165,'2013-01-05 11:46:56',NULL),(1,181,3024165,'2013-01-05 11:46:56',NULL),(1,248,3024165,'2013-01-05 11:46:56',NULL),(1,174,3024165,'2013-01-05 11:46:56',NULL),(1,166,3024165,'2013-01-05 11:46:56',NULL),(1,205,3024167,'2013-01-05 11:46:56',1),(1,207,3024167,'2013-01-05 11:46:56',1),(1,214,3024167,'2013-01-05 11:46:56',1),(1,90,3024167,'2013-01-05 11:46:56',1),(1,103,3024256,'2013-01-05 11:46:58',1),(1,38,3024256,'2013-01-05 11:46:58',1),(1,10,3024256,'2013-01-05 11:46:58',1),(1,5,3024256,'2013-01-05 11:46:58',1),(1,229,3024256,'2013-01-05 11:46:58',1),(1,230,3024256,'2013-01-05 11:46:58',1),(1,218,3024256,'2013-01-05 11:46:58',1),(1,66,3024256,'2013-01-05 11:46:58',1),(1,162,3024257,'2013-01-05 11:47:00',1),(1,195,3024257,'2013-01-05 11:47:00',1),(1,196,3024257,'2013-01-05 11:47:00',1),(1,177,3024257,'2013-01-05 11:47:00',1),(1,181,3024257,'2013-01-05 11:47:00',1),(1,248,3024257,'2013-01-05 11:47:00',1),(1,174,3024257,'2013-01-05 11:47:00',1),(1,166,3024257,'2013-01-05 11:47:00',1),(1,156,3024248,'2013-01-05 11:47:00',1),(1,168,3024248,'2013-01-05 11:47:00',1),(1,64,3024248,'2013-01-05 11:47:00',1),(1,242,3024248,'2013-01-05 11:47:00',1),(1,202,3024248,'2013-01-05 11:47:00',1),(1,240,3024248,'2013-01-05 11:47:00',1),(1,7,3024248,'2013-01-05 11:47:00',1),(1,132,3024248,'2013-01-05 11:47:00',1),(1,196,3024341,'2013-01-05 11:47:08',1),(1,156,3024341,'2013-01-05 11:47:08',1),(1,168,3024341,'2013-01-05 11:47:08',1),(1,242,3024341,'2013-01-05 11:47:08',1),(1,202,3024341,'2013-01-05 11:47:08',1),(1,240,3024341,'2013-01-05 11:47:08',1),(1,7,3024341,'2013-01-05 11:47:08',1),(1,38,3024341,'2013-01-05 11:47:08',1),(1,10,3024341,'2013-01-05 11:47:08',1),(1,5,3024341,'2013-01-05 11:47:08',1),(1,229,3024341,'2013-01-05 11:47:08',1),(1,230,3024341,'2013-01-05 11:47:08',1),(1,218,3024341,'2013-01-05 11:47:08',1),(1,66,3024341,'2013-01-05 11:47:08',1),(1,205,3024341,'2013-01-05 11:47:08',1),(1,207,3024341,'2013-01-05 11:47:08',1),(1,156,3024170,'2013-01-05 11:47:13',1),(1,168,3024170,'2013-01-05 11:47:13',1),(1,64,3024170,'2013-01-05 11:47:13',1),(1,242,3024170,'2013-01-05 11:47:13',1),(1,202,3024170,'2013-01-05 11:47:13',1),(1,240,3024170,'2013-01-05 11:47:13',1),(1,7,3024170,'2013-01-05 11:47:13',1),(1,132,3024170,'2013-01-05 11:47:13',1),(1,156,3024070,'2013-01-05 11:47:21',1),(1,168,3024070,'2013-01-05 11:47:21',1),(1,242,3024070,'2013-01-05 11:47:21',1),(1,202,3024070,'2013-01-05 11:47:21',1),(1,240,3024070,'2013-01-05 11:47:21',1),(1,7,3024070,'2013-01-05 11:47:21',1),(1,38,3024070,'2013-01-05 11:47:21',1),(1,10,3024070,'2013-01-05 11:47:21',1),(1,5,3024073,'2013-01-05 11:47:31',1),(1,229,3024073,'2013-01-05 11:47:31',1),(1,230,3024073,'2013-01-05 11:47:31',1),(1,218,3024073,'2013-01-05 11:47:31',1),(1,66,3024073,'2013-01-05 11:47:31',1),(1,205,3024073,'2013-01-05 11:47:31',1),(1,207,3024073,'2013-01-05 11:47:31',1),(1,214,3024073,'2013-01-05 11:47:31',1),(1,103,3024250,'2013-01-05 11:47:31',1),(1,38,3024250,'2013-01-05 11:47:31',1),(1,10,3024250,'2013-01-05 11:47:31',1),(1,5,3024250,'2013-01-05 11:47:31',1),(1,229,3024250,'2013-01-05 11:47:31',1),(1,230,3024250,'2013-01-05 11:47:31',1),(1,218,3024250,'2013-01-05 11:47:31',1),(1,66,3024250,'2013-01-05 11:47:31',1),(1,179,3024074,'2013-01-05 11:47:33',1),(1,210,3024074,'2013-01-05 11:47:33',1),(1,90,3024074,'2013-01-05 11:47:33',1),(1,70,3024074,'2013-01-05 11:47:33',1),(1,210,3024076,'2013-01-05 11:47:34',1),(1,90,3024076,'2013-01-05 11:47:34',1),(1,70,3024076,'2013-01-05 11:47:34',1),(1,92,3024076,'2013-01-05 11:47:34',1),(1,92,3024077,'2013-01-05 11:47:40',1),(1,224,3024077,'2013-01-05 11:47:40',1),(1,90,3024078,'2013-01-05 11:47:41',1),(1,70,3024078,'2013-01-05 11:47:41',1),(1,240,3024247,'2013-01-05 12:16:50',1),(1,7,3024247,'2013-01-05 12:16:50',1),(1,103,3024247,'2013-01-05 12:16:50',1),(1,38,3024247,'2013-01-05 12:16:50',1),(1,75,3024164,'2013-01-05 12:16:57',1),(1,64,3024164,'2013-01-05 12:16:57',1),(1,242,3024164,'2013-01-05 12:16:57',1),(1,7,3024164,'2013-01-05 12:16:57',1),(1,242,3024255,'2013-01-05 12:17:01',1),(1,240,3024255,'2013-01-05 12:17:01',1),(1,7,3024255,'2013-01-05 12:17:01',1),(1,103,3024255,'2013-01-05 12:17:01',1),(1,242,3024244,'2013-01-05 12:17:20',1),(1,240,3024244,'2013-01-05 12:17:20',1),(1,7,3024244,'2013-01-05 12:17:20',1),(1,103,3024244,'2013-01-05 12:17:20',1),(1,240,3024064,'2013-01-05 12:17:54',1),(1,7,3024064,'2013-01-05 12:17:54',1),(1,229,3024168,'2013-01-05 12:47:16',1),(1,105,3024168,'2013-01-05 12:47:16',1),(1,242,3024246,'2013-01-05 12:47:32',1),(1,240,3024246,'2013-01-05 12:47:32',1),(1,7,3024246,'2013-01-05 12:47:32',1),(1,103,3024246,'2013-01-05 12:47:32',1),(1,229,3024083,'2013-01-05 12:47:56',1),(1,105,3024083,'2013-01-05 12:47:56',1),(1,202,3024254,'2013-01-05 13:16:54',1),(1,10,3024254,'2013-01-05 13:16:54',1),(1,202,3024163,'2013-01-05 13:17:21',1),(1,240,3024163,'2013-01-05 13:17:21',1),(1,202,3024251,'2013-01-05 13:17:21',1),(1,10,3024251,'2013-01-05 13:17:21',1),(1,242,3024245,'2013-01-05 13:17:34',NULL),(1,202,3024245,'2013-01-05 13:17:34',NULL),(1,240,3024245,'2013-01-05 13:17:34',NULL),(1,7,3024245,'2013-01-05 13:17:34',NULL),(1,132,3024240,'2013-01-05 13:17:36',1),(1,10,3024240,'2013-01-05 13:17:36',1),(1,132,3024354,'2013-01-05 13:46:51',1),(1,10,3024354,'2013-01-05 13:46:51',1),(1,132,3024347,'2013-01-05 13:46:59',1),(1,10,3024347,'2013-01-05 13:46:59',1),(1,132,3024252,'2013-01-05 13:47:51',1),(1,10,3024252,'2013-01-05 13:47:51',1),(1,240,3024336,'2013-01-05 14:17:17',1),(1,132,3024336,'2013-01-05 14:17:17',1),(1,5,3024344,'2013-01-05 14:17:35',1),(1,221,3024344,'2013-01-05 14:17:35',1),(1,66,3024350,'2013-01-05 14:17:35',1),(1,105,3024350,'2013-01-05 14:17:35',1),(1,66,3024348,'2013-01-05 14:17:49',1),(1,105,3024348,'2013-01-05 14:17:49',1),(1,210,3024345,'2013-01-05 14:46:57',1),(1,10,3024249,'2013-01-05 14:47:00',1),(1,153,3024351,'2013-01-05 14:47:03',1),(1,248,3024351,'2013-01-05 14:47:03',1),(1,64,3024351,'2013-01-05 14:47:03',1),(1,103,3024351,'2013-01-05 14:47:03',1),(1,22,3024356,'2013-01-05 14:47:04',1),(1,75,3024356,'2013-01-05 14:47:04',1),(1,10,3024356,'2013-01-05 14:47:04',1),(1,214,3024356,'2013-01-05 14:47:04',1),(1,103,3024166,'2013-01-05 14:47:07',1),(1,92,3024338,'2013-01-05 14:47:21',1),(1,207,3024169,'2013-01-05 14:47:24',1),(1,207,3024242,'2013-01-05 14:47:29',1),(1,70,3024358,'2013-01-05 14:47:38',1),(1,90,3024335,'2013-01-05 14:47:48',1),(1,92,3024241,'2013-01-05 14:47:55',1),(1,64,3024080,'2013-01-05 14:47:57',1),(1,207,3024081,'2013-01-05 14:48:01',1),(1,10,3024082,'2013-01-05 14:48:01',1),(1,179,3024349,'2013-01-05 15:16:57',1),(1,195,3024349,'2013-01-05 15:16:57',1),(1,196,3024349,'2013-01-05 15:16:57',1),(1,22,3024349,'2013-01-05 15:16:57',1),(1,177,3024349,'2013-01-05 15:16:57',1),(1,181,3024349,'2013-01-05 15:16:57',1),(1,248,3024349,'2013-01-05 15:16:57',1),(1,166,3024349,'2013-01-05 15:16:57',1),(1,75,3024355,'2013-01-05 15:17:05',1),(1,156,3024355,'2013-01-05 15:17:05',1),(1,168,3024355,'2013-01-05 15:17:05',1),(1,64,3024355,'2013-01-05 15:17:05',1),(1,103,3024355,'2013-01-05 15:17:05',1),(1,10,3024355,'2013-01-05 15:17:05',1),(1,5,3024355,'2013-01-05 15:17:05',1),(1,207,3024355,'2013-01-05 15:17:05',1),(1,75,3024339,'2013-01-05 15:17:38',1),(1,156,3024339,'2013-01-05 15:17:38',1),(1,168,3024339,'2013-01-05 15:17:38',1),(1,64,3024339,'2013-01-05 15:17:38',1),(1,240,3024339,'2013-01-05 15:17:38',1),(1,132,3024339,'2013-01-05 15:17:38',1),(1,103,3024339,'2013-01-05 15:17:38',1),(1,10,3024339,'2013-01-05 15:17:38',1),(1,195,3024342,'2013-01-05 15:17:49',1),(1,196,3024342,'2013-01-05 15:17:49',1),(1,22,3024342,'2013-01-05 15:17:49',1),(1,177,3024342,'2013-01-05 15:17:49',1),(1,181,3024342,'2013-01-05 15:17:49',1),(1,248,3024342,'2013-01-05 15:17:49',1),(1,166,3024342,'2013-01-05 15:17:49',1),(1,229,3024342,'2013-01-05 15:17:49',1),(1,153,3024343,'2013-01-05 15:18:00',1),(1,162,3024343,'2013-01-05 15:18:00',1),(1,7,3024343,'2013-01-05 15:18:00',1),(1,210,3024343,'2013-01-05 15:18:00',1),(1,214,3024357,'2013-01-05 15:18:02',1),(1,90,3024357,'2013-01-05 15:18:02',1),(1,70,3024357,'2013-01-05 15:18:02',1),(1,92,3024357,'2013-01-05 15:18:02',1),(1,174,3024340,'2013-01-05 15:18:06',1),(1,7,3024340,'2013-01-05 15:18:06',1),(1,210,3024340,'2013-01-05 15:18:06',1),(1,221,3024340,'2013-01-05 15:18:06',1),(1,179,3024352,'2013-01-05 15:18:08',1),(1,174,3024352,'2013-01-05 15:18:08',1),(1,7,3024352,'2013-01-05 15:18:08',1),(1,230,3024352,'2013-01-05 15:18:08',1),(1,205,3024352,'2013-01-05 15:18:08',1),(1,210,3024352,'2013-01-05 15:18:08',1),(1,221,3024352,'2013-01-05 15:18:08',1),(1,222,3024352,'2013-01-05 15:18:08',1),(1,214,3024353,'2013-01-05 15:18:10',1),(1,90,3024353,'2013-01-05 15:18:10',1),(1,70,3024353,'2013-01-05 15:18:10',1),(1,92,3024353,'2013-01-05 15:18:10',1),(1,5,3024334,'2013-01-05 15:47:56',1),(1,66,3024334,'2013-01-05 15:47:56',1),(1,207,3024334,'2013-01-05 15:47:56',1),(1,214,3024334,'2013-01-05 15:47:56',1),(1,105,3024334,'2013-01-05 15:47:56',1),(1,90,3024334,'2013-01-05 15:47:56',1),(1,70,3024334,'2013-01-05 15:47:56',1),(1,92,3024334,'2013-01-05 15:47:56',1),(1,231,3024405,'2013-01-06 00:16:26',NULL),(1,77,3024405,'2013-01-06 00:16:26',NULL),(1,231,3024397,'2013-01-06 00:46:12',NULL),(1,32,3024396,'2013-01-06 00:46:12',1),(1,129,3024396,'2013-01-06 00:46:12',1),(1,231,3024396,'2013-01-06 00:46:12',1),(1,77,3024396,'2013-01-06 00:46:12',1),(1,124,3024398,'2013-01-06 00:46:12',1),(1,146,3024398,'2013-01-06 00:46:12',1),(1,17,3024398,'2013-01-06 00:46:12',1),(1,32,3024398,'2013-01-06 00:46:12',1),(1,73,3024398,'2013-01-06 00:46:12',1),(1,129,3024398,'2013-01-06 00:46:12',1),(1,13,3024398,'2013-01-06 00:46:12',1),(1,231,3024398,'2013-01-06 00:46:12',1),(1,32,3024399,'2013-01-06 00:46:12',1),(1,129,3024399,'2013-01-06 00:46:12',1),(1,231,3024399,'2013-01-06 00:46:12',1),(1,77,3024399,'2013-01-06 00:46:12',1),(1,146,3024401,'2013-01-06 00:46:20',1),(1,17,3024401,'2013-01-06 00:46:20',1),(1,32,3024401,'2013-01-06 00:46:20',1),(1,73,3024401,'2013-01-06 00:46:20',1),(1,129,3024401,'2013-01-06 00:46:20',1),(1,13,3024401,'2013-01-06 00:46:20',1),(1,231,3024401,'2013-01-06 00:46:20',1),(1,77,3024401,'2013-01-06 00:46:20',1),(1,17,3024407,'2013-01-06 00:46:28',1),(1,231,3024407,'2013-01-06 00:46:28',1),(1,34,3024404,'2013-01-06 00:46:28',1),(1,32,3024404,'2013-01-06 00:46:28',1),(1,129,3024404,'2013-01-06 00:46:28',1),(1,231,3024404,'2013-01-06 00:46:28',1),(1,34,3024406,'2013-01-06 00:46:28',1),(1,32,3024406,'2013-01-06 00:46:28',1),(1,129,3024406,'2013-01-06 00:46:28',1),(1,231,3024406,'2013-01-06 00:46:28',1),(1,231,3024408,'2013-01-06 00:46:36',NULL),(1,77,3024408,'2013-01-06 00:46:36',NULL),(1,77,3024409,'2013-01-06 00:46:36',1),(1,77,3024410,'2013-01-06 00:46:36',1),(1,77,3024411,'2013-01-06 00:46:36',1),(1,228,3024412,'2013-01-06 00:46:45',1),(1,17,3024413,'2013-01-06 00:46:45',1),(1,32,3024413,'2013-01-06 00:46:45',1),(1,13,3024414,'2013-01-06 00:46:45',1),(1,231,3024414,'2013-01-06 00:46:45',1),(1,17,3024395,'2013-01-06 00:46:45',1),(1,32,3024395,'2013-01-06 00:46:45',1),(1,73,3024395,'2013-01-06 00:46:45',1),(1,129,3024395,'2013-01-06 00:46:45',1),(1,14,3024493,'2013-01-06 01:46:13',NULL),(1,231,3024493,'2013-01-06 01:46:13',NULL),(1,32,3024491,'2013-01-06 01:46:13',1),(1,17,3024494,'2013-01-06 01:46:13',1),(1,14,3024496,'2013-01-06 01:46:20',NULL),(1,231,3024496,'2013-01-06 01:46:20',NULL),(1,236,3024582,'2013-01-06 02:46:12',1),(1,67,3024582,'2013-01-06 02:46:12',1),(1,67,3024570,'2013-01-06 02:46:19',1),(1,67,3024571,'2013-01-06 02:46:20',1),(1,67,3024577,'2013-01-06 02:46:35',1),(1,231,3024489,'2013-01-06 03:16:20',NULL),(1,219,3024489,'2013-01-06 03:16:20',NULL),(1,241,3024489,'2013-01-06 03:16:20',NULL),(1,49,3024489,'2013-01-06 03:16:20',NULL),(1,236,3024578,'2013-01-06 03:16:22',NULL),(1,231,3024578,'2013-01-06 03:16:22',NULL),(1,60,3024492,'2013-01-06 03:16:28',NULL),(1,231,3024492,'2013-01-06 03:16:28',NULL),(1,219,3024492,'2013-01-06 03:16:28',NULL),(1,241,3024492,'2013-01-06 03:16:28',NULL),(1,192,3024580,'2013-01-06 03:16:34',1),(1,14,3024580,'2013-01-06 03:16:34',1),(1,118,3024400,'2013-01-06 03:16:35',1),(1,137,3024400,'2013-01-06 03:16:35',1),(1,151,3024400,'2013-01-06 03:16:35',1),(1,34,3024400,'2013-01-06 03:16:35',1),(1,236,3024400,'2013-01-06 03:16:35',1),(1,192,3024400,'2013-01-06 03:16:35',1),(1,73,3024400,'2013-01-06 03:16:35',1),(1,14,3024400,'2013-01-06 03:16:35',1),(1,94,3024402,'2013-01-06 03:16:35',1),(1,184,3024402,'2013-01-06 03:16:35',1),(1,118,3024402,'2013-01-06 03:16:35',1),(1,137,3024402,'2013-01-06 03:16:35',1),(1,34,3024402,'2013-01-06 03:16:35',1),(1,236,3024402,'2013-01-06 03:16:35',1),(1,73,3024402,'2013-01-06 03:16:35',1),(1,60,3024402,'2013-01-06 03:16:35',1),(1,137,3024403,'2013-01-06 03:16:41',1),(1,151,3024403,'2013-01-06 03:16:41',1),(1,34,3024403,'2013-01-06 03:16:41',1),(1,236,3024403,'2013-01-06 03:16:41',1),(1,17,3024403,'2013-01-06 03:16:41',1),(1,192,3024403,'2013-01-06 03:16:41',1),(1,73,3024403,'2013-01-06 03:16:41',1),(1,14,3024403,'2013-01-06 03:16:41',1),(1,192,3024587,'2013-01-06 03:16:49',1),(1,14,3024587,'2013-01-06 03:16:49',1),(1,4,3024670,'2013-01-06 03:46:11',1),(1,137,3024586,'2013-01-06 03:46:15',1),(1,124,3024586,'2013-01-06 03:46:15',1),(1,151,3024586,'2013-01-06 03:46:15',1),(1,34,3024586,'2013-01-06 03:46:15',1),(1,236,3024586,'2013-01-06 03:46:15',1),(1,189,3024586,'2013-01-06 03:46:15',1),(1,17,3024586,'2013-01-06 03:46:15',1),(1,192,3024586,'2013-01-06 03:46:15',1),(1,137,3024585,'2013-01-06 03:46:15',1),(1,124,3024585,'2013-01-06 03:46:15',1),(1,151,3024585,'2013-01-06 03:46:15',1),(1,34,3024585,'2013-01-06 03:46:15',1),(1,236,3024585,'2013-01-06 03:46:15',1),(1,17,3024585,'2013-01-06 03:46:15',1),(1,192,3024585,'2013-01-06 03:46:15',1),(1,73,3024585,'2013-01-06 03:46:15',1),(1,67,3024668,'2013-01-06 03:46:19',1),(1,14,3024675,'2013-01-06 03:46:26',1),(1,77,3024675,'2013-01-06 03:46:26',1),(1,4,3024676,'2013-01-06 03:46:26',1),(1,137,3024490,'2013-01-06 03:46:30',1),(1,151,3024490,'2013-01-06 03:46:30',1),(1,34,3024490,'2013-01-06 03:46:30',1),(1,236,3024490,'2013-01-06 03:46:30',1),(1,17,3024490,'2013-01-06 03:46:30',1),(1,192,3024490,'2013-01-06 03:46:30',1),(1,73,3024490,'2013-01-06 03:46:30',1),(1,14,3024490,'2013-01-06 03:46:30',1),(1,49,3024678,'2013-01-06 03:46:30',1),(1,6,3024678,'2013-01-06 03:46:30',1),(1,118,3024495,'2013-01-06 03:46:31',1),(1,137,3024495,'2013-01-06 03:46:31',1),(1,124,3024495,'2013-01-06 03:46:31',1),(1,151,3024495,'2013-01-06 03:46:31',1),(1,34,3024495,'2013-01-06 03:46:31',1),(1,236,3024495,'2013-01-06 03:46:31',1),(1,17,3024495,'2013-01-06 03:46:31',1),(1,192,3024495,'2013-01-06 03:46:31',1),(1,192,3024573,'2013-01-06 03:46:34',1),(1,73,3024573,'2013-01-06 03:46:34',1),(1,77,3024573,'2013-01-06 03:46:34',1),(1,67,3024573,'2013-01-06 03:46:34',1),(1,60,3024583,'2013-01-06 03:46:34',NULL),(1,231,3024583,'2013-01-06 03:46:34',NULL),(1,219,3024583,'2013-01-06 03:46:34',NULL),(1,241,3024583,'2013-01-06 03:46:34',NULL),(1,118,3024584,'2013-01-06 03:46:34',1),(1,137,3024584,'2013-01-06 03:46:34',1),(1,124,3024584,'2013-01-06 03:46:34',1),(1,151,3024584,'2013-01-06 03:46:34',1),(1,34,3024584,'2013-01-06 03:46:34',1),(1,236,3024584,'2013-01-06 03:46:34',1),(1,189,3024584,'2013-01-06 03:46:34',1),(1,17,3024584,'2013-01-06 03:46:34',1),(1,77,3024689,'2013-01-06 03:46:41',1),(1,49,3024681,'2013-01-06 03:46:43',1),(1,6,3024681,'2013-01-06 03:46:43',1),(1,231,3024575,'2013-01-06 03:46:46',NULL),(1,219,3024575,'2013-01-06 03:46:46',NULL),(1,241,3024575,'2013-01-06 03:46:46',NULL),(1,4,3024575,'2013-01-06 03:46:46',NULL),(1,73,3024576,'2013-01-06 03:46:47',1),(1,77,3024576,'2013-01-06 03:46:47',1),(1,67,3024576,'2013-01-06 03:46:47',1),(1,49,3024576,'2013-01-06 03:46:47',1),(1,94,3024683,'2013-01-06 03:46:51',1),(1,118,3024683,'2013-01-06 03:46:51',1),(1,137,3024683,'2013-01-06 03:46:51',1),(1,124,3024683,'2013-01-06 03:46:51',1),(1,151,3024683,'2013-01-06 03:46:51',1),(1,34,3024683,'2013-01-06 03:46:51',1),(1,236,3024683,'2013-01-06 03:46:51',1),(1,17,3024683,'2013-01-06 03:46:51',1),(1,192,3024685,'2013-01-06 03:46:56',1),(1,73,3024685,'2013-01-06 03:46:56',1),(1,124,3024669,'2013-01-06 04:16:13',1),(1,151,3024669,'2013-01-06 04:16:13',1),(1,34,3024669,'2013-01-06 04:16:13',1),(1,236,3024669,'2013-01-06 04:16:13',1),(1,189,3024669,'2013-01-06 04:16:13',1),(1,17,3024669,'2013-01-06 04:16:13',1),(1,14,3024669,'2013-01-06 04:16:13',1),(1,60,3024669,'2013-01-06 04:16:13',1),(1,157,3024671,'2013-01-06 04:16:21',NULL),(1,231,3024671,'2013-01-06 04:16:21',NULL),(1,219,3024671,'2013-01-06 04:16:21',NULL),(1,241,3024671,'2013-01-06 04:16:21',NULL),(1,217,3024674,'2013-01-06 04:16:21',1),(1,49,3024674,'2013-01-06 04:16:21',1),(1,6,3024674,'2013-01-06 04:16:21',1),(1,4,3024674,'2013-01-06 04:16:21',1),(1,217,3024679,'2013-01-06 04:16:42',1),(1,49,3024679,'2013-01-06 04:16:42',1),(1,6,3024679,'2013-01-06 04:16:42',1),(1,4,3024679,'2013-01-06 04:16:42',1),(1,192,3024574,'2013-01-06 04:16:48',NULL),(1,73,3024574,'2013-01-06 04:16:48',NULL),(1,77,3024574,'2013-01-06 04:16:48',NULL),(1,67,3024574,'2013-01-06 04:16:48',NULL),(1,118,3024665,'2013-01-06 04:16:52',1),(1,82,3024665,'2013-01-06 04:16:52',1),(1,184,3024684,'2013-01-06 04:16:53',1),(1,192,3024684,'2013-01-06 04:16:53',1),(1,73,3024684,'2013-01-06 04:16:53',1),(1,77,3024684,'2013-01-06 04:16:53',1),(1,124,3024579,'2013-01-06 04:16:55',1),(1,151,3024579,'2013-01-06 04:16:55',1),(1,34,3024579,'2013-01-06 04:16:55',1),(1,236,3024579,'2013-01-06 04:16:55',1),(1,189,3024579,'2013-01-06 04:16:55',1),(1,17,3024579,'2013-01-06 04:16:55',1),(1,14,3024579,'2013-01-06 04:16:55',1),(1,60,3024579,'2013-01-06 04:16:55',1),(1,241,3024687,'2013-01-06 04:16:59',1),(1,67,3024687,'2013-01-06 04:16:59',1),(1,49,3024687,'2013-01-06 04:16:59',1),(1,6,3024687,'2013-01-06 04:16:59',1),(1,241,3024688,'2013-01-06 04:17:00',1),(1,67,3024688,'2013-01-06 04:17:00',1),(1,151,3024672,'2013-01-06 04:46:23',1),(1,34,3024672,'2013-01-06 04:46:23',1),(1,236,3024672,'2013-01-06 04:46:23',1),(1,189,3024672,'2013-01-06 04:46:23',1),(1,17,3024672,'2013-01-06 04:46:23',1),(1,14,3024672,'2013-01-06 04:46:23',1),(1,60,3024672,'2013-01-06 04:46:23',1),(1,217,3024672,'2013-01-06 04:46:23',1),(1,118,3024680,'2013-01-06 04:46:45',1),(1,137,3024680,'2013-01-06 04:46:45',1),(1,82,3024680,'2013-01-06 04:46:45',1),(1,192,3024680,'2013-01-06 04:46:45',1),(1,73,3024680,'2013-01-06 04:46:45',1),(1,77,3024680,'2013-01-06 04:46:45',1),(1,241,3024680,'2013-01-06 04:46:45',1),(1,67,3024680,'2013-01-06 04:46:45',1),(1,157,3024682,'2013-01-06 04:46:54',NULL),(1,32,3024682,'2013-01-06 04:46:54',NULL),(1,231,3024682,'2013-01-06 04:46:54',NULL),(1,219,3024682,'2013-01-06 04:46:54',NULL),(1,124,3024673,'2013-01-06 04:47:04',1),(1,26,3024673,'2013-01-06 04:47:04',1),(1,13,3024673,'2013-01-06 04:47:04',1),(1,185,3024673,'2013-01-06 04:47:04',1),(1,217,3024673,'2013-01-06 04:47:04',1),(1,201,3024673,'2013-01-06 04:47:04',1),(1,6,3024673,'2013-01-06 04:47:04',1),(1,4,3024673,'2013-01-06 04:47:04',1),(1,118,3024581,'2013-01-06 05:16:21',NULL),(1,137,3024581,'2013-01-06 05:16:21',NULL),(1,82,3024581,'2013-01-06 05:16:21',NULL),(1,26,3024581,'2013-01-06 05:16:21',NULL),(1,157,3024581,'2013-01-06 05:16:21',NULL),(1,32,3024581,'2013-01-06 05:16:21',NULL),(1,192,3024581,'2013-01-06 05:16:21',NULL),(1,73,3024581,'2013-01-06 05:16:21',NULL),(1,23,3024581,'2013-01-06 05:16:21',NULL),(1,13,3024581,'2013-01-06 05:16:21',NULL),(1,185,3024581,'2013-01-06 05:16:21',NULL),(1,231,3024581,'2013-01-06 05:16:21',NULL),(1,217,3024581,'2013-01-06 05:16:21',NULL),(1,219,3024581,'2013-01-06 05:16:21',NULL),(1,201,3024581,'2013-01-06 05:16:21',NULL),(1,77,3024581,'2013-01-06 05:16:21',NULL),(1,160,3024572,'2013-01-06 05:16:30',1),(1,118,3024572,'2013-01-06 05:16:30',1),(1,137,3024572,'2013-01-06 05:16:30',1),(1,82,3024572,'2013-01-06 05:16:30',1),(1,26,3024572,'2013-01-06 05:16:30',1),(1,151,3024572,'2013-01-06 05:16:30',1),(1,146,3024572,'2013-01-06 05:16:30',1),(1,157,3024572,'2013-01-06 05:16:30',1),(1,34,3024572,'2013-01-06 05:16:30',1),(1,236,3024572,'2013-01-06 05:16:30',1),(1,189,3024572,'2013-01-06 05:16:30',1),(1,17,3024572,'2013-01-06 05:16:30',1),(1,32,3024572,'2013-01-06 05:16:30',1),(1,192,3024572,'2013-01-06 05:16:30',1),(1,73,3024572,'2013-01-06 05:16:30',1),(1,23,3024572,'2013-01-06 05:16:30',1),(1,160,3024686,'2013-01-06 05:17:02',1),(1,151,3024686,'2013-01-06 05:17:02',1),(1,34,3024686,'2013-01-06 05:17:02',1),(1,236,3024686,'2013-01-06 05:17:02',1),(1,189,3024686,'2013-01-06 05:17:02',1),(1,17,3024686,'2013-01-06 05:17:02',1),(1,14,3024686,'2013-01-06 05:17:02',1),(1,60,3024686,'2013-01-06 05:17:02',1),(1,94,3024667,'2013-01-06 05:46:19',NULL),(1,13,3024667,'2013-01-06 05:46:19',NULL),(1,14,3024667,'2013-01-06 05:46:19',NULL),(1,185,3024667,'2013-01-06 05:46:19',NULL),(1,60,3024667,'2013-01-06 05:46:19',NULL),(1,231,3024667,'2013-01-06 05:46:19',NULL),(1,217,3024667,'2013-01-06 05:46:19',NULL),(1,219,3024667,'2013-01-06 05:46:19',NULL),(1,201,3024667,'2013-01-06 05:46:19',NULL),(1,77,3024667,'2013-01-06 05:46:19',NULL),(1,241,3024667,'2013-01-06 05:46:19',NULL),(1,67,3024667,'2013-01-06 05:46:19',NULL),(1,49,3024667,'2013-01-06 05:46:19',NULL),(1,56,3024667,'2013-01-06 05:46:19',NULL),(1,6,3024667,'2013-01-06 05:46:19',NULL),(1,4,3024667,'2013-01-06 05:46:19',NULL),(1,118,3024666,'2013-01-06 05:46:19',1),(1,137,3024666,'2013-01-06 05:46:19',1),(1,82,3024666,'2013-01-06 05:46:19',1),(1,26,3024666,'2013-01-06 05:46:19',1),(1,151,3024666,'2013-01-06 05:46:19',1),(1,146,3024666,'2013-01-06 05:46:19',1),(1,157,3024666,'2013-01-06 05:46:19',1),(1,34,3024666,'2013-01-06 05:46:19',1),(1,236,3024666,'2013-01-06 05:46:19',1),(1,251,3024666,'2013-01-06 05:46:19',1),(1,189,3024666,'2013-01-06 05:46:19',1),(1,17,3024666,'2013-01-06 05:46:19',1),(1,32,3024666,'2013-01-06 05:46:19',1),(1,192,3024666,'2013-01-06 05:46:19',1),(1,73,3024666,'2013-01-06 05:46:19',1),(1,23,3024666,'2013-01-06 05:46:19',1),(1,184,3024677,'2013-01-06 06:16:38',NULL),(1,140,3024677,'2013-01-06 06:16:38',NULL),(1,149,3024677,'2013-01-06 06:16:38',NULL),(1,118,3024677,'2013-01-06 06:16:38',NULL),(1,137,3024677,'2013-01-06 06:16:38',NULL),(1,82,3024677,'2013-01-06 06:16:38',NULL),(1,26,3024677,'2013-01-06 06:16:38',NULL),(1,151,3024677,'2013-01-06 06:16:38',NULL),(1,146,3024677,'2013-01-06 06:16:38',NULL),(1,157,3024677,'2013-01-06 06:16:38',NULL),(1,34,3024677,'2013-01-06 06:16:38',NULL),(1,236,3024677,'2013-01-06 06:16:38',NULL),(1,251,3024677,'2013-01-06 06:16:38',NULL),(1,189,3024677,'2013-01-06 06:16:38',NULL),(1,17,3024677,'2013-01-06 06:16:38',NULL),(1,32,3024677,'2013-01-06 06:16:38',NULL),(1,4,3024729,'2013-01-07 03:16:26',1),(1,135,3024844,'2013-01-07 03:46:22',1),(1,53,3024844,'2013-01-07 03:46:22',1),(1,135,3024731,'2013-01-07 03:46:28',1),(1,197,3024731,'2013-01-07 03:46:28',1),(1,53,3024731,'2013-01-07 03:46:28',1),(1,4,3024731,'2013-01-07 03:46:28',1),(1,135,3024736,'2013-01-07 03:46:46',1),(1,197,3024736,'2013-01-07 03:46:46',1),(1,53,3024736,'2013-01-07 03:46:46',1),(1,4,3024736,'2013-01-07 03:46:46',1),(1,135,3024737,'2013-01-07 03:46:52',1),(1,223,3024737,'2013-01-07 03:46:52',1),(1,135,3024738,'2013-01-07 03:46:54',1),(1,197,3024738,'2013-01-07 03:46:54',1),(1,53,3024738,'2013-01-07 03:46:54',1),(1,4,3024738,'2013-01-07 03:46:54',1),(1,223,3024739,'2013-01-07 03:46:55',1),(1,4,3024739,'2013-01-07 03:46:55',1),(1,223,3024740,'2013-01-07 03:46:56',1),(1,4,3024740,'2013-01-07 03:46:56',1),(1,4,3024741,'2013-01-07 03:47:00',1),(1,4,3024742,'2013-01-07 03:47:04',1),(1,4,3024744,'2013-01-07 03:47:07',1),(1,135,3024745,'2013-01-07 03:47:09',1),(1,223,3024745,'2013-01-07 03:47:09',1),(1,197,3024746,'2013-01-07 03:47:09',1),(1,4,3024746,'2013-01-07 03:47:09',1),(1,135,3024916,'2013-01-07 04:16:18',1),(1,197,3024916,'2013-01-07 04:16:18',1),(1,53,3024916,'2013-01-07 04:16:18',1),(1,4,3024916,'2013-01-07 04:16:18',1),(1,135,3024845,'2013-01-07 04:16:21',1),(1,197,3024845,'2013-01-07 04:16:21',1),(1,53,3024845,'2013-01-07 04:16:21',1),(1,4,3024845,'2013-01-07 04:16:21',1),(1,135,3024840,'2013-01-07 04:16:41',1),(1,197,3024840,'2013-01-07 04:16:41',1),(1,53,3024840,'2013-01-07 04:16:41',1),(1,4,3024840,'2013-01-07 04:16:41',1),(1,135,3024747,'2013-01-07 04:17:13',1),(1,197,3024747,'2013-01-07 04:17:13',1),(1,53,3024747,'2013-01-07 04:17:13',1),(1,4,3024747,'2013-01-07 04:17:13',1),(1,135,3024728,'2013-01-07 04:17:14',1),(1,197,3024728,'2013-01-07 04:17:14',1),(1,53,3024728,'2013-01-07 04:17:14',1),(1,4,3024728,'2013-01-07 04:17:14',1),(1,135,3024914,'2013-01-07 04:46:19',NULL),(1,197,3024914,'2013-01-07 04:46:19',NULL),(1,53,3024914,'2013-01-07 04:46:19',NULL),(1,4,3024914,'2013-01-07 04:46:19',NULL),(1,135,3024915,'2013-01-07 04:46:19',1),(1,197,3024915,'2013-01-07 04:46:19',1),(1,53,3024915,'2013-01-07 04:46:19',1),(1,4,3024915,'2013-01-07 04:46:19',1),(1,135,3024913,'2013-01-07 04:46:38',1),(1,197,3024913,'2013-01-07 04:46:38',1),(1,53,3024913,'2013-01-07 04:46:38',1),(1,4,3024913,'2013-01-07 04:46:38',1),(1,135,3024924,'2013-01-07 04:46:52',1),(1,197,3024924,'2013-01-07 04:46:52',1),(1,53,3024924,'2013-01-07 04:46:52',1),(1,4,3024924,'2013-01-07 04:46:52',1),(1,4,3024743,'2013-01-07 04:47:10',1),(1,135,3025011,'2013-01-07 05:16:18',1),(1,197,3025011,'2013-01-07 05:16:18',1),(1,53,3025011,'2013-01-07 05:16:18',1),(1,223,3025011,'2013-01-07 05:16:18',1),(1,160,3025007,'2013-01-07 05:16:18',1),(1,223,3024921,'2013-01-07 05:16:22',1),(1,4,3024842,'2013-01-07 05:16:25',1),(1,135,3025008,'2013-01-07 05:16:26',1),(1,197,3025008,'2013-01-07 05:16:26',1),(1,192,3025008,'2013-01-07 05:16:26',1),(1,53,3025008,'2013-01-07 05:16:26',1),(1,160,3025010,'2013-01-07 05:16:26',1),(1,223,3024911,'2013-01-07 05:16:33',1),(1,223,3024918,'2013-01-07 05:16:34',1),(1,4,3024918,'2013-01-07 05:16:34',1),(1,4,3024917,'2013-01-07 05:16:44',1),(1,135,3025020,'2013-01-07 05:16:46',1),(1,197,3025020,'2013-01-07 05:16:46',1),(1,192,3025020,'2013-01-07 05:16:46',1),(1,53,3025020,'2013-01-07 05:16:46',1),(1,4,3024839,'2013-01-07 05:16:46',1),(1,223,3024841,'2013-01-07 05:16:49',1),(1,4,3024841,'2013-01-07 05:16:49',1),(1,135,3025023,'2013-01-07 05:16:58',1),(1,197,3025023,'2013-01-07 05:16:58',1),(1,192,3025023,'2013-01-07 05:16:58',1),(1,53,3025023,'2013-01-07 05:16:58',1),(1,223,3025012,'2013-01-07 05:46:31',1),(1,4,3025012,'2013-01-07 05:46:31',1),(1,223,3024920,'2013-01-07 05:46:37',1),(1,4,3024920,'2013-01-07 05:46:37',1),(1,223,3025015,'2013-01-07 05:46:43',1),(1,4,3025015,'2013-01-07 05:46:43',1),(1,223,3024923,'2013-01-07 05:46:54',1),(1,4,3024923,'2013-01-07 05:46:54',1),(1,135,3025026,'2013-01-07 05:47:04',1),(1,197,3025026,'2013-01-07 05:47:04',1),(1,192,3025026,'2013-01-07 05:47:04',1),(1,53,3025026,'2013-01-07 05:47:04',1),(1,223,3024919,'2013-01-07 05:47:07',1),(1,4,3024919,'2013-01-07 05:47:07',1),(1,135,3025016,'2013-01-07 05:47:11',1),(1,197,3025016,'2013-01-07 05:47:11',1),(1,192,3025016,'2013-01-07 05:47:11',1),(1,53,3025016,'2013-01-07 05:47:11',1),(1,53,3025013,'2013-01-07 06:16:34',1),(1,223,3025017,'2013-01-07 06:16:45',1),(1,160,3025019,'2013-01-07 06:16:47',1),(1,135,3025019,'2013-01-07 06:16:47',1),(1,197,3025021,'2013-01-07 06:16:51',1),(1,192,3025021,'2013-01-07 06:16:51',1),(1,223,3025024,'2013-01-07 06:17:02',1),(1,4,3025024,'2013-01-07 06:17:02',1),(1,160,3025027,'2013-01-07 06:17:11',1),(1,135,3025027,'2013-01-07 06:17:11',1),(1,225,3024730,'2013-01-07 19:47:35',1),(1,43,3024730,'2013-01-07 19:47:35',1),(1,57,3024730,'2013-01-07 19:47:35',1),(1,51,3024730,'2013-01-07 19:47:35',1),(1,235,3024730,'2013-01-07 19:47:35',1),(1,192,3024730,'2013-01-07 19:47:35',1),(1,6,3024730,'2013-01-07 19:47:35',1),(1,4,3024730,'2013-01-07 19:47:35',1),(1,225,3024732,'2013-01-07 19:47:39',1),(1,43,3024732,'2013-01-07 19:47:39',1),(1,57,3024732,'2013-01-07 19:47:39',1),(1,51,3024732,'2013-01-07 19:47:39',1),(1,235,3024732,'2013-01-07 19:47:39',1),(1,6,3024732,'2013-01-07 19:47:39',1),(1,4,3024732,'2013-01-07 19:47:39',1),(1,130,3024732,'2013-01-07 19:47:39',1),(1,170,3024838,'2013-01-07 19:47:42',1),(1,225,3024838,'2013-01-07 19:47:42',1),(1,43,3024838,'2013-01-07 19:47:42',1),(1,57,3024838,'2013-01-07 19:47:42',1),(1,51,3024838,'2013-01-07 19:47:42',1),(1,235,3024838,'2013-01-07 19:47:42',1),(1,194,3024838,'2013-01-07 19:47:42',1),(1,192,3024838,'2013-01-07 19:47:42',1),(1,170,3024733,'2013-01-07 19:47:53',1),(1,225,3024733,'2013-01-07 19:47:53',1),(1,43,3024733,'2013-01-07 19:47:53',1),(1,57,3024733,'2013-01-07 19:47:53',1),(1,51,3024733,'2013-01-07 19:47:53',1),(1,235,3024733,'2013-01-07 19:47:53',1),(1,194,3024733,'2013-01-07 19:47:53',1),(1,192,3024733,'2013-01-07 19:47:53',1),(1,225,3024735,'2013-01-07 19:47:55',1),(1,43,3024735,'2013-01-07 19:47:55',1),(1,57,3024735,'2013-01-07 19:47:55',1),(1,51,3024735,'2013-01-07 19:47:55',1),(1,235,3024735,'2013-01-07 19:47:55',1),(1,192,3024735,'2013-01-07 19:47:55',1),(1,6,3024735,'2013-01-07 19:47:55',1),(1,4,3024735,'2013-01-07 19:47:55',1),(1,170,3024912,'2013-01-07 20:17:37',1),(1,225,3024912,'2013-01-07 20:17:37',1),(1,43,3024912,'2013-01-07 20:17:37',1),(1,57,3024912,'2013-01-07 20:17:37',1),(1,51,3024912,'2013-01-07 20:17:37',1),(1,235,3024912,'2013-01-07 20:17:37',1),(1,194,3024912,'2013-01-07 20:17:37',1),(1,111,3024912,'2013-01-07 20:17:37',1),(1,99,3024912,'2013-01-07 20:17:37',1),(1,192,3024912,'2013-01-07 20:17:37',1),(1,53,3024912,'2013-01-07 20:17:37',1),(1,130,3024912,'2013-01-07 20:17:37',1),(1,211,3024912,'2013-01-07 20:17:37',1),(1,212,3024912,'2013-01-07 20:17:37',1),(1,213,3024912,'2013-01-07 20:17:37',1),(1,6,3024912,'2013-01-07 20:17:37',1),(1,170,3024922,'2013-01-07 20:17:56',1),(1,225,3024922,'2013-01-07 20:17:56',1),(1,43,3024922,'2013-01-07 20:17:56',1),(1,57,3024922,'2013-01-07 20:17:56',1),(1,51,3024922,'2013-01-07 20:17:56',1),(1,235,3024922,'2013-01-07 20:17:56',1),(1,194,3024922,'2013-01-07 20:17:56',1),(1,111,3024922,'2013-01-07 20:17:56',1),(1,99,3024922,'2013-01-07 20:17:56',1),(1,192,3024922,'2013-01-07 20:17:56',1),(1,53,3024922,'2013-01-07 20:17:56',1),(1,130,3024922,'2013-01-07 20:17:56',1),(1,211,3024922,'2013-01-07 20:17:56',1),(1,212,3024922,'2013-01-07 20:17:56',1),(1,213,3024922,'2013-01-07 20:17:56',1),(1,221,3024922,'2013-01-07 20:17:56',1),(1,170,3025005,'2013-01-07 20:47:21',1),(1,225,3025005,'2013-01-07 20:47:21',1),(1,43,3025005,'2013-01-07 20:47:21',1),(1,57,3025005,'2013-01-07 20:47:21',1),(1,51,3025005,'2013-01-07 20:47:21',1),(1,235,3025005,'2013-01-07 20:47:21',1),(1,194,3025005,'2013-01-07 20:47:21',1),(1,111,3025005,'2013-01-07 20:47:21',1),(1,99,3025005,'2013-01-07 20:47:21',1),(1,192,3025005,'2013-01-07 20:47:21',1),(1,53,3025005,'2013-01-07 20:47:21',1),(1,130,3025005,'2013-01-07 20:47:21',1),(1,211,3025005,'2013-01-07 20:47:21',1),(1,212,3025005,'2013-01-07 20:47:21',1),(1,213,3025005,'2013-01-07 20:47:21',1),(1,221,3025005,'2013-01-07 20:47:21',1),(1,52,3024843,'2013-01-07 20:47:31',1),(1,208,3024843,'2013-01-07 20:47:31',1),(1,209,3024843,'2013-01-07 20:47:31',1),(1,78,3024843,'2013-01-07 20:47:31',1),(1,221,3024843,'2013-01-07 20:47:31',1),(1,227,3024843,'2013-01-07 20:47:31',1),(1,6,3024843,'2013-01-07 20:47:31',1),(1,4,3024843,'2013-01-07 20:47:31',1),(1,52,3025022,'2013-01-07 20:47:55',1),(1,208,3025022,'2013-01-07 20:47:55',1),(1,209,3025022,'2013-01-07 20:47:55',1),(1,78,3025022,'2013-01-07 20:47:55',1),(1,221,3025022,'2013-01-07 20:47:55',1),(1,227,3025022,'2013-01-07 20:47:55',1),(1,6,3025022,'2013-01-07 20:47:55',1),(1,4,3025022,'2013-01-07 20:47:55',1),(1,52,3024734,'2013-01-07 20:47:58',1),(1,208,3024734,'2013-01-07 20:47:58',1),(1,209,3024734,'2013-01-07 20:47:58',1),(1,78,3024734,'2013-01-07 20:47:58',1),(1,221,3024734,'2013-01-07 20:47:58',1),(1,227,3024734,'2013-01-07 20:47:58',1),(1,6,3024734,'2013-01-07 20:47:58',1),(1,4,3024734,'2013-01-07 20:47:58',1),(1,52,3024925,'2013-01-07 20:48:00',1),(1,208,3024925,'2013-01-07 20:48:00',1),(1,209,3024925,'2013-01-07 20:48:00',1),(1,78,3024925,'2013-01-07 20:48:00',1),(1,221,3024925,'2013-01-07 20:48:00',1),(1,227,3024925,'2013-01-07 20:48:00',1),(1,6,3024925,'2013-01-07 20:48:00',1),(1,4,3024925,'2013-01-07 20:48:00',1),(1,52,3024926,'2013-01-07 20:48:05',1),(1,208,3024926,'2013-01-07 20:48:05',1),(1,209,3024926,'2013-01-07 20:48:05',1),(1,78,3024926,'2013-01-07 20:48:05',1),(1,221,3024926,'2013-01-07 20:48:05',1),(1,227,3024926,'2013-01-07 20:48:05',1),(1,6,3024926,'2013-01-07 20:48:05',1),(1,4,3024926,'2013-01-07 20:48:05',1),(1,52,3024927,'2013-01-07 20:48:08',1),(1,208,3024927,'2013-01-07 20:48:08',1),(1,209,3024927,'2013-01-07 20:48:08',1),(1,78,3024927,'2013-01-07 20:48:08',1),(1,221,3024927,'2013-01-07 20:48:08',1),(1,227,3024927,'2013-01-07 20:48:08',1),(1,6,3024927,'2013-01-07 20:48:08',1),(1,4,3024927,'2013-01-07 20:48:08',1),(1,170,3025014,'2013-01-07 21:17:42',1),(1,225,3025014,'2013-01-07 21:17:42',1),(1,43,3025014,'2013-01-07 21:17:42',1),(1,57,3025014,'2013-01-07 21:17:42',1),(1,51,3025014,'2013-01-07 21:17:42',1),(1,235,3025014,'2013-01-07 21:17:42',1),(1,194,3025014,'2013-01-07 21:17:42',1),(1,111,3025014,'2013-01-07 21:17:42',1),(1,99,3025014,'2013-01-07 21:17:42',1),(1,192,3025014,'2013-01-07 21:17:42',1),(1,53,3025014,'2013-01-07 21:17:42',1),(1,130,3025014,'2013-01-07 21:17:42',1),(1,211,3025014,'2013-01-07 21:17:42',1),(1,212,3025014,'2013-01-07 21:17:42',1),(1,213,3025014,'2013-01-07 21:17:42',1),(1,81,3025014,'2013-01-07 21:17:42',1),(1,227,3025004,'2013-01-07 21:17:54',1),(1,170,3025004,'2013-01-07 21:17:54',1),(1,225,3025004,'2013-01-07 21:17:54',1),(1,43,3025004,'2013-01-07 21:17:54',1),(1,57,3025004,'2013-01-07 21:17:54',1),(1,51,3025004,'2013-01-07 21:17:54',1),(1,235,3025004,'2013-01-07 21:17:54',1),(1,194,3025004,'2013-01-07 21:17:54',1),(1,111,3025004,'2013-01-07 21:17:54',1),(1,99,3025004,'2013-01-07 21:17:54',1),(1,192,3025004,'2013-01-07 21:17:54',1),(1,53,3025004,'2013-01-07 21:17:54',1),(1,130,3025004,'2013-01-07 21:17:54',1),(1,211,3025004,'2013-01-07 21:17:54',1),(1,212,3025004,'2013-01-07 21:17:54',1),(1,213,3025004,'2013-01-07 21:17:54',1),(1,81,3024928,'2013-01-07 21:18:11',1),(1,52,3024928,'2013-01-07 21:18:11',1),(1,208,3024928,'2013-01-07 21:18:11',1),(1,209,3024928,'2013-01-07 21:18:11',1),(1,78,3024928,'2013-01-07 21:18:11',1),(1,221,3024928,'2013-01-07 21:18:11',1),(1,6,3024928,'2013-01-07 21:18:11',1),(1,4,3024928,'2013-01-07 21:18:11',1),(1,52,3025028,'2013-01-07 21:18:12',1),(1,208,3025028,'2013-01-07 21:18:12',1),(1,209,3025028,'2013-01-07 21:18:12',1),(1,78,3025028,'2013-01-07 21:18:12',1),(1,221,3025028,'2013-01-07 21:18:12',1),(1,227,3025028,'2013-01-07 21:18:12',1),(1,6,3025028,'2013-01-07 21:18:12',1),(1,4,3025028,'2013-01-07 21:18:12',1),(1,227,3025006,'2013-01-07 21:47:24',1),(1,170,3025006,'2013-01-07 21:47:24',1),(1,225,3025006,'2013-01-07 21:47:24',1),(1,43,3025006,'2013-01-07 21:47:24',1),(1,57,3025006,'2013-01-07 21:47:24',1),(1,51,3025006,'2013-01-07 21:47:24',1),(1,235,3025006,'2013-01-07 21:47:24',1),(1,194,3025006,'2013-01-07 21:47:24',1),(1,111,3025025,'2013-01-07 21:48:06',1),(1,99,3025025,'2013-01-07 21:48:06',1),(1,192,3025025,'2013-01-07 21:48:06',1),(1,53,3025025,'2013-01-07 21:48:06',1),(1,130,3025025,'2013-01-07 21:48:06',1),(1,211,3025025,'2013-01-07 21:48:06',1),(1,212,3025025,'2013-01-07 21:48:06',1),(1,213,3025025,'2013-01-07 21:48:06',1),(1,81,3025018,'2013-01-07 21:48:18',1),(1,52,3025018,'2013-01-07 21:48:18',1),(1,208,3025018,'2013-01-07 21:48:18',1),(1,209,3025018,'2013-01-07 21:48:18',1),(1,78,3025018,'2013-01-07 21:48:18',1),(1,221,3025018,'2013-01-07 21:48:18',1),(1,6,3025018,'2013-01-07 21:48:18',1),(1,4,3025018,'2013-01-07 21:48:18',1),(1,227,3025009,'2013-01-07 22:18:24',NULL),(1,170,3025009,'2013-01-07 22:18:24',NULL),(1,225,3025009,'2013-01-07 22:18:24',NULL),(1,43,3025009,'2013-01-07 22:18:24',NULL),(1,57,3025009,'2013-01-07 22:18:24',NULL),(1,51,3025009,'2013-01-07 22:18:24',NULL),(1,235,3025009,'2013-01-07 22:18:24',NULL),(1,194,3025009,'2013-01-07 22:18:24',NULL),(1,76,3025068,'2013-01-08 00:46:12',1),(1,108,3025068,'2013-01-08 00:46:12',1),(1,102,3025068,'2013-01-08 00:46:12',1),(1,215,3025068,'2013-01-08 00:46:12',1),(1,86,3025067,'2013-01-08 00:46:12',1),(1,115,3025067,'2013-01-08 00:46:12',1),(1,87,3025067,'2013-01-08 00:46:12',1),(1,226,3025067,'2013-01-08 00:46:12',1),(1,117,3025067,'2013-01-08 00:46:12',1),(1,55,3025067,'2013-01-08 00:46:12',1),(1,53,3025067,'2013-01-08 00:46:12',1),(1,65,3025067,'2013-01-08 00:46:12',1),(1,135,3025069,'2013-01-08 00:46:12',1),(1,187,3025069,'2013-01-08 00:46:12',1),(1,170,3025069,'2013-01-08 00:46:12',1),(1,43,3025069,'2013-01-08 00:46:12',1),(1,51,3025069,'2013-01-08 00:46:12',1),(1,235,3025069,'2013-01-08 00:46:12',1),(1,111,3025069,'2013-01-08 00:46:12',1),(1,63,3025069,'2013-01-08 00:46:12',1),(1,76,3025070,'2013-01-08 00:46:12',1),(1,108,3025070,'2013-01-08 00:46:12',1),(1,102,3025070,'2013-01-08 00:46:12',1),(1,215,3025070,'2013-01-08 00:46:12',1),(1,61,3025070,'2013-01-08 00:46:12',1),(1,50,3025070,'2013-01-08 00:46:12',1),(1,131,3025070,'2013-01-08 00:46:12',1),(1,199,3025070,'2013-01-08 00:46:12',1),(1,135,3025071,'2013-01-08 00:46:22',1),(1,187,3025071,'2013-01-08 00:46:22',1),(1,170,3025071,'2013-01-08 00:46:22',1),(1,43,3025071,'2013-01-08 00:46:22',1),(1,51,3025071,'2013-01-08 00:46:22',1),(1,235,3025071,'2013-01-08 00:46:22',1),(1,111,3025071,'2013-01-08 00:46:22',1),(1,63,3025071,'2013-01-08 00:46:22',1),(1,206,3025072,'2013-01-08 00:46:22',1),(1,211,3025072,'2013-01-08 00:46:22',1),(1,212,3025072,'2013-01-08 00:46:22',1),(1,213,3025072,'2013-01-08 00:46:22',1),(1,81,3025072,'2013-01-08 00:46:22',1),(1,209,3025072,'2013-01-08 00:46:22',1),(1,78,3025072,'2013-01-08 00:46:22',1),(1,221,3025072,'2013-01-08 00:46:22',1),(1,61,3025073,'2013-01-08 00:46:23',1),(1,50,3025073,'2013-01-08 00:46:23',1),(1,131,3025073,'2013-01-08 00:46:23',1),(1,199,3025073,'2013-01-08 00:46:23',1),(1,222,3025074,'2013-01-08 00:46:26',1),(1,6,3025074,'2013-01-08 00:46:26',1),(1,206,3025075,'2013-01-08 00:46:30',1),(1,211,3025075,'2013-01-08 00:46:30',1),(1,212,3025075,'2013-01-08 00:46:30',1),(1,213,3025075,'2013-01-08 00:46:30',1),(1,222,3025076,'2013-01-08 00:46:30',1),(1,6,3025076,'2013-01-08 00:46:30',1),(1,135,3025077,'2013-01-08 00:46:32',1),(1,187,3025077,'2013-01-08 00:46:32',1),(1,4,3025078,'2013-01-08 00:46:32',1),(1,81,3025082,'2013-01-08 00:46:37',1),(1,209,3025082,'2013-01-08 00:46:37',1),(1,78,3025083,'2013-01-08 00:46:44',1),(1,221,3025083,'2013-01-08 00:46:44',1),(1,86,3025084,'2013-01-08 00:46:45',1),(1,115,3025084,'2013-01-08 00:46:45',1),(1,87,3025084,'2013-01-08 00:46:45',1),(1,226,3025084,'2013-01-08 00:46:45',1),(1,117,3025085,'2013-01-08 00:46:45',1),(1,55,3025085,'2013-01-08 00:46:45',1),(1,53,3025085,'2013-01-08 00:46:45',1),(1,65,3025085,'2013-01-08 00:46:45',1),(1,117,3025173,'2013-01-08 01:46:12',1),(1,55,3025173,'2013-01-08 01:46:12',1),(1,102,3025173,'2013-01-08 01:46:12',1),(1,61,3025173,'2013-01-08 01:46:12',1),(1,131,3025173,'2013-01-08 01:46:12',1),(1,81,3025173,'2013-01-08 01:46:12',1),(1,222,3025173,'2013-01-08 01:46:12',1),(1,6,3025173,'2013-01-08 01:46:12',1),(1,216,3025174,'2013-01-08 01:46:12',1),(1,131,3025174,'2013-01-08 01:46:12',1),(1,63,3025175,'2013-01-08 01:46:12',1),(1,86,3025175,'2013-01-08 01:46:12',1),(1,115,3025175,'2013-01-08 01:46:12',1),(1,87,3025175,'2013-01-08 01:46:12',1),(1,63,3025176,'2013-01-08 01:46:12',1),(1,86,3025176,'2013-01-08 01:46:12',1),(1,115,3025176,'2013-01-08 01:46:12',1),(1,87,3025176,'2013-01-08 01:46:12',1),(1,117,3025176,'2013-01-08 01:46:12',1),(1,55,3025176,'2013-01-08 01:46:12',1),(1,102,3025176,'2013-01-08 01:46:12',1),(1,61,3025176,'2013-01-08 01:46:12',1),(1,81,3025171,'2013-01-08 01:46:20',1),(1,222,3025171,'2013-01-08 01:46:20',1),(1,131,3025170,'2013-01-08 01:46:20',1),(1,81,3025170,'2013-01-08 01:46:20',1),(1,222,3025170,'2013-01-08 01:46:20',1),(1,6,3025170,'2013-01-08 01:46:20',1),(1,135,3025238,'2013-01-08 02:46:14',1),(1,187,3025238,'2013-01-08 02:46:14',1),(1,225,3025238,'2013-01-08 02:46:14',1),(1,63,3025238,'2013-01-08 02:46:14',1),(1,225,3025240,'2013-01-08 02:46:14',1),(1,63,3025240,'2013-01-08 02:46:14',1),(1,86,3025240,'2013-01-08 02:46:14',1),(1,55,3025240,'2013-01-08 02:46:14',1),(1,135,3025241,'2013-01-08 02:46:14',1),(1,187,3025241,'2013-01-08 02:46:14',1),(1,225,3025241,'2013-01-08 02:46:14',1),(1,57,3025241,'2013-01-08 02:46:14',1),(1,85,3025244,'2013-01-08 02:46:22',1),(1,86,3025244,'2013-01-08 02:46:22',1),(1,235,3025243,'2013-01-08 02:46:22',1),(1,4,3025243,'2013-01-08 02:46:22',1),(1,135,3025249,'2013-01-08 02:46:30',1),(1,187,3025249,'2013-01-08 02:46:30',1),(1,225,3025249,'2013-01-08 02:46:30',1),(1,57,3025249,'2013-01-08 02:46:30',1),(1,63,3025254,'2013-01-08 02:46:45',1),(1,209,3025254,'2013-01-08 02:46:45',1),(1,63,3025248,'2013-01-08 02:46:48',1),(1,199,3025248,'2013-01-08 02:46:48',1),(1,226,3025239,'2013-01-08 03:16:15',NULL),(1,216,3025239,'2013-01-08 03:16:15',NULL),(1,81,3025239,'2013-01-08 03:16:15',NULL),(1,222,3025239,'2013-01-08 03:16:15',NULL),(1,115,3025242,'2013-01-08 03:16:23',1),(1,87,3025245,'2013-01-08 03:16:23',1),(1,50,3025172,'2013-01-08 03:16:29',1),(1,43,3025169,'2013-01-08 03:16:30',1),(1,87,3025246,'2013-01-08 03:16:32',1),(1,102,3025079,'2013-01-08 03:16:47',1),(1,87,3025080,'2013-01-08 03:16:47',1),(1,115,3025081,'2013-01-08 03:16:49',1),(1,215,3025066,'2013-01-08 03:16:57',1),(1,187,3025329,'2013-01-08 03:46:13',1),(1,51,3025329,'2013-01-08 03:46:13',1),(1,235,3025329,'2013-01-08 03:46:13',1),(1,209,3025329,'2013-01-08 03:46:13',1),(1,187,3025331,'2013-01-08 03:46:13',1),(1,51,3025331,'2013-01-08 03:46:13',1),(1,235,3025331,'2013-01-08 03:46:13',1),(1,209,3025331,'2013-01-08 03:46:13',1),(1,6,3025332,'2013-01-08 03:46:13',1),(1,187,3025333,'2013-01-08 03:46:20',1),(1,235,3025333,'2013-01-08 03:46:20',1),(1,6,3025330,'2013-01-08 03:46:20',1),(1,206,3025334,'2013-01-08 03:46:20',1),(1,221,3025336,'2013-01-08 03:46:28',1),(1,6,3025336,'2013-01-08 03:46:28',1),(1,135,3025338,'2013-01-08 03:46:29',1),(1,4,3025338,'2013-01-08 03:46:29',1),(1,135,3025250,'2013-01-08 03:46:35',1),(1,187,3025250,'2013-01-08 03:46:35',1),(1,51,3025250,'2013-01-08 03:46:35',1),(1,235,3025250,'2013-01-08 03:46:35',1),(1,209,3025250,'2013-01-08 03:46:35',1),(1,221,3025250,'2013-01-08 03:46:35',1),(1,6,3025250,'2013-01-08 03:46:35',1),(1,4,3025250,'2013-01-08 03:46:35',1),(1,135,3025344,'2013-01-08 03:46:46',1),(1,4,3025344,'2013-01-08 03:46:46',1),(1,135,3025347,'2013-01-08 03:46:52',1),(1,4,3025347,'2013-01-08 03:46:52',1),(1,51,3025337,'2013-01-08 03:47:01',1),(1,226,3025339,'2013-01-08 04:16:39',1),(1,212,3025339,'2013-01-08 04:16:39',1),(1,81,3025339,'2013-01-08 04:16:39',1),(1,6,3025339,'2013-01-08 04:16:39',1),(1,206,3025340,'2013-01-08 04:16:40',1),(1,222,3025340,'2013-01-08 04:16:40',1),(1,135,3025251,'2013-01-08 04:16:44',1),(1,187,3025251,'2013-01-08 04:16:44',1),(1,170,3025251,'2013-01-08 04:16:44',1),(1,51,3025251,'2013-01-08 04:16:44',1),(1,235,3025251,'2013-01-08 04:16:44',1),(1,117,3025251,'2013-01-08 04:16:44',1),(1,216,3025251,'2013-01-08 04:16:44',1),(1,211,3025251,'2013-01-08 04:16:44',1),(1,135,3025252,'2013-01-08 04:16:45',1),(1,187,3025252,'2013-01-08 04:16:45',1),(1,51,3025252,'2013-01-08 04:16:45',1),(1,235,3025252,'2013-01-08 04:16:45',1),(1,216,3025252,'2013-01-08 04:16:45',1),(1,211,3025252,'2013-01-08 04:16:45',1),(1,209,3025252,'2013-01-08 04:16:45',1),(1,221,3025252,'2013-01-08 04:16:45',1),(1,135,3025253,'2013-01-08 04:16:45',1),(1,187,3025253,'2013-01-08 04:16:45',1),(1,51,3025253,'2013-01-08 04:16:45',1),(1,235,3025253,'2013-01-08 04:16:45',1),(1,216,3025253,'2013-01-08 04:16:45',1),(1,211,3025253,'2013-01-08 04:16:45',1),(1,209,3025253,'2013-01-08 04:16:45',1),(1,221,3025253,'2013-01-08 04:16:45',1),(1,226,3025343,'2013-01-08 04:16:48',1),(1,212,3025343,'2013-01-08 04:16:48',1),(1,81,3025343,'2013-01-08 04:16:48',1),(1,6,3025343,'2013-01-08 04:16:48',1),(1,169,3025346,'2013-01-08 04:16:54',1),(1,63,3025346,'2013-01-08 04:16:54',1),(1,50,3025346,'2013-01-08 04:16:54',1),(1,199,3025346,'2013-01-08 04:16:54',1),(1,135,3025328,'2013-01-08 04:46:16',1),(1,187,3025328,'2013-01-08 04:46:16',1),(1,170,3025328,'2013-01-08 04:46:16',1),(1,43,3025328,'2013-01-08 04:46:16',1),(1,51,3025328,'2013-01-08 04:46:16',1),(1,235,3025328,'2013-01-08 04:46:16',1),(1,117,3025328,'2013-01-08 04:46:16',1),(1,216,3025328,'2013-01-08 04:46:16',1),(1,169,3025349,'2013-01-08 04:46:58',1),(1,63,3025349,'2013-01-08 04:46:58',1),(1,50,3025349,'2013-01-08 04:46:58',1),(1,199,3025349,'2013-01-08 04:46:58',1),(1,135,3025350,'2013-01-08 05:16:35',1),(1,187,3025350,'2013-01-08 05:16:35',1),(1,170,3025350,'2013-01-08 05:16:35',1),(1,43,3025350,'2013-01-08 05:16:35',1),(1,51,3025350,'2013-01-08 05:16:35',1),(1,235,3025350,'2013-01-08 05:16:35',1),(1,117,3025350,'2013-01-08 05:16:35',1),(1,216,3025350,'2013-01-08 05:16:35',1),(1,135,3025351,'2013-01-08 05:46:37',NULL),(1,187,3025351,'2013-01-08 05:46:37',NULL),(1,170,3025351,'2013-01-08 05:46:37',NULL),(1,43,3025351,'2013-01-08 05:46:37',NULL),(1,51,3025351,'2013-01-08 05:46:37',NULL),(1,235,3025351,'2013-01-08 05:46:37',NULL),(1,117,3025351,'2013-01-08 05:46:37',NULL),(1,216,3025351,'2013-01-08 05:46:37',NULL),(1,119,3025247,'2013-01-08 06:46:46',1),(1,136,3025247,'2013-01-08 06:46:46',1),(1,138,3025247,'2013-01-08 06:46:46',1),(1,97,3025247,'2013-01-08 06:46:46',1),(1,139,3025247,'2013-01-08 06:46:46',1),(1,89,3025247,'2013-01-08 06:46:46',1),(1,121,3025247,'2013-01-08 06:46:46',1),(1,11,3025247,'2013-01-08 06:46:46',1),(1,123,3025247,'2013-01-08 06:46:46',1),(1,18,3025247,'2013-01-08 06:46:46',1),(1,57,3025247,'2013-01-08 06:46:46',1),(1,194,3025247,'2013-01-08 06:46:46',1),(1,85,3025247,'2013-01-08 06:46:46',1),(1,130,3025247,'2013-01-08 06:46:46',1),(1,223,3025247,'2013-01-08 06:46:46',1),(1,6,3025247,'2013-01-08 06:46:46',1),(1,135,3025345,'2013-01-08 06:46:59',1),(1,187,3025345,'2013-01-08 06:46:59',1),(1,170,3025345,'2013-01-08 06:46:59',1),(1,43,3025345,'2013-01-08 06:46:59',1),(1,51,3025345,'2013-01-08 06:46:59',1),(1,235,3025345,'2013-01-08 06:46:59',1),(1,115,3025345,'2013-01-08 06:46:59',1),(1,117,3025345,'2013-01-08 06:46:59',1),(1,51,3025327,'2013-01-08 07:16:52',1),(1,85,3025327,'2013-01-08 07:16:52',1),(1,192,3025327,'2013-01-08 07:16:52',1),(1,250,3025327,'2013-01-08 07:16:52',1),(1,226,3025327,'2013-01-08 07:16:52',1),(1,130,3025327,'2013-01-08 07:16:52',1),(1,65,3025327,'2013-01-08 07:16:52',1),(1,108,3025327,'2013-01-08 07:16:52',1),(1,215,3025327,'2013-01-08 07:16:52',1),(1,216,3025327,'2013-01-08 07:16:52',1),(1,131,3025327,'2013-01-08 07:16:52',1),(1,206,3025327,'2013-01-08 07:16:52',1),(1,212,3025327,'2013-01-08 07:16:52',1),(1,213,3025327,'2013-01-08 07:16:52',1),(1,208,3025327,'2013-01-08 07:16:52',1),(1,222,3025327,'2013-01-08 07:16:52',1),(1,119,3025237,'2013-01-08 07:16:56',1),(1,136,3025237,'2013-01-08 07:16:56',1),(1,138,3025237,'2013-01-08 07:16:56',1),(1,97,3025237,'2013-01-08 07:16:56',1),(1,139,3025237,'2013-01-08 07:16:56',1),(1,89,3025237,'2013-01-08 07:16:56',1),(1,121,3025237,'2013-01-08 07:16:56',1),(1,11,3025237,'2013-01-08 07:16:56',1),(1,123,3025237,'2013-01-08 07:16:56',1),(1,18,3025237,'2013-01-08 07:16:56',1),(1,57,3025237,'2013-01-08 07:16:56',1),(1,194,3025237,'2013-01-08 07:16:56',1),(1,85,3025237,'2013-01-08 07:16:56',1),(1,192,3025237,'2013-01-08 07:16:56',1),(1,250,3025237,'2013-01-08 07:16:56',1),(1,130,3025237,'2013-01-08 07:16:56',1),(1,226,3025342,'2013-01-08 07:17:00',1),(1,65,3025342,'2013-01-08 07:17:00',1),(1,216,3025342,'2013-01-08 07:17:00',1),(1,206,3025342,'2013-01-08 07:17:00',1),(1,212,3025342,'2013-01-08 07:17:00',1),(1,208,3025342,'2013-01-08 07:17:00',1),(1,6,3025342,'2013-01-08 07:17:00',1),(1,4,3025342,'2013-01-08 07:17:00',1),(1,226,3025348,'2013-01-08 07:17:07',1),(1,65,3025348,'2013-01-08 07:17:07',1),(1,215,3025348,'2013-01-08 07:17:07',1),(1,216,3025348,'2013-01-08 07:17:07',1),(1,131,3025348,'2013-01-08 07:17:07',1),(1,206,3025348,'2013-01-08 07:17:07',1),(1,212,3025348,'2013-01-08 07:17:07',1),(1,213,3025348,'2013-01-08 07:17:07',1),(1,160,3025335,'2013-01-08 07:46:38',NULL),(1,227,3025335,'2013-01-08 07:46:38',NULL),(1,119,3025335,'2013-01-08 07:46:38',NULL),(1,136,3025335,'2013-01-08 07:46:38',NULL),(1,138,3025335,'2013-01-08 07:46:38',NULL),(1,97,3025335,'2013-01-08 07:46:38',NULL),(1,139,3025335,'2013-01-08 07:46:38',NULL),(1,89,3025335,'2013-01-08 07:46:38',NULL),(1,120,3025335,'2013-01-08 07:46:38',NULL),(1,121,3025335,'2013-01-08 07:46:38',NULL),(1,11,3025335,'2013-01-08 07:46:38',NULL),(1,123,3025335,'2013-01-08 07:46:38',NULL),(1,18,3025335,'2013-01-08 07:46:38',NULL),(1,57,3025335,'2013-01-08 07:46:38',NULL),(1,194,3025335,'2013-01-08 07:46:38',NULL),(1,99,3025335,'2013-01-08 07:46:38',NULL),(1,111,3025341,'2013-01-08 07:46:56',1),(1,169,3025341,'2013-01-08 07:46:56',1),(1,63,3025341,'2013-01-08 07:46:56',1),(1,86,3025341,'2013-01-08 07:46:56',1),(1,117,3025341,'2013-01-08 07:46:56',1),(1,53,3025341,'2013-01-08 07:46:56',1),(1,76,3025341,'2013-01-08 07:46:56',1),(1,142,3025341,'2013-01-08 07:46:56',1),(1,61,3025341,'2013-01-08 07:46:56',1),(1,50,3025341,'2013-01-08 07:46:56',1),(1,211,3025341,'2013-01-08 07:46:56',1),(1,81,3025341,'2013-01-08 07:46:56',1),(1,209,3025341,'2013-01-08 07:46:56',1),(1,78,3025341,'2013-01-08 07:46:56',1),(1,221,3025341,'2013-01-08 07:46:56',1),(1,6,3025341,'2013-01-08 07:46:56',1),(1,231,3025468,'2013-01-09 00:16:18',NULL),(1,220,3025468,'2013-01-09 00:16:18',NULL),(1,231,3025470,'2013-01-09 00:46:28',NULL),(1,220,3025470,'2013-01-09 00:46:28',NULL),(1,231,3025471,'2013-01-09 00:46:28',NULL),(1,220,3025471,'2013-01-09 00:46:28',NULL),(1,231,3025473,'2013-01-09 00:46:28',NULL),(1,220,3025472,'2013-01-09 00:46:28',1),(1,231,3025474,'2013-01-09 00:46:37',NULL),(1,231,3025475,'2013-01-09 00:46:37',NULL),(1,231,3025476,'2013-01-09 00:46:39',NULL),(1,220,3025476,'2013-01-09 00:46:39',NULL),(1,231,3025477,'2013-01-09 00:46:39',NULL),(1,220,3025477,'2013-01-09 00:46:39',NULL),(1,231,3025480,'2013-01-09 00:46:45',NULL),(1,231,3025564,'2013-01-09 01:16:10',NULL),(1,149,3025564,'2013-01-09 01:16:10',NULL),(1,220,3025567,'2013-01-09 01:46:12',1),(1,231,3025462,'2013-01-09 01:46:17',NULL),(1,149,3025462,'2013-01-09 01:46:17',NULL),(1,220,3025462,'2013-01-09 01:46:17',NULL),(1,142,3025462,'2013-01-09 01:46:17',NULL),(1,231,3025561,'2013-01-09 01:46:21',NULL),(1,149,3025561,'2013-01-09 01:46:21',NULL),(1,231,3025562,'2013-01-09 01:46:22',NULL),(1,231,3025467,'2013-01-09 01:46:25',NULL),(1,149,3025467,'2013-01-09 01:46:25',NULL),(1,220,3025467,'2013-01-09 01:46:25',NULL),(1,142,3025467,'2013-01-09 01:46:25',NULL),(1,9,3025641,'2013-01-09 02:46:11',1),(1,56,3025641,'2013-01-09 02:46:11',1),(1,4,3025642,'2013-01-09 02:46:11',1),(1,9,3025650,'2013-01-09 02:46:19',1),(1,56,3025650,'2013-01-09 02:46:19',1),(1,4,3025652,'2013-01-09 02:46:19',1),(1,9,3025644,'2013-01-09 02:46:30',1),(1,56,3025644,'2013-01-09 02:46:30',1),(1,9,3025640,'2013-01-09 02:46:35',1),(1,56,3025640,'2013-01-09 02:46:35',1),(1,4,3025639,'2013-01-09 02:46:43',1),(1,9,3025565,'2013-01-09 03:16:17',NULL),(1,56,3025565,'2013-01-09 03:16:17',NULL),(1,228,3025565,'2013-01-09 03:16:17',NULL),(1,4,3025565,'2013-01-09 03:16:17',NULL),(1,9,3025651,'2013-01-09 03:16:21',1),(1,56,3025651,'2013-01-09 03:16:21',1),(1,228,3025651,'2013-01-09 03:16:21',1),(1,4,3025651,'2013-01-09 03:16:21',1),(1,9,3025560,'2013-01-09 03:16:32',1),(1,56,3025560,'2013-01-09 03:16:32',1),(1,228,3025560,'2013-01-09 03:16:32',1),(1,4,3025560,'2013-01-09 03:16:32',1),(1,9,3025635,'2013-01-09 03:16:33',1),(1,56,3025635,'2013-01-09 03:16:33',1),(1,228,3025635,'2013-01-09 03:16:33',1),(1,4,3025635,'2013-01-09 03:16:33',1),(1,9,3025469,'2013-01-09 03:16:39',1),(1,56,3025469,'2013-01-09 03:16:39',1),(1,228,3025469,'2013-01-09 03:16:39',1),(1,4,3025469,'2013-01-09 03:16:39',1),(1,9,3025637,'2013-01-09 03:16:41',1),(1,56,3025637,'2013-01-09 03:16:41',1),(1,228,3025637,'2013-01-09 03:16:41',1),(1,4,3025637,'2013-01-09 03:16:41',1),(1,9,3025478,'2013-01-09 03:16:57',1),(1,56,3025478,'2013-01-09 03:16:57',1),(1,228,3025478,'2013-01-09 03:16:57',1),(1,4,3025478,'2013-01-09 03:16:57',1),(1,9,3025479,'2013-01-09 03:16:57',1),(1,56,3025479,'2013-01-09 03:16:57',1),(1,228,3025479,'2013-01-09 03:16:57',1),(1,4,3025479,'2013-01-09 03:16:57',1),(1,9,3025745,'2013-01-09 04:16:40',1),(1,56,3025745,'2013-01-09 04:16:40',1),(1,228,3025745,'2013-01-09 04:16:40',1),(1,4,3025745,'2013-01-09 04:16:40',1),(1,9,3025636,'2013-01-09 04:16:44',NULL),(1,56,3025636,'2013-01-09 04:16:44',NULL),(1,228,3025636,'2013-01-09 04:16:44',NULL),(1,4,3025636,'2013-01-09 04:16:44',NULL),(1,9,3025748,'2013-01-09 04:16:47',1),(1,56,3025748,'2013-01-09 04:16:47',1),(1,228,3025748,'2013-01-09 04:16:47',1),(1,4,3025748,'2013-01-09 04:16:47',1),(1,9,3025638,'2013-01-09 04:16:47',1),(1,56,3025638,'2013-01-09 04:16:47',1),(1,228,3025638,'2013-01-09 04:16:47',1),(1,4,3025638,'2013-01-09 04:16:47',1),(1,6,3025731,'2013-01-09 04:46:16',1),(1,48,3025732,'2013-01-09 04:46:16',1),(1,245,3025732,'2013-01-09 04:46:16',1),(1,6,3025733,'2013-01-09 04:46:16',1),(1,6,3025734,'2013-01-09 04:46:16',1),(1,48,3025736,'2013-01-09 04:46:29',1),(1,245,3025736,'2013-01-09 04:46:29',1),(1,245,3025738,'2013-01-09 04:46:30',1),(1,4,3025738,'2013-01-09 04:46:30',1),(1,9,3025751,'2013-01-09 04:46:53',1),(1,56,3025751,'2013-01-09 04:46:53',1),(1,228,3025751,'2013-01-09 04:46:53',1),(1,4,3025751,'2013-01-09 04:46:53',1),(1,9,3025729,'2013-01-09 04:46:57',1),(1,56,3025729,'2013-01-09 04:46:57',1),(1,228,3025729,'2013-01-09 04:46:57',1),(1,48,3025729,'2013-01-09 04:46:57',1),(1,4,3025752,'2013-01-09 04:46:57',1),(1,9,3025740,'2013-01-09 04:46:57',1),(1,56,3025740,'2013-01-09 04:46:57',1),(1,228,3025740,'2013-01-09 04:46:57',1),(1,4,3025740,'2013-01-09 04:46:57',1),(1,245,3025742,'2013-01-09 05:16:39',1),(1,6,3025742,'2013-01-09 05:16:39',1),(1,9,3025746,'2013-01-09 05:16:45',1),(1,56,3025746,'2013-01-09 05:16:45',1),(1,228,3025749,'2013-01-09 05:16:51',1),(1,48,3025749,'2013-01-09 05:16:51',1),(1,9,3025730,'2013-01-09 05:17:00',1),(1,56,3025730,'2013-01-09 05:17:00',1),(1,228,3025730,'2013-01-09 05:17:00',1),(1,48,3025730,'2013-01-09 05:17:00',1),(1,216,3025648,'2013-01-09 06:46:29',1),(1,50,3025648,'2013-01-09 06:46:29',1),(1,131,3025648,'2013-01-09 06:46:29',1),(1,217,3025648,'2013-01-09 06:46:29',1),(1,219,3025648,'2013-01-09 06:46:29',1),(1,199,3025648,'2013-01-09 06:46:29',1),(1,200,3025648,'2013-01-09 06:46:29',1),(1,201,3025648,'2013-01-09 06:46:29',1),(1,216,3025566,'2013-01-09 06:46:32',1),(1,50,3025566,'2013-01-09 06:46:32',1),(1,131,3025566,'2013-01-09 06:46:32',1),(1,217,3025566,'2013-01-09 06:46:32',1),(1,219,3025566,'2013-01-09 06:46:32',1),(1,199,3025566,'2013-01-09 06:46:32',1),(1,200,3025566,'2013-01-09 06:46:32',1),(1,201,3025566,'2013-01-09 06:46:32',1),(1,216,3025645,'2013-01-09 06:46:38',1),(1,50,3025645,'2013-01-09 06:46:38',1),(1,131,3025645,'2013-01-09 06:46:38',1),(1,217,3025645,'2013-01-09 06:46:38',1),(1,219,3025645,'2013-01-09 06:46:38',1),(1,199,3025645,'2013-01-09 06:46:38',1),(1,200,3025645,'2013-01-09 06:46:38',1),(1,201,3025645,'2013-01-09 06:46:38',1),(1,216,3025464,'2013-01-09 06:46:39',1),(1,50,3025464,'2013-01-09 06:46:39',1),(1,131,3025464,'2013-01-09 06:46:39',1),(1,217,3025464,'2013-01-09 06:46:39',1),(1,219,3025464,'2013-01-09 06:46:39',1),(1,199,3025464,'2013-01-09 06:46:39',1),(1,200,3025464,'2013-01-09 06:46:39',1),(1,201,3025464,'2013-01-09 06:46:39',1),(1,216,3025463,'2013-01-09 06:46:40',1),(1,50,3025463,'2013-01-09 06:46:40',1),(1,131,3025463,'2013-01-09 06:46:40',1),(1,217,3025463,'2013-01-09 06:46:40',1),(1,219,3025463,'2013-01-09 06:46:40',1),(1,199,3025463,'2013-01-09 06:46:40',1),(1,200,3025463,'2013-01-09 06:46:40',1),(1,201,3025463,'2013-01-09 06:46:40',1),(1,216,3025563,'2013-01-09 06:46:42',1),(1,50,3025563,'2013-01-09 06:46:42',1),(1,131,3025563,'2013-01-09 06:46:42',1),(1,217,3025563,'2013-01-09 06:46:42',1),(1,219,3025563,'2013-01-09 06:46:42',1),(1,199,3025563,'2013-01-09 06:46:42',1),(1,200,3025563,'2013-01-09 06:46:42',1),(1,201,3025563,'2013-01-09 06:46:42',1),(1,216,3025465,'2013-01-09 06:46:43',1),(1,50,3025465,'2013-01-09 06:46:43',1),(1,131,3025465,'2013-01-09 06:46:43',1),(1,217,3025465,'2013-01-09 06:46:43',1),(1,219,3025465,'2013-01-09 06:46:43',1),(1,199,3025465,'2013-01-09 06:46:43',1),(1,200,3025465,'2013-01-09 06:46:43',1),(1,201,3025465,'2013-01-09 06:46:43',1),(1,216,3025647,'2013-01-09 06:46:51',1),(1,50,3025647,'2013-01-09 06:46:51',1),(1,131,3025647,'2013-01-09 06:46:51',1),(1,217,3025647,'2013-01-09 06:46:51',1),(1,219,3025647,'2013-01-09 06:46:51',1),(1,199,3025647,'2013-01-09 06:46:51',1),(1,200,3025647,'2013-01-09 06:46:51',1),(1,201,3025647,'2013-01-09 06:46:51',1),(1,216,3025466,'2013-01-09 06:46:55',1),(1,50,3025466,'2013-01-09 06:46:55',1),(1,131,3025466,'2013-01-09 06:46:55',1),(1,217,3025466,'2013-01-09 06:46:55',1),(1,219,3025466,'2013-01-09 06:46:55',1),(1,199,3025466,'2013-01-09 06:46:55',1),(1,200,3025466,'2013-01-09 06:46:55',1),(1,201,3025466,'2013-01-09 06:46:55',1),(1,216,3025461,'2013-01-09 06:47:11',1),(1,50,3025461,'2013-01-09 06:47:11',1),(1,131,3025461,'2013-01-09 06:47:11',1),(1,217,3025461,'2013-01-09 06:47:11',1),(1,219,3025461,'2013-01-09 06:47:11',1),(1,199,3025461,'2013-01-09 06:47:11',1),(1,200,3025461,'2013-01-09 06:47:11',1),(1,201,3025461,'2013-01-09 06:47:11',1),(1,216,3025728,'2013-01-09 07:16:35',1),(1,50,3025728,'2013-01-09 07:16:35',1),(1,131,3025728,'2013-01-09 07:16:35',1),(1,217,3025728,'2013-01-09 07:16:35',1),(1,219,3025728,'2013-01-09 07:16:35',1),(1,199,3025728,'2013-01-09 07:16:35',1),(1,200,3025728,'2013-01-09 07:16:35',1),(1,201,3025728,'2013-01-09 07:16:35',1),(1,216,3025649,'2013-01-09 07:17:03',1),(1,50,3025649,'2013-01-09 07:17:03',1),(1,131,3025649,'2013-01-09 07:17:03',1),(1,217,3025649,'2013-01-09 07:17:03',1),(1,219,3025649,'2013-01-09 07:17:03',1),(1,199,3025649,'2013-01-09 07:17:03',1),(1,200,3025649,'2013-01-09 07:17:03',1),(1,201,3025649,'2013-01-09 07:17:03',1),(1,216,3025739,'2013-01-09 07:46:48',1),(1,50,3025739,'2013-01-09 07:46:48',1),(1,131,3025739,'2013-01-09 07:46:48',1),(1,217,3025739,'2013-01-09 07:46:48',1),(1,219,3025739,'2013-01-09 07:46:48',1),(1,199,3025739,'2013-01-09 07:46:48',1),(1,200,3025739,'2013-01-09 07:46:48',1),(1,201,3025739,'2013-01-09 07:46:48',1),(1,216,3025744,'2013-01-09 07:46:54',1),(1,50,3025744,'2013-01-09 07:46:54',1),(1,131,3025744,'2013-01-09 07:46:54',1),(1,217,3025744,'2013-01-09 07:46:54',1),(1,219,3025744,'2013-01-09 07:46:54',1),(1,199,3025744,'2013-01-09 07:46:54',1),(1,200,3025744,'2013-01-09 07:46:54',1),(1,201,3025744,'2013-01-09 07:46:54',1),(1,216,3025747,'2013-01-09 08:17:00',1),(1,50,3025747,'2013-01-09 08:17:00',1),(1,131,3025747,'2013-01-09 08:17:00',1),(1,217,3025747,'2013-01-09 08:17:00',1),(1,219,3025747,'2013-01-09 08:17:00',1),(1,199,3025747,'2013-01-09 08:17:00',1),(1,200,3025747,'2013-01-09 08:17:00',1),(1,201,3025747,'2013-01-09 08:17:00',1),(1,216,3025750,'2013-01-09 08:17:03',1),(1,50,3025750,'2013-01-09 08:17:03',1),(1,131,3025750,'2013-01-09 08:17:03',1),(1,217,3025750,'2013-01-09 08:17:03',1),(1,219,3025750,'2013-01-09 08:17:03',1),(1,199,3025750,'2013-01-09 08:17:03',1),(1,200,3025750,'2013-01-09 08:17:03',1),(1,201,3025750,'2013-01-09 08:17:03',1),(1,140,3025643,'2013-01-09 08:46:38',1),(1,216,3025643,'2013-01-09 08:46:38',1),(1,50,3025643,'2013-01-09 08:46:38',1),(1,131,3025643,'2013-01-09 08:46:38',1),(1,217,3025643,'2013-01-09 08:46:38',1),(1,219,3025643,'2013-01-09 08:46:38',1),(1,199,3025643,'2013-01-09 08:46:38',1),(1,200,3025643,'2013-01-09 08:46:38',1),(1,201,3025643,'2013-01-09 08:46:38',1),(1,77,3025643,'2013-01-09 08:46:38',1),(1,241,3025643,'2013-01-09 08:46:38',1),(1,69,3025643,'2013-01-09 08:46:38',1),(1,56,3025643,'2013-01-09 08:46:38',1),(1,228,3025643,'2013-01-09 08:46:38',1),(1,6,3025643,'2013-01-09 08:46:38',1),(1,4,3025643,'2013-01-09 08:46:38',1),(1,216,3025737,'2013-01-09 08:47:21',1),(1,50,3025737,'2013-01-09 08:47:21',1),(1,131,3025737,'2013-01-09 08:47:21',1),(1,217,3025737,'2013-01-09 08:47:21',1),(1,219,3025737,'2013-01-09 08:47:21',1),(1,199,3025737,'2013-01-09 08:47:21',1),(1,200,3025737,'2013-01-09 08:47:21',1),(1,201,3025737,'2013-01-09 08:47:21',1),(1,20,3025646,'2013-01-09 23:47:56',1),(1,150,3025646,'2013-01-09 23:47:56',1),(1,41,3025646,'2013-01-09 23:47:56',1),(1,152,3025646,'2013-01-09 23:47:56',1),(1,147,3025646,'2013-01-09 23:47:56',1),(1,12,3025646,'2013-01-09 23:47:56',1),(1,154,3025646,'2013-01-09 23:47:56',1),(1,28,3025646,'2013-01-09 23:47:56',1),(1,46,3025646,'2013-01-09 23:47:56',1),(1,186,3025646,'2013-01-09 23:47:56',1),(1,155,3025646,'2013-01-09 23:47:56',1),(1,158,3025646,'2013-01-09 23:47:56',1),(1,98,3025646,'2013-01-09 23:47:56',1),(1,233,3025646,'2013-01-09 23:47:56',1),(1,234,3025646,'2013-01-09 23:47:56',1),(1,161,3025646,'2013-01-09 23:47:56',1),(1,175,3025735,'2013-01-10 00:17:46',NULL),(1,58,3025735,'2013-01-10 00:17:46',NULL),(1,148,3025735,'2013-01-10 00:17:46',NULL),(1,1,3025735,'2013-01-10 00:17:46',NULL),(1,109,3025735,'2013-01-10 00:17:46',NULL),(1,35,3025735,'2013-01-10 00:17:46',NULL),(1,36,3025735,'2013-01-10 00:17:46',NULL),(1,37,3025735,'2013-01-10 00:17:46',NULL),(1,30,3025735,'2013-01-10 00:17:46',NULL),(1,106,3025735,'2013-01-10 00:17:46',NULL),(1,188,3025735,'2013-01-10 00:17:46',NULL),(1,107,3025735,'2013-01-10 00:17:46',NULL),(1,15,3025735,'2013-01-10 00:17:46',NULL),(1,112,3025735,'2013-01-10 00:17:46',NULL),(1,203,3025735,'2013-01-10 00:17:46',NULL),(1,231,3025735,'2013-01-10 00:17:46',NULL),(1,20,3025741,'2013-01-10 00:17:57',1),(1,16,3025741,'2013-01-10 00:17:57',1),(1,25,3025741,'2013-01-10 00:17:57',1),(1,125,3025741,'2013-01-10 00:17:57',1),(1,183,3025741,'2013-01-10 00:17:57',1),(1,237,3025741,'2013-01-10 00:17:57',1),(1,150,3025741,'2013-01-10 00:17:57',1),(1,41,3025741,'2013-01-10 00:17:57',1),(1,152,3025741,'2013-01-10 00:17:57',1),(1,147,3025741,'2013-01-10 00:17:57',1),(1,12,3025741,'2013-01-10 00:17:57',1),(1,154,3025741,'2013-01-10 00:17:57',1),(1,28,3025741,'2013-01-10 00:17:57',1),(1,46,3025741,'2013-01-10 00:17:57',1),(1,186,3025741,'2013-01-10 00:17:57',1),(1,155,3025741,'2013-01-10 00:17:57',1),(1,158,3025791,'2013-01-10 00:46:13',1),(1,98,3025791,'2013-01-10 00:46:13',1),(1,233,3025791,'2013-01-10 00:46:13',1),(1,234,3025791,'2013-01-10 00:46:13',1),(1,179,3025791,'2013-01-10 00:46:13',1),(1,161,3025791,'2013-01-10 00:46:13',1),(1,231,3025791,'2013-01-10 00:46:13',1),(1,2,3025791,'2013-01-10 00:46:13',1),(1,224,3025792,'2013-01-10 00:46:13',1),(1,155,3025792,'2013-01-10 00:46:13',1),(1,158,3025792,'2013-01-10 00:46:13',1),(1,98,3025792,'2013-01-10 00:46:13',1),(1,233,3025792,'2013-01-10 00:46:13',1),(1,234,3025792,'2013-01-10 00:46:13',1),(1,179,3025792,'2013-01-10 00:46:13',1),(1,161,3025792,'2013-01-10 00:46:13',1),(1,101,3025793,'2013-01-10 00:46:13',1),(1,116,3025793,'2013-01-10 00:46:13',1),(1,107,3025793,'2013-01-10 00:46:13',1),(1,15,3025793,'2013-01-10 00:46:13',1),(1,112,3025793,'2013-01-10 00:46:13',1),(1,203,3025793,'2013-01-10 00:46:13',1),(1,108,3025793,'2013-01-10 00:46:13',1),(1,142,3025793,'2013-01-10 00:46:13',1),(1,158,3025794,'2013-01-10 00:46:13',1),(1,98,3025794,'2013-01-10 00:46:13',1),(1,233,3025794,'2013-01-10 00:46:13',1),(1,234,3025794,'2013-01-10 00:46:13',1),(1,179,3025794,'2013-01-10 00:46:13',1),(1,161,3025794,'2013-01-10 00:46:13',1),(1,80,3025794,'2013-01-10 00:46:13',1),(1,252,3025794,'2013-01-10 00:46:13',1),(1,231,3025795,'2013-01-10 00:46:20',NULL),(1,2,3025795,'2013-01-10 00:46:20',NULL),(1,198,3025795,'2013-01-10 00:46:20',NULL),(1,92,3025795,'2013-01-10 00:46:20',NULL),(1,198,3025796,'2013-01-10 00:46:20',1),(1,92,3025796,'2013-01-10 00:46:20',1),(1,175,3025797,'2013-01-10 00:46:21',1),(1,58,3025797,'2013-01-10 00:46:21',1),(1,148,3025797,'2013-01-10 00:46:21',1),(1,4,3025797,'2013-01-10 00:46:21',1),(1,198,3025798,'2013-01-10 00:46:21',1),(1,92,3025798,'2013-01-10 00:46:21',1),(1,60,3025799,'2013-01-10 00:46:28',1),(1,215,3025799,'2013-01-10 00:46:28',1),(1,4,3025800,'2013-01-10 00:46:28',1),(1,4,3025801,'2013-01-10 00:46:28',1),(1,4,3025802,'2013-01-10 00:46:28',1),(1,4,3025803,'2013-01-10 00:46:37',1),(1,61,3025804,'2013-01-10 00:46:39',1),(1,231,3025804,'2013-01-10 00:46:39',1),(1,2,3025805,'2013-01-10 00:46:40',1),(1,198,3025805,'2013-01-10 00:46:40',1),(1,41,3025806,'2013-01-10 00:46:41',1),(1,101,3025806,'2013-01-10 00:46:41',1),(1,116,3025806,'2013-01-10 00:46:41',1),(1,107,3025806,'2013-01-10 00:46:41',1),(1,224,3025808,'2013-01-10 00:46:45',1),(1,142,3025807,'2013-01-10 00:46:45',1),(1,102,3025807,'2013-01-10 00:46:45',1),(1,204,3025807,'2013-01-10 00:46:45',1),(1,9,3025807,'2013-01-10 00:46:45',1),(1,102,3025809,'2013-01-10 00:46:46',1),(1,204,3025809,'2013-01-10 00:46:46',1),(1,9,3025809,'2013-01-10 00:46:46',1),(1,60,3025809,'2013-01-10 00:46:46',1),(1,215,3025809,'2013-01-10 00:46:46',1),(1,61,3025809,'2013-01-10 00:46:46',1),(1,231,3025809,'2013-01-10 00:46:46',1),(1,2,3025809,'2013-01-10 00:46:46',1),(1,15,3025790,'2013-01-10 00:46:47',1),(1,112,3025790,'2013-01-10 00:46:47',1),(1,203,3025790,'2013-01-10 00:46:47',1),(1,108,3025790,'2013-01-10 00:46:47',1),(1,186,3025743,'2013-01-10 00:48:02',1),(1,175,3025743,'2013-01-10 00:48:02',1),(1,58,3025743,'2013-01-10 00:48:02',1),(1,148,3025743,'2013-01-10 00:48:02',1),(1,1,3025743,'2013-01-10 00:48:02',1),(1,109,3025743,'2013-01-10 00:48:02',1),(1,35,3025743,'2013-01-10 00:48:02',1),(1,36,3025743,'2013-01-10 00:48:02',1),(1,37,3025743,'2013-01-10 00:48:02',1),(1,30,3025743,'2013-01-10 00:48:02',1),(1,106,3025743,'2013-01-10 00:48:02',1),(1,73,3025743,'2013-01-10 00:48:02',1),(1,188,3025743,'2013-01-10 00:48:02',1),(1,74,3025743,'2013-01-10 00:48:02',1),(1,173,3025743,'2013-01-10 00:48:02',1),(1,24,3025743,'2013-01-10 00:48:02',1),(1,179,3025900,'2013-01-10 01:46:13',1),(1,101,3025900,'2013-01-10 01:46:13',1),(1,116,3025900,'2013-01-10 01:46:13',1),(1,107,3025900,'2013-01-10 01:46:13',1),(1,15,3025900,'2013-01-10 01:46:13',1),(1,203,3025900,'2013-01-10 01:46:13',1),(1,108,3025900,'2013-01-10 01:46:13',1),(1,142,3025900,'2013-01-10 01:46:13',1),(1,15,3025899,'2013-01-10 01:46:13',1),(1,220,3025901,'2013-01-10 01:46:13',1),(1,41,3025901,'2013-01-10 01:46:13',1),(1,233,3025902,'2013-01-10 01:46:16',1),(1,161,3025902,'2013-01-10 01:46:16',1),(1,252,3025902,'2013-01-10 01:46:16',1),(1,4,3025902,'2013-01-10 01:46:16',1),(1,12,3025903,'2013-01-10 01:46:20',1),(1,186,3025903,'2013-01-10 01:46:20',1),(1,233,3025903,'2013-01-10 01:46:20',1),(1,179,3025903,'2013-01-10 01:46:20',1),(1,161,3025903,'2013-01-10 01:46:20',1),(1,175,3025903,'2013-01-10 01:46:20',1),(1,58,3025903,'2013-01-10 01:46:20',1),(1,148,3025903,'2013-01-10 01:46:20',1),(1,41,3025904,'2013-01-10 01:46:21',1),(1,204,3025905,'2013-01-10 01:46:21',1),(1,9,3025905,'2013-01-10 01:46:21',1),(1,215,3025905,'2013-01-10 01:46:21',1),(1,61,3025905,'2013-01-10 01:46:21',1),(1,2,3025898,'2013-01-10 01:46:21',1),(1,198,3025898,'2013-01-10 01:46:21',1),(1,46,3025970,'2013-01-10 02:46:11',1),(1,161,3025970,'2013-01-10 02:46:11',1),(1,175,3025970,'2013-01-10 02:46:11',1),(1,198,3025970,'2013-01-10 02:46:11',1),(1,46,3025969,'2013-01-10 02:46:11',1),(1,161,3025969,'2013-01-10 02:46:11',1),(1,175,3025969,'2013-01-10 02:46:11',1),(1,198,3025969,'2013-01-10 02:46:11',1),(1,175,3025972,'2013-01-10 02:46:11',1),(1,112,3025972,'2013-01-10 02:46:11',1),(1,46,3025973,'2013-01-10 02:46:20',1),(1,36,3025973,'2013-01-10 02:46:20',1),(1,58,3025975,'2013-01-10 02:46:20',1),(1,1,3025975,'2013-01-10 02:46:20',1),(1,109,3025975,'2013-01-10 02:46:20',1),(1,36,3025975,'2013-01-10 02:46:20',1),(1,106,3025975,'2013-01-10 02:46:20',1),(1,73,3025975,'2013-01-10 02:46:20',1),(1,252,3025975,'2013-01-10 02:46:20',1),(1,101,3025975,'2013-01-10 02:46:20',1),(1,116,3025975,'2013-01-10 02:46:20',1),(1,107,3025975,'2013-01-10 02:46:20',1),(1,15,3025975,'2013-01-10 02:46:20',1),(1,203,3025975,'2013-01-10 02:46:20',1),(1,108,3025975,'2013-01-10 02:46:20',1),(1,142,3025975,'2013-01-10 02:46:20',1),(1,204,3025975,'2013-01-10 02:46:20',1),(1,9,3025975,'2013-01-10 02:46:20',1),(1,220,3025976,'2013-01-10 02:46:24',1),(1,147,3025976,'2013-01-10 02:46:24',1),(1,46,3025976,'2013-01-10 02:46:24',1),(1,175,3025976,'2013-01-10 02:46:24',1),(1,58,3025984,'2013-01-10 02:46:35',1),(1,36,3025984,'2013-01-10 02:46:35',1),(1,58,3025977,'2013-01-10 02:46:43',1),(1,36,3025977,'2013-01-10 02:46:43',1),(1,60,3025968,'2013-01-10 03:16:29',NULL),(1,215,3025968,'2013-01-10 03:16:29',NULL),(1,61,3025968,'2013-01-10 03:16:29',NULL),(1,4,3025968,'2013-01-10 03:16:29',NULL),(1,109,3025981,'2013-01-10 03:16:30',1),(1,36,3025981,'2013-01-10 03:16:30',1),(1,106,3025981,'2013-01-10 03:16:30',1),(1,73,3025981,'2013-01-10 03:16:30',1),(1,173,3025981,'2013-01-10 03:16:30',1),(1,252,3025981,'2013-01-10 03:16:30',1),(1,101,3025981,'2013-01-10 03:16:30',1),(1,116,3025981,'2013-01-10 03:16:30',1),(1,109,3025980,'2013-01-10 03:16:30',1),(1,36,3025980,'2013-01-10 03:16:30',1),(1,106,3025980,'2013-01-10 03:16:30',1),(1,73,3025980,'2013-01-10 03:16:30',1),(1,173,3025980,'2013-01-10 03:16:30',1),(1,252,3025980,'2013-01-10 03:16:30',1),(1,101,3025980,'2013-01-10 03:16:30',1),(1,116,3025980,'2013-01-10 03:16:30',1),(1,107,3025980,'2013-01-10 03:16:30',1),(1,15,3025980,'2013-01-10 03:16:30',1),(1,203,3025980,'2013-01-10 03:16:30',1),(1,108,3025980,'2013-01-10 03:16:30',1),(1,142,3025980,'2013-01-10 03:16:30',1),(1,204,3025980,'2013-01-10 03:16:30',1),(1,9,3025980,'2013-01-10 03:16:30',1),(1,6,3025980,'2013-01-10 03:16:30',1),(1,234,3025982,'2013-01-10 03:16:37',1),(1,179,3025982,'2013-01-10 03:16:37',1),(1,161,3025982,'2013-01-10 03:16:37',1),(1,58,3025982,'2013-01-10 03:16:37',1),(1,109,3025982,'2013-01-10 03:16:37',1),(1,36,3025982,'2013-01-10 03:16:37',1),(1,106,3025982,'2013-01-10 03:16:37',1),(1,73,3025982,'2013-01-10 03:16:37',1),(1,107,3025983,'2013-01-10 03:16:38',1),(1,15,3025983,'2013-01-10 03:16:38',1),(1,203,3025983,'2013-01-10 03:16:38',1),(1,108,3025983,'2013-01-10 03:16:38',1),(1,142,3025983,'2013-01-10 03:16:38',1),(1,204,3025983,'2013-01-10 03:16:38',1),(1,9,3025983,'2013-01-10 03:16:38',1),(1,6,3025983,'2013-01-10 03:16:38',1),(1,74,3025985,'2013-01-10 03:16:39',1),(1,173,3025985,'2013-01-10 03:16:39',1),(1,252,3025985,'2013-01-10 03:16:39',1),(1,101,3025985,'2013-01-10 03:16:39',1),(1,28,3025978,'2013-01-10 03:16:46',1),(1,234,3025978,'2013-01-10 03:16:46',1),(1,179,3025978,'2013-01-10 03:16:46',1),(1,161,3025978,'2013-01-10 03:16:46',1),(1,58,3025978,'2013-01-10 03:16:46',1),(1,109,3025978,'2013-01-10 03:16:46',1),(1,36,3025978,'2013-01-10 03:16:46',1),(1,106,3025978,'2013-01-10 03:16:46',1),(1,150,3026061,'2013-01-10 03:46:11',1),(1,186,3026061,'2013-01-10 03:46:11',1),(1,150,3026067,'2013-01-10 03:46:19',1),(1,186,3026067,'2013-01-10 03:46:19',1),(1,150,3026058,'2013-01-10 04:16:13',NULL),(1,41,3026058,'2013-01-10 04:16:13',NULL),(1,186,3026058,'2013-01-10 04:16:13',NULL),(1,1,3026058,'2013-01-10 04:16:13',NULL),(1,150,3026066,'2013-01-10 04:16:21',1),(1,186,3026066,'2013-01-10 04:16:21',1),(1,30,3026074,'2013-01-10 04:16:37',1),(1,24,3026074,'2013-01-10 04:16:37',1),(1,28,3026073,'2013-01-10 04:16:37',1),(1,233,3026073,'2013-01-10 04:16:37',1),(1,234,3026073,'2013-01-10 04:16:37',1),(1,179,3026073,'2013-01-10 04:16:37',1),(1,109,3026076,'2013-01-10 04:16:46',1),(1,106,3026076,'2013-01-10 04:16:46',1),(1,24,3026076,'2013-01-10 04:16:46',1),(1,80,3026076,'2013-01-10 04:16:46',1),(1,30,3026077,'2013-01-10 04:16:48',1),(1,24,3026077,'2013-01-10 04:16:48',1),(1,150,3026064,'2013-01-10 04:46:23',1),(1,220,3026064,'2013-01-10 04:46:23',1),(1,41,3026064,'2013-01-10 04:46:23',1),(1,186,3026064,'2013-01-10 04:46:23',1),(1,158,3026064,'2013-01-10 04:46:23',1),(1,58,3026064,'2013-01-10 04:46:23',1),(1,148,3026064,'2013-01-10 04:46:23',1),(1,1,3026064,'2013-01-10 04:46:23',1),(1,12,3026065,'2013-01-10 04:46:23',1),(1,74,3026065,'2013-01-10 04:46:23',1),(1,173,3026065,'2013-01-10 04:46:23',1),(1,252,3026065,'2013-01-10 04:46:23',1),(1,101,3026065,'2013-01-10 04:46:23',1),(1,107,3026065,'2013-01-10 04:46:23',1),(1,15,3026065,'2013-01-10 04:46:23',1),(1,203,3026065,'2013-01-10 04:46:23',1),(1,108,3026065,'2013-01-10 04:46:23',1),(1,142,3026065,'2013-01-10 04:46:23',1),(1,204,3026065,'2013-01-10 04:46:23',1),(1,9,3026065,'2013-01-10 04:46:23',1),(1,60,3026065,'2013-01-10 04:46:23',1),(1,215,3026065,'2013-01-10 04:46:23',1),(1,61,3026065,'2013-01-10 04:46:23',1),(1,92,3026065,'2013-01-10 04:46:23',1),(1,147,3026070,'2013-01-10 04:46:34',NULL),(1,154,3026070,'2013-01-10 04:46:34',NULL),(1,155,3026057,'2013-01-10 04:46:50',NULL),(1,98,3026057,'2013-01-10 04:46:50',NULL),(1,231,3026057,'2013-01-10 04:46:50',NULL),(1,214,3026057,'2013-01-10 04:46:50',NULL),(1,28,3026081,'2013-01-10 04:46:57',1),(1,233,3026081,'2013-01-10 04:46:57',1),(1,234,3026081,'2013-01-10 04:46:57',1),(1,179,3026081,'2013-01-10 04:46:57',1),(1,150,3026068,'2013-01-10 05:16:33',NULL),(1,220,3026068,'2013-01-10 05:16:33',NULL),(1,41,3026068,'2013-01-10 05:16:33',NULL),(1,186,3026068,'2013-01-10 05:16:33',NULL),(1,158,3026068,'2013-01-10 05:16:33',NULL),(1,58,3026068,'2013-01-10 05:16:33',NULL),(1,148,3026068,'2013-01-10 05:16:33',NULL),(1,1,3026068,'2013-01-10 05:16:33',NULL),(1,12,3026069,'2013-01-10 05:16:33',NULL),(1,74,3026069,'2013-01-10 05:16:33',NULL),(1,173,3026069,'2013-01-10 05:16:33',NULL),(1,252,3026069,'2013-01-10 05:16:33',NULL),(1,101,3026069,'2013-01-10 05:16:33',NULL),(1,107,3026069,'2013-01-10 05:16:33',NULL),(1,15,3026069,'2013-01-10 05:16:33',NULL),(1,203,3026069,'2013-01-10 05:16:33',NULL),(1,108,3026069,'2013-01-10 05:16:33',NULL),(1,142,3026069,'2013-01-10 05:16:33',NULL),(1,204,3026069,'2013-01-10 05:16:33',NULL),(1,9,3026069,'2013-01-10 05:16:33',NULL),(1,60,3026069,'2013-01-10 05:16:33',NULL),(1,215,3026069,'2013-01-10 05:16:33',NULL),(1,61,3026069,'2013-01-10 05:16:33',NULL),(1,231,3026069,'2013-01-10 05:16:33',NULL),(1,150,3026072,'2013-01-10 05:16:41',1),(1,220,3026072,'2013-01-10 05:16:41',1),(1,41,3026072,'2013-01-10 05:16:41',1),(1,186,3026072,'2013-01-10 05:16:41',1),(1,158,3026072,'2013-01-10 05:16:41',1),(1,58,3026072,'2013-01-10 05:16:41',1),(1,148,3026072,'2013-01-10 05:16:41',1),(1,1,3026072,'2013-01-10 05:16:41',1),(1,12,3026071,'2013-01-10 05:16:41',1),(1,74,3026071,'2013-01-10 05:16:41',1),(1,173,3026071,'2013-01-10 05:16:41',1),(1,252,3026071,'2013-01-10 05:16:41',1),(1,101,3026071,'2013-01-10 05:16:41',1),(1,116,3026071,'2013-01-10 05:16:41',1),(1,107,3026071,'2013-01-10 05:16:41',1),(1,15,3026071,'2013-01-10 05:16:41',1),(1,203,3026071,'2013-01-10 05:16:41',1),(1,108,3026071,'2013-01-10 05:16:41',1),(1,142,3026071,'2013-01-10 05:16:41',1),(1,204,3026071,'2013-01-10 05:16:41',1),(1,9,3026071,'2013-01-10 05:16:41',1),(1,60,3026071,'2013-01-10 05:16:41',1),(1,215,3026071,'2013-01-10 05:16:41',1),(1,61,3026071,'2013-01-10 05:16:41',1),(1,12,3026078,'2013-01-10 05:16:59',1),(1,74,3026078,'2013-01-10 05:16:59',1),(1,173,3026078,'2013-01-10 05:16:59',1),(1,252,3026078,'2013-01-10 05:16:59',1),(1,101,3026078,'2013-01-10 05:16:59',1),(1,116,3026078,'2013-01-10 05:16:59',1),(1,107,3026078,'2013-01-10 05:16:59',1),(1,15,3026078,'2013-01-10 05:16:59',1),(1,152,3026079,'2013-01-10 05:16:59',1),(1,109,3026079,'2013-01-10 05:16:59',1),(1,106,3026079,'2013-01-10 05:16:59',1),(1,24,3026079,'2013-01-10 05:16:59',1),(1,231,3026062,'2013-01-10 05:46:20',NULL),(1,73,3026063,'2013-01-10 05:46:20',1),(1,98,3025971,'2013-01-10 05:46:23',1),(1,231,3025974,'2013-01-10 05:46:32',NULL),(1,231,3026060,'2013-01-10 05:46:34',NULL),(1,37,3025979,'2013-01-10 05:46:40',1),(1,231,3026080,'2013-01-10 05:47:00',NULL),(1,203,3026059,'2013-01-10 05:47:07',1),(1,108,3026059,'2013-01-10 05:47:07',1),(1,142,3026059,'2013-01-10 05:47:07',1),(1,204,3026059,'2013-01-10 05:47:07',1),(1,9,3026059,'2013-01-10 05:47:07',1),(1,60,3026059,'2013-01-10 05:47:07',1),(1,215,3026059,'2013-01-10 05:47:07',1),(1,61,3026059,'2013-01-10 05:47:07',1),(1,150,3026075,'2013-01-10 06:16:54',NULL),(1,220,3026075,'2013-01-10 06:16:54',NULL),(1,41,3026075,'2013-01-10 06:16:54',NULL),(1,186,3026075,'2013-01-10 06:16:54',NULL),(1,158,3026075,'2013-01-10 06:16:54',NULL),(1,58,3026075,'2013-01-10 06:16:54',NULL),(1,148,3026075,'2013-01-10 06:16:54',NULL),(1,1,3026075,'2013-01-10 06:16:54',NULL),(1,219,3026125,'2013-01-11 00:46:22',1),(1,105,3026125,'2013-01-11 00:46:22',1),(1,219,3026127,'2013-01-11 00:46:22',1),(1,105,3026127,'2013-01-11 00:46:22',1),(1,219,3026128,'2013-01-11 00:46:22',1),(1,105,3026128,'2013-01-11 00:46:22',1),(1,219,3026133,'2013-01-11 00:46:36',1),(1,105,3026133,'2013-01-11 00:46:36',1),(1,219,3026134,'2013-01-11 00:46:36',1),(1,105,3026134,'2013-01-11 00:46:36',1),(1,221,3026226,'2013-01-11 01:46:12',1),(1,90,3026226,'2013-01-11 01:46:12',1),(1,221,3026221,'2013-01-11 01:46:12',1),(1,90,3026221,'2013-01-11 01:46:12',1),(1,46,3026121,'2013-01-11 01:46:16',1),(1,155,3026121,'2013-01-11 01:46:16',1),(1,47,3026121,'2013-01-11 01:46:16',1),(1,98,3026121,'2013-01-11 01:46:16',1),(1,161,3026121,'2013-01-11 01:46:16',1),(1,175,3026121,'2013-01-11 01:46:16',1),(1,108,3026121,'2013-01-11 01:46:16',1),(1,2,3026121,'2013-01-11 01:46:16',1),(1,46,3026122,'2013-01-11 01:46:16',1),(1,155,3026122,'2013-01-11 01:46:16',1),(1,47,3026122,'2013-01-11 01:46:16',1),(1,98,3026122,'2013-01-11 01:46:16',1),(1,161,3026122,'2013-01-11 01:46:16',1),(1,175,3026122,'2013-01-11 01:46:16',1),(1,108,3026122,'2013-01-11 01:46:16',1),(1,215,3026122,'2013-01-11 01:46:16',1),(1,221,3026123,'2013-01-11 01:46:16',1),(1,249,3026123,'2013-01-11 01:46:16',1),(1,46,3026123,'2013-01-11 01:46:16',1),(1,155,3026123,'2013-01-11 01:46:16',1),(1,47,3026123,'2013-01-11 01:46:16',1),(1,98,3026123,'2013-01-11 01:46:16',1),(1,161,3026123,'2013-01-11 01:46:16',1),(1,175,3026123,'2013-01-11 01:46:16',1),(1,221,3026124,'2013-01-11 01:46:16',1),(1,249,3026124,'2013-01-11 01:46:16',1),(1,46,3026124,'2013-01-11 01:46:16',1),(1,155,3026124,'2013-01-11 01:46:16',1),(1,221,3026223,'2013-01-11 01:46:20',1),(1,249,3026223,'2013-01-11 01:46:20',1),(1,46,3026223,'2013-01-11 01:46:20',1),(1,155,3026223,'2013-01-11 01:46:20',1),(1,47,3026223,'2013-01-11 01:46:20',1),(1,98,3026223,'2013-01-11 01:46:20',1),(1,161,3026223,'2013-01-11 01:46:20',1),(1,175,3026223,'2013-01-11 01:46:20',1),(1,221,3026220,'2013-01-11 01:46:20',1),(1,249,3026220,'2013-01-11 01:46:20',1),(1,46,3026220,'2013-01-11 01:46:20',1),(1,155,3026220,'2013-01-11 01:46:20',1),(1,47,3026220,'2013-01-11 01:46:20',1),(1,98,3026220,'2013-01-11 01:46:20',1),(1,161,3026220,'2013-01-11 01:46:20',1),(1,175,3026220,'2013-01-11 01:46:20',1),(1,47,3026126,'2013-01-11 01:46:28',1),(1,98,3026126,'2013-01-11 01:46:28',1),(1,161,3026126,'2013-01-11 01:46:28',1),(1,175,3026126,'2013-01-11 01:46:28',1),(1,221,3026135,'2013-01-11 01:46:40',1),(1,249,3026135,'2013-01-11 01:46:40',1),(1,46,3026135,'2013-01-11 01:46:40',1),(1,155,3026135,'2013-01-11 01:46:40',1),(1,47,3026136,'2013-01-11 01:46:40',1),(1,98,3026136,'2013-01-11 01:46:40',1),(1,161,3026136,'2013-01-11 01:46:40',1),(1,175,3026136,'2013-01-11 01:46:40',1),(1,221,3026138,'2013-01-11 01:46:48',1),(1,249,3026138,'2013-01-11 01:46:48',1),(1,46,3026138,'2013-01-11 01:46:48',1),(1,155,3026138,'2013-01-11 01:46:48',1),(1,47,3026138,'2013-01-11 01:46:48',1),(1,98,3026138,'2013-01-11 01:46:48',1),(1,161,3026138,'2013-01-11 01:46:48',1),(1,175,3026138,'2013-01-11 01:46:48',1),(1,47,3026139,'2013-01-11 01:46:48',1),(1,238,3026139,'2013-01-11 01:46:48',1),(1,98,3026139,'2013-01-11 01:46:48',1),(1,161,3026139,'2013-01-11 01:46:48',1),(1,221,3026120,'2013-01-11 01:46:48',1),(1,249,3026120,'2013-01-11 01:46:48',1),(1,46,3026120,'2013-01-11 01:46:48',1),(1,155,3026120,'2013-01-11 01:46:48',1),(1,47,3026120,'2013-01-11 01:46:48',1),(1,98,3026120,'2013-01-11 01:46:48',1),(1,161,3026120,'2013-01-11 01:46:48',1),(1,175,3026120,'2013-01-11 01:46:48',1),(1,221,3026225,'2013-01-11 02:16:14',1),(1,249,3026225,'2013-01-11 02:16:14',1),(1,46,3026225,'2013-01-11 02:16:14',1),(1,155,3026225,'2013-01-11 02:16:14',1),(1,238,3026224,'2013-01-11 02:16:14',1),(1,98,3026219,'2013-01-11 02:16:23',1),(1,47,3026222,'2013-01-11 02:16:24',1),(1,238,3026222,'2013-01-11 02:16:24',1),(1,98,3026222,'2013-01-11 02:16:24',1),(1,161,3026222,'2013-01-11 02:16:24',1),(1,46,3026129,'2013-01-11 02:16:37',1),(1,131,3026130,'2013-01-11 02:16:37',1),(1,46,3026131,'2013-01-11 02:16:39',1),(1,155,3026132,'2013-01-11 02:16:39',1),(1,47,3026137,'2013-01-11 02:16:50',1),(1,6,3026302,'2013-01-11 02:46:13',1),(1,133,3026302,'2013-01-11 02:46:13',1),(1,82,3026302,'2013-01-11 02:46:13',1),(1,197,3026302,'2013-01-11 02:46:13',1),(1,6,3026303,'2013-01-11 02:46:13',1),(1,73,3026304,'2013-01-11 02:46:13',1),(1,130,3026304,'2013-01-11 02:46:13',1),(1,96,3026305,'2013-01-11 02:46:13',1),(1,175,3026305,'2013-01-11 02:46:13',1),(1,130,3026306,'2013-01-11 02:46:20',1),(1,147,3026318,'2013-01-11 02:46:29',1),(1,154,3026318,'2013-01-11 02:46:29',1),(1,28,3026310,'2013-01-11 02:46:29',1),(1,224,3026315,'2013-01-11 02:46:37',1),(1,221,3026315,'2013-01-11 02:46:37',1),(1,6,3026308,'2013-01-11 03:16:22',1),(1,133,3026308,'2013-01-11 03:16:22',1),(1,96,3026308,'2013-01-11 03:16:22',1),(1,82,3026308,'2013-01-11 03:16:22',1),(1,6,3026309,'2013-01-11 03:16:23',NULL),(1,133,3026309,'2013-01-11 03:16:23',NULL),(1,96,3026309,'2013-01-11 03:16:23',NULL),(1,82,3026309,'2013-01-11 03:16:23',NULL),(1,6,3026301,'2013-01-11 03:16:32',1),(1,133,3026301,'2013-01-11 03:16:32',1),(1,96,3026301,'2013-01-11 03:16:32',1),(1,82,3026301,'2013-01-11 03:16:32',1),(1,6,3026316,'2013-01-11 03:16:46',1),(1,133,3026316,'2013-01-11 03:16:46',1),(1,96,3026316,'2013-01-11 03:16:46',1),(1,82,3026316,'2013-01-11 03:16:46',1),(1,35,3026398,'2013-01-11 03:46:12',1),(1,92,3026393,'2013-01-11 03:46:19',1),(1,35,3026392,'2013-01-11 03:46:27',1),(1,35,3026412,'2013-01-11 03:46:45',1),(1,92,3026401,'2013-01-11 04:16:14',1),(1,96,3026401,'2013-01-11 04:16:14',1),(1,47,3026391,'2013-01-11 04:16:21',1),(1,37,3026391,'2013-01-11 04:16:21',1),(1,133,3026405,'2013-01-11 04:16:29',1),(1,214,3026405,'2013-01-11 04:16:29',1),(1,133,3026408,'2013-01-11 04:16:41',1),(1,47,3026408,'2013-01-11 04:16:41',1),(1,37,3026408,'2013-01-11 04:16:41',1),(1,214,3026408,'2013-01-11 04:16:41',1),(1,82,3026409,'2013-01-11 04:46:48',1),(1,219,3026409,'2013-01-11 04:46:48',1),(1,28,3026397,'2013-01-11 04:47:04',1),(1,69,3026397,'2013-01-11 04:47:04',1),(1,113,3026404,'2013-01-11 05:16:17',1),(1,82,3026404,'2013-01-11 05:16:17',1),(1,197,3026404,'2013-01-11 05:16:17',1),(1,175,3026404,'2013-01-11 05:16:17',1),(1,73,3026396,'2013-01-11 05:16:42',1),(1,130,3026396,'2013-01-11 05:16:42',1),(1,50,3026390,'2013-01-11 05:16:43',1),(1,219,3026390,'2013-01-11 05:16:43',1),(1,69,3026390,'2013-01-11 05:16:43',1),(1,221,3026390,'2013-01-11 05:16:43',1),(1,113,3026312,'2013-01-11 05:16:47',1),(1,82,3026312,'2013-01-11 05:16:47',1),(1,197,3026312,'2013-01-11 05:16:47',1),(1,175,3026312,'2013-01-11 05:16:47',1),(1,73,3026312,'2013-01-11 05:16:47',1),(1,130,3026312,'2013-01-11 05:16:47',1),(1,9,3026312,'2013-01-11 05:16:47',1),(1,219,3026312,'2013-01-11 05:16:47',1),(1,113,3026313,'2013-01-11 05:16:47',1),(1,82,3026313,'2013-01-11 05:16:47',1),(1,197,3026313,'2013-01-11 05:16:47',1),(1,147,3026313,'2013-01-11 05:16:47',1),(1,175,3026313,'2013-01-11 05:16:47',1),(1,73,3026313,'2013-01-11 05:16:47',1),(1,130,3026313,'2013-01-11 05:16:47',1),(1,108,3026313,'2013-01-11 05:16:47',1),(1,113,3026314,'2013-01-11 05:16:48',1),(1,82,3026314,'2013-01-11 05:16:48',1),(1,197,3026314,'2013-01-11 05:16:48',1),(1,175,3026314,'2013-01-11 05:16:48',1),(1,73,3026314,'2013-01-11 05:16:48',1),(1,130,3026314,'2013-01-11 05:16:48',1),(1,108,3026314,'2013-01-11 05:16:48',1),(1,9,3026314,'2013-01-11 05:16:48',1),(1,50,3026407,'2013-01-11 05:16:50',1),(1,219,3026407,'2013-01-11 05:16:50',1),(1,69,3026407,'2013-01-11 05:16:50',1),(1,221,3026407,'2013-01-11 05:16:50',1),(1,50,3026413,'2013-01-11 05:16:51',1),(1,219,3026413,'2013-01-11 05:16:51',1),(1,69,3026413,'2013-01-11 05:16:51',1),(1,221,3026413,'2013-01-11 05:16:51',1),(1,113,3026317,'2013-01-11 05:16:54',1),(1,82,3026317,'2013-01-11 05:16:54',1),(1,197,3026317,'2013-01-11 05:16:54',1),(1,147,3026317,'2013-01-11 05:16:54',1),(1,175,3026317,'2013-01-11 05:16:54',1),(1,73,3026317,'2013-01-11 05:16:54',1),(1,130,3026317,'2013-01-11 05:16:54',1),(1,108,3026317,'2013-01-11 05:16:54',1),(1,9,3026411,'2013-01-11 05:47:01',1),(1,50,3026411,'2013-01-11 05:47:01',1),(1,219,3026411,'2013-01-11 05:47:01',1),(1,69,3026411,'2013-01-11 05:47:01',1),(1,113,3026406,'2013-01-11 06:16:21',NULL),(1,82,3026406,'2013-01-11 06:16:21',NULL),(1,197,3026406,'2013-01-11 06:16:21',NULL),(1,147,3026406,'2013-01-11 06:16:21',NULL),(1,175,3026406,'2013-01-11 06:16:21',NULL),(1,73,3026406,'2013-01-11 06:16:21',NULL),(1,130,3026406,'2013-01-11 06:16:21',NULL),(1,108,3026406,'2013-01-11 06:16:21',NULL),(1,113,3026394,'2013-01-11 06:46:31',1),(1,82,3026394,'2013-01-11 06:46:31',1),(1,197,3026394,'2013-01-11 06:46:31',1),(1,147,3026394,'2013-01-11 06:46:31',1),(1,175,3026394,'2013-01-11 06:46:31',1),(1,73,3026394,'2013-01-11 06:46:31',1),(1,130,3026394,'2013-01-11 06:46:31',1),(1,108,3026394,'2013-01-11 06:46:31',1),(1,113,3026399,'2013-01-11 07:16:34',NULL),(1,82,3026399,'2013-01-11 07:16:34',NULL),(1,197,3026399,'2013-01-11 07:16:34',NULL),(1,147,3026399,'2013-01-11 07:16:34',NULL),(1,175,3026399,'2013-01-11 07:16:34',NULL),(1,73,3026399,'2013-01-11 07:16:34',NULL),(1,130,3026399,'2013-01-11 07:16:34',NULL),(1,108,3026399,'2013-01-11 07:16:34',NULL),(1,113,3026307,'2013-01-11 07:16:39',1),(1,82,3026307,'2013-01-11 07:16:39',1),(1,123,3026307,'2013-01-11 07:16:39',1),(1,18,3026307,'2013-01-11 07:16:39',1),(1,187,3026307,'2013-01-11 07:16:39',1),(1,197,3026307,'2013-01-11 07:16:39',1),(1,170,3026307,'2013-01-11 07:16:39',1),(1,225,3026307,'2013-01-11 07:16:39',1),(1,43,3026307,'2013-01-11 07:16:39',1),(1,147,3026307,'2013-01-11 07:16:39',1),(1,57,3026307,'2013-01-11 07:16:39',1),(1,51,3026307,'2013-01-11 07:16:39',1),(1,175,3026307,'2013-01-11 07:16:39',1),(1,73,3026307,'2013-01-11 07:16:39',1),(1,130,3026307,'2013-01-11 07:16:39',1),(1,108,3026307,'2013-01-11 07:16:39',1),(1,123,3026403,'2013-01-11 07:16:45',1),(1,18,3026403,'2013-01-11 07:16:45',1),(1,187,3026403,'2013-01-11 07:16:45',1),(1,170,3026403,'2013-01-11 07:16:45',1),(1,225,3026403,'2013-01-11 07:16:45',1),(1,43,3026403,'2013-01-11 07:16:45',1),(1,57,3026403,'2013-01-11 07:16:45',1),(1,51,3026403,'2013-01-11 07:16:45',1),(1,160,3026414,'2013-01-11 07:47:08',1),(1,227,3026414,'2013-01-11 07:47:08',1),(1,135,3026414,'2013-01-11 07:47:08',1),(1,119,3026414,'2013-01-11 07:47:08',1),(1,136,3026414,'2013-01-11 07:47:08',1),(1,138,3026414,'2013-01-11 07:47:08',1),(1,97,3026414,'2013-01-11 07:47:08',1),(1,139,3026414,'2013-01-11 07:47:08',1),(1,160,3026410,'2013-01-11 07:47:08',1),(1,227,3026410,'2013-01-11 07:47:08',1),(1,135,3026410,'2013-01-11 07:47:08',1),(1,119,3026410,'2013-01-11 07:47:08',1),(1,136,3026410,'2013-01-11 07:47:08',1),(1,138,3026410,'2013-01-11 07:47:08',1),(1,97,3026410,'2013-01-11 07:47:08',1),(1,139,3026410,'2013-01-11 07:47:08',1),(1,89,3026402,'2013-01-11 09:46:53',1),(1,120,3026402,'2013-01-11 09:46:53',1),(1,121,3026402,'2013-01-11 09:46:53',1),(1,11,3026402,'2013-01-11 09:46:53',1),(1,122,3026402,'2013-01-11 09:46:53',1),(1,154,3026402,'2013-01-11 09:46:53',1),(1,235,3026402,'2013-01-11 09:46:53',1),(1,194,3026402,'2013-01-11 09:46:53',1),(1,111,3026402,'2013-01-11 09:46:53',1),(1,161,3026402,'2013-01-11 09:46:53',1),(1,175,3026402,'2013-01-11 09:46:53',1),(1,33,3026402,'2013-01-11 09:46:53',1),(1,100,3026402,'2013-01-11 09:46:53',1),(1,29,3026402,'2013-01-11 09:46:53',1),(1,243,3026402,'2013-01-11 09:46:53',1),(1,145,3026402,'2013-01-11 09:46:53',1),(1,89,3026311,'2013-01-11 09:46:57',1),(1,120,3026311,'2013-01-11 09:46:57',1),(1,121,3026311,'2013-01-11 09:46:57',1),(1,11,3026311,'2013-01-11 09:46:57',1),(1,122,3026311,'2013-01-11 09:46:57',1),(1,154,3026311,'2013-01-11 09:46:57',1),(1,235,3026311,'2013-01-11 09:46:57',1),(1,194,3026311,'2013-01-11 09:46:57',1),(1,111,3026311,'2013-01-11 09:46:57',1),(1,161,3026311,'2013-01-11 09:46:57',1),(1,175,3026311,'2013-01-11 09:46:57',1),(1,108,3026311,'2013-01-11 09:46:57',1),(1,216,3026311,'2013-01-11 09:46:57',1),(1,90,3026311,'2013-01-11 09:46:57',1),(1,224,3026311,'2013-01-11 09:46:57',1),(1,228,3026311,'2013-01-11 09:46:57',1),(1,17,3026400,'2013-01-11 09:47:18',1),(1,191,3026400,'2013-01-11 09:47:18',1),(1,32,3026400,'2013-01-11 09:47:18',1),(1,114,3026400,'2013-01-11 09:47:18',1),(1,192,3026400,'2013-01-11 09:47:18',1),(1,144,3026400,'2013-01-11 09:47:18',1),(1,86,3026400,'2013-01-11 09:47:18',1),(1,115,3026400,'2013-01-11 09:47:18',1),(1,87,3026400,'2013-01-11 09:47:18',1),(1,250,3026400,'2013-01-11 09:47:18',1),(1,226,3026400,'2013-01-11 09:47:18',1),(1,129,3026400,'2013-01-11 09:47:18',1),(1,117,3026400,'2013-01-11 09:47:18',1),(1,55,3026400,'2013-01-11 09:47:18',1),(1,53,3026400,'2013-01-11 09:47:18',1),(1,108,3026400,'2013-01-11 09:47:18',1),(1,124,3026395,'2013-01-11 10:17:02',1),(1,26,3026395,'2013-01-11 10:17:02',1),(1,151,3026395,'2013-01-11 10:17:02',1),(1,146,3026395,'2013-01-11 10:17:02',1),(1,157,3026395,'2013-01-11 10:17:02',1),(1,34,3026395,'2013-01-11 10:17:02',1),(1,236,3026395,'2013-01-11 10:17:02',1),(1,251,3026395,'2013-01-11 10:17:02',1),(1,171,3026395,'2013-01-11 10:17:02',1),(1,62,3026395,'2013-01-11 10:17:02',1),(1,39,3026395,'2013-01-11 10:17:02',1),(1,169,3026395,'2013-01-11 10:17:02',1),(1,63,3026395,'2013-01-11 10:17:02',1),(1,189,3026395,'2013-01-11 10:17:02',1),(1,190,3026395,'2013-01-11 10:17:02',1),(1,85,3026395,'2013-01-11 10:17:02',1),(1,91,3026453,'2013-01-12 00:46:12',1),(1,246,3026453,'2013-01-12 00:46:12',1),(1,7,3026452,'2013-01-12 00:46:12',1),(1,81,3026452,'2013-01-12 00:46:12',1),(1,91,3026452,'2013-01-12 00:46:12',1),(1,246,3026452,'2013-01-12 00:46:12',1),(1,7,3026454,'2013-01-12 00:46:22',1),(1,81,3026454,'2013-01-12 00:46:22',1),(1,91,3026454,'2013-01-12 00:46:22',1),(1,246,3026454,'2013-01-12 00:46:22',1),(1,7,3026455,'2013-01-12 00:46:22',1),(1,91,3026455,'2013-01-12 00:46:22',1),(1,91,3026456,'2013-01-12 00:46:24',1),(1,246,3026456,'2013-01-12 00:46:24',1),(1,246,3026457,'2013-01-12 00:46:24',1),(1,246,3026460,'2013-01-12 00:46:29',1),(1,7,3026461,'2013-01-12 00:46:29',1),(1,91,3026461,'2013-01-12 00:46:29',1),(1,7,3026462,'2013-01-12 00:46:37',1),(1,91,3026462,'2013-01-12 00:46:37',1),(1,7,3026463,'2013-01-12 00:46:37',1),(1,81,3026463,'2013-01-12 00:46:37',1),(1,91,3026463,'2013-01-12 00:46:37',1),(1,246,3026463,'2013-01-12 00:46:37',1),(1,7,3026464,'2013-01-12 00:46:38',1),(1,81,3026464,'2013-01-12 00:46:38',1),(1,91,3026464,'2013-01-12 00:46:38',1),(1,246,3026464,'2013-01-12 00:46:38',1),(1,81,3026458,'2013-01-12 01:16:30',1),(1,7,3026459,'2013-01-12 01:16:30',1),(1,91,3026465,'2013-01-12 01:16:42',1),(1,7,3026467,'2013-01-12 01:16:50',1),(1,81,3026467,'2013-01-12 01:16:50',1),(1,91,3026467,'2013-01-12 01:16:50',1),(1,246,3026467,'2013-01-12 01:16:50',1),(1,59,3026556,'2013-01-12 01:46:12',1),(1,7,3026558,'2013-01-12 01:46:12',1),(1,212,3026558,'2013-01-12 01:46:12',1),(1,59,3026559,'2013-01-12 01:46:19',1),(1,7,3026553,'2013-01-12 01:46:19',1),(1,212,3026553,'2013-01-12 01:46:19',1),(1,212,3026627,'2013-01-12 02:16:17',1),(1,212,3026632,'2013-01-12 02:46:19',1),(1,212,3026624,'2013-01-12 02:46:27',1),(1,81,3026724,'2013-01-12 04:16:13',1),(1,81,3026736,'2013-01-12 04:16:21',1),(1,81,3026719,'2013-01-12 04:16:41',1),(1,81,3026720,'2013-01-12 04:16:48',1),(1,81,3026638,'2013-01-12 04:46:20',1),(1,91,3026638,'2013-01-12 04:46:20',1),(1,81,3026633,'2013-01-12 04:46:20',1),(1,91,3026633,'2013-01-12 04:46:20',1),(1,4,3026729,'2013-01-12 04:46:29',1),(1,81,3026729,'2013-01-12 04:46:29',1),(1,4,3026625,'2013-01-12 04:46:37',1),(1,81,3026625,'2013-01-12 04:46:37',1),(1,4,3026626,'2013-01-12 04:46:40',1),(1,81,3026626,'2013-01-12 04:46:40',1),(1,4,3026717,'2013-01-12 05:16:57',1),(1,81,3026717,'2013-01-12 05:16:57',1),(1,43,3026639,'2013-01-12 09:16:37',1),(1,147,3026639,'2013-01-12 09:16:37',1),(1,28,3026639,'2013-01-12 09:16:37',1),(1,57,3026639,'2013-01-12 09:16:37',1),(1,43,3026629,'2013-01-12 09:16:37',1),(1,147,3026629,'2013-01-12 09:16:37',1),(1,28,3026629,'2013-01-12 09:16:37',1),(1,57,3026629,'2013-01-12 09:16:37',1),(1,43,3026557,'2013-01-12 09:16:42',1),(1,147,3026557,'2013-01-12 09:16:42',1),(1,28,3026557,'2013-01-12 09:16:42',1),(1,57,3026557,'2013-01-12 09:16:42',1),(1,113,3026552,'2013-01-12 09:16:43',1),(1,82,3026552,'2013-01-12 09:16:43',1),(1,123,3026552,'2013-01-12 09:16:43',1),(1,18,3026552,'2013-01-12 09:16:43',1),(1,187,3026552,'2013-01-12 09:16:43',1),(1,197,3026552,'2013-01-12 09:16:43',1),(1,170,3026552,'2013-01-12 09:16:43',1),(1,225,3026552,'2013-01-12 09:16:43',1),(1,113,3026450,'2013-01-12 09:16:50',1),(1,82,3026450,'2013-01-12 09:16:50',1),(1,123,3026450,'2013-01-12 09:16:50',1),(1,18,3026450,'2013-01-12 09:16:50',1),(1,187,3026450,'2013-01-12 09:16:50',1),(1,197,3026450,'2013-01-12 09:16:50',1),(1,170,3026450,'2013-01-12 09:16:50',1),(1,225,3026450,'2013-01-12 09:16:50',1),(1,113,3026451,'2013-01-12 09:16:51',1),(1,82,3026451,'2013-01-12 09:16:51',1),(1,123,3026451,'2013-01-12 09:16:51',1),(1,18,3026451,'2013-01-12 09:16:51',1),(1,187,3026451,'2013-01-12 09:16:51',1),(1,197,3026451,'2013-01-12 09:16:51',1),(1,170,3026451,'2013-01-12 09:16:51',1),(1,225,3026451,'2013-01-12 09:16:51',1),(1,43,3026554,'2013-01-12 09:16:56',1),(1,147,3026554,'2013-01-12 09:16:56',1),(1,28,3026554,'2013-01-12 09:16:56',1),(1,57,3026554,'2013-01-12 09:16:56',1),(1,113,3026466,'2013-01-12 09:17:23',1),(1,82,3026466,'2013-01-12 09:17:23',1),(1,123,3026466,'2013-01-12 09:17:23',1),(1,18,3026466,'2013-01-12 09:17:23',1),(1,187,3026466,'2013-01-12 09:17:23',1),(1,197,3026466,'2013-01-12 09:17:23',1),(1,170,3026466,'2013-01-12 09:17:23',1),(1,225,3026466,'2013-01-12 09:17:23',1),(1,113,3026468,'2013-01-12 09:17:25',1),(1,82,3026468,'2013-01-12 09:17:25',1),(1,123,3026468,'2013-01-12 09:17:25',1),(1,18,3026468,'2013-01-12 09:17:25',1),(1,187,3026468,'2013-01-12 09:17:25',1),(1,197,3026468,'2013-01-12 09:17:25',1),(1,170,3026468,'2013-01-12 09:17:25',1),(1,225,3026468,'2013-01-12 09:17:25',1),(1,113,3026449,'2013-01-12 09:17:26',1),(1,82,3026449,'2013-01-12 09:17:26',1),(1,123,3026449,'2013-01-12 09:17:26',1),(1,18,3026449,'2013-01-12 09:17:26',1),(1,187,3026449,'2013-01-12 09:17:26',1),(1,197,3026449,'2013-01-12 09:17:26',1),(1,170,3026449,'2013-01-12 09:17:26',1),(1,225,3026449,'2013-01-12 09:17:26',1),(1,113,3026637,'2013-01-12 09:46:49',1),(1,82,3026637,'2013-01-12 09:46:49',1),(1,123,3026637,'2013-01-12 09:46:49',1),(1,18,3026637,'2013-01-12 09:46:49',1),(1,187,3026637,'2013-01-12 09:46:49',1),(1,197,3026637,'2013-01-12 09:46:49',1),(1,170,3026637,'2013-01-12 09:46:49',1),(1,225,3026637,'2013-01-12 09:46:49',1),(1,210,3026728,'2013-01-12 09:46:51',1),(1,224,3026728,'2013-01-12 09:46:51',1),(1,221,3026728,'2013-01-12 09:46:51',1),(1,228,3026728,'2013-01-12 09:46:51',1),(1,43,3026630,'2013-01-12 09:47:00',NULL),(1,147,3026630,'2013-01-12 09:47:00',NULL),(1,28,3026630,'2013-01-12 09:47:00',NULL),(1,57,3026630,'2013-01-12 09:47:00',NULL),(1,113,3026555,'2013-01-12 09:47:02',NULL),(1,82,3026555,'2013-01-12 09:47:02',NULL),(1,123,3026555,'2013-01-12 09:47:02',NULL),(1,18,3026555,'2013-01-12 09:47:02',NULL),(1,187,3026555,'2013-01-12 09:47:02',NULL),(1,197,3026555,'2013-01-12 09:47:02',NULL),(1,170,3026555,'2013-01-12 09:47:02',NULL),(1,225,3026555,'2013-01-12 09:47:02',NULL),(1,210,3026631,'2013-01-12 09:47:05',1),(1,224,3026631,'2013-01-12 09:47:05',1),(1,221,3026631,'2013-01-12 09:47:05',1),(1,228,3026631,'2013-01-12 09:47:05',1),(1,221,3026733,'2013-01-12 09:47:05',1),(1,228,3026733,'2013-01-12 09:47:05',1),(1,113,3026635,'2013-01-12 09:47:08',1),(1,82,3026635,'2013-01-12 09:47:08',1),(1,123,3026635,'2013-01-12 09:47:08',1),(1,18,3026635,'2013-01-12 09:47:08',1),(1,187,3026635,'2013-01-12 09:47:08',1),(1,197,3026635,'2013-01-12 09:47:08',1),(1,170,3026635,'2013-01-12 09:47:08',1),(1,225,3026635,'2013-01-12 09:47:08',1),(1,210,3026623,'2013-01-12 09:47:08',1),(1,224,3026623,'2013-01-12 09:47:08',1),(1,221,3026623,'2013-01-12 09:47:08',1),(1,228,3026623,'2013-01-12 09:47:08',1),(1,113,3026640,'2013-01-12 09:47:16',1),(1,82,3026640,'2013-01-12 09:47:16',1),(1,123,3026640,'2013-01-12 09:47:16',1),(1,18,3026640,'2013-01-12 09:47:16',1),(1,187,3026640,'2013-01-12 09:47:16',1),(1,197,3026640,'2013-01-12 09:47:16',1),(1,170,3026640,'2013-01-12 09:47:16',1),(1,225,3026640,'2013-01-12 09:47:16',1),(1,113,3026636,'2013-01-12 09:47:17',1),(1,82,3026636,'2013-01-12 09:47:17',1),(1,123,3026636,'2013-01-12 09:47:17',1),(1,18,3026636,'2013-01-12 09:47:17',1),(1,187,3026636,'2013-01-12 09:47:17',1),(1,197,3026636,'2013-01-12 09:47:17',1),(1,170,3026636,'2013-01-12 09:47:17',1),(1,225,3026636,'2013-01-12 09:47:17',1),(1,221,3026725,'2013-01-12 10:17:16',1),(1,228,3026725,'2013-01-12 10:17:16',1),(1,221,3026741,'2013-01-12 10:17:22',1),(1,228,3026741,'2013-01-12 10:17:22',1),(1,221,3026723,'2013-01-12 10:17:28',1),(1,228,3026723,'2013-01-12 10:17:28',1),(1,43,3026735,'2013-01-12 10:46:39',NULL),(1,147,3026735,'2013-01-12 10:46:39',NULL),(1,28,3026735,'2013-01-12 10:46:39',NULL),(1,57,3026735,'2013-01-12 10:46:39',NULL),(1,113,3026738,'2013-01-12 10:46:39',NULL),(1,82,3026738,'2013-01-12 10:46:39',NULL),(1,123,3026738,'2013-01-12 10:46:39',NULL),(1,18,3026738,'2013-01-12 10:46:39',NULL),(1,187,3026738,'2013-01-12 10:46:39',NULL),(1,197,3026738,'2013-01-12 10:46:39',NULL),(1,170,3026738,'2013-01-12 10:46:39',NULL),(1,225,3026738,'2013-01-12 10:46:39',NULL),(1,113,3026721,'2013-01-12 10:46:58',1),(1,82,3026721,'2013-01-12 10:46:58',1),(1,123,3026721,'2013-01-12 10:46:58',1),(1,18,3026721,'2013-01-12 10:46:58',1),(1,187,3026721,'2013-01-12 10:46:58',1),(1,197,3026721,'2013-01-12 10:46:58',1),(1,170,3026721,'2013-01-12 10:46:58',1),(1,225,3026721,'2013-01-12 10:46:58',1),(1,43,3026731,'2013-01-12 10:47:03',1),(1,147,3026731,'2013-01-12 10:47:03',1),(1,28,3026731,'2013-01-12 10:47:03',1),(1,57,3026731,'2013-01-12 10:47:03',1),(1,113,3026734,'2013-01-12 10:47:03',1),(1,82,3026734,'2013-01-12 10:47:03',1),(1,123,3026734,'2013-01-12 10:47:03',1),(1,18,3026734,'2013-01-12 10:47:03',1),(1,187,3026734,'2013-01-12 10:47:03',1),(1,197,3026734,'2013-01-12 10:47:03',1),(1,170,3026734,'2013-01-12 10:47:03',1),(1,225,3026734,'2013-01-12 10:47:03',1),(1,43,3026739,'2013-01-12 11:16:50',NULL),(1,147,3026739,'2013-01-12 11:16:50',NULL),(1,28,3026739,'2013-01-12 11:16:50',NULL),(1,57,3026739,'2013-01-12 11:16:50',NULL),(1,113,3026730,'2013-01-12 11:17:13',1),(1,82,3026730,'2013-01-12 11:17:13',1),(1,123,3026730,'2013-01-12 11:17:13',1),(1,18,3026730,'2013-01-12 11:17:13',1),(1,187,3026730,'2013-01-12 11:17:13',1),(1,197,3026730,'2013-01-12 11:17:13',1),(1,170,3026730,'2013-01-12 11:17:13',1),(1,225,3026730,'2013-01-12 11:17:13',1),(1,113,3026727,'2013-01-12 11:17:19',1),(1,82,3026727,'2013-01-12 11:17:19',1),(1,123,3026727,'2013-01-12 11:17:19',1),(1,18,3026727,'2013-01-12 11:17:19',1),(1,187,3026727,'2013-01-12 11:17:19',1),(1,197,3026727,'2013-01-12 11:17:19',1),(1,170,3026727,'2013-01-12 11:17:19',1),(1,225,3026727,'2013-01-12 11:17:19',1),(1,43,3026737,'2013-01-12 11:17:25',1),(1,147,3026737,'2013-01-12 11:17:25',1),(1,28,3026737,'2013-01-12 11:17:25',1),(1,57,3026737,'2013-01-12 11:17:25',1),(1,43,3026732,'2013-01-12 11:17:25',1),(1,147,3026732,'2013-01-12 11:17:25',1),(1,28,3026732,'2013-01-12 11:17:25',1),(1,57,3026732,'2013-01-12 11:17:25',1),(1,113,3026718,'2013-01-12 11:47:21',1),(1,82,3026718,'2013-01-12 11:47:21',1),(1,123,3026718,'2013-01-12 11:47:21',1),(1,18,3026718,'2013-01-12 11:47:21',1),(1,187,3026718,'2013-01-12 11:47:21',1),(1,197,3026718,'2013-01-12 11:47:21',1),(1,170,3026718,'2013-01-12 11:47:21',1),(1,225,3026718,'2013-01-12 11:47:21',1),(1,89,3026628,'2013-01-12 16:47:20',1),(1,120,3026628,'2013-01-12 16:47:20',1),(1,121,3026628,'2013-01-12 16:47:20',1),(1,11,3026628,'2013-01-12 16:47:20',1),(1,122,3026628,'2013-01-12 16:47:20',1),(1,154,3026628,'2013-01-12 16:47:20',1),(1,235,3026628,'2013-01-12 16:47:20',1),(1,194,3026628,'2013-01-12 16:47:20',1),(1,111,3026628,'2013-01-12 16:47:20',1),(1,161,3026628,'2013-01-12 16:47:20',1),(1,175,3026628,'2013-01-12 16:47:20',1),(1,33,3026628,'2013-01-12 16:47:20',1),(1,100,3026628,'2013-01-12 16:47:20',1),(1,29,3026628,'2013-01-12 16:47:20',1),(1,243,3026628,'2013-01-12 16:47:20',1),(1,145,3026628,'2013-01-12 16:47:20',1),(1,89,3026740,'2013-01-12 17:17:07',1),(1,120,3026740,'2013-01-12 17:17:07',1),(1,121,3026740,'2013-01-12 17:17:07',1),(1,11,3026740,'2013-01-12 17:17:07',1),(1,122,3026740,'2013-01-12 17:17:07',1),(1,154,3026740,'2013-01-12 17:17:07',1),(1,235,3026740,'2013-01-12 17:17:07',1),(1,194,3026740,'2013-01-12 17:17:07',1),(1,111,3026740,'2013-01-12 17:17:07',1),(1,161,3026740,'2013-01-12 17:17:07',1),(1,175,3026740,'2013-01-12 17:17:07',1),(1,33,3026740,'2013-01-12 17:17:07',1),(1,100,3026740,'2013-01-12 17:17:07',1),(1,29,3026740,'2013-01-12 17:17:07',1),(1,243,3026740,'2013-01-12 17:17:07',1),(1,145,3026740,'2013-01-12 17:17:07',1),(1,89,3026634,'2013-01-12 17:17:40',1),(1,120,3026634,'2013-01-12 17:17:40',1),(1,121,3026634,'2013-01-12 17:17:40',1),(1,11,3026634,'2013-01-12 17:17:40',1),(1,122,3026634,'2013-01-12 17:17:40',1),(1,154,3026634,'2013-01-12 17:17:40',1),(1,235,3026634,'2013-01-12 17:17:40',1),(1,194,3026634,'2013-01-12 17:17:40',1),(1,111,3026634,'2013-01-12 17:17:40',1),(1,161,3026634,'2013-01-12 17:17:40',1),(1,175,3026634,'2013-01-12 17:17:40',1),(1,33,3026634,'2013-01-12 17:17:40',1),(1,100,3026634,'2013-01-12 17:17:40',1),(1,29,3026634,'2013-01-12 17:17:40',1),(1,243,3026634,'2013-01-12 17:17:40',1),(1,145,3026634,'2013-01-12 17:17:40',1),(1,89,3026722,'2013-01-12 17:47:30',1),(1,120,3026722,'2013-01-12 17:47:30',1),(1,121,3026722,'2013-01-12 17:47:30',1),(1,11,3026722,'2013-01-12 17:47:30',1),(1,122,3026722,'2013-01-12 17:47:30',1),(1,154,3026722,'2013-01-12 17:47:30',1),(1,235,3026722,'2013-01-12 17:47:30',1),(1,194,3026722,'2013-01-12 17:47:30',1),(1,111,3026722,'2013-01-12 17:47:30',1),(1,161,3026722,'2013-01-12 17:47:30',1),(1,175,3026722,'2013-01-12 17:47:30',1),(1,33,3026722,'2013-01-12 17:47:30',1),(1,100,3026722,'2013-01-12 17:47:30',1),(1,29,3026722,'2013-01-12 17:47:30',1),(1,243,3026722,'2013-01-12 17:47:30',1),(1,145,3026722,'2013-01-12 17:47:30',1),(1,89,3026726,'2013-01-12 17:47:38',1),(1,120,3026726,'2013-01-12 17:47:38',1),(1,121,3026726,'2013-01-12 17:47:38',1),(1,11,3026726,'2013-01-12 17:47:38',1),(1,122,3026726,'2013-01-12 17:47:38',1),(1,154,3026726,'2013-01-12 17:47:38',1),(1,235,3026726,'2013-01-12 17:47:38',1),(1,194,3026726,'2013-01-12 17:47:38',1),(1,111,3026726,'2013-01-12 17:47:38',1),(1,161,3026726,'2013-01-12 17:47:38',1),(1,175,3026726,'2013-01-12 17:47:38',1),(1,33,3026726,'2013-01-12 17:47:38',1),(1,100,3026726,'2013-01-12 17:47:38',1),(1,29,3026726,'2013-01-12 17:47:38',1),(1,243,3026726,'2013-01-12 17:47:38',1),(1,145,3026726,'2013-01-12 17:47:38',1),(1,59,3026781,'2013-01-13 01:16:17',1),(1,81,3026781,'2013-01-13 01:16:17',1),(1,208,3026781,'2013-01-13 01:16:17',1),(1,222,3026781,'2013-01-13 01:16:17',1),(1,59,3026782,'2013-01-13 01:16:17',1),(1,81,3026782,'2013-01-13 01:16:17',1),(1,59,3026783,'2013-01-13 01:16:17',1),(1,81,3026783,'2013-01-13 01:16:17',1),(1,208,3026783,'2013-01-13 01:16:17',1),(1,222,3026783,'2013-01-13 01:16:17',1),(1,208,3026784,'2013-01-13 01:16:23',1),(1,222,3026784,'2013-01-13 01:16:23',1),(1,59,3026785,'2013-01-13 01:16:24',1),(1,81,3026785,'2013-01-13 01:16:24',1),(1,91,3026786,'2013-01-13 01:16:24',1),(1,91,3026787,'2013-01-13 01:16:24',1),(1,91,3026788,'2013-01-13 01:16:30',1),(1,91,3026789,'2013-01-13 01:16:31',1),(1,208,3026790,'2013-01-13 01:16:31',1),(1,222,3026790,'2013-01-13 01:16:31',1),(1,59,3026791,'2013-01-13 01:16:32',1),(1,81,3026791,'2013-01-13 01:16:32',1),(1,59,3026792,'2013-01-13 01:16:38',1),(1,81,3026792,'2013-01-13 01:16:38',1),(1,208,3026792,'2013-01-13 01:16:38',1),(1,222,3026792,'2013-01-13 01:16:38',1),(1,59,3026793,'2013-01-13 01:16:38',1),(1,81,3026793,'2013-01-13 01:16:38',1),(1,208,3026793,'2013-01-13 01:16:38',1),(1,222,3026793,'2013-01-13 01:16:38',1),(1,59,3026796,'2013-01-13 01:16:47',1),(1,81,3026796,'2013-01-13 01:16:47',1),(1,208,3026796,'2013-01-13 01:16:47',1),(1,222,3026796,'2013-01-13 01:16:47',1),(1,208,3026879,'2013-01-13 01:46:12',1),(1,208,3026882,'2013-01-13 01:46:23',1),(1,208,3026794,'2013-01-13 01:46:42',1),(1,222,3026965,'2013-01-13 02:46:11',1),(1,91,3026970,'2013-01-13 02:46:11',1),(1,222,3026962,'2013-01-13 02:46:49',1),(1,35,3026877,'2013-01-13 03:46:24',1),(1,130,3026877,'2013-01-13 03:46:24',1),(1,9,3026877,'2013-01-13 03:46:24',1),(1,69,3026877,'2013-01-13 03:46:24',1),(1,160,3026780,'2013-01-13 03:46:30',1),(1,227,3026780,'2013-01-13 03:46:30',1),(1,135,3026780,'2013-01-13 03:46:30',1),(1,119,3026780,'2013-01-13 03:46:30',1),(1,136,3026780,'2013-01-13 03:46:30',1),(1,138,3026780,'2013-01-13 03:46:30',1),(1,97,3026780,'2013-01-13 03:46:30',1),(1,139,3026780,'2013-01-13 03:46:30',1),(1,35,3026880,'2013-01-13 03:46:34',1),(1,130,3026880,'2013-01-13 03:46:34',1),(1,9,3026880,'2013-01-13 03:46:34',1),(1,69,3026880,'2013-01-13 03:46:34',1),(1,160,3026795,'2013-01-13 03:46:50',1),(1,227,3026795,'2013-01-13 03:46:50',1),(1,135,3026795,'2013-01-13 03:46:50',1),(1,119,3026795,'2013-01-13 03:46:50',1),(1,136,3026795,'2013-01-13 03:46:50',1),(1,138,3026795,'2013-01-13 03:46:50',1),(1,97,3026795,'2013-01-13 03:46:50',1),(1,139,3026795,'2013-01-13 03:46:50',1),(1,160,3026797,'2013-01-13 03:47:00',1),(1,227,3026797,'2013-01-13 03:47:00',1),(1,135,3026797,'2013-01-13 03:47:00',1),(1,119,3026797,'2013-01-13 03:47:00',1),(1,136,3026797,'2013-01-13 03:47:00',1),(1,138,3026797,'2013-01-13 03:47:00',1),(1,97,3026797,'2013-01-13 03:47:00',1),(1,139,3026797,'2013-01-13 03:47:00',1),(1,4,3027065,'2013-01-13 04:16:13',1),(1,69,3027060,'2013-01-13 04:16:13',1),(1,120,3026969,'2013-01-13 04:16:17',1),(1,154,3026969,'2013-01-13 04:16:17',1),(1,194,3026969,'2013-01-13 04:16:17',1),(1,111,3026969,'2013-01-13 04:16:17',1),(1,35,3026967,'2013-01-13 04:16:17',1),(1,130,3026967,'2013-01-13 04:16:17',1),(1,9,3026967,'2013-01-13 04:16:17',1),(1,69,3026967,'2013-01-13 04:16:17',1),(1,161,3026964,'2013-01-13 04:16:30',1),(1,6,3026964,'2013-01-13 04:16:30',1),(1,161,3026963,'2013-01-13 04:16:31',1),(1,6,3026963,'2013-01-13 04:16:31',1),(1,160,3026979,'2013-01-13 04:16:34',1),(1,227,3026979,'2013-01-13 04:16:34',1),(1,135,3026979,'2013-01-13 04:16:34',1),(1,119,3026979,'2013-01-13 04:16:34',1),(1,136,3026979,'2013-01-13 04:16:34',1),(1,138,3026979,'2013-01-13 04:16:34',1),(1,97,3026979,'2013-01-13 04:16:34',1),(1,139,3026979,'2013-01-13 04:16:34',1),(1,122,3026979,'2013-01-13 04:16:34',1),(1,175,3026979,'2013-01-13 04:16:34',1),(1,33,3026979,'2013-01-13 04:16:34',1),(1,100,3026979,'2013-01-13 04:16:34',1),(1,35,3026979,'2013-01-13 04:16:34',1),(1,29,3026979,'2013-01-13 04:16:34',1),(1,130,3026979,'2013-01-13 04:16:34',1),(1,9,3026979,'2013-01-13 04:16:34',1),(1,160,3026966,'2013-01-13 04:16:36',1),(1,227,3026966,'2013-01-13 04:16:36',1),(1,135,3026966,'2013-01-13 04:16:36',1),(1,119,3026966,'2013-01-13 04:16:36',1),(1,136,3026966,'2013-01-13 04:16:36',1),(1,138,3026966,'2013-01-13 04:16:36',1),(1,97,3026966,'2013-01-13 04:16:36',1),(1,139,3026966,'2013-01-13 04:16:36',1),(1,122,3026966,'2013-01-13 04:16:36',1),(1,175,3026966,'2013-01-13 04:16:36',1),(1,33,3026966,'2013-01-13 04:16:36',1),(1,100,3026966,'2013-01-13 04:16:36',1),(1,35,3026966,'2013-01-13 04:16:36',1),(1,29,3026966,'2013-01-13 04:16:36',1),(1,130,3026966,'2013-01-13 04:16:36',1),(1,9,3026966,'2013-01-13 04:16:36',1),(1,161,3026881,'2013-01-13 04:16:38',1),(1,6,3026881,'2013-01-13 04:16:38',1),(1,4,3027078,'2013-01-13 04:16:42',1),(1,161,3026876,'2013-01-13 04:16:42',1),(1,6,3026876,'2013-01-13 04:16:42',1),(1,4,3027083,'2013-01-13 04:16:53',1),(1,160,3026779,'2013-01-13 04:17:02',1),(1,227,3026779,'2013-01-13 04:17:02',1),(1,135,3026779,'2013-01-13 04:17:02',1),(1,119,3026779,'2013-01-13 04:17:02',1),(1,136,3026779,'2013-01-13 04:17:02',1),(1,138,3026779,'2013-01-13 04:17:02',1),(1,97,3026779,'2013-01-13 04:17:02',1),(1,139,3026779,'2013-01-13 04:17:02',1),(1,160,3027062,'2013-01-13 04:46:15',1),(1,227,3027062,'2013-01-13 04:46:15',1),(1,135,3027062,'2013-01-13 04:46:15',1),(1,119,3027062,'2013-01-13 04:46:15',1),(1,136,3027062,'2013-01-13 04:46:15',1),(1,138,3027062,'2013-01-13 04:46:15',1),(1,97,3027062,'2013-01-13 04:46:15',1),(1,139,3027062,'2013-01-13 04:46:15',1),(1,122,3027062,'2013-01-13 04:46:15',1),(1,175,3027062,'2013-01-13 04:46:15',1),(1,33,3027062,'2013-01-13 04:46:15',1),(1,100,3027062,'2013-01-13 04:46:15',1),(1,35,3027062,'2013-01-13 04:46:15',1),(1,29,3027062,'2013-01-13 04:46:15',1),(1,130,3027062,'2013-01-13 04:46:15',1),(1,9,3027062,'2013-01-13 04:46:15',1),(1,161,3027063,'2013-01-13 04:46:15',1),(1,6,3027063,'2013-01-13 04:46:15',1),(1,120,3026968,'2013-01-13 04:46:30',NULL),(1,154,3026968,'2013-01-13 04:46:30',NULL),(1,194,3026968,'2013-01-13 04:46:30',NULL),(1,111,3026968,'2013-01-13 04:46:30',NULL),(1,160,3027067,'2013-01-13 04:46:36',1),(1,227,3027067,'2013-01-13 04:46:36',1),(1,135,3027067,'2013-01-13 04:46:36',1),(1,119,3027067,'2013-01-13 04:46:36',1),(1,136,3027067,'2013-01-13 04:46:36',1),(1,138,3027067,'2013-01-13 04:46:36',1),(1,97,3027067,'2013-01-13 04:46:36',1),(1,139,3027067,'2013-01-13 04:46:36',1),(1,120,3027067,'2013-01-13 04:46:36',1),(1,122,3027067,'2013-01-13 04:46:36',1),(1,154,3027067,'2013-01-13 04:46:36',1),(1,194,3027067,'2013-01-13 04:46:36',1),(1,111,3027067,'2013-01-13 04:46:36',1),(1,175,3027067,'2013-01-13 04:46:36',1),(1,33,3027067,'2013-01-13 04:46:36',1),(1,100,3027067,'2013-01-13 04:46:36',1),(1,161,3026971,'2013-01-13 04:46:39',1),(1,6,3026971,'2013-01-13 04:46:39',1),(1,161,3026975,'2013-01-13 04:46:52',1),(1,6,3026975,'2013-01-13 04:46:52',1),(1,35,3026978,'2013-01-13 04:46:52',1),(1,29,3026978,'2013-01-13 04:46:52',1),(1,130,3026978,'2013-01-13 04:46:52',1),(1,9,3026978,'2013-01-13 04:46:52',1),(1,35,3026976,'2013-01-13 04:46:52',1),(1,29,3026976,'2013-01-13 04:46:52',1),(1,130,3026976,'2013-01-13 04:46:52',1),(1,9,3026976,'2013-01-13 04:46:52',1),(1,161,3027064,'2013-01-13 05:16:27',1),(1,6,3027064,'2013-01-13 05:16:27',1),(1,161,3027075,'2013-01-13 05:16:27',1),(1,6,3027075,'2013-01-13 05:16:27',1),(1,160,3026878,'2013-01-13 05:16:30',NULL),(1,227,3026878,'2013-01-13 05:16:30',NULL),(1,135,3026878,'2013-01-13 05:16:30',NULL),(1,119,3026878,'2013-01-13 05:16:30',NULL),(1,136,3026878,'2013-01-13 05:16:30',NULL),(1,138,3026878,'2013-01-13 05:16:30',NULL),(1,97,3026878,'2013-01-13 05:16:30',NULL),(1,139,3026878,'2013-01-13 05:16:30',NULL),(1,120,3026883,'2013-01-13 05:16:30',1),(1,122,3026883,'2013-01-13 05:16:30',1),(1,154,3026883,'2013-01-13 05:16:30',1),(1,194,3026883,'2013-01-13 05:16:30',1),(1,111,3026883,'2013-01-13 05:16:30',1),(1,175,3026883,'2013-01-13 05:16:30',1),(1,33,3026883,'2013-01-13 05:16:30',1),(1,100,3026883,'2013-01-13 05:16:30',1),(1,35,3027077,'2013-01-13 05:16:34',1),(1,29,3027077,'2013-01-13 05:16:34',1),(1,130,3027077,'2013-01-13 05:16:34',1),(1,9,3027077,'2013-01-13 05:16:34',1),(1,160,3026972,'2013-01-13 05:16:44',1),(1,227,3026972,'2013-01-13 05:16:44',1),(1,135,3026972,'2013-01-13 05:16:44',1),(1,119,3026972,'2013-01-13 05:16:44',1),(1,136,3026972,'2013-01-13 05:16:44',1),(1,138,3026972,'2013-01-13 05:16:44',1),(1,97,3026972,'2013-01-13 05:16:44',1),(1,139,3026972,'2013-01-13 05:16:44',1),(1,120,3026973,'2013-01-13 05:16:47',1),(1,122,3026973,'2013-01-13 05:16:47',1),(1,154,3026973,'2013-01-13 05:16:47',1),(1,194,3026973,'2013-01-13 05:16:47',1),(1,111,3026973,'2013-01-13 05:16:47',1),(1,175,3026973,'2013-01-13 05:16:47',1),(1,33,3026973,'2013-01-13 05:16:47',1),(1,100,3026973,'2013-01-13 05:16:47',1),(1,160,3027082,'2013-01-13 05:16:50',1),(1,227,3027082,'2013-01-13 05:16:50',1),(1,135,3027082,'2013-01-13 05:16:50',1),(1,119,3027082,'2013-01-13 05:16:50',1),(1,136,3027082,'2013-01-13 05:16:50',1),(1,138,3027082,'2013-01-13 05:16:50',1),(1,97,3027082,'2013-01-13 05:16:50',1),(1,139,3027082,'2013-01-13 05:16:50',1),(1,120,3027082,'2013-01-13 05:16:50',1),(1,122,3027082,'2013-01-13 05:16:50',1),(1,154,3027082,'2013-01-13 05:16:50',1),(1,194,3027082,'2013-01-13 05:16:50',1),(1,111,3027082,'2013-01-13 05:16:50',1),(1,175,3027082,'2013-01-13 05:16:50',1),(1,33,3027082,'2013-01-13 05:16:50',1),(1,100,3027082,'2013-01-13 05:16:50',1),(1,120,3026977,'2013-01-13 05:16:55',1),(1,122,3026977,'2013-01-13 05:16:55',1),(1,154,3026977,'2013-01-13 05:16:55',1),(1,194,3026977,'2013-01-13 05:16:55',1),(1,111,3026977,'2013-01-13 05:16:55',1),(1,161,3026977,'2013-01-13 05:16:55',1),(1,175,3026977,'2013-01-13 05:16:55',1),(1,33,3026977,'2013-01-13 05:16:55',1),(1,100,3027070,'2013-01-13 05:16:58',1),(1,6,3027070,'2013-01-13 05:16:58',1),(1,160,3026798,'2013-01-13 05:17:06',1),(1,227,3026798,'2013-01-13 05:17:06',1),(1,135,3026798,'2013-01-13 05:17:06',1),(1,119,3026798,'2013-01-13 05:17:06',1),(1,136,3026798,'2013-01-13 05:17:06',1),(1,138,3026798,'2013-01-13 05:17:06',1),(1,97,3026798,'2013-01-13 05:17:06',1),(1,139,3026798,'2013-01-13 05:17:06',1),(1,100,3027066,'2013-01-13 05:17:08',1),(1,6,3027066,'2013-01-13 05:17:08',1),(1,100,3027074,'2013-01-13 05:17:16',1),(1,6,3027074,'2013-01-13 05:17:16',1),(1,120,3027061,'2013-01-13 05:46:29',1),(1,122,3027061,'2013-01-13 05:46:29',1),(1,154,3027061,'2013-01-13 05:46:29',1),(1,194,3027061,'2013-01-13 05:46:29',1),(1,111,3027061,'2013-01-13 05:46:29',1),(1,161,3027061,'2013-01-13 05:46:29',1),(1,175,3027061,'2013-01-13 05:46:29',1),(1,33,3027061,'2013-01-13 05:46:29',1),(1,120,3027076,'2013-01-13 05:46:36',1),(1,122,3027076,'2013-01-13 05:46:36',1),(1,154,3027076,'2013-01-13 05:46:36',1),(1,194,3027076,'2013-01-13 05:46:36',1),(1,111,3027076,'2013-01-13 05:46:36',1),(1,161,3027076,'2013-01-13 05:46:36',1),(1,175,3027076,'2013-01-13 05:46:36',1),(1,33,3027076,'2013-01-13 05:46:36',1),(1,120,3027068,'2013-01-13 05:46:39',1),(1,122,3027068,'2013-01-13 05:46:39',1),(1,154,3027068,'2013-01-13 05:46:39',1),(1,194,3027068,'2013-01-13 05:46:39',1),(1,111,3027068,'2013-01-13 05:46:39',1),(1,161,3027068,'2013-01-13 05:46:39',1),(1,175,3027068,'2013-01-13 05:46:39',1),(1,33,3027068,'2013-01-13 05:46:39',1),(1,35,3027079,'2013-01-13 05:46:52',1),(1,29,3027079,'2013-01-13 05:46:52',1),(1,130,3027079,'2013-01-13 05:46:52',1),(1,9,3027079,'2013-01-13 05:46:52',1),(1,35,3027081,'2013-01-13 05:46:52',1),(1,29,3027081,'2013-01-13 05:46:52',1),(1,130,3027081,'2013-01-13 05:46:52',1),(1,9,3027081,'2013-01-13 05:46:52',1),(1,35,3027073,'2013-01-13 05:47:00',1),(1,29,3027073,'2013-01-13 05:47:00',1),(1,130,3027073,'2013-01-13 05:47:00',1),(1,9,3027073,'2013-01-13 05:47:00',1),(1,35,3027069,'2013-01-13 05:47:02',1),(1,29,3027069,'2013-01-13 05:47:02',1),(1,130,3027069,'2013-01-13 05:47:02',1),(1,9,3027069,'2013-01-13 05:47:02',1),(1,160,3026974,'2013-01-13 05:47:07',1),(1,227,3026974,'2013-01-13 05:47:07',1),(1,135,3026974,'2013-01-13 05:47:07',1),(1,119,3026974,'2013-01-13 05:47:07',1),(1,136,3026974,'2013-01-13 05:47:07',1),(1,138,3026974,'2013-01-13 05:47:07',1),(1,97,3026974,'2013-01-13 05:47:07',1),(1,139,3026974,'2013-01-13 05:47:07',1),(1,35,3027072,'2013-01-13 05:47:12',1),(1,29,3027072,'2013-01-13 05:47:12',1),(1,130,3027072,'2013-01-13 05:47:12',1),(1,9,3027072,'2013-01-13 05:47:12',1),(1,160,3027059,'2013-01-13 06:16:31',NULL),(1,227,3027059,'2013-01-13 06:16:31',NULL),(1,135,3027059,'2013-01-13 06:16:31',NULL),(1,119,3027059,'2013-01-13 06:16:31',NULL),(1,136,3027059,'2013-01-13 06:16:31',NULL),(1,138,3027059,'2013-01-13 06:16:31',NULL),(1,97,3027059,'2013-01-13 06:16:31',NULL),(1,139,3027059,'2013-01-13 06:16:31',NULL),(1,120,3027080,'2013-01-13 06:17:13',1),(1,122,3027080,'2013-01-13 06:17:13',1),(1,154,3027080,'2013-01-13 06:17:13',1),(1,194,3027080,'2013-01-13 06:17:13',1),(1,111,3027080,'2013-01-13 06:17:13',1),(1,161,3027080,'2013-01-13 06:17:13',1),(1,175,3027080,'2013-01-13 06:17:13',1),(1,33,3027080,'2013-01-13 06:17:13',1),(1,160,3027071,'2013-01-13 06:17:13',1),(1,227,3027071,'2013-01-13 06:17:13',1),(1,135,3027071,'2013-01-13 06:17:13',1),(1,119,3027071,'2013-01-13 06:17:13',1),(1,136,3027071,'2013-01-13 06:17:13',1),(1,138,3027071,'2013-01-13 06:17:13',1),(1,97,3027071,'2013-01-13 06:17:13',1),(1,139,3027071,'2013-01-13 06:17:13',1),(1,122,3027124,'2013-01-14 00:17:28',1),(1,73,3027124,'2013-01-14 00:17:28',1),(1,130,3027124,'2013-01-14 00:17:28',1),(1,7,3027124,'2013-01-14 00:17:28',1),(1,60,3027123,'2013-01-14 00:17:28',1),(1,6,3027123,'2013-01-14 00:17:28',1),(1,6,3027128,'2013-01-14 00:47:24',1),(1,7,3027125,'2013-01-14 00:47:30',1),(1,60,3027125,'2013-01-14 00:47:30',1),(1,122,3027122,'2013-01-14 00:47:30',1),(1,73,3027122,'2013-01-14 00:47:30',1),(1,130,3027122,'2013-01-14 00:47:30',1),(1,202,3027122,'2013-01-14 00:47:30',1),(1,7,3027126,'2013-01-14 00:47:34',1),(1,60,3027126,'2013-01-14 00:47:34',1),(1,60,3027127,'2013-01-14 00:47:34',1),(1,7,3027129,'2013-01-14 00:47:34',1),(1,60,3027130,'2013-01-14 00:47:37',1),(1,130,3027131,'2013-01-14 00:47:47',1),(1,202,3027131,'2013-01-14 00:47:47',1),(1,89,3027133,'2013-01-14 00:47:47',1),(1,122,3027133,'2013-01-14 00:47:47',1),(1,161,3027133,'2013-01-14 00:47:47',1),(1,73,3027133,'2013-01-14 00:47:47',1),(1,73,3027132,'2013-01-14 00:47:47',1),(1,7,3027132,'2013-01-14 00:47:47',1),(1,6,3027135,'2013-01-14 00:47:57',1),(1,89,3027134,'2013-01-14 00:47:57',1),(1,122,3027134,'2013-01-14 00:47:57',1),(1,161,3027134,'2013-01-14 00:47:57',1),(1,33,3027134,'2013-01-14 00:47:57',1),(1,89,3027136,'2013-01-14 00:47:57',1),(1,122,3027136,'2013-01-14 00:47:57',1),(1,161,3027136,'2013-01-14 00:47:57',1),(1,33,3027136,'2013-01-14 00:47:57',1),(1,73,3027136,'2013-01-14 00:47:57',1),(1,130,3027136,'2013-01-14 00:47:57',1),(1,202,3027136,'2013-01-14 00:47:57',1),(1,7,3027136,'2013-01-14 00:47:57',1),(1,122,3027137,'2013-01-14 00:47:57',1),(1,73,3027137,'2013-01-14 00:47:57',1),(1,130,3027137,'2013-01-14 00:47:57',1),(1,202,3027137,'2013-01-14 00:47:57',1),(1,89,3027139,'2013-01-14 00:48:20',1),(1,122,3027139,'2013-01-14 00:48:20',1),(1,161,3027139,'2013-01-14 00:48:20',1),(1,33,3027139,'2013-01-14 00:48:20',1),(1,243,3027139,'2013-01-14 00:48:20',1),(1,73,3027139,'2013-01-14 00:48:20',1),(1,130,3027139,'2013-01-14 00:48:20',1),(1,202,3027139,'2013-01-14 00:48:20',1),(1,89,3027138,'2013-01-14 00:48:20',1),(1,122,3027138,'2013-01-14 00:48:20',1),(1,161,3027138,'2013-01-14 00:48:20',1),(1,33,3027138,'2013-01-14 00:48:20',1),(1,243,3027138,'2013-01-14 00:48:20',1),(1,73,3027138,'2013-01-14 00:48:20',1),(1,130,3027138,'2013-01-14 00:48:20',1),(1,202,3027138,'2013-01-14 00:48:20',1),(1,89,3027140,'2013-01-14 00:48:20',1),(1,122,3027140,'2013-01-14 00:48:20',1),(1,161,3027140,'2013-01-14 00:48:20',1),(1,33,3027140,'2013-01-14 00:48:20',1),(1,243,3027140,'2013-01-14 00:48:20',1),(1,73,3027140,'2013-01-14 00:48:20',1),(1,130,3027140,'2013-01-14 00:48:20',1),(1,202,3027140,'2013-01-14 00:48:20',1),(1,89,3027121,'2013-01-14 00:48:20',1),(1,122,3027121,'2013-01-14 00:48:20',1),(1,161,3027121,'2013-01-14 00:48:20',1),(1,33,3027121,'2013-01-14 00:48:20',1),(1,243,3027121,'2013-01-14 00:48:20',1),(1,73,3027121,'2013-01-14 00:48:20',1),(1,130,3027121,'2013-01-14 00:48:20',1),(1,202,3027121,'2013-01-14 00:48:20',1),(1,61,3027230,'2013-01-14 01:46:14',NULL),(1,6,3027230,'2013-01-14 01:46:14',NULL),(1,237,3027228,'2013-01-14 01:46:14',1),(1,16,3027227,'2013-01-14 01:46:14',1),(1,244,3027227,'2013-01-14 01:46:14',1),(1,88,3027227,'2013-01-14 01:46:14',1),(1,237,3027227,'2013-01-14 01:46:14',1),(1,246,3027227,'2013-01-14 01:46:14',1),(1,89,3027227,'2013-01-14 01:46:14',1),(1,122,3027227,'2013-01-14 01:46:14',1),(1,162,3027227,'2013-01-14 01:46:14',1),(1,88,3027231,'2013-01-14 01:46:14',1),(1,167,3027232,'2013-01-14 01:46:21',1),(1,194,3027232,'2013-01-14 01:46:21',1),(1,180,3027232,'2013-01-14 01:46:21',1),(1,195,3027232,'2013-01-14 01:46:21',1),(1,161,3027232,'2013-01-14 01:46:21',1),(1,196,3027232,'2013-01-14 01:46:21',1),(1,33,3027232,'2013-01-14 01:46:21',1),(1,35,3027232,'2013-01-14 01:46:21',1),(1,16,3027233,'2013-01-14 01:46:21',1),(1,244,3027233,'2013-01-14 01:46:21',1),(1,130,3027226,'2013-01-14 01:46:22',1),(1,202,3027226,'2013-01-14 01:46:22',1),(1,7,3027226,'2013-01-14 01:46:22',1),(1,60,3027226,'2013-01-14 01:46:22',1),(1,243,3027229,'2013-01-14 01:46:22',1),(1,159,3027229,'2013-01-14 01:46:22',1),(1,73,3027229,'2013-01-14 01:46:22',1),(1,166,3027229,'2013-01-14 01:46:22',1),(1,60,3027312,'2013-01-14 02:16:09',1),(1,61,3027312,'2013-01-14 02:16:09',1),(1,60,3027309,'2013-01-14 02:16:17',NULL),(1,61,3027309,'2013-01-14 02:16:17',NULL),(1,6,3027310,'2013-01-14 02:46:11',1),(1,4,3027310,'2013-01-14 02:46:11',1),(1,16,3027310,'2013-01-14 02:46:11',1),(1,244,3027310,'2013-01-14 02:46:11',1),(1,88,3027310,'2013-01-14 02:46:11',1),(1,237,3027310,'2013-01-14 02:46:11',1),(1,246,3027310,'2013-01-14 02:46:11',1),(1,89,3027310,'2013-01-14 02:46:11',1),(1,120,3027317,'2013-01-14 02:46:11',1),(1,11,3027317,'2013-01-14 02:46:11',1),(1,122,3027317,'2013-01-14 02:46:11',1),(1,147,3027317,'2013-01-14 02:46:11',1),(1,162,3027317,'2013-01-14 02:46:11',1),(1,167,3027317,'2013-01-14 02:46:11',1),(1,235,3027317,'2013-01-14 02:46:11',1),(1,194,3027317,'2013-01-14 02:46:11',1),(1,202,3027313,'2013-01-14 02:46:11',1),(1,7,3027313,'2013-01-14 02:46:11',1),(1,38,3027313,'2013-01-14 02:46:11',1),(1,9,3027313,'2013-01-14 02:46:11',1),(1,180,3027311,'2013-01-14 02:46:19',1),(1,195,3027311,'2013-01-14 02:46:19',1),(1,161,3027311,'2013-01-14 02:46:19',1),(1,196,3027311,'2013-01-14 02:46:19',1),(1,33,3027311,'2013-01-14 02:46:19',1),(1,35,3027311,'2013-01-14 02:46:19',1),(1,243,3027311,'2013-01-14 02:46:19',1),(1,145,3027311,'2013-01-14 02:46:19',1),(1,159,3027314,'2013-01-14 02:46:19',1),(1,73,3027314,'2013-01-14 02:46:19',1),(1,166,3027314,'2013-01-14 02:46:19',1),(1,130,3027314,'2013-01-14 02:46:19',1),(1,202,3027314,'2013-01-14 02:46:19',1),(1,7,3027314,'2013-01-14 02:46:19',1),(1,38,3027314,'2013-01-14 02:46:19',1),(1,9,3027314,'2013-01-14 02:46:19',1),(1,120,3027315,'2013-01-14 02:46:19',1),(1,11,3027315,'2013-01-14 02:46:19',1),(1,122,3027315,'2013-01-14 02:46:19',1),(1,147,3027315,'2013-01-14 02:46:19',1),(1,229,3027316,'2013-01-14 02:46:27',1),(1,60,3027301,'2013-01-14 02:46:27',1),(1,61,3027301,'2013-01-14 02:46:27',1),(1,229,3027302,'2013-01-14 02:46:27',1),(1,6,3027303,'2013-01-14 02:46:27',1),(1,4,3027303,'2013-01-14 02:46:27',1),(1,16,3027303,'2013-01-14 02:46:27',1),(1,244,3027303,'2013-01-14 02:46:27',1),(1,88,3027303,'2013-01-14 02:46:27',1),(1,237,3027303,'2013-01-14 02:46:27',1),(1,246,3027303,'2013-01-14 02:46:27',1),(1,89,3027303,'2013-01-14 02:46:27',1),(1,180,3027303,'2013-01-14 02:46:27',1),(1,195,3027303,'2013-01-14 02:46:27',1),(1,161,3027303,'2013-01-14 02:46:27',1),(1,196,3027303,'2013-01-14 02:46:27',1),(1,33,3027303,'2013-01-14 02:46:27',1),(1,35,3027303,'2013-01-14 02:46:27',1),(1,243,3027303,'2013-01-14 02:46:27',1),(1,145,3027303,'2013-01-14 02:46:27',1),(1,162,3027304,'2013-01-14 02:46:36',1),(1,167,3027304,'2013-01-14 02:46:36',1),(1,235,3027304,'2013-01-14 02:46:36',1),(1,194,3027304,'2013-01-14 02:46:36',1),(1,202,3027306,'2013-01-14 02:46:36',1),(1,7,3027306,'2013-01-14 02:46:36',1),(1,38,3027306,'2013-01-14 02:46:36',1),(1,9,3027306,'2013-01-14 02:46:36',1),(1,229,3027307,'2013-01-14 02:46:36',1),(1,6,3027308,'2013-01-14 02:46:44',1),(1,4,3027308,'2013-01-14 02:46:44',1),(1,16,3027308,'2013-01-14 02:46:44',1),(1,244,3027308,'2013-01-14 02:46:44',1),(1,88,3027308,'2013-01-14 02:46:44',1),(1,237,3027308,'2013-01-14 02:46:44',1),(1,246,3027308,'2013-01-14 02:46:44',1),(1,89,3027308,'2013-01-14 02:46:44',1),(1,180,3027308,'2013-01-14 02:46:44',1),(1,195,3027308,'2013-01-14 02:46:44',1),(1,161,3027308,'2013-01-14 02:46:44',1),(1,196,3027308,'2013-01-14 02:46:44',1),(1,33,3027308,'2013-01-14 02:46:44',1),(1,35,3027308,'2013-01-14 02:46:44',1),(1,243,3027308,'2013-01-14 02:46:44',1),(1,145,3027308,'2013-01-14 02:46:44',1),(1,60,3027300,'2013-01-14 02:46:44',1),(1,61,3027300,'2013-01-14 02:46:44',1),(1,159,3027305,'2013-01-14 03:16:37',NULL),(1,73,3027305,'2013-01-14 03:16:37',NULL),(1,166,3027305,'2013-01-14 03:16:37',NULL),(1,130,3027305,'2013-01-14 03:16:37',NULL),(1,73,3027398,'2013-01-14 03:46:11',1),(1,166,3027398,'2013-01-14 03:46:11',1),(1,75,3027398,'2013-01-14 03:46:11',1),(1,130,3027398,'2013-01-14 03:46:11',1),(1,156,3027398,'2013-01-14 03:46:11',1),(1,168,3027398,'2013-01-14 03:46:11',1),(1,64,3027398,'2013-01-14 03:46:11',1),(1,202,3027398,'2013-01-14 03:46:11',1),(1,167,3027401,'2013-01-14 03:46:19',1),(1,235,3027401,'2013-01-14 03:46:19',1),(1,194,3027401,'2013-01-14 03:46:19',1),(1,180,3027401,'2013-01-14 03:46:19',1),(1,195,3027401,'2013-01-14 03:46:19',1),(1,161,3027401,'2013-01-14 03:46:19',1),(1,196,3027401,'2013-01-14 03:46:19',1),(1,175,3027401,'2013-01-14 03:46:19',1),(1,33,3027401,'2013-01-14 03:46:19',1),(1,100,3027401,'2013-01-14 03:46:19',1),(1,35,3027401,'2013-01-14 03:46:19',1),(1,29,3027401,'2013-01-14 03:46:19',1),(1,243,3027401,'2013-01-14 03:46:19',1),(1,145,3027401,'2013-01-14 03:46:19',1),(1,248,3027401,'2013-01-14 03:46:19',1),(1,159,3027401,'2013-01-14 03:46:19',1),(1,7,3027395,'2013-01-14 03:46:19',1),(1,38,3027395,'2013-01-14 03:46:19',1),(1,9,3027395,'2013-01-14 03:46:19',1),(1,10,3027395,'2013-01-14 03:46:19',1),(1,60,3027395,'2013-01-14 03:46:19',1),(1,61,3027395,'2013-01-14 03:46:19',1),(1,229,3027395,'2013-01-14 03:46:19',1),(1,208,3027395,'2013-01-14 03:46:19',1),(1,7,3027402,'2013-01-14 03:46:19',1),(1,38,3027402,'2013-01-14 03:46:19',1),(1,9,3027402,'2013-01-14 03:46:19',1),(1,10,3027402,'2013-01-14 03:46:19',1),(1,60,3027402,'2013-01-14 03:46:19',1),(1,61,3027402,'2013-01-14 03:46:19',1),(1,229,3027402,'2013-01-14 03:46:19',1),(1,208,3027402,'2013-01-14 03:46:19',1),(1,75,3027404,'2013-01-14 03:46:27',1),(1,130,3027404,'2013-01-14 03:46:27',1),(1,73,3027406,'2013-01-14 03:46:27',1),(1,166,3027406,'2013-01-14 03:46:27',1),(1,75,3027406,'2013-01-14 03:46:27',1),(1,130,3027406,'2013-01-14 03:46:27',1),(1,7,3027407,'2013-01-14 03:46:35',1),(1,38,3027407,'2013-01-14 03:46:35',1),(1,9,3027407,'2013-01-14 03:46:35',1),(1,10,3027407,'2013-01-14 03:46:35',1),(1,7,3027417,'2013-01-14 03:46:52',1),(1,38,3027417,'2013-01-14 03:46:52',1),(1,9,3027417,'2013-01-14 03:46:52',1),(1,10,3027417,'2013-01-14 03:46:52',1),(1,60,3027417,'2013-01-14 03:46:52',1),(1,61,3027417,'2013-01-14 03:46:52',1),(1,229,3027417,'2013-01-14 03:46:52',1),(1,208,3027417,'2013-01-14 03:46:52',1),(1,167,3027415,'2013-01-14 03:47:01',1),(1,235,3027415,'2013-01-14 03:47:01',1),(1,194,3027415,'2013-01-14 03:47:01',1),(1,180,3027415,'2013-01-14 03:47:01',1),(1,195,3027415,'2013-01-14 03:47:01',1),(1,161,3027415,'2013-01-14 03:47:01',1),(1,196,3027415,'2013-01-14 03:47:01',1),(1,175,3027415,'2013-01-14 03:47:01',1),(1,33,3027415,'2013-01-14 03:47:01',1),(1,100,3027415,'2013-01-14 03:47:01',1),(1,35,3027415,'2013-01-14 03:47:01',1),(1,29,3027415,'2013-01-14 03:47:01',1),(1,243,3027415,'2013-01-14 03:47:01',1),(1,145,3027415,'2013-01-14 03:47:01',1),(1,248,3027415,'2013-01-14 03:47:01',1),(1,159,3027415,'2013-01-14 03:47:01',1),(1,6,3027396,'2013-01-14 04:16:14',NULL),(1,4,3027396,'2013-01-14 04:16:14',NULL),(1,160,3027396,'2013-01-14 04:16:14',NULL),(1,16,3027396,'2013-01-14 04:16:14',NULL),(1,244,3027396,'2013-01-14 04:16:14',NULL),(1,88,3027396,'2013-01-14 04:16:14',NULL),(1,237,3027396,'2013-01-14 04:16:14',NULL),(1,246,3027396,'2013-01-14 04:16:14',NULL),(1,139,3027396,'2013-01-14 04:16:14',NULL),(1,89,3027396,'2013-01-14 04:16:14',NULL),(1,120,3027396,'2013-01-14 04:16:14',NULL),(1,11,3027396,'2013-01-14 04:16:14',NULL),(1,122,3027396,'2013-01-14 04:16:14',NULL),(1,147,3027396,'2013-01-14 04:16:14',NULL),(1,154,3027396,'2013-01-14 04:16:14',NULL),(1,162,3027396,'2013-01-14 04:16:14',NULL),(1,6,3027394,'2013-01-14 04:16:14',1),(1,4,3027394,'2013-01-14 04:16:14',1),(1,73,3027397,'2013-01-14 04:16:14',1),(1,166,3027397,'2013-01-14 04:16:14',1),(1,56,3027400,'2013-01-14 04:16:21',1),(1,92,3027400,'2013-01-14 04:16:21',1),(1,156,3027403,'2013-01-14 04:16:29',1),(1,168,3027403,'2013-01-14 04:16:29',1),(1,64,3027403,'2013-01-14 04:16:29',1),(1,202,3027403,'2013-01-14 04:16:29',1),(1,167,3027409,'2013-01-14 04:16:38',1),(1,235,3027409,'2013-01-14 04:16:38',1),(1,194,3027408,'2013-01-14 04:16:38',1),(1,180,3027408,'2013-01-14 04:16:38',1),(1,92,3027411,'2013-01-14 04:16:46',1),(1,60,3027414,'2013-01-14 04:16:54',NULL),(1,61,3027414,'2013-01-14 04:16:54',NULL),(1,229,3027414,'2013-01-14 04:16:54',NULL),(1,208,3027414,'2013-01-14 04:16:54',NULL),(1,195,3027399,'2013-01-14 04:16:54',1),(1,161,3027416,'2013-01-14 04:16:54',1),(1,47,3027405,'2013-01-14 04:46:32',1),(1,238,3027405,'2013-01-14 04:46:32',1),(1,98,3027405,'2013-01-14 04:46:32',1),(1,235,3027405,'2013-01-14 04:46:32',1),(1,194,3027405,'2013-01-14 04:46:32',1),(1,180,3027405,'2013-01-14 04:46:32',1),(1,195,3027405,'2013-01-14 04:46:32',1),(1,161,3027405,'2013-01-14 04:46:32',1),(1,166,3027412,'2013-01-14 04:46:48',1),(1,75,3027412,'2013-01-14 04:46:48',1),(1,130,3027412,'2013-01-14 04:46:48',1),(1,156,3027412,'2013-01-14 04:46:48',1),(1,56,3027393,'2013-01-14 04:46:48',1),(1,145,3027410,'2013-01-14 05:16:41',1),(1,248,3027410,'2013-01-14 05:16:41',1),(1,159,3027410,'2013-01-14 05:16:41',1),(1,73,3027410,'2013-01-14 05:16:41',1),(1,196,3027413,'2013-01-14 05:16:50',1),(1,175,3027413,'2013-01-14 05:16:50',1),(1,33,3027413,'2013-01-14 05:16:50',1),(1,100,3027413,'2013-01-14 05:16:50',1),(1,35,3027413,'2013-01-14 05:16:50',1),(1,37,3027413,'2013-01-14 05:16:50',1),(1,29,3027413,'2013-01-14 05:16:50',1),(1,243,3027413,'2013-01-14 05:16:50',1),(1,68,3027456,'2013-01-15 00:46:13',1),(1,214,3027456,'2013-01-15 00:46:13',1),(1,239,3027457,'2013-01-15 00:46:13',1),(1,166,3027457,'2013-01-15 00:46:13',1),(1,218,3027457,'2013-01-15 00:46:13',1),(1,219,3027457,'2013-01-15 00:46:13',1),(1,4,3027458,'2013-01-15 00:46:13',1),(1,244,3027458,'2013-01-15 00:46:13',1),(1,199,3027459,'2013-01-15 00:46:13',1),(1,211,3027459,'2013-01-15 00:46:13',1),(1,90,3027461,'2013-01-15 00:46:21',1),(1,90,3027460,'2013-01-15 00:46:21',1),(1,40,3027462,'2013-01-15 00:46:21',1),(1,119,3027463,'2013-01-15 00:46:22',1),(1,88,3027464,'2013-01-15 00:46:29',1),(1,227,3027464,'2013-01-15 00:46:29',1),(1,4,3027467,'2013-01-15 00:46:30',1),(1,244,3027467,'2013-01-15 00:46:30',1),(1,88,3027467,'2013-01-15 00:46:30',1),(1,227,3027467,'2013-01-15 00:46:30',1),(1,237,3027465,'2013-01-15 00:46:30',1),(1,141,3027465,'2013-01-15 00:46:30',1),(1,199,3027466,'2013-01-15 00:46:30',1),(1,211,3027466,'2013-01-15 00:46:30',1),(1,68,3027466,'2013-01-15 00:46:30',1),(1,214,3027466,'2013-01-15 00:46:30',1),(1,239,3027468,'2013-01-15 00:46:37',1),(1,239,3027469,'2013-01-15 00:46:38',1),(1,166,3027469,'2013-01-15 00:46:38',1),(1,218,3027469,'2013-01-15 00:46:38',1),(1,219,3027469,'2013-01-15 00:46:38',1),(1,199,3027469,'2013-01-15 00:46:38',1),(1,211,3027469,'2013-01-15 00:46:38',1),(1,68,3027469,'2013-01-15 00:46:38',1),(1,214,3027469,'2013-01-15 00:46:38',1),(1,237,3027470,'2013-01-15 00:46:38',1),(1,141,3027470,'2013-01-15 00:46:38',1),(1,119,3027470,'2013-01-15 00:46:38',1),(1,40,3027470,'2013-01-15 00:46:38',1),(1,4,3027471,'2013-01-15 00:46:38',1),(1,244,3027471,'2013-01-15 00:46:38',1),(1,88,3027471,'2013-01-15 00:46:38',1),(1,227,3027471,'2013-01-15 00:46:38',1),(1,237,3027471,'2013-01-15 00:46:38',1),(1,141,3027471,'2013-01-15 00:46:38',1),(1,119,3027471,'2013-01-15 00:46:38',1),(1,40,3027471,'2013-01-15 00:46:38',1),(1,4,3027472,'2013-01-15 00:46:45',1),(1,244,3027472,'2013-01-15 00:46:45',1),(1,88,3027472,'2013-01-15 00:46:45',1),(1,227,3027472,'2013-01-15 00:46:45',1),(1,237,3027472,'2013-01-15 00:46:45',1),(1,141,3027472,'2013-01-15 00:46:45',1),(1,119,3027472,'2013-01-15 00:46:45',1),(1,40,3027472,'2013-01-15 00:46:45',1),(1,4,3027473,'2013-01-15 00:46:45',1),(1,244,3027473,'2013-01-15 00:46:45',1),(1,88,3027473,'2013-01-15 00:46:45',1),(1,227,3027473,'2013-01-15 00:46:45',1),(1,237,3027473,'2013-01-15 00:46:45',1),(1,141,3027473,'2013-01-15 00:46:45',1),(1,119,3027473,'2013-01-15 00:46:45',1),(1,40,3027473,'2013-01-15 00:46:45',1),(1,239,3027474,'2013-01-15 00:46:45',1),(1,166,3027474,'2013-01-15 00:46:45',1),(1,218,3027474,'2013-01-15 00:46:45',1),(1,219,3027474,'2013-01-15 00:46:45',1),(1,199,3027474,'2013-01-15 00:46:45',1),(1,211,3027474,'2013-01-15 00:46:45',1),(1,68,3027474,'2013-01-15 00:46:45',1),(1,214,3027474,'2013-01-15 00:46:45',1),(1,239,3027455,'2013-01-15 00:46:45',1),(1,166,3027455,'2013-01-15 00:46:45',1),(1,218,3027455,'2013-01-15 00:46:45',1),(1,219,3027455,'2013-01-15 00:46:45',1),(1,214,3027562,'2013-01-15 01:46:13',1),(1,78,3027559,'2013-01-15 01:46:13',1),(1,4,3027560,'2013-01-15 01:46:13',1),(1,68,3027560,'2013-01-15 01:46:13',1),(1,52,3027560,'2013-01-15 01:46:13',1),(1,78,3027560,'2013-01-15 01:46:13',1),(1,78,3027564,'2013-01-15 01:46:21',1),(1,214,3027564,'2013-01-15 01:46:21',1),(1,214,3027561,'2013-01-15 01:46:21',1),(1,104,3027561,'2013-01-15 01:46:21',1),(1,90,3027565,'2013-01-15 01:46:21',1),(1,4,3027565,'2013-01-15 01:46:21',1),(1,68,3027565,'2013-01-15 01:46:21',1),(1,52,3027565,'2013-01-15 01:46:21',1),(1,90,3027647,'2013-01-15 03:16:13',1),(1,56,3027647,'2013-01-15 03:16:13',1),(1,6,3027647,'2013-01-15 03:16:13',1),(1,4,3027647,'2013-01-15 03:16:13',1),(1,78,3027645,'2013-01-15 03:16:13',1),(1,214,3027645,'2013-01-15 03:16:13',1),(1,90,3027645,'2013-01-15 03:16:13',1),(1,56,3027645,'2013-01-15 03:16:13',1),(1,49,3027646,'2013-01-15 03:16:13',1),(1,78,3027646,'2013-01-15 03:16:13',1),(1,214,3027646,'2013-01-15 03:16:13',1),(1,90,3027646,'2013-01-15 03:16:13',1),(1,56,3027646,'2013-01-15 03:16:13',1),(1,92,3027646,'2013-01-15 03:16:13',1),(1,223,3027646,'2013-01-15 03:16:13',1),(1,6,3027646,'2013-01-15 03:16:13',1),(1,6,3027633,'2013-01-15 03:16:13',1),(1,4,3027633,'2013-01-15 03:16:13',1),(1,102,3027563,'2013-01-15 03:16:20',1),(1,103,3027563,'2013-01-15 03:16:20',1),(1,204,3027563,'2013-01-15 03:16:20',1),(1,212,3027563,'2013-01-15 03:16:20',1),(1,81,3027563,'2013-01-15 03:16:20',1),(1,52,3027563,'2013-01-15 03:16:20',1),(1,105,3027563,'2013-01-15 03:16:20',1),(1,56,3027563,'2013-01-15 03:16:20',1),(1,78,3027642,'2013-01-15 03:16:22',1),(1,214,3027642,'2013-01-15 03:16:22',1),(1,90,3027642,'2013-01-15 03:16:22',1),(1,56,3027642,'2013-01-15 03:16:22',1),(1,92,3027642,'2013-01-15 03:16:22',1),(1,223,3027642,'2013-01-15 03:16:22',1),(1,6,3027642,'2013-01-15 03:16:22',1),(1,4,3027642,'2013-01-15 03:16:22',1),(1,4,3027648,'2013-01-15 03:16:22',1),(1,223,3027634,'2013-01-15 03:16:24',1),(1,142,3027558,'2013-01-15 03:16:31',1),(1,103,3027558,'2013-01-15 03:16:31',1),(1,50,3027558,'2013-01-15 03:16:31',1),(1,104,3027558,'2013-01-15 03:16:31',1),(1,49,3027558,'2013-01-15 03:16:31',1),(1,68,3027558,'2013-01-15 03:16:31',1),(1,81,3027558,'2013-01-15 03:16:31',1),(1,222,3027558,'2013-01-15 03:16:31',1),(1,68,3027638,'2013-01-15 03:16:32',1),(1,212,3027638,'2013-01-15 03:16:32',1),(1,213,3027638,'2013-01-15 03:16:32',1),(1,222,3027638,'2013-01-15 03:16:32',1),(1,81,3027636,'2013-01-15 03:16:38',1),(1,105,3027636,'2013-01-15 03:16:38',1),(1,70,3027636,'2013-01-15 03:16:38',1),(1,222,3027636,'2013-01-15 03:16:38',1),(1,4,3027639,'2013-01-15 03:16:38',1),(1,92,3027641,'2013-01-15 03:16:44',1),(1,222,3027641,'2013-01-15 03:16:44',1),(1,92,3027643,'2013-01-15 03:16:45',1),(1,6,3027643,'2013-01-15 03:16:45',1),(1,222,3027644,'2013-01-15 03:16:56',1),(1,223,3027644,'2013-01-15 03:16:56',1),(1,212,3027725,'2013-01-15 03:46:11',1),(1,213,3027725,'2013-01-15 03:46:11',1),(1,68,3027737,'2013-01-15 03:46:19',1),(1,78,3027737,'2013-01-15 03:46:19',1),(1,214,3027737,'2013-01-15 03:46:19',1),(1,90,3027737,'2013-01-15 03:46:19',1),(1,222,3027740,'2013-01-15 03:46:19',1),(1,223,3027740,'2013-01-15 03:46:19',1),(1,6,3027740,'2013-01-15 03:46:19',1),(1,4,3027740,'2013-01-15 03:46:19',1),(1,90,3027738,'2013-01-15 03:46:19',1),(1,92,3027738,'2013-01-15 03:46:19',1),(1,116,3027635,'2013-01-15 03:46:26',1),(1,107,3027635,'2013-01-15 03:46:26',1),(1,15,3027635,'2013-01-15 03:46:26',1),(1,130,3027635,'2013-01-15 03:46:26',1),(1,203,3027635,'2013-01-15 03:46:26',1),(1,142,3027635,'2013-01-15 03:46:26',1),(1,102,3027635,'2013-01-15 03:46:26',1),(1,103,3027635,'2013-01-15 03:46:26',1),(1,50,3027635,'2013-01-15 03:46:26',1),(1,81,3027635,'2013-01-15 03:46:26',1),(1,52,3027635,'2013-01-15 03:46:26',1),(1,92,3027635,'2013-01-15 03:46:26',1),(1,222,3027635,'2013-01-15 03:46:26',1),(1,223,3027635,'2013-01-15 03:46:26',1),(1,6,3027635,'2013-01-15 03:46:26',1),(1,4,3027635,'2013-01-15 03:46:26',1),(1,104,3027736,'2013-01-15 03:46:30',1),(1,49,3027736,'2013-01-15 03:46:30',1),(1,68,3027736,'2013-01-15 03:46:30',1),(1,212,3027736,'2013-01-15 03:46:30',1),(1,104,3027730,'2013-01-15 03:46:31',1),(1,49,3027730,'2013-01-15 03:46:31',1),(1,81,3027637,'2013-01-15 03:46:41',NULL),(1,52,3027637,'2013-01-15 03:46:41',NULL),(1,105,3027637,'2013-01-15 03:46:41',NULL),(1,70,3027637,'2013-01-15 03:46:41',NULL),(1,15,3027650,'2013-01-15 03:46:47',1),(1,203,3027650,'2013-01-15 03:46:47',1),(1,142,3027650,'2013-01-15 03:46:47',1),(1,102,3027650,'2013-01-15 03:46:47',1),(1,204,3027650,'2013-01-15 03:46:47',1),(1,50,3027650,'2013-01-15 03:46:47',1),(1,104,3027650,'2013-01-15 03:46:47',1),(1,49,3027650,'2013-01-15 03:46:47',1),(1,173,3027731,'2013-01-15 04:16:14',1),(1,24,3027731,'2013-01-15 04:16:14',1),(1,80,3027731,'2013-01-15 04:16:14',1),(1,252,3027731,'2013-01-15 04:16:14',1),(1,101,3027731,'2013-01-15 04:16:14',1),(1,116,3027731,'2013-01-15 04:16:14',1),(1,107,3027731,'2013-01-15 04:16:14',1),(1,15,3027731,'2013-01-15 04:16:14',1),(1,130,3027731,'2013-01-15 04:16:14',1),(1,203,3027731,'2013-01-15 04:16:14',1),(1,142,3027731,'2013-01-15 04:16:14',1),(1,102,3027731,'2013-01-15 04:16:14',1),(1,103,3027731,'2013-01-15 04:16:14',1),(1,204,3027731,'2013-01-15 04:16:14',1),(1,50,3027731,'2013-01-15 04:16:14',1),(1,104,3027731,'2013-01-15 04:16:14',1),(1,6,3027746,'2013-01-15 04:16:14',1),(1,4,3027743,'2013-01-15 04:16:33',1),(1,68,3027727,'2013-01-15 04:16:33',1),(1,78,3027727,'2013-01-15 04:16:33',1),(1,214,3027745,'2013-01-15 04:16:40',1),(1,105,3027745,'2013-01-15 04:16:40',1),(1,90,3027745,'2013-01-15 04:16:40',1),(1,70,3027745,'2013-01-15 04:16:40',1),(1,184,3027747,'2013-01-15 04:16:41',1),(1,135,3027747,'2013-01-15 04:16:41',1),(1,97,3027747,'2013-01-15 04:16:41',1),(1,127,3027747,'2013-01-15 04:16:41',1),(1,189,3027747,'2013-01-15 04:16:41',1),(1,188,3027747,'2013-01-15 04:16:41',1),(1,173,3027747,'2013-01-15 04:16:41',1),(1,213,3027747,'2013-01-15 04:16:41',1),(1,6,3027748,'2013-01-15 04:16:41',1),(1,107,3027640,'2013-01-15 04:16:46',1),(1,15,3027640,'2013-01-15 04:16:46',1),(1,130,3027640,'2013-01-15 04:16:46',1),(1,203,3027640,'2013-01-15 04:16:46',1),(1,142,3027640,'2013-01-15 04:16:46',1),(1,102,3027640,'2013-01-15 04:16:46',1),(1,103,3027640,'2013-01-15 04:16:46',1),(1,204,3027640,'2013-01-15 04:16:46',1),(1,50,3027640,'2013-01-15 04:16:46',1),(1,81,3027640,'2013-01-15 04:16:46',1),(1,52,3027640,'2013-01-15 04:16:46',1),(1,92,3027640,'2013-01-15 04:16:46',1),(1,222,3027640,'2013-01-15 04:16:46',1),(1,223,3027640,'2013-01-15 04:16:46',1),(1,6,3027640,'2013-01-15 04:16:46',1),(1,4,3027640,'2013-01-15 04:16:46',1),(1,78,3027742,'2013-01-15 04:16:51',1),(1,214,3027742,'2013-01-15 04:16:51',1),(1,105,3027742,'2013-01-15 04:16:51',1),(1,90,3027742,'2013-01-15 04:16:51',1),(1,173,3027741,'2013-01-15 04:16:53',1),(1,24,3027649,'2013-01-15 04:16:54',1),(1,80,3027649,'2013-01-15 04:16:54',1),(1,252,3027649,'2013-01-15 04:16:54',1),(1,101,3027649,'2013-01-15 04:16:54',1),(1,116,3027649,'2013-01-15 04:16:54',1),(1,104,3027649,'2013-01-15 04:16:54',1),(1,49,3027649,'2013-01-15 04:16:54',1),(1,68,3027649,'2013-01-15 04:16:54',1),(1,212,3027739,'2013-01-15 04:16:57',1),(1,213,3027739,'2013-01-15 04:16:57',1),(1,70,3027733,'2013-01-15 04:16:58',1),(1,92,3027733,'2013-01-15 04:16:58',1),(1,222,3027733,'2013-01-15 04:16:58',1),(1,223,3027733,'2013-01-15 04:16:58',1),(1,6,3027734,'2013-01-15 04:17:01',1),(1,4,3027734,'2013-01-15 04:17:01',1),(1,24,3027749,'2013-01-15 04:46:15',1),(1,80,3027749,'2013-01-15 04:46:15',1),(1,252,3027749,'2013-01-15 04:46:15',1),(1,101,3027749,'2013-01-15 04:46:15',1),(1,116,3027749,'2013-01-15 04:46:15',1),(1,107,3027749,'2013-01-15 04:46:15',1),(1,15,3027749,'2013-01-15 04:46:15',1),(1,130,3027749,'2013-01-15 04:46:15',1),(1,203,3027749,'2013-01-15 04:46:15',1),(1,142,3027749,'2013-01-15 04:46:15',1),(1,102,3027749,'2013-01-15 04:46:15',1),(1,103,3027749,'2013-01-15 04:46:15',1),(1,204,3027749,'2013-01-15 04:46:15',1),(1,50,3027749,'2013-01-15 04:46:15',1),(1,104,3027749,'2013-01-15 04:46:15',1),(1,212,3027749,'2013-01-15 04:46:15',1),(1,49,3027735,'2013-01-15 04:46:23',1),(1,68,3027735,'2013-01-15 04:46:23',1),(1,81,3027735,'2013-01-15 04:46:23',1),(1,52,3027735,'2013-01-15 04:46:23',1),(1,78,3027735,'2013-01-15 04:46:23',1),(1,214,3027735,'2013-01-15 04:46:23',1),(1,105,3027735,'2013-01-15 04:46:23',1),(1,90,3027735,'2013-01-15 04:46:23',1),(1,49,3027728,'2013-01-15 04:46:53',1),(1,68,3027728,'2013-01-15 04:46:53',1),(1,212,3027728,'2013-01-15 04:46:53',1),(1,81,3027728,'2013-01-15 04:46:53',1),(1,52,3027728,'2013-01-15 04:46:53',1),(1,78,3027728,'2013-01-15 04:46:53',1),(1,214,3027728,'2013-01-15 04:46:53',1),(1,105,3027728,'2013-01-15 04:46:53',1),(1,184,3027729,'2013-01-15 04:46:55',1),(1,135,3027729,'2013-01-15 04:46:55',1),(1,97,3027729,'2013-01-15 04:46:55',1),(1,127,3027729,'2013-01-15 04:46:55',1),(1,169,3027729,'2013-01-15 04:46:55',1),(1,189,3027729,'2013-01-15 04:46:55',1),(1,188,3027729,'2013-01-15 04:46:55',1),(1,173,3027729,'2013-01-15 04:46:55',1),(1,184,3027732,'2013-01-15 04:47:00',1),(1,135,3027732,'2013-01-15 04:47:00',1),(1,97,3027732,'2013-01-15 04:47:00',1),(1,127,3027732,'2013-01-15 04:47:00',1),(1,169,3027732,'2013-01-15 04:47:00',1),(1,189,3027732,'2013-01-15 04:47:00',1),(1,159,3027732,'2013-01-15 04:47:00',1),(1,188,3027732,'2013-01-15 04:47:00',1),(1,74,3027726,'2013-01-15 04:47:04',1),(1,24,3027726,'2013-01-15 04:47:04',1),(1,80,3027726,'2013-01-15 04:47:04',1),(1,252,3027726,'2013-01-15 04:47:04',1),(1,101,3027726,'2013-01-15 04:47:04',1),(1,116,3027726,'2013-01-15 04:47:04',1),(1,107,3027726,'2013-01-15 04:47:04',1),(1,15,3027726,'2013-01-15 04:47:04',1),(1,130,3027726,'2013-01-15 04:47:04',1),(1,203,3027726,'2013-01-15 04:47:04',1),(1,142,3027726,'2013-01-15 04:47:04',1),(1,102,3027726,'2013-01-15 04:47:04',1),(1,103,3027726,'2013-01-15 04:47:04',1),(1,204,3027726,'2013-01-15 04:47:04',1),(1,50,3027726,'2013-01-15 04:47:04',1),(1,104,3027726,'2013-01-15 04:47:04',1),(1,71,3027744,'2013-01-15 05:16:44',1),(1,235,3027744,'2013-01-15 05:16:44',1),(1,1,3027744,'2013-01-15 05:16:44',1),(1,109,3027744,'2013-01-15 05:16:44',1),(1,36,3027744,'2013-01-15 05:16:44',1),(1,29,3027744,'2013-01-15 05:16:44',1),(1,30,3027744,'2013-01-15 05:16:44',1),(1,106,3027744,'2013-01-15 05:16:44',1),(1,17,3027793,'2013-01-16 00:46:13',1),(1,6,3027793,'2013-01-16 00:46:13',1),(1,17,3027794,'2013-01-16 00:46:13',1),(1,6,3027794,'2013-01-16 00:46:13',1),(1,17,3027799,'2013-01-16 00:46:21',1),(1,6,3027799,'2013-01-16 00:46:21',1),(1,17,3027800,'2013-01-16 00:46:29',1),(1,6,3027800,'2013-01-16 00:46:29',1),(1,17,3027791,'2013-01-16 00:46:46',1),(1,6,3027791,'2013-01-16 00:46:46',1),(1,78,3027792,'2013-01-16 01:16:16',1),(1,214,3027792,'2013-01-16 01:16:16',1),(1,6,3027792,'2013-01-16 01:16:16',1),(1,4,3027792,'2013-01-16 01:16:16',1),(1,17,3027801,'2013-01-16 01:16:31',1),(1,78,3027801,'2013-01-16 01:16:31',1),(1,214,3027801,'2013-01-16 01:16:31',1),(1,6,3027801,'2013-01-16 01:16:31',1),(1,17,3027802,'2013-01-16 01:16:31',1),(1,78,3027802,'2013-01-16 01:16:31',1),(1,214,3027802,'2013-01-16 01:16:31',1),(1,6,3027802,'2013-01-16 01:16:31',1),(1,17,3027805,'2013-01-16 01:16:40',1),(1,78,3027805,'2013-01-16 01:16:40',1),(1,214,3027805,'2013-01-16 01:16:40',1),(1,6,3027805,'2013-01-16 01:16:40',1),(1,17,3027810,'2013-01-16 01:16:48',1),(1,78,3027810,'2013-01-16 01:16:48',1),(1,214,3027810,'2013-01-16 01:16:48',1),(1,6,3027810,'2013-01-16 01:16:48',1),(1,17,3027903,'2013-01-16 01:46:12',1),(1,52,3027903,'2013-01-16 01:46:12',1),(1,78,3027903,'2013-01-16 01:46:12',1),(1,214,3027903,'2013-01-16 01:46:12',1),(1,17,3027898,'2013-01-16 01:46:12',1),(1,52,3027898,'2013-01-16 01:46:12',1),(1,78,3027898,'2013-01-16 01:46:12',1),(1,214,3027898,'2013-01-16 01:46:12',1),(1,78,3027899,'2013-01-16 01:46:19',1),(1,214,3027899,'2013-01-16 01:46:19',1),(1,17,3027902,'2013-01-16 01:46:24',1),(1,52,3027902,'2013-01-16 01:46:24',1),(1,17,3027963,'2013-01-16 02:46:12',1),(1,78,3027963,'2013-01-16 02:46:12',1),(1,214,3027963,'2013-01-16 02:46:12',1),(1,56,3027963,'2013-01-16 02:46:12',1),(1,17,3027965,'2013-01-16 02:46:17',1),(1,78,3027965,'2013-01-16 02:46:17',1),(1,214,3027965,'2013-01-16 02:46:17',1),(1,56,3027965,'2013-01-16 02:46:17',1),(1,17,3027974,'2013-01-16 02:46:17',1),(1,78,3027974,'2013-01-16 02:46:17',1),(1,214,3027974,'2013-01-16 02:46:17',1),(1,56,3027974,'2013-01-16 02:46:17',1),(1,17,3027977,'2013-01-16 02:46:22',1),(1,6,3027977,'2013-01-16 02:46:22',1),(1,17,3027968,'2013-01-16 02:46:30',1),(1,6,3027968,'2013-01-16 02:46:30',1),(1,56,3027970,'2013-01-16 02:46:38',1),(1,4,3027970,'2013-01-16 02:46:38',1),(1,214,3027971,'2013-01-16 02:46:41',1),(1,56,3027971,'2013-01-16 02:46:41',1),(1,17,3027964,'2013-01-16 03:16:36',NULL),(1,52,3027964,'2013-01-16 03:16:36',NULL),(1,78,3027964,'2013-01-16 03:16:36',NULL),(1,214,3027964,'2013-01-16 03:16:36',NULL),(1,17,3028065,'2013-01-16 03:46:11',1),(1,52,3028065,'2013-01-16 03:46:11',1),(1,78,3028065,'2013-01-16 03:46:11',1),(1,214,3028065,'2013-01-16 03:46:11',1),(1,17,3028067,'2013-01-16 03:46:12',1),(1,52,3028067,'2013-01-16 03:46:12',1),(1,78,3028067,'2013-01-16 03:46:12',1),(1,214,3028067,'2013-01-16 03:46:12',1),(1,17,3028072,'2013-01-16 03:46:31',1),(1,52,3028072,'2013-01-16 03:46:31',1),(1,78,3028072,'2013-01-16 03:46:31',1),(1,214,3028072,'2013-01-16 03:46:31',1),(1,17,3028062,'2013-01-16 03:46:39',1),(1,52,3028062,'2013-01-16 03:46:39',1),(1,78,3028062,'2013-01-16 03:46:39',1),(1,214,3028062,'2013-01-16 03:46:39',1),(1,17,3027972,'2013-01-16 03:46:47',1),(1,52,3027972,'2013-01-16 03:46:47',1),(1,78,3027972,'2013-01-16 03:46:47',1),(1,214,3027972,'2013-01-16 03:46:47',1),(1,17,3028070,'2013-01-16 04:16:50',1),(1,52,3028070,'2013-01-16 04:16:50',1),(1,78,3028070,'2013-01-16 04:16:50',1),(1,214,3028070,'2013-01-16 04:16:50',1),(1,78,3028066,'2013-01-16 04:46:17',1),(1,214,3028066,'2013-01-16 04:46:17',1),(1,17,3028075,'2013-01-16 04:46:59',1),(1,52,3028075,'2013-01-16 04:46:59',1),(1,78,3028075,'2013-01-16 04:46:59',1),(1,214,3028075,'2013-01-16 04:46:59',1),(1,78,3028068,'2013-01-16 05:16:26',1),(1,214,3028068,'2013-01-16 05:16:26',1),(1,78,3028058,'2013-01-16 05:16:26',1),(1,214,3028058,'2013-01-16 05:16:26',1),(1,78,3028055,'2013-01-16 05:16:48',1),(1,214,3028055,'2013-01-16 05:16:48',1),(1,78,3028069,'2013-01-16 05:16:49',1),(1,214,3028069,'2013-01-16 05:16:49',1),(1,6,3027795,'2013-01-16 05:46:46',1),(1,78,3028063,'2013-01-16 05:46:47',1),(1,214,3028063,'2013-01-16 05:46:47',1),(1,78,3027797,'2013-01-16 05:46:52',1),(1,78,3027897,'2013-01-16 06:16:38',1),(1,4,3027975,'2013-01-16 06:16:39',1),(1,78,3028077,'2013-01-16 06:16:42',1),(1,78,3027961,'2013-01-16 06:16:47',1),(1,4,3027796,'2013-01-16 06:16:50',1),(1,78,3027798,'2013-01-16 06:16:55',1),(1,78,3027803,'2013-01-16 06:16:58',1),(1,214,3027900,'2013-01-16 07:16:51',1),(1,214,3028073,'2013-01-16 07:17:06',1),(1,78,3027966,'2013-01-16 07:17:12',1),(1,56,3028054,'2013-01-16 07:17:15',1),(1,78,3028071,'2013-01-16 11:21:36',1),(1,168,3027962,'2013-01-16 17:51:56',1),(1,64,3027962,'2013-01-16 17:51:56',1),(1,110,3027962,'2013-01-16 17:51:56',1),(1,202,3027962,'2013-01-16 17:51:56',1),(1,7,3027962,'2013-01-16 17:51:56',1),(1,38,3027962,'2013-01-16 17:51:56',1),(1,9,3027962,'2013-01-16 17:51:56',1),(1,10,3027962,'2013-01-16 17:51:56',1),(1,60,3027962,'2013-01-16 17:51:56',1),(1,215,3027962,'2013-01-16 17:51:56',1),(1,61,3027962,'2013-01-16 17:51:56',1),(1,229,3027962,'2013-01-16 17:51:56',1),(1,2,3027962,'2013-01-16 17:51:56',1),(1,131,3027962,'2013-01-16 17:51:56',1),(1,217,3027962,'2013-01-16 17:51:56',1),(1,208,3027962,'2013-01-16 17:51:56',1),(1,168,3028053,'2013-01-16 18:21:58',1),(1,64,3028053,'2013-01-16 18:21:58',1),(1,110,3028053,'2013-01-16 18:21:58',1),(1,202,3028053,'2013-01-16 18:21:58',1),(1,7,3028053,'2013-01-16 18:21:58',1),(1,38,3028053,'2013-01-16 18:21:58',1),(1,9,3028053,'2013-01-16 18:21:58',1),(1,10,3028053,'2013-01-16 18:21:58',1),(1,60,3028053,'2013-01-16 18:21:58',1),(1,215,3028053,'2013-01-16 18:21:58',1),(1,61,3028053,'2013-01-16 18:21:58',1),(1,229,3028053,'2013-01-16 18:21:58',1),(1,2,3028053,'2013-01-16 18:21:58',1),(1,131,3028053,'2013-01-16 18:21:58',1),(1,217,3028053,'2013-01-16 18:21:58',1),(1,208,3028053,'2013-01-16 18:21:58',1),(1,168,3027967,'2013-01-16 18:22:16',1),(1,64,3027967,'2013-01-16 18:22:16',1),(1,110,3027967,'2013-01-16 18:22:16',1),(1,202,3027967,'2013-01-16 18:22:16',1),(1,7,3027967,'2013-01-16 18:22:16',1),(1,38,3027967,'2013-01-16 18:22:16',1),(1,9,3027967,'2013-01-16 18:22:16',1),(1,10,3027967,'2013-01-16 18:22:16',1),(1,60,3027967,'2013-01-16 18:22:16',1),(1,215,3027967,'2013-01-16 18:22:16',1),(1,61,3027967,'2013-01-16 18:22:16',1),(1,229,3027967,'2013-01-16 18:22:16',1),(1,2,3027967,'2013-01-16 18:22:16',1),(1,131,3027967,'2013-01-16 18:22:16',1),(1,217,3027967,'2013-01-16 18:22:16',1),(1,208,3027967,'2013-01-16 18:22:16',1),(1,168,3028059,'2013-01-16 18:52:00',1),(1,64,3028059,'2013-01-16 18:52:00',1),(1,110,3028059,'2013-01-16 18:52:00',1),(1,202,3028059,'2013-01-16 18:52:00',1),(1,7,3028059,'2013-01-16 18:52:00',1),(1,38,3028059,'2013-01-16 18:52:00',1),(1,9,3028059,'2013-01-16 18:52:00',1),(1,10,3028059,'2013-01-16 18:52:00',1),(1,60,3028059,'2013-01-16 18:52:00',1),(1,215,3028059,'2013-01-16 18:52:00',1),(1,61,3028059,'2013-01-16 18:52:00',1),(1,229,3028059,'2013-01-16 18:52:00',1),(1,2,3028059,'2013-01-16 18:52:00',1),(1,131,3028059,'2013-01-16 18:52:00',1),(1,217,3028059,'2013-01-16 18:52:00',1),(1,208,3028059,'2013-01-16 18:52:00',1),(1,168,3028060,'2013-01-16 18:52:11',1),(1,64,3028060,'2013-01-16 18:52:11',1),(1,110,3028060,'2013-01-16 18:52:11',1),(1,202,3028060,'2013-01-16 18:52:11',1),(1,7,3028060,'2013-01-16 18:52:11',1),(1,38,3028060,'2013-01-16 18:52:11',1),(1,9,3028060,'2013-01-16 18:52:11',1),(1,10,3028060,'2013-01-16 18:52:11',1),(1,60,3028060,'2013-01-16 18:52:11',1),(1,215,3028060,'2013-01-16 18:52:11',1),(1,61,3028060,'2013-01-16 18:52:11',1),(1,229,3028060,'2013-01-16 18:52:11',1),(1,2,3028060,'2013-01-16 18:52:11',1),(1,131,3028060,'2013-01-16 18:52:11',1),(1,217,3028060,'2013-01-16 18:52:11',1),(1,208,3028060,'2013-01-16 18:52:11',1),(1,168,3027804,'2013-01-16 18:52:15',1),(1,64,3027804,'2013-01-16 18:52:15',1),(1,110,3027804,'2013-01-16 18:52:15',1),(1,202,3027804,'2013-01-16 18:52:15',1),(1,7,3027804,'2013-01-16 18:52:15',1),(1,38,3027804,'2013-01-16 18:52:15',1),(1,9,3027804,'2013-01-16 18:52:15',1),(1,10,3027804,'2013-01-16 18:52:15',1),(1,60,3027807,'2013-01-16 18:52:18',1),(1,215,3027807,'2013-01-16 18:52:18',1),(1,61,3027807,'2013-01-16 18:52:18',1),(1,229,3027807,'2013-01-16 18:52:18',1),(1,2,3027807,'2013-01-16 18:52:18',1),(1,131,3027807,'2013-01-16 18:52:18',1),(1,217,3027807,'2013-01-16 18:52:18',1),(1,208,3027807,'2013-01-16 18:52:18',1),(1,168,3027976,'2013-01-16 19:22:11',1),(1,64,3027976,'2013-01-16 19:22:11',1),(1,110,3027976,'2013-01-16 19:22:11',1),(1,202,3027976,'2013-01-16 19:22:11',1),(1,7,3027976,'2013-01-16 19:22:11',1),(1,38,3027976,'2013-01-16 19:22:11',1),(1,9,3027976,'2013-01-16 19:22:11',1),(1,10,3027976,'2013-01-16 19:22:11',1),(1,168,3027978,'2013-01-16 19:22:11',1),(1,64,3027978,'2013-01-16 19:22:11',1),(1,110,3027978,'2013-01-16 19:22:11',1),(1,202,3027978,'2013-01-16 19:22:11',1),(1,7,3027978,'2013-01-16 19:22:11',1),(1,38,3027978,'2013-01-16 19:22:11',1),(1,9,3027978,'2013-01-16 19:22:11',1),(1,10,3027978,'2013-01-16 19:22:11',1),(1,60,3027904,'2013-01-16 19:22:11',1),(1,215,3027904,'2013-01-16 19:22:11',1),(1,61,3027904,'2013-01-16 19:22:11',1),(1,229,3027904,'2013-01-16 19:22:11',1),(1,2,3027904,'2013-01-16 19:22:11',1),(1,131,3027904,'2013-01-16 19:22:11',1),(1,217,3027904,'2013-01-16 19:22:11',1),(1,208,3027904,'2013-01-16 19:22:11',1),(1,168,3027901,'2013-01-16 19:22:11',1),(1,64,3027901,'2013-01-16 19:22:11',1),(1,110,3027901,'2013-01-16 19:22:11',1),(1,202,3027901,'2013-01-16 19:22:11',1),(1,7,3027901,'2013-01-16 19:22:11',1),(1,38,3027901,'2013-01-16 19:22:11',1),(1,9,3027901,'2013-01-16 19:22:11',1),(1,10,3027901,'2013-01-16 19:22:11',1),(1,168,3028061,'2013-01-16 19:22:18',1),(1,64,3028061,'2013-01-16 19:22:18',1),(1,110,3028061,'2013-01-16 19:22:18',1),(1,202,3028061,'2013-01-16 19:22:18',1),(1,7,3028061,'2013-01-16 19:22:18',1),(1,38,3028061,'2013-01-16 19:22:18',1),(1,9,3028061,'2013-01-16 19:22:18',1),(1,10,3028061,'2013-01-16 19:22:18',1),(1,168,3028076,'2013-01-16 19:22:21',1),(1,64,3028076,'2013-01-16 19:22:21',1),(1,110,3028076,'2013-01-16 19:22:21',1),(1,202,3028076,'2013-01-16 19:22:21',1),(1,7,3028076,'2013-01-16 19:22:21',1),(1,38,3028076,'2013-01-16 19:22:21',1),(1,9,3028076,'2013-01-16 19:22:21',1),(1,10,3028076,'2013-01-16 19:22:21',1),(1,168,3027806,'2013-01-16 19:22:21',1),(1,64,3027806,'2013-01-16 19:22:21',1),(1,110,3027806,'2013-01-16 19:22:21',1),(1,202,3027806,'2013-01-16 19:22:21',1),(1,7,3027806,'2013-01-16 19:22:21',1),(1,38,3027806,'2013-01-16 19:22:21',1),(1,9,3027806,'2013-01-16 19:22:21',1),(1,10,3027806,'2013-01-16 19:22:21',1),(1,168,3027973,'2013-01-16 19:22:21',1),(1,64,3027973,'2013-01-16 19:22:21',1),(1,110,3027973,'2013-01-16 19:22:21',1),(1,202,3027973,'2013-01-16 19:22:21',1),(1,7,3027973,'2013-01-16 19:22:21',1),(1,38,3027973,'2013-01-16 19:22:21',1),(1,9,3027973,'2013-01-16 19:22:21',1),(1,10,3027973,'2013-01-16 19:22:21',1),(1,60,3027969,'2013-01-16 19:22:24',1),(1,215,3027969,'2013-01-16 19:22:24',1),(1,61,3027969,'2013-01-16 19:22:24',1),(1,229,3027969,'2013-01-16 19:22:24',1),(1,2,3027969,'2013-01-16 19:22:24',1),(1,131,3027969,'2013-01-16 19:22:24',1),(1,217,3027969,'2013-01-16 19:22:24',1),(1,208,3027969,'2013-01-16 19:22:24',1),(1,168,3027808,'2013-01-16 19:22:25',1),(1,64,3027808,'2013-01-16 19:22:25',1),(1,110,3027808,'2013-01-16 19:22:25',1),(1,202,3027808,'2013-01-16 19:22:25',1),(1,7,3027808,'2013-01-16 19:22:25',1),(1,38,3027808,'2013-01-16 19:22:25',1),(1,9,3027808,'2013-01-16 19:22:25',1),(1,10,3027808,'2013-01-16 19:22:25',1),(1,60,3027809,'2013-01-16 19:22:29',1),(1,215,3027809,'2013-01-16 19:22:29',1),(1,61,3027809,'2013-01-16 19:22:29',1),(1,229,3027809,'2013-01-16 19:22:29',1),(1,2,3027809,'2013-01-16 19:22:29',1),(1,131,3027809,'2013-01-16 19:22:29',1),(1,217,3027809,'2013-01-16 19:22:29',1),(1,208,3027809,'2013-01-16 19:22:29',1),(1,6,3028271,'2013-01-17 00:46:12',1),(1,4,3028271,'2013-01-17 00:46:12',1),(1,6,3028277,'2013-01-17 00:46:20',1),(1,4,3028277,'2013-01-17 00:46:20',1),(1,6,3028276,'2013-01-17 01:16:22',1),(1,4,3028276,'2013-01-17 01:16:22',1),(1,69,3028278,'2013-01-17 01:46:24',1),(1,209,3028278,'2013-01-17 01:46:24',1),(1,78,3028278,'2013-01-17 01:46:24',1),(1,56,3028278,'2013-01-17 01:46:24',1),(1,49,3028282,'2013-01-17 01:46:32',1),(1,69,3028282,'2013-01-17 01:46:32',1),(1,209,3028282,'2013-01-17 01:46:32',1),(1,78,3028282,'2013-01-17 01:46:32',1),(1,56,3028288,'2013-01-17 01:46:48',1),(1,228,3028288,'2013-01-17 01:46:48',1),(1,209,3028270,'2013-01-17 01:46:49',1),(1,56,3028270,'2013-01-17 01:46:49',1),(1,49,3028374,'2013-01-17 02:16:14',1),(1,69,3028374,'2013-01-17 02:16:14',1),(1,209,3028374,'2013-01-17 02:16:14',1),(1,78,3028374,'2013-01-17 02:16:14',1),(1,49,3028369,'2013-01-17 02:16:14',1),(1,69,3028369,'2013-01-17 02:16:14',1),(1,209,3028369,'2013-01-17 02:16:14',1),(1,78,3028369,'2013-01-17 02:16:14',1),(1,214,3028370,'2013-01-17 02:16:14',1),(1,56,3028370,'2013-01-17 02:16:14',1),(1,214,3028373,'2013-01-17 02:16:26',1),(1,56,3028373,'2013-01-17 02:16:26',1),(1,49,3028279,'2013-01-17 02:16:37',1),(1,69,3028279,'2013-01-17 02:16:37',1),(1,209,3028279,'2013-01-17 02:16:37',1),(1,78,3028279,'2013-01-17 02:16:37',1),(1,49,3028287,'2013-01-17 02:16:50',1),(1,69,3028287,'2013-01-17 02:16:50',1),(1,209,3028287,'2013-01-17 02:16:50',1),(1,78,3028287,'2013-01-17 02:16:50',1),(1,49,3028269,'2013-01-17 02:16:51',1),(1,69,3028269,'2013-01-17 02:16:51',1),(1,209,3028269,'2013-01-17 02:16:51',1),(1,78,3028269,'2013-01-17 02:16:51',1),(1,56,3028467,'2013-01-17 02:46:12',1),(1,4,3028467,'2013-01-17 02:46:12',1),(1,214,3028464,'2013-01-17 02:46:12',1),(1,221,3028464,'2013-01-17 02:46:12',1),(1,91,3028464,'2013-01-17 02:46:12',1),(1,6,3028464,'2013-01-17 02:46:12',1),(1,49,3028453,'2013-01-17 02:46:29',1),(1,69,3028453,'2013-01-17 02:46:29',1),(1,209,3028453,'2013-01-17 02:46:29',1),(1,78,3028453,'2013-01-17 02:46:29',1),(1,56,3028458,'2013-01-17 02:46:36',1),(1,228,3028458,'2013-01-17 02:46:36',1),(1,56,3028460,'2013-01-17 02:46:36',1),(1,4,3028460,'2013-01-17 02:46:36',1),(1,56,3028461,'2013-01-17 02:46:44',1),(1,228,3028461,'2013-01-17 02:46:44',1),(1,49,3028064,'2013-01-17 02:52:32',1),(1,69,3028064,'2013-01-17 02:52:32',1),(1,209,3028064,'2013-01-17 02:52:32',1),(1,78,3028064,'2013-01-17 02:52:32',1),(1,214,3028064,'2013-01-17 02:52:32',1),(1,221,3028064,'2013-01-17 02:52:32',1),(1,91,3028064,'2013-01-17 02:52:32',1),(1,6,3028064,'2013-01-17 02:52:32',1),(1,49,3028074,'2013-01-17 03:22:53',1),(1,69,3028074,'2013-01-17 03:22:53',1),(1,209,3028074,'2013-01-17 03:22:53',1),(1,78,3028074,'2013-01-17 03:22:53',1),(1,214,3028074,'2013-01-17 03:22:53',1),(1,221,3028074,'2013-01-17 03:22:53',1),(1,228,3028074,'2013-01-17 03:22:53',1),(1,91,3028074,'2013-01-17 03:22:53',1),(1,91,3028566,'2013-01-17 03:46:11',1),(1,6,3028566,'2013-01-17 03:46:11',1),(1,91,3028546,'2013-01-17 03:46:27',1),(1,6,3028546,'2013-01-17 03:46:27',1),(1,91,3028552,'2013-01-17 03:46:36',1),(1,6,3028552,'2013-01-17 03:46:36',1),(1,49,3028056,'2013-01-17 03:53:03',1),(1,69,3028056,'2013-01-17 03:53:03',1),(1,209,3028056,'2013-01-17 03:53:03',1),(1,78,3028056,'2013-01-17 03:53:03',1),(1,214,3028056,'2013-01-17 03:53:03',1),(1,56,3028056,'2013-01-17 03:53:03',1),(1,221,3028056,'2013-01-17 03:53:03',1),(1,228,3028056,'2013-01-17 03:53:03',1),(1,49,3028466,'2013-01-17 04:16:18',1),(1,69,3028466,'2013-01-17 04:16:18',1),(1,209,3028466,'2013-01-17 04:16:18',1),(1,78,3028466,'2013-01-17 04:16:18',1),(1,214,3028466,'2013-01-17 04:16:18',1),(1,56,3028466,'2013-01-17 04:16:18',1),(1,221,3028466,'2013-01-17 04:16:18',1),(1,228,3028466,'2013-01-17 04:16:18',1),(1,49,3028468,'2013-01-17 04:16:26',1),(1,69,3028468,'2013-01-17 04:16:26',1),(1,209,3028468,'2013-01-17 04:16:26',1),(1,78,3028468,'2013-01-17 04:16:26',1),(1,214,3028468,'2013-01-17 04:16:26',1),(1,56,3028468,'2013-01-17 04:16:26',1),(1,221,3028468,'2013-01-17 04:16:26',1),(1,228,3028468,'2013-01-17 04:16:26',1),(1,49,3028463,'2013-01-17 04:16:27',1),(1,69,3028463,'2013-01-17 04:16:27',1),(1,209,3028463,'2013-01-17 04:16:27',1),(1,78,3028463,'2013-01-17 04:16:27',1),(1,214,3028463,'2013-01-17 04:16:27',1),(1,56,3028463,'2013-01-17 04:16:27',1),(1,221,3028463,'2013-01-17 04:16:27',1),(1,228,3028463,'2013-01-17 04:16:27',1),(1,49,3028372,'2013-01-17 04:16:35',1),(1,69,3028372,'2013-01-17 04:16:35',1),(1,209,3028372,'2013-01-17 04:16:35',1),(1,78,3028372,'2013-01-17 04:16:35',1),(1,214,3028372,'2013-01-17 04:16:35',1),(1,56,3028372,'2013-01-17 04:16:35',1),(1,221,3028372,'2013-01-17 04:16:35',1),(1,228,3028372,'2013-01-17 04:16:35',1),(1,49,3028375,'2013-01-17 04:16:37',NULL),(1,69,3028375,'2013-01-17 04:16:37',NULL),(1,209,3028375,'2013-01-17 04:16:37',NULL),(1,78,3028375,'2013-01-17 04:16:37',NULL),(1,214,3028375,'2013-01-17 04:16:37',NULL),(1,56,3028375,'2013-01-17 04:16:37',NULL),(1,221,3028375,'2013-01-17 04:16:37',NULL),(1,228,3028375,'2013-01-17 04:16:37',NULL),(1,91,3028558,'2013-01-17 04:16:47',1),(1,6,3028558,'2013-01-17 04:16:47',1),(1,49,3028281,'2013-01-17 04:16:50',1),(1,69,3028281,'2013-01-17 04:16:50',1),(1,209,3028281,'2013-01-17 04:16:50',1),(1,78,3028281,'2013-01-17 04:16:50',1),(1,214,3028281,'2013-01-17 04:16:50',1),(1,56,3028281,'2013-01-17 04:16:50',1),(1,221,3028281,'2013-01-17 04:16:50',1),(1,228,3028281,'2013-01-17 04:16:50',1),(1,49,3028283,'2013-01-17 04:16:52',1),(1,69,3028283,'2013-01-17 04:16:52',1),(1,209,3028283,'2013-01-17 04:16:52',1),(1,78,3028283,'2013-01-17 04:16:52',1),(1,214,3028283,'2013-01-17 04:16:52',1),(1,56,3028283,'2013-01-17 04:16:52',1),(1,221,3028283,'2013-01-17 04:16:52',1),(1,228,3028283,'2013-01-17 04:16:52',1),(1,91,3028557,'2013-01-17 04:16:55',1),(1,6,3028557,'2013-01-17 04:16:55',1),(1,49,3028284,'2013-01-17 04:16:57',1),(1,69,3028284,'2013-01-17 04:16:57',1),(1,209,3028284,'2013-01-17 04:16:57',1),(1,78,3028284,'2013-01-17 04:16:57',1),(1,214,3028284,'2013-01-17 04:16:57',1),(1,56,3028284,'2013-01-17 04:16:57',1),(1,221,3028284,'2013-01-17 04:16:57',1),(1,228,3028284,'2013-01-17 04:16:57',1),(1,49,3028285,'2013-01-17 04:16:58',1),(1,69,3028285,'2013-01-17 04:16:58',1),(1,209,3028285,'2013-01-17 04:16:58',1),(1,78,3028285,'2013-01-17 04:16:58',1),(1,214,3028285,'2013-01-17 04:16:58',1),(1,56,3028285,'2013-01-17 04:16:58',1),(1,221,3028285,'2013-01-17 04:16:58',1),(1,228,3028285,'2013-01-17 04:16:58',1),(1,49,3028286,'2013-01-17 04:16:59',1),(1,69,3028286,'2013-01-17 04:16:59',1),(1,209,3028286,'2013-01-17 04:16:59',1),(1,78,3028286,'2013-01-17 04:16:59',1),(1,214,3028286,'2013-01-17 04:16:59',1),(1,56,3028286,'2013-01-17 04:16:59',1),(1,221,3028286,'2013-01-17 04:16:59',1),(1,228,3028286,'2013-01-17 04:16:59',1),(1,91,3028555,'2013-01-17 04:17:01',1),(1,6,3028555,'2013-01-17 04:17:01',1),(1,49,3028057,'2013-01-17 04:23:05',1),(1,69,3028057,'2013-01-17 04:23:05',1),(1,209,3028057,'2013-01-17 04:23:05',1),(1,78,3028057,'2013-01-17 04:23:05',1),(1,214,3028057,'2013-01-17 04:23:05',1),(1,56,3028057,'2013-01-17 04:23:05',1),(1,221,3028057,'2013-01-17 04:23:05',1),(1,228,3028057,'2013-01-17 04:23:05',1),(1,49,3028459,'2013-01-17 04:46:47',1),(1,69,3028459,'2013-01-17 04:46:47',1),(1,209,3028459,'2013-01-17 04:46:47',1),(1,78,3028459,'2013-01-17 04:46:47',1),(1,214,3028459,'2013-01-17 04:46:47',1),(1,56,3028459,'2013-01-17 04:46:47',1),(1,221,3028459,'2013-01-17 04:46:47',1),(1,228,3028459,'2013-01-17 04:46:47',1),(1,49,3028563,'2013-01-17 05:16:17',1),(1,69,3028563,'2013-01-17 05:16:17',1),(1,209,3028563,'2013-01-17 05:16:17',1),(1,78,3028563,'2013-01-17 05:16:17',1),(1,214,3028563,'2013-01-17 05:16:17',1),(1,56,3028563,'2013-01-17 05:16:17',1),(1,221,3028563,'2013-01-17 05:16:17',1),(1,228,3028563,'2013-01-17 05:16:17',1),(1,194,3028273,'2013-01-17 05:16:37',1),(1,171,3028274,'2013-01-17 05:16:38',1),(1,49,3028565,'2013-01-17 05:46:27',1),(1,69,3028565,'2013-01-17 05:46:27',1),(1,209,3028565,'2013-01-17 05:46:27',1),(1,78,3028565,'2013-01-17 05:46:27',1),(1,214,3028565,'2013-01-17 05:46:27',1),(1,56,3028565,'2013-01-17 05:46:27',1),(1,221,3028565,'2013-01-17 05:46:27',1),(1,228,3028565,'2013-01-17 05:46:27',1),(1,49,3028544,'2013-01-17 05:46:27',1),(1,69,3028544,'2013-01-17 05:46:27',1),(1,209,3028544,'2013-01-17 05:46:27',1),(1,78,3028544,'2013-01-17 05:46:27',1),(1,214,3028544,'2013-01-17 05:46:27',1),(1,56,3028544,'2013-01-17 05:46:27',1),(1,221,3028544,'2013-01-17 05:46:27',1),(1,228,3028544,'2013-01-17 05:46:27',1),(1,49,3028545,'2013-01-17 05:46:27',1),(1,69,3028545,'2013-01-17 05:46:27',1),(1,209,3028545,'2013-01-17 05:46:27',1),(1,78,3028545,'2013-01-17 05:46:27',1),(1,214,3028545,'2013-01-17 05:46:27',1),(1,56,3028545,'2013-01-17 05:46:27',1),(1,221,3028545,'2013-01-17 05:46:27',1),(1,228,3028545,'2013-01-17 05:46:27',1),(1,171,3028376,'2013-01-17 05:46:29',1),(1,6,3028272,'2013-01-17 05:46:38',1),(1,157,3028454,'2013-01-17 05:46:47',NULL),(1,34,3028454,'2013-01-17 05:46:47',NULL),(1,236,3028454,'2013-01-17 05:46:47',NULL),(1,251,3028454,'2013-01-17 05:46:47',NULL),(1,91,3028455,'2013-01-17 05:46:47',1),(1,34,3028455,'2013-01-17 05:46:47',1),(1,236,3028455,'2013-01-17 05:46:47',1),(1,251,3028455,'2013-01-17 05:46:47',1),(1,146,3028275,'2013-01-17 05:46:50',1),(1,4,3028280,'2013-01-17 05:46:57',1),(1,91,3028564,'2013-01-17 06:16:22',1),(1,236,3028564,'2013-01-17 06:16:22',1),(1,251,3028564,'2013-01-17 06:16:22',1),(1,6,3028564,'2013-01-17 06:16:22',1),(1,49,3028550,'2013-01-17 06:16:46',1),(1,69,3028550,'2013-01-17 06:16:46',1),(1,209,3028550,'2013-01-17 06:16:46',1),(1,78,3028550,'2013-01-17 06:16:46',1),(1,214,3028550,'2013-01-17 06:16:46',1),(1,56,3028550,'2013-01-17 06:16:46',1),(1,221,3028550,'2013-01-17 06:16:46',1),(1,228,3028550,'2013-01-17 06:16:46',1),(1,49,3028553,'2013-01-17 06:16:47',1),(1,69,3028553,'2013-01-17 06:16:47',1),(1,209,3028553,'2013-01-17 06:16:47',1),(1,78,3028553,'2013-01-17 06:16:47',1),(1,214,3028553,'2013-01-17 06:16:47',1),(1,56,3028553,'2013-01-17 06:16:47',1),(1,221,3028553,'2013-01-17 06:16:47',1),(1,228,3028553,'2013-01-17 06:16:47',1),(1,91,3028462,'2013-01-17 06:16:59',1),(1,34,3028462,'2013-01-17 06:16:59',1),(1,236,3028462,'2013-01-17 06:16:59',1),(1,251,3028462,'2013-01-17 06:16:59',1),(1,236,3028543,'2013-01-17 06:46:25',1),(1,69,3028465,'2013-01-17 06:46:28',1),(1,251,3028567,'2013-01-17 06:46:31',1),(1,209,3028469,'2013-01-17 06:46:37',1),(1,26,3028452,'2013-01-17 06:46:37',1),(1,146,3028452,'2013-01-17 06:46:37',1),(1,157,3028452,'2013-01-17 06:46:37',1),(1,236,3028452,'2013-01-17 06:46:37',1),(1,251,3028452,'2013-01-17 06:46:37',1),(1,49,3028452,'2013-01-17 06:46:37',1),(1,69,3028452,'2013-01-17 06:46:37',1),(1,209,3028452,'2013-01-17 06:46:37',1),(1,78,3028452,'2013-01-17 06:46:37',1),(1,214,3028452,'2013-01-17 06:46:37',1),(1,56,3028452,'2013-01-17 06:46:37',1),(1,221,3028452,'2013-01-17 06:46:37',1),(1,228,3028452,'2013-01-17 06:46:37',1),(1,91,3028452,'2013-01-17 06:46:37',1),(1,6,3028452,'2013-01-17 06:46:37',1),(1,4,3028452,'2013-01-17 06:46:37',1),(1,49,3028371,'2013-01-17 06:46:44',1),(1,251,3028551,'2013-01-17 06:46:48',1),(1,91,3028551,'2013-01-17 06:46:48',1),(1,236,3028551,'2013-01-17 06:46:48',1),(1,6,3028551,'2013-01-17 06:46:48',1),(1,78,3028456,'2013-01-17 06:46:51',1),(1,26,3028457,'2013-01-17 06:46:54',1),(1,146,3028457,'2013-01-17 06:46:54',1),(1,157,3028457,'2013-01-17 06:46:54',1),(1,34,3028457,'2013-01-17 06:46:54',1),(1,236,3028457,'2013-01-17 06:46:54',1),(1,251,3028457,'2013-01-17 06:46:54',1),(1,49,3028457,'2013-01-17 06:46:54',1),(1,69,3028457,'2013-01-17 06:46:54',1),(1,209,3028457,'2013-01-17 06:46:54',1),(1,78,3028457,'2013-01-17 06:46:54',1),(1,214,3028457,'2013-01-17 06:46:54',1),(1,56,3028457,'2013-01-17 06:46:54',1),(1,221,3028457,'2013-01-17 06:46:54',1),(1,228,3028457,'2013-01-17 06:46:54',1),(1,91,3028457,'2013-01-17 06:46:54',1),(1,6,3028457,'2013-01-17 06:46:54',1),(1,49,3028554,'2013-01-17 06:46:55',1),(1,69,3028554,'2013-01-17 06:46:55',1),(1,209,3028554,'2013-01-17 06:46:55',1),(1,78,3028554,'2013-01-17 06:46:55',1),(1,214,3028556,'2013-01-17 06:47:06',1),(1,56,3028556,'2013-01-17 06:47:06',1),(1,221,3028556,'2013-01-17 06:47:06',1),(1,228,3028556,'2013-01-17 06:47:06',1),(1,124,3028547,'2013-01-17 07:16:42',1),(1,26,3028547,'2013-01-17 07:16:42',1),(1,146,3028547,'2013-01-17 07:16:42',1),(1,157,3028547,'2013-01-17 07:16:42',1),(1,34,3028547,'2013-01-17 07:16:42',1),(1,236,3028547,'2013-01-17 07:16:42',1),(1,251,3028547,'2013-01-17 07:16:42',1),(1,49,3028547,'2013-01-17 07:16:42',1),(1,69,3028547,'2013-01-17 07:16:42',1),(1,209,3028547,'2013-01-17 07:16:42',1),(1,78,3028547,'2013-01-17 07:16:42',1),(1,214,3028547,'2013-01-17 07:16:42',1),(1,56,3028547,'2013-01-17 07:16:42',1),(1,221,3028547,'2013-01-17 07:16:42',1),(1,228,3028547,'2013-01-17 07:16:42',1),(1,91,3028547,'2013-01-17 07:16:42',1),(1,124,3028548,'2013-01-17 07:46:44',1),(1,26,3028548,'2013-01-17 07:46:44',1),(1,151,3028548,'2013-01-17 07:46:44',1),(1,146,3028548,'2013-01-17 07:46:44',1),(1,157,3028548,'2013-01-17 07:46:44',1),(1,34,3028548,'2013-01-17 07:46:44',1),(1,236,3028548,'2013-01-17 07:46:44',1),(1,251,3028548,'2013-01-17 07:46:44',1),(1,171,3028548,'2013-01-17 07:46:44',1),(1,49,3028548,'2013-01-17 07:46:44',1),(1,69,3028548,'2013-01-17 07:46:44',1),(1,209,3028548,'2013-01-17 07:46:44',1),(1,78,3028548,'2013-01-17 07:46:44',1),(1,214,3028548,'2013-01-17 07:46:44',1),(1,56,3028548,'2013-01-17 07:46:44',1),(1,221,3028548,'2013-01-17 07:46:44',1),(1,184,3028549,'2013-01-17 07:46:46',1),(1,140,3028549,'2013-01-17 07:46:46',1),(1,96,3028549,'2013-01-17 07:46:46',1),(1,82,3028549,'2013-01-17 07:46:46',1),(1,123,3028549,'2013-01-17 07:46:46',1),(1,18,3028549,'2013-01-17 07:46:46',1),(1,187,3028549,'2013-01-17 07:46:46',1),(1,197,3028549,'2013-01-17 07:46:46',1),(1,225,3028549,'2013-01-17 07:46:46',1),(1,43,3028549,'2013-01-17 07:46:46',1),(1,127,3028549,'2013-01-17 07:46:46',1),(1,71,3028549,'2013-01-17 07:46:46',1),(1,28,3028549,'2013-01-17 07:46:46',1),(1,57,3028549,'2013-01-17 07:46:46',1),(1,235,3028549,'2013-01-17 07:46:46',1),(1,194,3028549,'2013-01-17 07:46:46',1),(1,26,3028559,'2013-01-17 10:17:13',1),(1,30,3028559,'2013-01-17 10:17:13',1),(1,106,3028559,'2013-01-17 10:17:13',1),(1,207,3028559,'2013-01-17 10:17:13',1),(1,124,3028561,'2013-01-17 10:17:22',1),(1,151,3028561,'2013-01-17 10:17:22',1),(1,187,3028561,'2013-01-17 10:17:22',1),(1,71,3028561,'2013-01-17 10:17:22',1),(1,26,3029164,'2013-01-17 12:45:03',1),(1,28,3029164,'2013-01-17 12:45:03',1),(1,30,3029165,'2013-01-17 12:45:21',1),(1,106,3029165,'2013-01-17 12:45:21',1),(1,30,3029166,'2013-01-17 13:14:08',1),(1,106,3029166,'2013-01-17 13:14:08',1),(1,26,3029167,'2013-01-17 13:14:49',1),(1,71,3029167,'2013-01-17 13:14:49',1),(1,35,3029245,'2013-01-17 17:45:13',1),(1,37,3029245,'2013-01-17 17:45:13',1),(1,30,3029245,'2013-01-17 17:45:13',1),(1,145,3029245,'2013-01-17 17:45:13',1),(1,39,3029245,'2013-01-17 17:45:13',1),(1,106,3029245,'2013-01-17 17:45:13',1),(1,63,3029245,'2013-01-17 17:45:13',1),(1,73,3029245,'2013-01-17 17:45:13',1),(1,75,3029247,'2013-01-17 17:45:15',1),(1,108,3029247,'2013-01-17 17:45:15',1),(1,247,3029248,'2013-01-17 18:15:19',1),(1,94,3029248,'2013-01-17 18:15:19',1),(1,183,3029248,'2013-01-17 18:15:19',1),(1,134,3029248,'2013-01-17 18:15:19',1),(1,48,3029248,'2013-01-17 18:15:19',1),(1,245,3029248,'2013-01-17 18:15:19',1),(1,51,3029248,'2013-01-17 18:15:19',1),(1,22,3029248,'2013-01-17 18:15:19',1),(1,177,3029248,'2013-01-17 18:15:19',1),(1,181,3029248,'2013-01-17 18:15:19',1),(1,243,3029248,'2013-01-17 18:15:19',1),(1,248,3029248,'2013-01-17 18:15:19',1),(1,193,3029248,'2013-01-17 18:15:19',1),(1,172,3029248,'2013-01-17 18:15:19',1),(1,83,3029248,'2013-01-17 18:15:19',1),(1,84,3029248,'2013-01-17 18:15:19',1),(1,35,3029252,'2013-01-17 18:15:22',1),(1,37,3029252,'2013-01-17 18:15:22',1),(1,30,3029252,'2013-01-17 18:15:22',1),(1,145,3029252,'2013-01-17 18:15:22',1),(1,39,3029252,'2013-01-17 18:15:22',1),(1,106,3029252,'2013-01-17 18:15:22',1),(1,63,3029252,'2013-01-17 18:15:22',1),(1,73,3029252,'2013-01-17 18:15:22',1),(1,247,3029275,'2013-01-17 18:15:42',1),(1,94,3029275,'2013-01-17 18:15:42',1),(1,183,3029275,'2013-01-17 18:15:42',1),(1,134,3029275,'2013-01-17 18:15:42',1),(1,48,3029275,'2013-01-17 18:15:42',1),(1,245,3029275,'2013-01-17 18:15:42',1),(1,51,3029275,'2013-01-17 18:15:42',1),(1,22,3029275,'2013-01-17 18:15:42',1),(1,177,3029275,'2013-01-17 18:15:42',1),(1,181,3029275,'2013-01-17 18:15:42',1),(1,243,3029275,'2013-01-17 18:15:42',1),(1,248,3029275,'2013-01-17 18:15:42',1),(1,193,3029275,'2013-01-17 18:15:42',1),(1,172,3029275,'2013-01-17 18:15:42',1),(1,83,3029275,'2013-01-17 18:15:42',1),(1,84,3029275,'2013-01-17 18:15:42',1),(1,248,3028560,'2013-01-17 18:44:03',1),(1,201,3029246,'2013-01-17 18:45:22',1),(1,205,3029246,'2013-01-17 18:45:22',1),(1,77,3029246,'2013-01-17 18:45:22',1),(1,241,3029246,'2013-01-17 18:45:22',1),(1,35,3029255,'2013-01-17 18:45:29',1),(1,37,3029255,'2013-01-17 18:45:29',1),(1,30,3029255,'2013-01-17 18:45:29',1),(1,145,3029255,'2013-01-17 18:45:29',1),(1,39,3029255,'2013-01-17 18:45:29',1),(1,106,3029255,'2013-01-17 18:45:29',1),(1,63,3029255,'2013-01-17 18:45:29',1),(1,73,3029255,'2013-01-17 18:45:29',1),(1,93,3029257,'2013-01-17 18:45:30',1),(1,174,3029257,'2013-01-17 18:45:30',1),(1,156,3029257,'2013-01-17 18:45:30',1),(1,242,3029257,'2013-01-17 18:45:30',1),(1,240,3029257,'2013-01-17 18:45:30',1),(1,132,3029257,'2013-01-17 18:45:30',1),(1,230,3029257,'2013-01-17 18:45:30',1),(1,216,3029257,'2013-01-17 18:45:30',1),(1,198,3029257,'2013-01-17 18:45:30',1),(1,200,3029257,'2013-01-17 18:45:30',1),(1,66,3029257,'2013-01-17 18:45:30',1),(1,201,3029257,'2013-01-17 18:45:30',1),(1,205,3029257,'2013-01-17 18:45:30',1),(1,77,3029257,'2013-01-17 18:45:30',1),(1,241,3029257,'2013-01-17 18:45:30',1),(1,67,3029257,'2013-01-17 18:45:30',1),(1,108,3029263,'2013-01-17 18:45:37',1),(1,240,3029263,'2013-01-17 18:45:37',1),(1,132,3029263,'2013-01-17 18:45:37',1),(1,230,3029263,'2013-01-17 18:45:37',1),(1,216,3029263,'2013-01-17 18:45:37',1),(1,198,3029263,'2013-01-17 18:45:37',1),(1,200,3029263,'2013-01-17 18:45:37',1),(1,66,3029263,'2013-01-17 18:45:37',1),(1,248,3029265,'2013-01-17 18:45:38',1),(1,83,3029265,'2013-01-17 18:45:38',1),(1,108,3029265,'2013-01-17 18:45:38',1),(1,240,3029265,'2013-01-17 18:45:38',1),(1,132,3029265,'2013-01-17 18:45:38',1),(1,230,3029265,'2013-01-17 18:45:38',1),(1,216,3029265,'2013-01-17 18:45:38',1),(1,198,3029265,'2013-01-17 18:45:38',1),(1,248,3029272,'2013-01-17 18:45:45',1),(1,83,3029272,'2013-01-17 18:45:45',1),(1,108,3029272,'2013-01-17 18:45:45',1),(1,240,3029272,'2013-01-17 18:45:45',1),(1,132,3029272,'2013-01-17 18:45:45',1),(1,230,3029272,'2013-01-17 18:45:45',1),(1,216,3029272,'2013-01-17 18:45:45',1),(1,198,3029272,'2013-01-17 18:45:45',1),(1,248,3029274,'2013-01-17 18:45:48',1),(1,83,3029274,'2013-01-17 18:45:48',1),(1,108,3029274,'2013-01-17 18:45:48',1),(1,240,3029274,'2013-01-17 18:45:48',1),(1,132,3029274,'2013-01-17 18:45:48',1),(1,230,3029274,'2013-01-17 18:45:48',1),(1,216,3029274,'2013-01-17 18:45:48',1),(1,198,3029274,'2013-01-17 18:45:48',1),(1,247,3029286,'2013-01-17 18:45:58',1),(1,94,3029286,'2013-01-17 18:45:58',1),(1,183,3029286,'2013-01-17 18:45:58',1),(1,134,3029286,'2013-01-17 18:45:58',1),(1,48,3029286,'2013-01-17 18:45:58',1),(1,245,3029286,'2013-01-17 18:45:58',1),(1,51,3029286,'2013-01-17 18:45:58',1),(1,22,3029286,'2013-01-17 18:45:58',1),(1,177,3029286,'2013-01-17 18:45:58',1),(1,181,3029286,'2013-01-17 18:45:58',1),(1,243,3029286,'2013-01-17 18:45:58',1),(1,248,3029286,'2013-01-17 18:45:58',1),(1,193,3029286,'2013-01-17 18:45:58',1),(1,172,3029286,'2013-01-17 18:45:58',1),(1,83,3029286,'2013-01-17 18:45:58',1),(1,84,3029286,'2013-01-17 18:45:58',1),(1,93,3029293,'2013-01-17 18:46:04',1),(1,174,3029293,'2013-01-17 18:46:04',1),(1,156,3029293,'2013-01-17 18:46:04',1),(1,242,3029293,'2013-01-17 18:46:04',1),(1,240,3029293,'2013-01-17 18:46:04',1),(1,132,3029293,'2013-01-17 18:46:04',1),(1,230,3029293,'2013-01-17 18:46:04',1),(1,216,3029293,'2013-01-17 18:46:04',1),(1,198,3029293,'2013-01-17 18:46:04',1),(1,200,3029293,'2013-01-17 18:46:04',1),(1,66,3029293,'2013-01-17 18:46:04',1),(1,201,3029293,'2013-01-17 18:46:04',1),(1,205,3029293,'2013-01-17 18:46:04',1),(1,77,3029293,'2013-01-17 18:46:04',1),(1,241,3029293,'2013-01-17 18:46:04',1),(1,67,3029293,'2013-01-17 18:46:04',1),(1,39,3028562,'2013-01-17 19:14:04',1),(1,200,3029250,'2013-01-17 19:15:31',1),(1,66,3029250,'2013-01-17 19:15:31',1),(1,201,3029251,'2013-01-17 19:15:36',1),(1,205,3029251,'2013-01-17 19:15:36',1),(1,77,3029251,'2013-01-17 19:15:36',1),(1,241,3029251,'2013-01-17 19:15:36',1),(1,200,3029258,'2013-01-17 19:15:37',1),(1,66,3029258,'2013-01-17 19:15:37',1),(1,106,3029259,'2013-01-17 19:15:38',1),(1,172,3029259,'2013-01-17 19:15:38',1),(1,73,3029259,'2013-01-17 19:15:38',1),(1,84,3029259,'2013-01-17 19:15:38',1),(1,93,3029259,'2013-01-17 19:15:38',1),(1,174,3029259,'2013-01-17 19:15:38',1),(1,156,3029259,'2013-01-17 19:15:38',1),(1,242,3029259,'2013-01-17 19:15:38',1),(1,22,3029260,'2013-01-17 19:15:39',1),(1,177,3029260,'2013-01-17 19:15:39',1),(1,201,3029260,'2013-01-17 19:15:39',1),(1,205,3029260,'2013-01-17 19:15:39',1),(1,35,3029261,'2013-01-17 19:15:40',1),(1,248,3029261,'2013-01-17 19:15:40',1),(1,106,3029261,'2013-01-17 19:15:40',1),(1,172,3029261,'2013-01-17 19:15:40',1),(1,200,3029262,'2013-01-17 19:15:40',1),(1,66,3029262,'2013-01-17 19:15:40',1),(1,83,3029266,'2013-01-17 19:15:45',1),(1,63,3029266,'2013-01-17 19:15:45',1),(1,73,3029266,'2013-01-17 19:15:45',1),(1,84,3029266,'2013-01-17 19:15:45',1),(1,35,3029267,'2013-01-17 19:15:45',1),(1,198,3029267,'2013-01-17 19:15:45',1),(1,77,3029269,'2013-01-17 19:15:48',1),(1,241,3029269,'2013-01-17 19:15:48',1),(1,93,3029270,'2013-01-17 19:15:48',1),(1,198,3029270,'2013-01-17 19:15:48',1),(1,200,3029270,'2013-01-17 19:15:48',1),(1,66,3029270,'2013-01-17 19:15:48',1),(1,77,3029273,'2013-01-17 19:15:51',1),(1,241,3029273,'2013-01-17 19:15:51',1),(1,35,3029276,'2013-01-17 19:15:56',1),(1,248,3029276,'2013-01-17 19:15:56',1),(1,106,3029276,'2013-01-17 19:15:56',1),(1,172,3029276,'2013-01-17 19:15:56',1),(1,93,3029277,'2013-01-17 19:15:56',1),(1,198,3029277,'2013-01-17 19:15:56',1),(1,200,3029277,'2013-01-17 19:15:56',1),(1,66,3029277,'2013-01-17 19:15:56',1),(1,77,3029279,'2013-01-17 19:16:00',1),(1,241,3029279,'2013-01-17 19:16:00',1),(1,248,3029280,'2013-01-17 19:16:00',1),(1,83,3029280,'2013-01-17 19:16:00',1),(1,108,3029280,'2013-01-17 19:16:00',1),(1,240,3029280,'2013-01-17 19:16:00',1),(1,132,3029280,'2013-01-17 19:16:00',1),(1,230,3029280,'2013-01-17 19:16:00',1),(1,216,3029280,'2013-01-17 19:16:00',1),(1,198,3029280,'2013-01-17 19:16:00',1),(1,248,3029281,'2013-01-17 19:16:00',1),(1,83,3029281,'2013-01-17 19:16:00',1),(1,63,3029281,'2013-01-17 19:16:00',1),(1,108,3029281,'2013-01-17 19:16:00',1),(1,240,3029281,'2013-01-17 19:16:00',1),(1,132,3029281,'2013-01-17 19:16:00',1),(1,230,3029281,'2013-01-17 19:16:00',1),(1,216,3029281,'2013-01-17 19:16:00',1),(1,73,3029282,'2013-01-17 19:16:01',1),(1,84,3029282,'2013-01-17 19:16:01',1),(1,22,3029283,'2013-01-17 19:16:04',1),(1,177,3029283,'2013-01-17 19:16:04',1),(1,83,3029283,'2013-01-17 19:16:04',1),(1,63,3029283,'2013-01-17 19:16:04',1),(1,248,3029285,'2013-01-17 19:16:06',1),(1,106,3029285,'2013-01-17 19:16:06',1),(1,172,3029285,'2013-01-17 19:16:06',1),(1,83,3029285,'2013-01-17 19:16:06',1),(1,63,3029285,'2013-01-17 19:16:06',1),(1,73,3029285,'2013-01-17 19:16:06',1),(1,84,3029285,'2013-01-17 19:16:06',1),(1,93,3029285,'2013-01-17 19:16:06',1),(1,93,3029287,'2013-01-17 19:16:07',1),(1,198,3029287,'2013-01-17 19:16:07',1),(1,73,3029288,'2013-01-17 19:16:10',1),(1,84,3029288,'2013-01-17 19:16:10',1),(1,201,3029288,'2013-01-17 19:16:10',1),(1,205,3029288,'2013-01-17 19:16:10',1),(1,22,3029292,'2013-01-17 19:16:13',1),(1,177,3029292,'2013-01-17 19:16:13',1),(1,35,3029292,'2013-01-17 19:16:13',1),(1,248,3029292,'2013-01-17 19:16:13',1),(1,248,3029297,'2013-01-17 19:16:19',1),(1,106,3029297,'2013-01-17 19:16:19',1),(1,172,3029297,'2013-01-17 19:16:19',1),(1,83,3029297,'2013-01-17 19:16:19',1),(1,63,3029297,'2013-01-17 19:16:19',1),(1,73,3029297,'2013-01-17 19:16:19',1),(1,84,3029297,'2013-01-17 19:16:19',1),(1,93,3029297,'2013-01-17 19:16:19',1),(1,77,3029244,'2013-01-17 19:45:51',1),(1,241,3029249,'2013-01-17 19:45:51',1),(1,48,3029253,'2013-01-17 19:45:54',1),(1,245,3029253,'2013-01-17 19:45:54',1),(1,51,3029253,'2013-01-17 19:45:54',1),(1,181,3029253,'2013-01-17 19:45:54',1),(1,174,3029254,'2013-01-17 19:45:56',1),(1,39,3029256,'2013-01-17 19:45:57',1),(1,193,3029256,'2013-01-17 19:45:57',1),(1,156,3029264,'2013-01-17 19:45:57',1),(1,242,3029268,'2013-01-17 19:46:01',1),(1,108,3029271,'2013-01-17 19:46:01',1),(1,240,3029278,'2013-01-17 19:46:03',1),(1,132,3029284,'2013-01-17 19:46:11',1),(1,230,3029289,'2013-01-17 19:46:13',1),(1,200,3029290,'2013-01-17 19:46:13',1),(1,66,3029290,'2013-01-17 19:46:13',1),(1,174,3029291,'2013-01-17 19:46:14',1),(1,156,3029291,'2013-01-17 19:46:14',1),(1,242,3029291,'2013-01-17 19:46:14',1),(1,108,3029291,'2013-01-17 19:46:14',1),(1,240,3029291,'2013-01-17 19:46:14',1),(1,132,3029291,'2013-01-17 19:46:14',1),(1,230,3029291,'2013-01-17 19:46:14',1),(1,216,3029291,'2013-01-17 19:46:14',1),(1,216,3029294,'2013-01-17 19:46:20',1),(1,106,3029295,'2013-01-17 19:46:20',1),(1,172,3029295,'2013-01-17 19:46:20',1),(1,83,3029295,'2013-01-17 19:46:20',1),(1,63,3029295,'2013-01-17 19:46:20',1),(1,201,3029296,'2013-01-17 19:46:23',1),(1,205,3029296,'2013-01-17 19:46:23',1),(1,193,3028856,'2013-01-18 00:46:19',1),(1,230,3028856,'2013-01-18 00:46:19',1),(1,200,3028856,'2013-01-18 00:46:19',1),(1,201,3028856,'2013-01-18 00:46:19',1),(1,241,3028857,'2013-01-18 00:46:20',1),(1,193,3028859,'2013-01-18 00:46:21',1),(1,230,3028859,'2013-01-18 00:46:21',1),(1,200,3028859,'2013-01-18 00:46:21',1),(1,201,3028859,'2013-01-18 00:46:21',1),(1,193,3028864,'2013-01-18 00:46:41',1),(1,174,3028864,'2013-01-18 00:46:41',1),(1,230,3028864,'2013-01-18 00:46:41',1),(1,200,3028864,'2013-01-18 00:46:41',1),(1,205,3028865,'2013-01-18 00:46:46',1),(1,77,3028865,'2013-01-18 00:46:46',1),(1,193,3028866,'2013-01-18 00:46:46',1),(1,174,3028866,'2013-01-18 00:46:46',1),(1,230,3028866,'2013-01-18 00:46:46',1),(1,200,3028866,'2013-01-18 00:46:46',1),(1,174,3028847,'2013-01-18 00:46:47',1),(1,205,3028847,'2013-01-18 00:46:47',1),(1,201,3028848,'2013-01-18 00:46:50',1),(1,205,3028848,'2013-01-18 00:46:50',1),(1,77,3028849,'2013-01-18 00:46:52',1),(1,248,3028850,'2013-01-18 00:46:53',1),(1,241,3028851,'2013-01-18 00:46:55',1),(1,77,3028852,'2013-01-18 00:46:55',1),(1,248,3028853,'2013-01-18 00:46:57',1),(1,193,3028853,'2013-01-18 00:46:57',1),(1,201,3028854,'2013-01-18 00:46:57',1),(1,205,3028854,'2013-01-18 00:46:57',1),(1,193,3028855,'2013-01-18 00:47:00',1),(1,174,3028855,'2013-01-18 00:47:00',1),(1,230,3028855,'2013-01-18 00:47:00',1),(1,200,3028855,'2013-01-18 00:47:00',1),(1,249,3028858,'2013-01-18 01:16:25',1),(1,160,3028858,'2013-01-18 01:16:25',1),(1,133,3028858,'2013-01-18 01:16:25',1),(1,16,3028858,'2013-01-18 01:16:25',1),(1,244,3028858,'2013-01-18 01:16:25',1),(1,88,3028858,'2013-01-18 01:16:25',1),(1,227,3028858,'2013-01-18 01:16:25',1),(1,237,3028858,'2013-01-18 01:16:25',1),(1,31,3028860,'2013-01-18 01:16:35',1),(1,62,3028860,'2013-01-18 01:16:35',1),(1,128,3028860,'2013-01-18 01:16:35',1),(1,19,3028860,'2013-01-18 01:16:35',1),(1,190,3028860,'2013-01-18 01:16:35',1),(1,59,3028860,'2013-01-18 01:16:35',1),(1,8,3028860,'2013-01-18 01:16:35',1),(1,166,3028860,'2013-01-18 01:16:35',1),(1,14,3028861,'2013-01-18 01:16:35',1),(1,112,3028861,'2013-01-18 01:16:35',1),(1,185,3028861,'2013-01-18 01:16:35',1),(1,218,3028861,'2013-01-18 01:16:35',1),(1,219,3028861,'2013-01-18 01:16:35',1),(1,199,3028861,'2013-01-18 01:16:35',1),(1,67,3028861,'2013-01-18 01:16:35',1),(1,206,3028861,'2013-01-18 01:16:35',1),(1,141,3028862,'2013-01-18 01:16:35',1),(1,119,3028862,'2013-01-18 01:16:35',1),(1,3,3028862,'2013-01-18 01:16:35',1),(1,40,3028862,'2013-01-18 01:16:35',1),(1,239,3028862,'2013-01-18 01:16:35',1),(1,21,3028862,'2013-01-18 01:16:35',1),(1,47,3028862,'2013-01-18 01:16:35',1),(1,98,3028862,'2013-01-18 01:16:35',1),(1,249,3028863,'2013-01-18 01:16:39',1),(1,160,3028863,'2013-01-18 01:16:39',1),(1,133,3028863,'2013-01-18 01:16:39',1),(1,16,3028863,'2013-01-18 01:16:39',1),(1,244,3028863,'2013-01-18 01:16:39',1),(1,88,3028863,'2013-01-18 01:16:39',1),(1,227,3028863,'2013-01-18 01:16:39',1),(1,237,3028863,'2013-01-18 01:16:39',1),(1,141,3028955,'2013-01-18 01:46:13',1),(1,248,3028955,'2013-01-18 01:46:13',1),(1,193,3028955,'2013-01-18 01:46:13',1),(1,174,3028955,'2013-01-18 01:46:13',1),(1,168,3028955,'2013-01-18 01:46:13',1),(1,64,3028955,'2013-01-18 01:46:13',1),(1,110,3028955,'2013-01-18 01:46:13',1),(1,202,3028955,'2013-01-18 01:46:13',1),(1,141,3028953,'2013-01-18 01:46:18',1),(1,241,3028953,'2013-01-18 01:46:18',1),(1,201,3028950,'2013-01-18 01:46:19',1),(1,205,3028950,'2013-01-18 01:46:19',1),(1,141,3028957,'2013-01-18 01:46:19',1),(1,174,3028957,'2013-01-18 01:46:19',1),(1,230,3028957,'2013-01-18 01:46:19',1),(1,200,3028957,'2013-01-18 01:46:19',1),(1,141,3028956,'2013-01-18 01:46:23',1),(1,2,3028954,'2013-01-18 01:46:26',1),(1,230,3028954,'2013-01-18 01:46:26',1),(1,131,3028954,'2013-01-18 01:46:26',1),(1,217,3028954,'2013-01-18 01:46:26',1),(1,141,3028951,'2013-01-18 01:46:28',1),(1,7,3028952,'2013-01-18 01:46:31',1),(1,38,3028952,'2013-01-18 01:46:31',1),(1,9,3028952,'2013-01-18 01:46:31',1),(1,10,3028952,'2013-01-18 01:46:31',1),(1,60,3028952,'2013-01-18 01:46:31',1),(1,215,3028952,'2013-01-18 01:46:31',1),(1,61,3028952,'2013-01-18 01:46:31',1),(1,229,3028952,'2013-01-18 01:46:31',1),(1,237,3029025,'2013-01-18 02:46:12',1),(1,3,3029025,'2013-01-18 02:46:12',1),(1,19,3029025,'2013-01-18 02:46:12',1),(1,241,3029025,'2013-01-18 02:46:12',1),(1,35,3029026,'2013-01-18 02:46:12',1),(1,20,3029027,'2013-01-18 02:46:14',1),(1,118,3029027,'2013-01-18 02:46:14',1),(1,138,3029027,'2013-01-18 02:46:14',1),(1,150,3029027,'2013-01-18 02:46:14',1),(1,220,3029027,'2013-01-18 02:46:14',1),(1,41,3029027,'2013-01-18 02:46:14',1),(1,152,3029027,'2013-01-18 02:46:14',1),(1,153,3029027,'2013-01-18 02:46:14',1),(1,12,3029027,'2013-01-18 02:46:14',1),(1,186,3029027,'2013-01-18 02:46:14',1),(1,158,3029027,'2013-01-18 02:46:14',1),(1,233,3029027,'2013-01-18 02:46:14',1),(1,234,3029027,'2013-01-18 02:46:14',1),(1,179,3029027,'2013-01-18 02:46:14',1),(1,58,3029027,'2013-01-18 02:46:14',1),(1,148,3029027,'2013-01-18 02:46:14',1),(1,237,3029028,'2013-01-18 02:46:27',1),(1,3,3029028,'2013-01-18 02:46:27',1),(1,20,3029029,'2013-01-18 02:46:29',1),(1,118,3029029,'2013-01-18 02:46:29',1),(1,138,3029029,'2013-01-18 02:46:29',1),(1,150,3029029,'2013-01-18 02:46:29',1),(1,220,3029029,'2013-01-18 02:46:29',1),(1,41,3029029,'2013-01-18 02:46:29',1),(1,152,3029029,'2013-01-18 02:46:29',1),(1,153,3029029,'2013-01-18 02:46:29',1),(1,181,3029030,'2013-01-18 02:46:30',1),(1,35,3029030,'2013-01-18 02:46:30',1),(1,19,3029031,'2013-01-18 02:46:32',1),(1,241,3029031,'2013-01-18 02:46:32',1),(1,174,3029023,'2013-01-18 02:46:35',1),(1,14,3029023,'2013-01-18 02:46:35',1),(1,168,3029023,'2013-01-18 02:46:35',1),(1,64,3029023,'2013-01-18 02:46:35',1),(1,20,3029033,'2013-01-18 02:46:35',1),(1,118,3029033,'2013-01-18 02:46:35',1),(1,138,3029033,'2013-01-18 02:46:35',1),(1,150,3029033,'2013-01-18 02:46:35',1),(1,220,3029033,'2013-01-18 02:46:35',1),(1,41,3029033,'2013-01-18 02:46:35',1),(1,152,3029033,'2013-01-18 02:46:35',1),(1,153,3029033,'2013-01-18 02:46:35',1),(1,12,3029033,'2013-01-18 02:46:35',1),(1,186,3029033,'2013-01-18 02:46:35',1),(1,158,3029033,'2013-01-18 02:46:35',1),(1,233,3029033,'2013-01-18 02:46:35',1),(1,234,3029033,'2013-01-18 02:46:35',1),(1,179,3029033,'2013-01-18 02:46:35',1),(1,58,3029033,'2013-01-18 02:46:35',1),(1,148,3029033,'2013-01-18 02:46:35',1),(1,12,3029034,'2013-01-18 02:46:38',1),(1,186,3029034,'2013-01-18 02:46:38',1),(1,158,3029034,'2013-01-18 02:46:38',1),(1,233,3029034,'2013-01-18 02:46:38',1),(1,234,3029034,'2013-01-18 02:46:38',1),(1,179,3029034,'2013-01-18 02:46:38',1),(1,58,3029034,'2013-01-18 02:46:38',1),(1,148,3029034,'2013-01-18 02:46:38',1),(1,110,3029035,'2013-01-18 02:46:38',1),(1,202,3029035,'2013-01-18 02:46:38',1),(1,7,3029035,'2013-01-18 02:46:38',1),(1,9,3029035,'2013-01-18 02:46:38',1),(1,181,3029036,'2013-01-18 02:46:44',1),(1,12,3029037,'2013-01-18 02:46:45',1),(1,186,3029037,'2013-01-18 02:46:45',1),(1,158,3029037,'2013-01-18 02:46:45',1),(1,233,3029037,'2013-01-18 02:46:45',1),(1,234,3029037,'2013-01-18 02:46:45',1),(1,179,3029037,'2013-01-18 02:46:45',1),(1,58,3029037,'2013-01-18 02:46:45',1),(1,148,3029037,'2013-01-18 02:46:45',1),(1,77,3029038,'2013-01-18 02:46:48',1),(1,211,3029038,'2013-01-18 02:46:48',1),(1,237,3029039,'2013-01-18 02:46:49',1),(1,141,3029039,'2013-01-18 02:46:49',1),(1,3,3029039,'2013-01-18 02:46:49',1),(1,248,3029039,'2013-01-18 02:46:49',1),(1,19,3029039,'2013-01-18 02:46:49',1),(1,193,3029039,'2013-01-18 02:46:49',1),(1,63,3029039,'2013-01-18 02:46:49',1),(1,93,3029039,'2013-01-18 02:46:49',1),(1,128,3029040,'2013-01-18 02:46:57',1),(1,181,3029024,'2013-01-18 03:16:14',NULL),(1,35,3029024,'2013-01-18 03:16:14',NULL),(1,84,3029024,'2013-01-18 03:16:14',NULL),(1,200,3029024,'2013-01-18 03:16:14',NULL),(1,10,3029032,'2013-01-18 03:17:04',1),(1,60,3029032,'2013-01-18 03:17:04',1),(1,61,3029032,'2013-01-18 03:17:04',1),(1,229,3029032,'2013-01-18 03:17:04',1),(1,240,3029120,'2013-01-18 03:46:11',1),(1,132,3029120,'2013-01-18 03:46:11',1),(1,241,3029120,'2013-01-18 03:46:11',1),(1,206,3029120,'2013-01-18 03:46:11',1),(1,52,3029115,'2013-01-18 03:46:12',1),(1,208,3029115,'2013-01-18 03:46:12',1),(1,52,3029121,'2013-01-18 03:46:14',1),(1,208,3029121,'2013-01-18 03:46:14',1),(1,237,3029122,'2013-01-18 03:46:19',1),(1,119,3029122,'2013-01-18 03:46:19',1),(1,98,3029122,'2013-01-18 03:46:19',1),(1,51,3029122,'2013-01-18 03:46:19',1),(1,128,3029122,'2013-01-18 03:46:19',1),(1,106,3029122,'2013-01-18 03:46:19',1),(1,17,3029122,'2013-01-18 03:46:19',1),(1,73,3029122,'2013-01-18 03:46:19',1),(1,240,3029123,'2013-01-18 03:46:21',1),(1,132,3029123,'2013-01-18 03:46:21',1),(1,241,3029123,'2013-01-18 03:46:21',1),(1,206,3029123,'2013-01-18 03:46:21',1),(1,40,3029125,'2013-01-18 03:46:23',1),(1,240,3029125,'2013-01-18 03:46:23',1),(1,132,3029125,'2013-01-18 03:46:23',1),(1,241,3029125,'2013-01-18 03:46:23',1),(1,241,3029126,'2013-01-18 03:46:32',1),(1,208,3029126,'2013-01-18 03:46:32',1),(1,48,3029127,'2013-01-18 03:46:32',1),(1,241,3029127,'2013-01-18 03:46:32',1),(1,216,3029113,'2013-01-18 04:16:13',1),(1,206,3029124,'2013-01-18 04:16:24',1),(1,52,3029124,'2013-01-18 04:16:24',1),(1,249,3029128,'2013-01-18 04:16:36',1),(1,40,3029128,'2013-01-18 04:16:36',1),(1,240,3029128,'2013-01-18 04:16:36',1),(1,132,3029128,'2013-01-18 04:16:36',1),(1,241,3029129,'2013-01-18 04:16:38',1),(1,21,3029130,'2013-01-18 04:16:41',1),(1,206,3029130,'2013-01-18 04:16:41',1),(1,52,3029130,'2013-01-18 04:16:41',1),(1,208,3029130,'2013-01-18 04:16:41',1),(1,237,3029132,'2013-01-18 04:16:46',1),(1,119,3029132,'2013-01-18 04:16:46',1),(1,48,3029132,'2013-01-18 04:16:46',1),(1,98,3029132,'2013-01-18 04:16:46',1),(1,51,3029132,'2013-01-18 04:16:46',1),(1,128,3029132,'2013-01-18 04:16:46',1),(1,106,3029132,'2013-01-18 04:16:46',1),(1,17,3029132,'2013-01-18 04:16:46',1),(1,21,3029133,'2013-01-18 04:16:48',NULL),(1,206,3029133,'2013-01-18 04:16:48',NULL),(1,52,3029133,'2013-01-18 04:16:48',NULL),(1,208,3029133,'2013-01-18 04:16:48',NULL),(1,241,3029135,'2013-01-18 04:16:56',1),(1,73,3029134,'2013-01-18 04:17:00',1),(1,241,3029134,'2013-01-18 04:17:00',1),(1,132,3029131,'2013-01-18 04:46:44',1),(1,237,3029114,'2013-01-18 04:47:00',1),(1,119,3029114,'2013-01-18 04:47:00',1),(1,48,3029114,'2013-01-18 04:47:00',1),(1,98,3029114,'2013-01-18 04:47:00',1),(1,51,3029114,'2013-01-18 04:47:00',1),(1,128,3029114,'2013-01-18 04:47:00',1),(1,106,3029114,'2013-01-18 04:47:00',1),(1,17,3029114,'2013-01-18 04:47:00',1),(1,40,3029136,'2013-01-18 04:47:04',1),(1,73,3029136,'2013-01-18 04:47:04',1),(1,132,3029136,'2013-01-18 04:47:04',1),(1,216,3029136,'2013-01-18 04:47:04',1),(1,217,3029136,'2013-01-18 04:47:04',1),(1,206,3029136,'2013-01-18 04:47:04',1),(1,52,3029136,'2013-01-18 04:47:04',1),(1,208,3029136,'2013-01-18 04:47:04',1),(1,237,3029119,'2013-01-18 04:47:23',1),(1,119,3029119,'2013-01-18 04:47:23',1),(1,48,3029119,'2013-01-18 04:47:23',1),(1,98,3029119,'2013-01-18 04:47:23',1),(1,51,3029119,'2013-01-18 04:47:23',1),(1,128,3029119,'2013-01-18 04:47:23',1),(1,106,3029119,'2013-01-18 04:47:23',1),(1,17,3029119,'2013-01-18 04:47:23',1),(1,245,3029112,'2013-01-18 05:17:15',1),(1,40,3029112,'2013-01-18 05:17:15',1),(1,73,3029112,'2013-01-18 05:17:15',1),(1,132,3029112,'2013-01-18 05:17:15',1),(1,216,3029112,'2013-01-18 05:17:15',1),(1,217,3029112,'2013-01-18 05:17:15',1),(1,206,3029112,'2013-01-18 05:17:15',1),(1,52,3029112,'2013-01-18 05:17:15',1),(1,249,3029116,'2013-01-18 05:17:17',1),(1,135,3029116,'2013-01-18 05:17:17',1),(1,48,3029116,'2013-01-18 05:17:17',1),(1,17,3029116,'2013-01-18 05:17:17',1),(1,74,3029116,'2013-01-18 05:17:17',1),(1,173,3029116,'2013-01-18 05:17:17',1),(1,24,3029116,'2013-01-18 05:17:17',1),(1,80,3029116,'2013-01-18 05:17:17',1),(1,252,3029116,'2013-01-18 05:17:17',1),(1,101,3029116,'2013-01-18 05:17:17',1),(1,116,3029116,'2013-01-18 05:17:17',1),(1,107,3029116,'2013-01-18 05:17:17',1),(1,15,3029116,'2013-01-18 05:17:17',1),(1,130,3029116,'2013-01-18 05:17:17',1),(1,203,3029116,'2013-01-18 05:17:17',1),(1,142,3029116,'2013-01-18 05:17:17',1),(1,245,3029118,'2013-01-18 05:17:22',1),(1,40,3029118,'2013-01-18 05:17:22',1),(1,128,3029118,'2013-01-18 05:17:22',1),(1,73,3029118,'2013-01-18 05:17:22',1),(1,64,3029118,'2013-01-18 05:17:22',1),(1,240,3029118,'2013-01-18 05:17:22',1),(1,132,3029118,'2013-01-18 05:17:22',1),(1,204,3029118,'2013-01-18 05:17:22',1),(1,215,3029118,'2013-01-18 05:17:22',1),(1,216,3029118,'2013-01-18 05:17:22',1),(1,217,3029118,'2013-01-18 05:17:22',1),(1,198,3029118,'2013-01-18 05:17:22',1),(1,241,3029118,'2013-01-18 05:17:22',1),(1,206,3029118,'2013-01-18 05:17:22',1),(1,52,3029118,'2013-01-18 05:17:22',1),(1,208,3029118,'2013-01-18 05:17:22',1),(1,249,3029117,'2013-01-18 05:47:22',NULL),(1,125,3029117,'2013-01-18 05:47:22',NULL),(1,113,3029117,'2013-01-18 05:47:22',NULL),(1,135,3029117,'2013-01-18 05:47:22',NULL),(1,48,3029117,'2013-01-18 05:47:22',NULL),(1,126,3029117,'2013-01-18 05:47:22',NULL),(1,79,3029117,'2013-01-18 05:47:22',NULL),(1,232,3029117,'2013-01-18 05:47:22',NULL),(1,98,3029117,'2013-01-18 05:47:22',NULL),(1,143,3029117,'2013-01-18 05:47:22',NULL),(1,51,3029117,'2013-01-18 05:47:22',NULL),(1,54,3029117,'2013-01-18 05:47:22',NULL),(1,17,3029117,'2013-01-18 05:47:22',NULL),(1,23,3029117,'2013-01-18 05:47:22',NULL),(1,74,3029117,'2013-01-18 05:47:22',NULL),(1,173,3029117,'2013-01-18 05:47:22',NULL),(1,27,3030131,'2013-01-18 14:13:26',1),(1,246,3030131,'2013-01-18 14:13:26',1),(1,104,3030120,'2013-01-18 15:44:10',1),(1,49,3030120,'2013-01-18 15:44:10',1),(1,68,3030120,'2013-01-18 15:44:10',1),(1,171,3030120,'2013-01-18 15:44:10',1),(1,162,3029795,'2013-01-19 00:46:14',1),(1,86,3029796,'2013-01-19 00:46:14',1),(1,188,3029797,'2013-01-19 00:46:15',1),(1,149,3029799,'2013-01-19 00:46:22',1),(1,164,3029799,'2013-01-19 00:46:22',1),(1,149,3029800,'2013-01-19 00:46:22',1),(1,164,3029800,'2013-01-19 00:46:22',1),(1,149,3029811,'2013-01-19 00:46:47',1),(1,164,3029811,'2013-01-19 00:46:47',1),(1,149,3029813,'2013-01-19 00:46:47',1),(1,164,3029813,'2013-01-19 00:46:47',1),(1,120,3029794,'2013-01-19 00:46:47',1),(1,115,3029794,'2013-01-19 00:46:47',1),(1,87,3029798,'2013-01-20 14:37:38',1),(1,149,3029801,'2013-01-20 14:37:41',1),(1,120,3029801,'2013-01-20 14:37:41',1),(1,164,3029801,'2013-01-20 14:37:41',1),(1,115,3029801,'2013-01-20 14:37:41',1),(1,149,3029802,'2013-01-20 14:37:42',1),(1,120,3029802,'2013-01-20 14:37:42',1),(1,11,3029802,'2013-01-20 14:37:42',1),(1,164,3029802,'2013-01-20 14:37:42',1),(1,137,3029803,'2013-01-20 14:37:44',1),(1,137,3029804,'2013-01-20 14:37:44',1),(1,42,3029804,'2013-01-20 14:37:44',1),(1,89,3029804,'2013-01-20 14:37:44',1),(1,170,3029804,'2013-01-20 14:37:44',1),(1,157,3029804,'2013-01-20 14:37:44',1),(1,176,3029804,'2013-01-20 14:37:44',1),(1,236,3029804,'2013-01-20 14:37:44',1),(1,87,3029804,'2013-01-20 14:37:44',1),(1,149,3029805,'2013-01-20 14:37:45',1),(1,120,3029805,'2013-01-20 14:37:45',1),(1,11,3029805,'2013-01-20 14:37:45',1),(1,164,3029805,'2013-01-20 14:37:45',1),(1,137,3029806,'2013-01-20 14:37:46',1),(1,42,3029806,'2013-01-20 14:37:46',1),(1,89,3029806,'2013-01-20 14:37:46',1),(1,170,3029806,'2013-01-20 14:37:46',1),(1,157,3029806,'2013-01-20 14:37:46',1),(1,176,3029806,'2013-01-20 14:37:46',1),(1,236,3029806,'2013-01-20 14:37:46',1),(1,87,3029806,'2013-01-20 14:37:46',1),(1,224,3029807,'2013-01-20 14:37:47',1),(1,137,3029807,'2013-01-20 14:37:47',1),(1,42,3029807,'2013-01-20 14:37:47',1),(1,89,3029807,'2013-01-20 14:37:47',1),(1,124,3029807,'2013-01-20 14:37:47',1),(1,170,3029807,'2013-01-20 14:37:47',1),(1,99,3029807,'2013-01-20 14:37:47',1),(1,157,3029807,'2013-01-20 14:37:47',1),(1,224,3029808,'2013-01-20 14:37:47',1),(1,137,3029808,'2013-01-20 14:37:47',1),(1,42,3029808,'2013-01-20 14:37:47',1),(1,89,3029808,'2013-01-20 14:37:47',1),(1,124,3029808,'2013-01-20 14:37:47',1),(1,170,3029808,'2013-01-20 14:37:47',1),(1,99,3029808,'2013-01-20 14:37:47',1),(1,157,3029808,'2013-01-20 14:37:47',1),(1,137,3029809,'2013-01-20 14:37:49',1),(1,42,3029809,'2013-01-20 14:37:49',1),(1,89,3029809,'2013-01-20 14:37:49',1),(1,170,3029809,'2013-01-20 14:37:49',1),(1,99,3029809,'2013-01-20 14:37:49',1),(1,157,3029809,'2013-01-20 14:37:49',1),(1,176,3029809,'2013-01-20 14:37:49',1),(1,236,3029809,'2013-01-20 14:37:49',1),(1,154,3029810,'2013-01-20 14:37:49',1),(1,115,3029810,'2013-01-20 14:37:49',1),(1,226,3029810,'2013-01-20 14:37:49',1),(1,55,3029810,'2013-01-20 14:37:49',1),(1,149,3029812,'2013-01-20 14:37:50',1),(1,120,3029812,'2013-01-20 14:37:50',1),(1,11,3029812,'2013-01-20 14:37:50',1),(1,164,3029812,'2013-01-20 14:37:50',1),(1,161,3029903,'2013-01-20 17:31:07',1),(1,196,3029903,'2013-01-20 17:31:07',1),(1,33,3029903,'2013-01-20 17:31:07',1),(1,100,3029903,'2013-01-20 17:31:07',1),(1,161,3029906,'2013-01-20 17:31:07',1),(1,196,3029906,'2013-01-20 17:31:07',1),(1,33,3029906,'2013-01-20 17:31:07',1),(1,100,3029906,'2013-01-20 17:31:07',1),(1,161,3029974,'2013-01-20 17:33:26',1),(1,196,3029974,'2013-01-20 17:33:26',1),(1,33,3029974,'2013-01-20 17:33:26',1),(1,100,3029974,'2013-01-20 17:33:26',1),(1,161,3029981,'2013-01-20 17:33:35',1),(1,196,3029981,'2013-01-20 17:33:35',1),(1,33,3029981,'2013-01-20 17:33:35',1),(1,100,3029981,'2013-01-20 17:33:35',1),(1,161,3029973,'2013-01-20 18:03:40',NULL),(1,196,3029973,'2013-01-20 18:03:40',NULL),(1,33,3029973,'2013-01-20 18:03:40',NULL),(1,100,3029973,'2013-01-20 18:03:40',NULL),(1,161,3029990,'2013-01-20 18:33:49',1),(1,196,3029990,'2013-01-20 18:33:49',1),(1,33,3029990,'2013-01-20 18:33:49',1),(1,100,3029990,'2013-01-20 18:33:49',1),(1,26,3029984,'2013-01-20 18:33:50',1),(1,161,3029984,'2013-01-20 18:33:50',1),(1,196,3029984,'2013-01-20 18:33:50',1),(1,33,3029984,'2013-01-20 18:33:50',1),(1,26,3030075,'2013-01-20 18:36:00',1),(1,161,3030075,'2013-01-20 18:36:00',1),(1,196,3030075,'2013-01-20 18:36:00',1),(1,33,3030075,'2013-01-20 18:36:00',1),(1,26,3030078,'2013-01-20 18:36:01',1),(1,161,3030078,'2013-01-20 18:36:01',1),(1,196,3030078,'2013-01-20 18:36:01',1),(1,33,3030078,'2013-01-20 18:36:01',1),(1,26,3030080,'2013-01-20 18:36:06',1),(1,161,3030080,'2013-01-20 18:36:06',1),(1,196,3030080,'2013-01-20 18:36:06',1),(1,33,3030080,'2013-01-20 18:36:06',1),(1,26,3030083,'2013-01-20 19:06:11',1),(1,161,3030083,'2013-01-20 19:06:11',1),(1,196,3030083,'2013-01-20 19:06:11',1),(1,33,3030083,'2013-01-20 19:06:11',1),(1,26,3030085,'2013-01-20 19:06:13',1),(1,161,3030085,'2013-01-20 19:06:13',1),(1,196,3030085,'2013-01-20 19:06:13',1),(1,33,3030085,'2013-01-20 19:06:13',1),(1,26,3030088,'2013-01-20 19:06:15',1),(1,161,3030088,'2013-01-20 19:06:15',1),(1,196,3030088,'2013-01-20 19:06:15',1),(1,33,3030088,'2013-01-20 19:06:15',1),(1,26,3030167,'2013-01-20 19:06:56',1),(1,161,3030167,'2013-01-20 19:06:56',1),(1,196,3030167,'2013-01-20 19:06:56',1),(1,33,3030167,'2013-01-20 19:06:56',1),(1,26,3030168,'2013-01-20 19:37:01',1),(1,161,3030168,'2013-01-20 19:37:01',1),(1,196,3030168,'2013-01-20 19:37:01',1),(1,33,3030168,'2013-01-20 19:37:01',1),(1,26,3030171,'2013-01-20 19:37:04',1),(1,161,3030171,'2013-01-20 19:37:04',1),(1,196,3030171,'2013-01-20 19:37:04',1),(1,33,3030171,'2013-01-20 19:37:04',1),(1,26,3030176,'2013-01-20 19:37:10',1),(1,161,3030176,'2013-01-20 19:37:10',1),(1,196,3030176,'2013-01-20 19:37:10',1),(1,33,3030176,'2013-01-20 19:37:10',1),(1,26,3030178,'2013-01-20 19:37:10',1),(1,161,3030178,'2013-01-20 19:37:10',1),(1,196,3030178,'2013-01-20 19:37:10',1),(1,33,3030178,'2013-01-20 19:37:10',1),(1,26,3030255,'2013-01-20 19:39:05',1),(1,161,3030255,'2013-01-20 19:39:05',1),(1,196,3030255,'2013-01-20 19:39:05',1),(1,33,3030255,'2013-01-20 19:39:05',1),(1,26,3030259,'2013-01-20 19:39:13',1),(1,161,3030259,'2013-01-20 19:39:13',1),(1,196,3030259,'2013-01-20 19:39:13',1),(1,33,3030259,'2013-01-20 19:39:13',1),(1,26,3030345,'2013-01-20 19:41:05',1),(1,161,3030345,'2013-01-20 19:41:05',1),(1,196,3030345,'2013-01-20 19:41:05',1),(1,33,3030345,'2013-01-20 19:41:05',1),(1,26,3030346,'2013-01-20 20:11:10',NULL),(1,161,3030346,'2013-01-20 20:11:10',NULL),(1,196,3030346,'2013-01-20 20:11:10',NULL),(1,33,3030346,'2013-01-20 20:11:10',NULL),(1,26,3030353,'2013-01-20 20:11:17',1),(1,161,3030353,'2013-01-20 20:11:17',1),(1,196,3030353,'2013-01-20 20:11:17',1),(1,33,3030353,'2013-01-20 20:11:17',1),(1,26,3030354,'2013-01-20 20:11:17',1),(1,161,3030354,'2013-01-20 20:11:17',1),(1,196,3030354,'2013-01-20 20:11:17',1),(1,33,3030354,'2013-01-20 20:11:17',1),(1,26,3030338,'2013-01-20 20:11:19',1),(1,161,3030338,'2013-01-20 20:11:19',1),(1,196,3030338,'2013-01-20 20:11:19',1),(1,33,3030338,'2013-01-20 20:11:19',1),(1,26,3030440,'2013-01-20 20:43:08',1),(1,161,3030440,'2013-01-20 20:43:08',1),(1,196,3030440,'2013-01-20 20:43:08',1),(1,33,3030440,'2013-01-20 20:43:08',1),(1,26,3030443,'2013-01-20 20:43:13',1),(1,161,3030443,'2013-01-20 20:43:13',1),(1,196,3030443,'2013-01-20 20:43:13',1),(1,33,3030443,'2013-01-20 20:43:13',1),(1,26,3030445,'2013-01-20 20:43:14',1),(1,161,3030445,'2013-01-20 20:43:14',1),(1,196,3030445,'2013-01-20 20:43:14',1),(1,33,3030445,'2013-01-20 20:43:14',1),(1,26,3030448,'2013-01-20 20:43:17',1),(1,161,3030448,'2013-01-20 20:43:17',1),(1,196,3030448,'2013-01-20 20:43:17',1),(1,33,3030448,'2013-01-20 20:43:17',1),(1,196,3029902,'2013-01-20 21:01:25',1),(1,33,3029902,'2013-01-20 21:01:25',1),(1,26,3030450,'2013-01-20 21:13:22',1),(1,161,3030450,'2013-01-20 21:13:22',1),(1,196,3030450,'2013-01-20 21:13:22',1),(1,33,3030450,'2013-01-20 21:13:22',1),(1,26,3030453,'2013-01-20 21:13:25',1),(1,161,3030453,'2013-01-20 21:13:25',1),(1,196,3030453,'2013-01-20 21:13:25',1),(1,33,3030453,'2013-01-20 21:13:25',1),(1,26,3029907,'2013-01-20 21:31:23',1),(1,161,3029907,'2013-01-20 21:31:23',1),(1,26,3029977,'2013-01-20 21:33:48',1),(1,161,3029977,'2013-01-20 21:33:48',1),(1,26,3029980,'2013-01-20 21:33:51',1),(1,161,3029980,'2013-01-20 21:33:51',1),(1,26,3029979,'2013-01-20 21:33:51',1),(1,161,3029979,'2013-01-20 21:33:51',1),(1,26,3029987,'2013-01-20 21:34:00',1),(1,161,3029987,'2013-01-20 21:34:00',1),(1,216,3030502,'2013-01-21 09:47:27',1),(1,217,3030502,'2013-01-21 09:47:27',1),(1,198,3030502,'2013-01-21 09:47:27',1),(1,52,3030502,'2013-01-21 09:47:27',1),(1,80,3030503,'2013-01-21 09:47:31',1),(1,116,3030503,'2013-01-21 09:47:31',1),(1,204,3030503,'2013-01-21 09:47:31',1),(1,241,3030503,'2013-01-21 09:47:31',1),(1,155,3030506,'2013-01-21 09:47:37',1),(1,216,3030506,'2013-01-21 09:47:37',1),(1,217,3030506,'2013-01-21 09:47:37',1),(1,198,3030506,'2013-01-21 09:47:37',1),(1,206,3029905,'2013-01-21 10:02:31',1),(1,95,3029901,'2013-01-21 10:02:31',1),(1,21,3029901,'2013-01-21 10:02:31',1),(1,232,3029901,'2013-01-21 10:02:31',1),(1,51,3029901,'2013-01-21 10:02:31',1),(1,109,3029901,'2013-01-21 10:02:31',1),(1,36,3029901,'2013-01-21 10:02:31',1),(1,191,3029901,'2013-01-21 10:02:31',1),(1,252,3029901,'2013-01-21 10:02:31',1),(1,21,3029904,'2013-01-21 10:02:31',1),(1,232,3029904,'2013-01-21 10:02:31',1),(1,51,3029904,'2013-01-21 10:02:31',1),(1,109,3029904,'2013-01-21 10:02:31',1),(1,191,3029904,'2013-01-21 10:02:31',1),(1,252,3029904,'2013-01-21 10:02:31',1),(1,217,3029904,'2013-01-21 10:02:31',1),(1,52,3029904,'2013-01-21 10:02:31',1),(1,241,3029900,'2013-01-21 10:02:31',1),(1,52,3029975,'2013-01-21 10:04:40',1),(1,184,3029976,'2013-01-21 10:04:40',1),(1,96,3029976,'2013-01-21 10:04:40',1),(1,139,3029976,'2013-01-21 10:04:40',1),(1,82,3029976,'2013-01-21 10:04:40',1),(1,146,3029976,'2013-01-21 10:04:40',1),(1,127,3029976,'2013-01-21 10:04:40',1),(1,98,3029976,'2013-01-21 10:04:40',1),(1,143,3029976,'2013-01-21 10:04:40',1),(1,235,3029976,'2013-01-21 10:04:40',1),(1,54,3029976,'2013-01-21 10:04:40',1),(1,251,3029976,'2013-01-21 10:04:40',1),(1,106,3029976,'2013-01-21 10:04:40',1),(1,17,3029976,'2013-01-21 10:04:40',1),(1,23,3029976,'2013-01-21 10:04:40',1),(1,74,3029976,'2013-01-21 10:04:40',1),(1,173,3029976,'2013-01-21 10:04:40',1),(1,125,3029978,'2013-01-21 10:04:40',1),(1,135,3029978,'2013-01-21 10:04:40',1),(1,119,3029978,'2013-01-21 10:04:40',1),(1,48,3029978,'2013-01-21 10:04:40',1),(1,79,3029978,'2013-01-21 10:04:40',1),(1,40,3029978,'2013-01-21 10:04:40',1),(1,155,3029978,'2013-01-21 10:04:40',1),(1,101,3029978,'2013-01-21 10:04:40',1),(1,126,3029983,'2013-01-21 10:04:47',1),(1,84,3029983,'2013-01-21 10:04:47',1),(1,8,3029983,'2013-01-21 10:04:47',1),(1,166,3029983,'2013-01-21 10:04:47',1),(1,75,3029983,'2013-01-21 10:04:47',1),(1,112,3029983,'2013-01-21 10:04:47',1),(1,156,3029983,'2013-01-21 10:04:47',1),(1,38,3029983,'2013-01-21 10:04:47',1),(1,241,3029985,'2013-01-21 10:04:48',1),(1,8,3029986,'2013-01-21 10:04:48',1),(1,74,3029986,'2013-01-21 10:04:48',1),(1,173,3029986,'2013-01-21 10:04:48',1),(1,166,3029986,'2013-01-21 10:04:48',1),(1,75,3029986,'2013-01-21 10:04:48',1),(1,112,3029986,'2013-01-21 10:04:48',1),(1,156,3029986,'2013-01-21 10:04:48',1),(1,38,3029986,'2013-01-21 10:04:48',1),(1,29,3029988,'2013-01-21 10:04:54',1),(1,191,3029988,'2013-01-21 10:04:54',1),(1,80,3029988,'2013-01-21 10:04:54',1),(1,252,3029988,'2013-01-21 10:04:54',1),(1,101,3029988,'2013-01-21 10:04:54',1),(1,116,3029988,'2013-01-21 10:04:54',1),(1,204,3029988,'2013-01-21 10:04:54',1),(1,215,3029988,'2013-01-21 10:04:54',1),(1,206,3029989,'2013-01-21 10:04:55',1),(1,95,3029982,'2013-01-21 10:04:56',1),(1,123,3029982,'2013-01-21 10:04:56',1),(1,18,3029982,'2013-01-21 10:04:56',1),(1,187,3029982,'2013-01-21 10:04:56',1),(1,21,3029982,'2013-01-21 10:04:56',1),(1,232,3029982,'2013-01-21 10:04:56',1),(1,51,3029982,'2013-01-21 10:04:56',1),(1,109,3029982,'2013-01-21 10:04:56',1),(1,36,3029982,'2013-01-21 10:04:56',1),(1,29,3029982,'2013-01-21 10:04:56',1),(1,191,3029982,'2013-01-21 10:04:56',1),(1,80,3029982,'2013-01-21 10:04:56',1),(1,252,3029982,'2013-01-21 10:04:56',1),(1,116,3029982,'2013-01-21 10:04:56',1),(1,204,3029982,'2013-01-21 10:04:56',1),(1,215,3029982,'2013-01-21 10:04:56',1),(1,208,3030069,'2013-01-21 10:06:52',1),(1,67,3030070,'2013-01-21 10:06:55',1),(1,206,3030070,'2013-01-21 10:06:55',1),(1,95,3030071,'2013-01-21 10:07:00',1),(1,123,3030071,'2013-01-21 10:07:00',1),(1,18,3030071,'2013-01-21 10:07:00',1),(1,187,3030071,'2013-01-21 10:07:00',1),(1,21,3030071,'2013-01-21 10:07:00',1),(1,232,3030071,'2013-01-21 10:07:00',1),(1,51,3030071,'2013-01-21 10:07:00',1),(1,109,3030071,'2013-01-21 10:07:00',1),(1,36,3030071,'2013-01-21 10:07:00',1),(1,29,3030071,'2013-01-21 10:07:00',1),(1,191,3030071,'2013-01-21 10:07:00',1),(1,80,3030071,'2013-01-21 10:07:00',1),(1,252,3030071,'2013-01-21 10:07:00',1),(1,116,3030071,'2013-01-21 10:07:00',1),(1,204,3030071,'2013-01-21 10:07:00',1),(1,215,3030071,'2013-01-21 10:07:00',1),(1,8,3030073,'2013-01-21 10:07:03',1),(1,74,3030073,'2013-01-21 10:07:03',1),(1,173,3030073,'2013-01-21 10:07:03',1),(1,166,3030073,'2013-01-21 10:07:03',1),(1,75,3030073,'2013-01-21 10:07:03',1),(1,112,3030073,'2013-01-21 10:07:03',1),(1,156,3030073,'2013-01-21 10:07:03',1),(1,142,3030073,'2013-01-21 10:07:03',1),(1,240,3030073,'2013-01-21 10:07:03',1),(1,132,3030073,'2013-01-21 10:07:03',1),(1,102,3030073,'2013-01-21 10:07:03',1),(1,103,3030073,'2013-01-21 10:07:03',1),(1,38,3030073,'2013-01-21 10:07:03',1),(1,229,3030073,'2013-01-21 10:07:03',1),(1,2,3030073,'2013-01-21 10:07:03',1),(1,230,3030073,'2013-01-21 10:07:03',1),(1,217,3030076,'2013-01-21 10:07:05',1),(1,198,3030076,'2013-01-21 10:07:05',1),(1,67,3030082,'2013-01-21 10:07:10',1),(1,206,3030082,'2013-01-21 10:07:10',1),(1,241,3030084,'2013-01-21 10:07:12',1),(1,52,3030086,'2013-01-21 10:07:16',1),(1,8,3030355,'2013-01-21 10:12:32',1),(1,74,3030355,'2013-01-21 10:12:32',1),(1,173,3030355,'2013-01-21 10:12:32',1),(1,166,3030355,'2013-01-21 10:12:32',1),(1,75,3030355,'2013-01-21 10:12:32',1),(1,112,3030355,'2013-01-21 10:12:32',1),(1,156,3030355,'2013-01-21 10:12:32',1),(1,142,3030355,'2013-01-21 10:12:32',1),(1,240,3030355,'2013-01-21 10:12:32',1),(1,132,3030355,'2013-01-21 10:12:32',1),(1,102,3030355,'2013-01-21 10:12:32',1),(1,103,3030355,'2013-01-21 10:12:32',1),(1,38,3030355,'2013-01-21 10:12:32',1),(1,229,3030355,'2013-01-21 10:12:32',1),(1,2,3030355,'2013-01-21 10:12:32',1),(1,230,3030355,'2013-01-21 10:12:32',1),(1,218,3030687,'2013-01-21 10:16:42',1),(1,219,3030687,'2013-01-21 10:16:42',1),(1,199,3030687,'2013-01-21 10:16:42',1),(1,200,3030687,'2013-01-21 10:16:42',1),(1,218,3030696,'2013-01-21 10:17:15',1),(1,219,3030696,'2013-01-21 10:17:15',1),(1,199,3030696,'2013-01-21 10:17:15',1),(1,200,3030696,'2013-01-21 10:17:15',1),(1,10,3030603,'2013-01-21 10:17:16',NULL),(1,60,3030603,'2013-01-21 10:17:16',NULL),(1,61,3030603,'2013-01-21 10:17:16',NULL),(1,216,3030603,'2013-01-21 10:17:16',NULL),(1,60,3030697,'2013-01-21 10:17:18',1),(1,215,3030697,'2013-01-21 10:17:18',1),(1,61,3030697,'2013-01-21 10:17:18',1),(1,216,3030697,'2013-01-21 10:17:18',1),(1,229,3030698,'2013-01-21 10:17:19',1),(1,2,3030698,'2013-01-21 10:17:19',1),(1,230,3030698,'2013-01-21 10:17:19',1),(1,216,3030698,'2013-01-21 10:17:19',1),(1,218,3030607,'2013-01-21 10:17:39',1),(1,219,3030607,'2013-01-21 10:17:39',1),(1,199,3030607,'2013-01-21 10:17:39',1),(1,200,3030607,'2013-01-21 10:17:39',1),(1,216,3030511,'2013-01-21 10:17:46',1),(1,217,3030511,'2013-01-21 10:17:46',1),(1,198,3030511,'2013-01-21 10:17:46',1),(1,67,3030511,'2013-01-21 10:17:46',1),(1,126,3030513,'2013-01-21 10:17:54',1),(1,216,3030513,'2013-01-21 10:17:54',1),(1,217,3030513,'2013-01-21 10:17:54',1),(1,198,3030513,'2013-01-21 10:17:54',1),(1,184,3030072,'2013-01-21 10:37:03',NULL),(1,96,3030072,'2013-01-21 10:37:03',NULL),(1,139,3030072,'2013-01-21 10:37:03',NULL),(1,82,3030072,'2013-01-21 10:37:03',NULL),(1,126,3030072,'2013-01-21 10:37:03',NULL),(1,146,3030072,'2013-01-21 10:37:03',NULL),(1,127,3030072,'2013-01-21 10:37:03',NULL),(1,98,3030072,'2013-01-21 10:37:03',NULL),(1,143,3030072,'2013-01-21 10:37:03',NULL),(1,235,3030072,'2013-01-21 10:37:03',NULL),(1,54,3030072,'2013-01-21 10:37:03',NULL),(1,251,3030072,'2013-01-21 10:37:03',NULL),(1,106,3030072,'2013-01-21 10:37:03',NULL),(1,17,3030072,'2013-01-21 10:37:03',NULL),(1,23,3030072,'2013-01-21 10:37:03',NULL),(1,84,3030072,'2013-01-21 10:37:03',NULL),(1,29,3030074,'2013-01-21 10:37:05',1),(1,191,3030074,'2013-01-21 10:37:05',1),(1,80,3030074,'2013-01-21 10:37:05',1),(1,252,3030074,'2013-01-21 10:37:05',1),(1,101,3030074,'2013-01-21 10:37:05',1),(1,116,3030074,'2013-01-21 10:37:05',1),(1,204,3030074,'2013-01-21 10:37:05',1),(1,10,3030074,'2013-01-21 10:37:05',1),(1,217,3030079,'2013-01-21 10:37:09',1),(1,198,3030079,'2013-01-21 10:37:09',1),(1,67,3030081,'2013-01-21 10:37:10',1),(1,206,3030081,'2013-01-21 10:37:10',1),(1,52,3030091,'2013-01-21 10:37:30',1),(1,208,3030091,'2013-01-21 10:37:30',1),(1,67,3030165,'2013-01-21 10:37:58',1),(1,206,3030165,'2013-01-21 10:37:58',1),(1,52,3030166,'2013-01-21 10:37:58',1),(1,208,3030166,'2013-01-21 10:37:58',1),(1,52,3030177,'2013-01-21 10:38:13',1),(1,208,3030177,'2013-01-21 10:38:13',1),(1,52,3030179,'2013-01-21 10:38:15',1),(1,208,3030179,'2013-01-21 10:38:15',1),(1,52,3030180,'2013-01-21 10:38:15',1),(1,208,3030180,'2013-01-21 10:38:15',1),(1,52,3030254,'2013-01-21 10:40:05',1),(1,208,3030254,'2013-01-21 10:40:05',1),(1,52,3030260,'2013-01-21 10:40:13',1),(1,208,3030260,'2013-01-21 10:40:13',1),(1,95,3030340,'2013-01-21 10:42:06',1),(1,125,3030340,'2013-01-21 10:42:06',1),(1,135,3030340,'2013-01-21 10:42:06',1),(1,119,3030340,'2013-01-21 10:42:06',1),(1,123,3030340,'2013-01-21 10:42:06',1),(1,18,3030340,'2013-01-21 10:42:06',1),(1,48,3030340,'2013-01-21 10:42:06',1),(1,187,3030340,'2013-01-21 10:42:06',1),(1,79,3030340,'2013-01-21 10:42:06',1),(1,40,3030340,'2013-01-21 10:42:06',1),(1,21,3030340,'2013-01-21 10:42:06',1),(1,155,3030340,'2013-01-21 10:42:06',1),(1,232,3030340,'2013-01-21 10:42:06',1),(1,51,3030340,'2013-01-21 10:42:06',1),(1,109,3030340,'2013-01-21 10:42:06',1),(1,36,3030340,'2013-01-21 10:42:06',1),(1,8,3030436,'2013-01-21 10:43:59',1),(1,74,3030436,'2013-01-21 10:43:59',1),(1,173,3030436,'2013-01-21 10:43:59',1),(1,166,3030436,'2013-01-21 10:43:59',1),(1,75,3030436,'2013-01-21 10:43:59',1),(1,112,3030436,'2013-01-21 10:43:59',1),(1,156,3030436,'2013-01-21 10:43:59',1),(1,142,3030436,'2013-01-21 10:43:59',1),(1,240,3030436,'2013-01-21 10:43:59',1),(1,132,3030436,'2013-01-21 10:43:59',1),(1,102,3030436,'2013-01-21 10:43:59',1),(1,103,3030436,'2013-01-21 10:43:59',1),(1,38,3030436,'2013-01-21 10:43:59',1),(1,60,3030436,'2013-01-21 10:43:59',1),(1,215,3030436,'2013-01-21 10:43:59',1),(1,61,3030436,'2013-01-21 10:43:59',1),(1,184,3030438,'2013-01-21 10:44:01',1),(1,96,3030438,'2013-01-21 10:44:01',1),(1,139,3030438,'2013-01-21 10:44:01',1),(1,82,3030438,'2013-01-21 10:44:01',1),(1,126,3030438,'2013-01-21 10:44:01',1),(1,146,3030438,'2013-01-21 10:44:01',1),(1,127,3030438,'2013-01-21 10:44:01',1),(1,98,3030438,'2013-01-21 10:44:01',1),(1,143,3030438,'2013-01-21 10:44:01',1),(1,235,3030438,'2013-01-21 10:44:01',1),(1,54,3030438,'2013-01-21 10:44:01',1),(1,251,3030438,'2013-01-21 10:44:01',1),(1,106,3030438,'2013-01-21 10:44:01',1),(1,17,3030438,'2013-01-21 10:44:01',1),(1,23,3030438,'2013-01-21 10:44:01',1),(1,84,3030438,'2013-01-21 10:44:01',1),(1,8,3030691,'2013-01-21 10:47:47',1),(1,74,3030691,'2013-01-21 10:47:47',1),(1,173,3030691,'2013-01-21 10:47:47',1),(1,166,3030691,'2013-01-21 10:47:47',1),(1,75,3030691,'2013-01-21 10:47:47',1),(1,112,3030691,'2013-01-21 10:47:47',1),(1,156,3030691,'2013-01-21 10:47:47',1),(1,142,3030691,'2013-01-21 10:47:47',1),(1,240,3030691,'2013-01-21 10:47:47',1),(1,132,3030691,'2013-01-21 10:47:47',1),(1,102,3030691,'2013-01-21 10:47:47',1),(1,103,3030691,'2013-01-21 10:47:47',1),(1,38,3030691,'2013-01-21 10:47:47',1),(1,60,3030691,'2013-01-21 10:47:47',1),(1,215,3030691,'2013-01-21 10:47:47',1),(1,61,3030691,'2013-01-21 10:47:47',1),(1,8,3030682,'2013-01-21 10:47:50',1),(1,74,3030682,'2013-01-21 10:47:50',1),(1,173,3030682,'2013-01-21 10:47:50',1),(1,166,3030682,'2013-01-21 10:47:50',1),(1,75,3030682,'2013-01-21 10:47:50',1),(1,112,3030682,'2013-01-21 10:47:50',1),(1,156,3030682,'2013-01-21 10:47:50',1),(1,142,3030682,'2013-01-21 10:47:50',1),(1,240,3030682,'2013-01-21 10:47:50',1),(1,132,3030682,'2013-01-21 10:47:50',1),(1,102,3030682,'2013-01-21 10:47:50',1),(1,103,3030682,'2013-01-21 10:47:50',1),(1,38,3030682,'2013-01-21 10:47:50',1),(1,60,3030682,'2013-01-21 10:47:50',1),(1,215,3030682,'2013-01-21 10:47:50',1),(1,61,3030682,'2013-01-21 10:47:50',1),(1,199,3030688,'2013-01-21 10:47:52',NULL),(1,200,3030688,'2013-01-21 10:47:52',NULL),(1,67,3030688,'2013-01-21 10:47:52',NULL),(1,206,3030688,'2013-01-21 10:47:52',NULL),(1,29,3030077,'2013-01-21 11:07:10',1),(1,191,3030077,'2013-01-21 11:07:10',1),(1,80,3030077,'2013-01-21 11:07:10',1),(1,252,3030077,'2013-01-21 11:07:10',1),(1,101,3030077,'2013-01-21 11:07:10',1),(1,116,3030077,'2013-01-21 11:07:10',1),(1,204,3030077,'2013-01-21 11:07:10',1),(1,10,3030077,'2013-01-21 11:07:10',1),(1,229,3030087,'2013-01-21 11:07:20',1),(1,2,3030087,'2013-01-21 11:07:20',1),(1,230,3030087,'2013-01-21 11:07:20',1),(1,216,3030087,'2013-01-21 11:07:20',1),(1,217,3030087,'2013-01-21 11:07:20',1),(1,218,3030087,'2013-01-21 11:07:20',1),(1,219,3030087,'2013-01-21 11:07:20',1),(1,198,3030087,'2013-01-21 11:07:20',1),(1,229,3030092,'2013-01-21 11:07:24',1),(1,2,3030092,'2013-01-21 11:07:24',1),(1,230,3030092,'2013-01-21 11:07:24',1),(1,216,3030092,'2013-01-21 11:07:24',1),(1,217,3030092,'2013-01-21 11:07:24',1),(1,218,3030092,'2013-01-21 11:07:24',1),(1,219,3030092,'2013-01-21 11:07:24',1),(1,198,3030092,'2013-01-21 11:07:24',1),(1,29,3030090,'2013-01-21 11:07:26',1),(1,191,3030090,'2013-01-21 11:07:26',1),(1,80,3030090,'2013-01-21 11:07:26',1),(1,252,3030090,'2013-01-21 11:07:26',1),(1,101,3030090,'2013-01-21 11:07:26',1),(1,116,3030090,'2013-01-21 11:07:26',1),(1,204,3030090,'2013-01-21 11:07:26',1),(1,10,3030090,'2013-01-21 11:07:26',1),(1,184,3030170,'2013-01-21 11:08:04',1),(1,96,3030170,'2013-01-21 11:08:04',1),(1,139,3030170,'2013-01-21 11:08:04',1),(1,82,3030170,'2013-01-21 11:08:04',1),(1,126,3030170,'2013-01-21 11:08:04',1),(1,146,3030170,'2013-01-21 11:08:04',1),(1,127,3030170,'2013-01-21 11:08:04',1),(1,98,3030170,'2013-01-21 11:08:04',1),(1,184,3030173,'2013-01-21 11:08:07',1),(1,96,3030173,'2013-01-21 11:08:07',1),(1,139,3030173,'2013-01-21 11:08:07',1),(1,82,3030173,'2013-01-21 11:08:07',1),(1,126,3030173,'2013-01-21 11:08:07',1),(1,146,3030173,'2013-01-21 11:08:07',1),(1,127,3030173,'2013-01-21 11:08:07',1),(1,98,3030173,'2013-01-21 11:08:07',1),(1,143,3030172,'2013-01-21 11:08:07',1),(1,235,3030172,'2013-01-21 11:08:07',1),(1,54,3030172,'2013-01-21 11:08:07',1),(1,251,3030172,'2013-01-21 11:08:07',1),(1,106,3030172,'2013-01-21 11:08:07',1),(1,17,3030172,'2013-01-21 11:08:07',1),(1,23,3030172,'2013-01-21 11:08:07',1),(1,84,3030172,'2013-01-21 11:08:07',1),(1,143,3030174,'2013-01-21 11:08:10',1),(1,235,3030174,'2013-01-21 11:08:10',1),(1,54,3030174,'2013-01-21 11:08:10',1),(1,251,3030174,'2013-01-21 11:08:10',1),(1,106,3030174,'2013-01-21 11:08:10',1),(1,17,3030174,'2013-01-21 11:08:10',1),(1,23,3030174,'2013-01-21 11:08:10',1),(1,84,3030174,'2013-01-21 11:08:10',1),(1,184,3030175,'2013-01-21 11:08:10',1),(1,96,3030175,'2013-01-21 11:08:10',1),(1,139,3030175,'2013-01-21 11:08:10',1),(1,82,3030175,'2013-01-21 11:08:10',1),(1,126,3030175,'2013-01-21 11:08:10',1),(1,146,3030175,'2013-01-21 11:08:10',1),(1,127,3030175,'2013-01-21 11:08:10',1),(1,98,3030175,'2013-01-21 11:08:10',1),(1,143,3030256,'2013-01-21 11:10:14',1),(1,235,3030256,'2013-01-21 11:10:14',1),(1,54,3030256,'2013-01-21 11:10:14',1),(1,251,3030256,'2013-01-21 11:10:14',1),(1,106,3030256,'2013-01-21 11:10:14',1),(1,17,3030256,'2013-01-21 11:10:14',1),(1,23,3030256,'2013-01-21 11:10:14',1),(1,84,3030256,'2013-01-21 11:10:14',1),(1,184,3030253,'2013-01-21 11:10:16',1),(1,96,3030253,'2013-01-21 11:10:16',1),(1,139,3030253,'2013-01-21 11:10:16',1),(1,82,3030253,'2013-01-21 11:10:16',1),(1,126,3030253,'2013-01-21 11:10:16',1),(1,146,3030253,'2013-01-21 11:10:16',1),(1,127,3030253,'2013-01-21 11:10:16',1),(1,98,3030253,'2013-01-21 11:10:16',1),(1,52,3030341,'2013-01-21 11:12:20',1),(1,208,3030341,'2013-01-21 11:12:20',1),(1,143,3030342,'2013-01-21 11:12:26',1),(1,235,3030342,'2013-01-21 11:12:26',1),(1,54,3030342,'2013-01-21 11:12:26',1),(1,251,3030342,'2013-01-21 11:12:26',1),(1,106,3030342,'2013-01-21 11:12:26',1),(1,17,3030342,'2013-01-21 11:12:26',1),(1,23,3030342,'2013-01-21 11:12:26',1),(1,84,3030342,'2013-01-21 11:12:26',1),(1,241,3030343,'2013-01-21 11:12:26',1),(1,52,3030343,'2013-01-21 11:12:26',1),(1,241,3030344,'2013-01-21 11:12:30',1),(1,52,3030344,'2013-01-21 11:12:30',1),(1,184,3030347,'2013-01-21 11:12:33',1),(1,96,3030347,'2013-01-21 11:12:33',1),(1,139,3030347,'2013-01-21 11:12:33',1),(1,82,3030347,'2013-01-21 11:12:33',1),(1,126,3030347,'2013-01-21 11:12:33',1),(1,146,3030347,'2013-01-21 11:12:33',1),(1,127,3030347,'2013-01-21 11:12:33',1),(1,98,3030347,'2013-01-21 11:12:33',1),(1,95,3030349,'2013-01-21 11:12:38',1),(1,125,3030349,'2013-01-21 11:12:38',1),(1,135,3030349,'2013-01-21 11:12:38',1),(1,119,3030349,'2013-01-21 11:12:38',1),(1,123,3030349,'2013-01-21 11:12:38',1),(1,18,3030349,'2013-01-21 11:12:38',1),(1,48,3030349,'2013-01-21 11:12:38',1),(1,187,3030349,'2013-01-21 11:12:38',1),(1,241,3030350,'2013-01-21 11:12:39',1),(1,52,3030350,'2013-01-21 11:12:39',1),(1,79,3030351,'2013-01-21 11:12:42',1),(1,40,3030351,'2013-01-21 11:12:42',1),(1,21,3030351,'2013-01-21 11:12:42',1),(1,155,3030351,'2013-01-21 11:12:42',1),(1,232,3030351,'2013-01-21 11:12:42',1),(1,51,3030351,'2013-01-21 11:12:42',1),(1,109,3030351,'2013-01-21 11:12:42',1),(1,36,3030351,'2013-01-21 11:12:42',1),(1,95,3030437,'2013-01-21 11:14:03',NULL),(1,125,3030437,'2013-01-21 11:14:03',NULL),(1,135,3030437,'2013-01-21 11:14:03',NULL),(1,119,3030437,'2013-01-21 11:14:03',NULL),(1,123,3030437,'2013-01-21 11:14:03',NULL),(1,18,3030437,'2013-01-21 11:14:03',NULL),(1,48,3030437,'2013-01-21 11:14:03',NULL),(1,187,3030437,'2013-01-21 11:14:03',NULL),(1,79,3030437,'2013-01-21 11:14:03',NULL),(1,40,3030437,'2013-01-21 11:14:03',NULL),(1,21,3030437,'2013-01-21 11:14:03',NULL),(1,155,3030437,'2013-01-21 11:14:03',NULL),(1,232,3030437,'2013-01-21 11:14:03',NULL),(1,51,3030437,'2013-01-21 11:14:03',NULL),(1,109,3030437,'2013-01-21 11:14:03',NULL),(1,36,3030437,'2013-01-21 11:14:03',NULL),(1,29,3030439,'2013-01-21 11:14:06',1),(1,191,3030439,'2013-01-21 11:14:06',1),(1,80,3030439,'2013-01-21 11:14:06',1),(1,252,3030439,'2013-01-21 11:14:06',1),(1,101,3030439,'2013-01-21 11:14:06',1),(1,116,3030439,'2013-01-21 11:14:06',1),(1,204,3030439,'2013-01-21 11:14:06',1),(1,10,3030439,'2013-01-21 11:14:06',1),(1,241,3030441,'2013-01-21 11:14:07',1),(1,52,3030441,'2013-01-21 11:14:07',1),(1,241,3030435,'2013-01-21 11:14:10',1),(1,52,3030435,'2013-01-21 11:14:10',1),(1,21,3030455,'2013-01-21 11:14:23',1),(1,127,3030455,'2013-01-21 11:14:23',1),(1,155,3030455,'2013-01-21 11:14:23',1),(1,232,3030455,'2013-01-21 11:14:23',1),(1,98,3030455,'2013-01-21 11:14:23',1),(1,51,3030455,'2013-01-21 11:14:23',1),(1,109,3030455,'2013-01-21 11:14:23',1),(1,36,3030455,'2013-01-21 11:14:23',1),(1,199,3030794,'2013-01-21 11:17:00',1),(1,200,3030794,'2013-01-21 11:17:00',1),(1,67,3030794,'2013-01-21 11:17:00',1),(1,206,3030794,'2013-01-21 11:17:00',1),(1,184,3030776,'2013-01-21 11:17:09',1),(1,96,3030776,'2013-01-21 11:17:09',1),(1,139,3030776,'2013-01-21 11:17:09',1),(1,82,3030776,'2013-01-21 11:17:09',1),(1,126,3030776,'2013-01-21 11:17:09',1),(1,146,3030776,'2013-01-21 11:17:09',1),(1,127,3030776,'2013-01-21 11:17:09',1),(1,98,3030776,'2013-01-21 11:17:09',1),(1,143,3030776,'2013-01-21 11:17:09',1),(1,235,3030776,'2013-01-21 11:17:09',1),(1,54,3030776,'2013-01-21 11:17:09',1),(1,251,3030776,'2013-01-21 11:17:09',1),(1,106,3030776,'2013-01-21 11:17:09',1),(1,17,3030776,'2013-01-21 11:17:09',1),(1,23,3030776,'2013-01-21 11:17:09',1),(1,84,3030776,'2013-01-21 11:17:09',1),(1,54,3030609,'2013-01-21 11:17:17',1),(1,109,3030609,'2013-01-21 11:17:17',1),(1,36,3030609,'2013-01-21 11:17:17',1),(1,29,3030609,'2013-01-21 11:17:17',1),(1,251,3030609,'2013-01-21 11:17:17',1),(1,106,3030609,'2013-01-21 11:17:17',1),(1,17,3030609,'2013-01-21 11:17:17',1),(1,191,3030609,'2013-01-21 11:17:17',1),(1,8,3030777,'2013-01-21 11:17:26',1),(1,74,3030777,'2013-01-21 11:17:26',1),(1,173,3030777,'2013-01-21 11:17:26',1),(1,166,3030777,'2013-01-21 11:17:26',1),(1,75,3030777,'2013-01-21 11:17:26',1),(1,112,3030777,'2013-01-21 11:17:26',1),(1,156,3030777,'2013-01-21 11:17:26',1),(1,142,3030777,'2013-01-21 11:17:26',1),(1,240,3030777,'2013-01-21 11:17:26',1),(1,132,3030777,'2013-01-21 11:17:26',1),(1,102,3030777,'2013-01-21 11:17:26',1),(1,103,3030777,'2013-01-21 11:17:26',1),(1,38,3030777,'2013-01-21 11:17:26',1),(1,60,3030777,'2013-01-21 11:17:26',1),(1,215,3030777,'2013-01-21 11:17:26',1),(1,61,3030777,'2013-01-21 11:17:26',1),(1,23,3030604,'2013-01-21 11:17:29',NULL),(1,84,3030604,'2013-01-21 11:17:29',NULL),(1,80,3030604,'2013-01-21 11:17:29',NULL),(1,252,3030604,'2013-01-21 11:17:29',NULL),(1,101,3030604,'2013-01-21 11:17:29',NULL),(1,116,3030604,'2013-01-21 11:17:29',NULL),(1,204,3030604,'2013-01-21 11:17:29',NULL),(1,10,3030604,'2013-01-21 11:17:29',NULL),(1,95,3030778,'2013-01-21 11:17:30',1),(1,125,3030778,'2013-01-21 11:17:30',1),(1,135,3030778,'2013-01-21 11:17:30',1),(1,119,3030778,'2013-01-21 11:17:30',1),(1,123,3030778,'2013-01-21 11:17:30',1),(1,18,3030778,'2013-01-21 11:17:30',1),(1,48,3030778,'2013-01-21 11:17:30',1),(1,187,3030778,'2013-01-21 11:17:30',1),(1,79,3030778,'2013-01-21 11:17:30',1),(1,40,3030778,'2013-01-21 11:17:30',1),(1,21,3030778,'2013-01-21 11:17:30',1),(1,155,3030778,'2013-01-21 11:17:30',1),(1,232,3030778,'2013-01-21 11:17:30',1),(1,51,3030778,'2013-01-21 11:17:30',1),(1,109,3030778,'2013-01-21 11:17:30',1),(1,36,3030778,'2013-01-21 11:17:30',1),(1,29,3030505,'2013-01-21 11:17:44',1),(1,191,3030505,'2013-01-21 11:17:44',1),(1,80,3030505,'2013-01-21 11:17:44',1),(1,252,3030505,'2013-01-21 11:17:44',1),(1,101,3030505,'2013-01-21 11:17:44',1),(1,116,3030505,'2013-01-21 11:17:44',1),(1,204,3030505,'2013-01-21 11:17:44',1),(1,10,3030505,'2013-01-21 11:17:44',1),(1,29,3030507,'2013-01-21 11:17:45',1),(1,191,3030507,'2013-01-21 11:17:45',1),(1,80,3030507,'2013-01-21 11:17:45',1),(1,252,3030507,'2013-01-21 11:17:45',1),(1,101,3030507,'2013-01-21 11:17:45',1),(1,116,3030507,'2013-01-21 11:17:45',1),(1,204,3030507,'2013-01-21 11:17:45',1),(1,10,3030507,'2013-01-21 11:17:45',1),(1,29,3030508,'2013-01-21 11:17:47',1),(1,191,3030508,'2013-01-21 11:17:47',1),(1,80,3030508,'2013-01-21 11:17:47',1),(1,252,3030508,'2013-01-21 11:17:47',1),(1,101,3030508,'2013-01-21 11:17:47',1),(1,116,3030508,'2013-01-21 11:17:47',1),(1,204,3030508,'2013-01-21 11:17:47',1),(1,10,3030508,'2013-01-21 11:17:47',1),(1,21,3030509,'2013-01-21 11:17:48',1),(1,127,3030509,'2013-01-21 11:17:48',1),(1,155,3030509,'2013-01-21 11:17:48',1),(1,232,3030509,'2013-01-21 11:17:48',1),(1,98,3030509,'2013-01-21 11:17:48',1),(1,51,3030509,'2013-01-21 11:17:48',1),(1,109,3030509,'2013-01-21 11:17:48',1),(1,36,3030509,'2013-01-21 11:17:48',1),(1,21,3030510,'2013-01-21 11:17:56',1),(1,127,3030510,'2013-01-21 11:17:56',1),(1,155,3030510,'2013-01-21 11:17:56',1),(1,232,3030510,'2013-01-21 11:17:56',1),(1,98,3030510,'2013-01-21 11:17:56',1),(1,143,3030510,'2013-01-21 11:17:56',1),(1,51,3030510,'2013-01-21 11:17:56',1),(1,235,3030510,'2013-01-21 11:17:56',1),(1,229,3030093,'2013-01-21 11:37:34',1),(1,2,3030093,'2013-01-21 11:37:34',1),(1,230,3030093,'2013-01-21 11:37:34',1),(1,216,3030093,'2013-01-21 11:37:34',1),(1,217,3030093,'2013-01-21 11:37:34',1),(1,218,3030093,'2013-01-21 11:37:34',1),(1,219,3030093,'2013-01-21 11:37:34',1),(1,198,3030093,'2013-01-21 11:37:34',1),(1,95,3030442,'2013-01-21 11:44:13',1),(1,125,3030442,'2013-01-21 11:44:13',1),(1,184,3030442,'2013-01-21 11:44:13',1),(1,96,3030442,'2013-01-21 11:44:13',1),(1,135,3030442,'2013-01-21 11:44:13',1),(1,119,3030442,'2013-01-21 11:44:13',1),(1,139,3030442,'2013-01-21 11:44:13',1),(1,82,3030442,'2013-01-21 11:44:13',1),(1,241,3030444,'2013-01-21 11:44:16',1),(1,52,3030444,'2013-01-21 11:44:16',1),(1,206,3030446,'2013-01-21 11:44:17',1),(1,52,3030446,'2013-01-21 11:44:17',1),(1,206,3030447,'2013-01-21 11:44:17',1),(1,52,3030447,'2013-01-21 11:44:17',1),(1,123,3030452,'2013-01-21 11:44:25',1),(1,18,3030452,'2013-01-21 11:44:25',1),(1,48,3030452,'2013-01-21 11:44:25',1),(1,187,3030452,'2013-01-21 11:44:25',1),(1,126,3030452,'2013-01-21 11:44:25',1),(1,79,3030452,'2013-01-21 11:44:25',1),(1,40,3030452,'2013-01-21 11:44:25',1),(1,146,3030452,'2013-01-21 11:44:25',1),(1,8,3030456,'2013-01-21 11:44:27',1),(1,74,3030456,'2013-01-21 11:44:27',1),(1,173,3030456,'2013-01-21 11:44:27',1),(1,166,3030456,'2013-01-21 11:44:27',1),(1,75,3030456,'2013-01-21 11:44:27',1),(1,112,3030456,'2013-01-21 11:44:27',1),(1,156,3030456,'2013-01-21 11:44:27',1),(1,142,3030456,'2013-01-21 11:44:27',1),(1,240,3030458,'2013-01-21 11:44:34',NULL),(1,132,3030458,'2013-01-21 11:44:34',NULL),(1,102,3030458,'2013-01-21 11:44:34',NULL),(1,103,3030458,'2013-01-21 11:44:34',NULL),(1,38,3030458,'2013-01-21 11:44:34',NULL),(1,60,3030458,'2013-01-21 11:44:34',NULL),(1,215,3030458,'2013-01-21 11:44:34',NULL),(1,61,3030458,'2013-01-21 11:44:34',NULL),(1,23,3030799,'2013-01-21 11:46:44',1),(1,84,3030799,'2013-01-21 11:46:44',1),(1,8,3030799,'2013-01-21 11:46:44',1),(1,74,3030799,'2013-01-21 11:46:44',1),(1,173,3030799,'2013-01-21 11:46:44',1),(1,80,3030799,'2013-01-21 11:46:44',1),(1,252,3030799,'2013-01-21 11:46:44',1),(1,101,3030799,'2013-01-21 11:46:44',1),(1,116,3030795,'2013-01-21 11:46:46',1),(1,166,3030795,'2013-01-21 11:46:46',1),(1,75,3030795,'2013-01-21 11:46:46',1),(1,112,3030795,'2013-01-21 11:46:46',1),(1,156,3030795,'2013-01-21 11:46:46',1),(1,142,3030795,'2013-01-21 11:46:46',1),(1,204,3030795,'2013-01-21 11:46:46',1),(1,10,3030795,'2013-01-21 11:46:46',1),(1,229,3030684,'2013-01-21 11:46:52',1),(1,2,3030684,'2013-01-21 11:46:52',1),(1,230,3030684,'2013-01-21 11:46:52',1),(1,216,3030684,'2013-01-21 11:46:52',1),(1,217,3030684,'2013-01-21 11:46:52',1),(1,218,3030684,'2013-01-21 11:46:52',1),(1,219,3030684,'2013-01-21 11:46:52',1),(1,198,3030684,'2013-01-21 11:46:52',1),(1,51,3030685,'2013-01-21 11:46:54',1),(1,235,3030685,'2013-01-21 11:46:54',1),(1,98,3030686,'2013-01-21 11:46:58',1),(1,143,3030686,'2013-01-21 11:46:58',1),(1,155,3030608,'2013-01-21 11:47:19',1),(1,232,3030608,'2013-01-21 11:47:19',1),(1,21,3030796,'2013-01-21 11:47:20',1),(1,127,3030796,'2013-01-21 11:47:20',1),(1,155,3030796,'2013-01-21 11:47:20',1),(1,232,3030796,'2013-01-21 11:47:20',1),(1,98,3030796,'2013-01-21 11:47:20',1),(1,143,3030796,'2013-01-21 11:47:20',1),(1,51,3030796,'2013-01-21 11:47:20',1),(1,235,3030796,'2013-01-21 11:47:20',1),(1,199,3030789,'2013-01-21 11:47:20',1),(1,200,3030789,'2013-01-21 11:47:20',1),(1,67,3030789,'2013-01-21 11:47:20',1),(1,206,3030789,'2013-01-21 11:47:20',1),(1,199,3030791,'2013-01-21 11:47:21',1),(1,200,3030791,'2013-01-21 11:47:21',1),(1,241,3030791,'2013-01-21 11:47:21',1),(1,67,3030791,'2013-01-21 11:47:21',1),(1,21,3030602,'2013-01-21 11:47:23',1),(1,127,3030602,'2013-01-21 11:47:23',1),(1,75,3030500,'2013-01-21 11:47:28',1),(1,112,3030500,'2013-01-21 11:47:28',1),(1,123,3030501,'2013-01-21 11:47:30',1),(1,18,3030501,'2013-01-21 11:47:30',1),(1,21,3030689,'2013-01-21 11:47:36',1),(1,127,3030689,'2013-01-21 11:47:36',1),(1,155,3030689,'2013-01-21 11:47:36',1),(1,232,3030689,'2013-01-21 11:47:36',1),(1,98,3030689,'2013-01-21 11:47:36',1),(1,143,3030689,'2013-01-21 11:47:36',1),(1,51,3030689,'2013-01-21 11:47:36',1),(1,235,3030689,'2013-01-21 11:47:36',1),(1,116,3030779,'2013-01-21 11:47:38',1),(1,166,3030779,'2013-01-21 11:47:38',1),(1,75,3030779,'2013-01-21 11:47:38',1),(1,112,3030779,'2013-01-21 11:47:38',1),(1,156,3030779,'2013-01-21 11:47:38',1),(1,142,3030779,'2013-01-21 11:47:38',1),(1,204,3030779,'2013-01-21 11:47:38',1),(1,10,3030779,'2013-01-21 11:47:38',1),(1,199,3030780,'2013-01-21 11:47:40',1),(1,200,3030780,'2013-01-21 11:47:40',1),(1,241,3030780,'2013-01-21 11:47:40',1),(1,67,3030780,'2013-01-21 11:47:40',1),(1,240,3030693,'2013-01-21 11:47:45',1),(1,132,3030693,'2013-01-21 11:47:45',1),(1,215,3030781,'2013-01-21 11:47:46',1),(1,61,3030781,'2013-01-21 11:47:46',1),(1,199,3030782,'2013-01-21 11:47:47',1),(1,200,3030782,'2013-01-21 11:47:47',1),(1,54,3030694,'2013-01-21 11:47:51',1),(1,109,3030694,'2013-01-21 11:47:51',1),(1,36,3030694,'2013-01-21 11:47:51',1),(1,29,3030694,'2013-01-21 11:47:51',1),(1,251,3030694,'2013-01-21 11:47:51',1),(1,106,3030694,'2013-01-21 11:47:51',1),(1,17,3030694,'2013-01-21 11:47:51',1),(1,191,3030694,'2013-01-21 11:47:51',1),(1,23,3030692,'2013-01-21 11:47:53',1),(1,84,3030692,'2013-01-21 11:47:53',1),(1,80,3030692,'2013-01-21 11:47:53',1),(1,252,3030692,'2013-01-21 11:47:53',1),(1,101,3030692,'2013-01-21 11:47:53',1),(1,116,3030692,'2013-01-21 11:47:53',1),(1,204,3030692,'2013-01-21 11:47:53',1),(1,10,3030692,'2013-01-21 11:47:53',1),(1,241,3030787,'2013-01-21 11:47:59',1),(1,67,3030787,'2013-01-21 11:47:59',1),(1,206,3030788,'2013-01-21 11:47:59',1),(1,52,3030788,'2013-01-21 11:47:59',1),(1,48,3030512,'2013-01-21 11:48:01',1),(1,187,3030512,'2013-01-21 11:48:01',1),(1,116,3030784,'2013-01-21 11:48:03',1),(1,166,3030784,'2013-01-21 11:48:03',1),(1,75,3030784,'2013-01-21 11:48:03',1),(1,112,3030784,'2013-01-21 11:48:03',1),(1,40,3030514,'2013-01-21 11:48:04',1),(1,146,3030514,'2013-01-21 11:48:04',1),(1,126,3030515,'2013-01-21 11:48:07',1),(1,79,3030515,'2013-01-21 11:48:07',1),(1,102,3030683,'2013-01-21 11:48:08',1),(1,103,3030683,'2013-01-21 11:48:08',1),(1,156,3030786,'2013-01-21 11:48:12',1),(1,142,3030786,'2013-01-21 11:48:12',1),(1,204,3030786,'2013-01-21 11:48:12',1),(1,10,3030786,'2013-01-21 11:48:12',1),(1,116,3030457,'2013-01-21 12:14:30',1),(1,166,3030457,'2013-01-21 12:14:30',1),(1,54,3030793,'2013-01-21 12:16:47',1),(1,109,3030793,'2013-01-21 12:16:47',1),(1,36,3030793,'2013-01-21 12:16:47',1),(1,29,3030793,'2013-01-21 12:16:47',1),(1,251,3030793,'2013-01-21 12:16:47',1),(1,106,3030793,'2013-01-21 12:16:47',1),(1,17,3030793,'2013-01-21 12:16:47',1),(1,191,3030793,'2013-01-21 12:16:47',1),(1,38,3030797,'2013-01-21 12:17:11',1),(1,60,3030797,'2013-01-21 12:17:11',1),(1,229,3030783,'2013-01-21 12:17:50',1),(1,2,3030783,'2013-01-21 12:17:50',1),(1,230,3030783,'2013-01-21 12:17:50',1),(1,216,3030783,'2013-01-21 12:17:50',1),(1,217,3030783,'2013-01-21 12:17:50',1),(1,218,3030783,'2013-01-21 12:17:50',1),(1,219,3030783,'2013-01-21 12:17:50',1),(1,198,3030783,'2013-01-21 12:17:50',1),(1,123,3030785,'2013-01-21 12:18:06',1),(1,18,3030785,'2013-01-21 12:18:06',1),(1,166,3030163,'2013-01-21 13:08:05',1),(1,102,3030164,'2013-01-21 13:08:06',1),(1,216,3030161,'2013-01-21 13:08:26',1),(1,218,3030258,'2013-01-21 13:10:23',1),(1,217,3030257,'2013-01-21 13:10:23',1),(1,198,3030348,'2013-01-21 13:12:43',1),(1,200,3030352,'2013-01-21 13:12:53',1),(1,191,3030449,'2013-01-21 13:14:26',1),(1,241,3030459,'2013-01-21 13:14:38',1),(1,67,3030454,'2013-01-21 13:14:40',1),(1,217,3030800,'2013-01-21 13:16:50',1),(1,200,3030798,'2013-01-21 13:17:18',1),(1,132,3030695,'2013-01-21 13:17:30',1),(1,135,3030498,'2013-01-21 13:17:34',1),(1,52,3030499,'2013-01-21 13:17:34',1),(1,215,3030681,'2013-01-21 13:17:43',1),(1,229,3030690,'2013-01-21 13:17:46',1),(1,240,3030605,'2013-01-21 13:17:47',1),(1,166,3030606,'2013-01-21 13:17:48',1),(1,119,3030504,'2013-01-21 13:17:50',1),(1,74,3030790,'2013-01-21 13:17:57',1),(1,123,3030516,'2013-01-21 13:18:16',1),(1,101,3030497,'2013-01-21 13:18:17',1),(1,29,3030089,'2013-01-21 13:37:34',1),(1,17,3030162,'2013-01-21 13:38:07',1),(1,103,3030169,'2013-01-21 13:38:14',1),(1,219,3030339,'2013-01-21 13:42:18',1),(1,23,3030451,'2013-01-21 13:44:32',1),(1,8,3030792,'2013-01-21 13:47:31',1),(1,140,3030952,'2013-01-22 10:16:47',1),(1,140,3030840,'2013-01-22 10:16:58',1),(1,140,3030845,'2013-01-22 10:17:11',1),(1,140,3030857,'2013-01-22 10:17:33',1),(1,140,3030858,'2013-01-22 10:17:36',1),(1,146,3030839,'2013-01-22 10:17:36',1),(1,140,3030951,'2013-01-22 10:47:06',1),(1,140,3031021,'2013-01-22 10:47:09',1),(1,140,3031022,'2013-01-22 10:47:10',1),(1,140,3031027,'2013-01-22 10:47:25',1),(1,140,3031120,'2013-01-22 11:16:53',1),(1,79,3030841,'2013-01-22 11:47:03',1),(1,28,3030841,'2013-01-22 11:47:03',1),(1,57,3030842,'2013-01-22 11:47:03',1),(1,194,3030842,'2013-01-22 11:47:03',1),(1,79,3030843,'2013-01-22 11:47:03',1),(1,43,3030843,'2013-01-22 11:47:03',1),(1,45,3030843,'2013-01-22 11:47:03',1),(1,28,3030843,'2013-01-22 11:47:03',1),(1,140,3031126,'2013-01-22 11:47:07',1),(1,140,3031127,'2013-01-22 11:47:07',1),(1,43,3030844,'2013-01-22 11:47:18',1),(1,45,3030844,'2013-01-22 11:47:18',1),(1,28,3030844,'2013-01-22 11:47:18',1),(1,238,3030844,'2013-01-22 11:47:18',1),(1,45,3031118,'2013-01-22 11:47:42',1),(1,85,3031023,'2013-01-22 13:17:22',1),(1,159,3031023,'2013-01-22 13:17:22',1),(1,188,3031023,'2013-01-22 13:17:22',1),(1,86,3031023,'2013-01-22 13:17:22',1),(1,115,3031023,'2013-01-22 13:17:22',1),(1,87,3031023,'2013-01-22 13:17:22',1),(1,250,3031023,'2013-01-22 13:17:22',1),(1,226,3031023,'2013-01-22 13:17:22',1),(1,129,3031023,'2013-01-22 13:17:22',1),(1,117,3031023,'2013-01-22 13:17:22',1),(1,55,3031023,'2013-01-22 13:17:22',1),(1,53,3031023,'2013-01-22 13:17:22',1),(1,104,3031023,'2013-01-22 13:17:22',1),(1,49,3031023,'2013-01-22 13:17:22',1),(1,68,3031023,'2013-01-22 13:17:22',1),(1,212,3031023,'2013-01-22 13:17:22',1),(1,213,3030847,'2013-01-22 13:17:25',1),(1,81,3030847,'2013-01-22 13:17:25',1),(1,210,3030847,'2013-01-22 13:17:25',1),(1,90,3030847,'2013-01-22 13:17:25',1),(1,212,3030852,'2013-01-22 13:17:41',1),(1,213,3030852,'2013-01-22 13:17:41',1),(1,81,3030852,'2013-01-22 13:17:41',1),(1,210,3030852,'2013-01-22 13:17:41',1),(1,90,3030853,'2013-01-22 13:17:41',1),(1,70,3030853,'2013-01-22 13:17:41',1),(1,213,3030854,'2013-01-22 13:17:42',1),(1,81,3030854,'2013-01-22 13:17:42',1),(1,210,3030854,'2013-01-22 13:17:42',1),(1,90,3030854,'2013-01-22 13:17:42',1),(1,213,3031029,'2013-01-22 13:47:00',1),(1,81,3031029,'2013-01-22 13:47:00',1),(1,210,3031029,'2013-01-22 13:47:00',1),(1,90,3031029,'2013-01-22 13:47:00',1),(1,213,3031030,'2013-01-22 13:47:00',1),(1,81,3031030,'2013-01-22 13:47:00',1),(1,210,3031030,'2013-01-22 13:47:00',1),(1,90,3031030,'2013-01-22 13:47:00',1),(1,90,3031017,'2013-01-22 13:47:00',1),(1,70,3031017,'2013-01-22 13:47:00',1),(1,99,3031013,'2013-01-22 13:47:00',1),(1,157,3031013,'2013-01-22 13:47:00',1),(1,175,3031013,'2013-01-22 13:47:00',1),(1,163,3031013,'2013-01-22 13:47:00',1),(1,176,3031013,'2013-01-22 13:47:00',1),(1,72,3031013,'2013-01-22 13:47:00',1),(1,1,3031013,'2013-01-22 13:47:00',1),(1,34,3031013,'2013-01-22 13:47:00',1),(1,37,3031013,'2013-01-22 13:47:00',1),(1,30,3031013,'2013-01-22 13:47:00',1),(1,243,3031013,'2013-01-22 13:47:00',1),(1,236,3031013,'2013-01-22 13:47:00',1),(1,145,3031013,'2013-01-22 13:47:00',1),(1,171,3031013,'2013-01-22 13:47:00',1),(1,169,3031013,'2013-01-22 13:47:00',1),(1,189,3031013,'2013-01-22 13:47:00',1),(1,154,3030953,'2013-01-22 13:47:03',1),(1,213,3030953,'2013-01-22 13:47:03',1),(1,81,3030953,'2013-01-22 13:47:03',1),(1,210,3030953,'2013-01-22 13:47:03',1),(1,213,3030954,'2013-01-22 13:47:03',1),(1,81,3030954,'2013-01-22 13:47:03',1),(1,37,3030955,'2013-01-22 13:47:03',1),(1,30,3030955,'2013-01-22 13:47:03',1),(1,243,3030955,'2013-01-22 13:47:03',1),(1,236,3030955,'2013-01-22 13:47:03',1),(1,145,3030955,'2013-01-22 13:47:03',1),(1,171,3030955,'2013-01-22 13:47:03',1),(1,169,3030955,'2013-01-22 13:47:03',1),(1,189,3030955,'2013-01-22 13:47:03',1),(1,212,3031018,'2013-01-22 13:47:08',1),(1,213,3031018,'2013-01-22 13:47:08',1),(1,81,3031018,'2013-01-22 13:47:08',1),(1,210,3031018,'2013-01-22 13:47:08',1),(1,30,3031020,'2013-01-22 13:47:12',1),(1,243,3031020,'2013-01-22 13:47:12',1),(1,236,3031020,'2013-01-22 13:47:12',1),(1,145,3031020,'2013-01-22 13:47:12',1),(1,171,3031020,'2013-01-22 13:47:12',1),(1,169,3031020,'2013-01-22 13:47:12',1),(1,189,3031020,'2013-01-22 13:47:12',1),(1,212,3031020,'2013-01-22 13:47:12',1),(1,210,3030956,'2013-01-22 13:47:19',1),(1,90,3030956,'2013-01-22 13:47:19',1),(1,213,3030949,'2013-01-22 13:47:23',1),(1,81,3030949,'2013-01-22 13:47:23',1),(1,210,3030949,'2013-01-22 13:47:23',1),(1,90,3030949,'2013-01-22 13:47:23',1),(1,157,3030950,'2013-01-22 13:47:24',NULL),(1,175,3030950,'2013-01-22 13:47:24',NULL),(1,163,3030950,'2013-01-22 13:47:24',NULL),(1,176,3030950,'2013-01-22 13:47:24',NULL),(1,72,3030950,'2013-01-22 13:47:24',NULL),(1,1,3030950,'2013-01-22 13:47:24',NULL),(1,34,3030950,'2013-01-22 13:47:24',NULL),(1,37,3030950,'2013-01-22 13:47:24',NULL),(1,157,3030846,'2013-01-22 13:47:27',1),(1,175,3030846,'2013-01-22 13:47:27',1),(1,163,3030846,'2013-01-22 13:47:27',1),(1,176,3030846,'2013-01-22 13:47:27',1),(1,72,3030846,'2013-01-22 13:47:27',1),(1,1,3030846,'2013-01-22 13:47:27',1),(1,34,3030846,'2013-01-22 13:47:27',1),(1,37,3030846,'2013-01-22 13:47:27',1),(1,147,3031125,'2013-01-22 13:47:30',1),(1,85,3031125,'2013-01-22 13:47:30',1),(1,159,3031125,'2013-01-22 13:47:30',1),(1,188,3031125,'2013-01-22 13:47:30',1),(1,86,3031125,'2013-01-22 13:47:30',1),(1,115,3031125,'2013-01-22 13:47:30',1),(1,87,3031125,'2013-01-22 13:47:30',1),(1,250,3031125,'2013-01-22 13:47:30',1),(1,226,3031125,'2013-01-22 13:47:30',1),(1,129,3031125,'2013-01-22 13:47:30',1),(1,117,3031125,'2013-01-22 13:47:30',1),(1,55,3031125,'2013-01-22 13:47:30',1),(1,53,3031125,'2013-01-22 13:47:30',1),(1,104,3031125,'2013-01-22 13:47:30',1),(1,49,3031125,'2013-01-22 13:47:30',1),(1,68,3031125,'2013-01-22 13:47:30',1),(1,157,3030848,'2013-01-22 13:47:34',1),(1,175,3030848,'2013-01-22 13:47:34',1),(1,163,3030848,'2013-01-22 13:47:34',1),(1,176,3030848,'2013-01-22 13:47:34',1),(1,72,3030848,'2013-01-22 13:47:34',1),(1,1,3030848,'2013-01-22 13:47:34',1),(1,34,3030848,'2013-01-22 13:47:34',1),(1,37,3030848,'2013-01-22 13:47:34',1),(1,30,3030849,'2013-01-22 13:47:34',1),(1,243,3030849,'2013-01-22 13:47:34',1),(1,236,3030849,'2013-01-22 13:47:34',1),(1,145,3030849,'2013-01-22 13:47:34',1),(1,171,3030849,'2013-01-22 13:47:34',1),(1,169,3030849,'2013-01-22 13:47:34',1),(1,189,3030849,'2013-01-22 13:47:34',1),(1,212,3030849,'2013-01-22 13:47:34',1),(1,99,3030851,'2013-01-22 13:47:37',1),(1,157,3030851,'2013-01-22 13:47:37',1),(1,175,3030851,'2013-01-22 13:47:37',1),(1,163,3030851,'2013-01-22 13:47:37',1),(1,176,3030851,'2013-01-22 13:47:37',1),(1,72,3030851,'2013-01-22 13:47:37',1),(1,1,3030851,'2013-01-22 13:47:37',1),(1,34,3030851,'2013-01-22 13:47:37',1),(1,30,3030850,'2013-01-22 13:47:37',1),(1,243,3030850,'2013-01-22 13:47:37',1),(1,236,3030850,'2013-01-22 13:47:37',1),(1,145,3030850,'2013-01-22 13:47:37',1),(1,171,3030850,'2013-01-22 13:47:37',1),(1,169,3030850,'2013-01-22 13:47:37',1),(1,189,3030850,'2013-01-22 13:47:37',1),(1,212,3030850,'2013-01-22 13:47:37',1),(1,99,3031106,'2013-01-22 13:47:46',1),(1,157,3031106,'2013-01-22 13:47:46',1),(1,175,3031106,'2013-01-22 13:47:46',1),(1,163,3031106,'2013-01-22 13:47:46',1),(1,176,3031106,'2013-01-22 13:47:46',1),(1,72,3031106,'2013-01-22 13:47:46',1),(1,1,3031106,'2013-01-22 13:47:46',1),(1,34,3031106,'2013-01-22 13:47:46',1),(1,37,3031106,'2013-01-22 13:47:46',1),(1,30,3031106,'2013-01-22 13:47:46',1),(1,243,3031106,'2013-01-22 13:47:46',1),(1,236,3031106,'2013-01-22 13:47:46',1),(1,145,3031106,'2013-01-22 13:47:46',1),(1,171,3031106,'2013-01-22 13:47:46',1),(1,169,3031106,'2013-01-22 13:47:46',1),(1,189,3031106,'2013-01-22 13:47:46',1),(1,225,3030855,'2013-01-22 13:47:48',1),(1,44,3030855,'2013-01-22 13:47:48',1),(1,210,3030856,'2013-01-22 13:47:53',1),(1,90,3030856,'2013-01-22 13:47:53',1),(1,68,3031116,'2013-01-22 14:16:58',1),(1,212,3031116,'2013-01-22 14:16:58',1),(1,104,3031110,'2013-01-22 14:16:58',1),(1,49,3031110,'2013-01-22 14:16:58',1),(1,34,3031111,'2013-01-22 14:16:58',1),(1,37,3031111,'2013-01-22 14:16:58',1),(1,30,3031111,'2013-01-22 14:16:58',1),(1,243,3031111,'2013-01-22 14:16:58',1),(1,236,3031111,'2013-01-22 14:16:58',1),(1,145,3031111,'2013-01-22 14:16:58',1),(1,171,3031111,'2013-01-22 14:16:58',1),(1,169,3031111,'2013-01-22 14:16:58',1),(1,213,3031019,'2013-01-22 14:17:13',NULL),(1,81,3031019,'2013-01-22 14:17:13',NULL),(1,210,3031019,'2013-01-22 14:17:13',NULL),(1,90,3031019,'2013-01-22 14:17:13',NULL),(1,212,3031016,'2013-01-22 14:17:14',1),(1,70,3031016,'2013-01-22 14:17:14',1),(1,162,3031024,'2013-01-22 14:17:28',1),(1,157,3031024,'2013-01-22 14:17:28',1),(1,175,3031024,'2013-01-22 14:17:28',1),(1,163,3031024,'2013-01-22 14:17:28',1),(1,176,3031024,'2013-01-22 14:17:28',1),(1,72,3031024,'2013-01-22 14:17:28',1),(1,1,3031024,'2013-01-22 14:17:28',1),(1,34,3031024,'2013-01-22 14:17:28',1),(1,104,3031025,'2013-01-22 14:17:41',1),(1,49,3031025,'2013-01-22 14:17:41',1),(1,37,3031026,'2013-01-22 14:17:45',1),(1,30,3031026,'2013-01-22 14:17:45',1),(1,243,3031026,'2013-01-22 14:17:45',1),(1,236,3031026,'2013-01-22 14:17:45',1),(1,145,3031026,'2013-01-22 14:17:45',1),(1,171,3031026,'2013-01-22 14:17:45',1),(1,169,3031026,'2013-01-22 14:17:45',1),(1,189,3031026,'2013-01-22 14:17:45',1),(1,104,3031028,'2013-01-22 14:17:45',1),(1,49,3031028,'2013-01-22 14:17:45',1),(1,68,3031028,'2013-01-22 14:17:45',1),(1,212,3031028,'2013-01-22 14:17:45',1),(1,154,3031105,'2013-01-22 14:17:45',1),(1,85,3031105,'2013-01-22 14:17:45',1),(1,159,3031105,'2013-01-22 14:17:45',1),(1,188,3031105,'2013-01-22 14:17:45',1),(1,86,3031105,'2013-01-22 14:17:45',1),(1,115,3031105,'2013-01-22 14:17:45',1),(1,87,3031105,'2013-01-22 14:17:45',1),(1,250,3031105,'2013-01-22 14:17:45',1),(1,226,3031105,'2013-01-22 14:17:45',1),(1,129,3031105,'2013-01-22 14:17:45',1),(1,117,3031105,'2013-01-22 14:17:45',1),(1,55,3031105,'2013-01-22 14:17:45',1),(1,53,3031105,'2013-01-22 14:17:45',1),(1,104,3031105,'2013-01-22 14:17:45',1),(1,49,3031105,'2013-01-22 14:17:45',1),(1,68,3031105,'2013-01-22 14:17:45',1),(1,68,3031014,'2013-01-22 14:17:50',1),(1,212,3031014,'2013-01-22 14:17:50',1),(1,44,3031015,'2013-01-22 14:17:51',1),(1,162,3031015,'2013-01-22 14:17:51',1),(1,157,3031015,'2013-01-22 14:17:51',1),(1,175,3031015,'2013-01-22 14:17:51',1),(1,163,3031015,'2013-01-22 14:17:51',1),(1,176,3031015,'2013-01-22 14:17:51',1),(1,72,3031015,'2013-01-22 14:17:51',1),(1,1,3031015,'2013-01-22 14:17:51',1),(1,44,3031119,'2013-01-22 14:46:59',1),(1,162,3031119,'2013-01-22 14:46:59',1),(1,99,3031119,'2013-01-22 14:46:59',1),(1,157,3031119,'2013-01-22 14:46:59',1),(1,115,3031121,'2013-01-22 14:47:12',1),(1,87,3031121,'2013-01-22 14:47:12',1),(1,250,3031121,'2013-01-22 14:47:12',1),(1,226,3031121,'2013-01-22 14:47:12',1),(1,129,3031121,'2013-01-22 14:47:12',1),(1,117,3031121,'2013-01-22 14:47:12',1),(1,55,3031121,'2013-01-22 14:47:12',1),(1,53,3031121,'2013-01-22 14:47:12',1),(1,250,3031122,'2013-01-22 14:47:13',1),(1,226,3031122,'2013-01-22 14:47:13',1),(1,129,3031122,'2013-01-22 14:47:13',1),(1,117,3031122,'2013-01-22 14:47:13',1),(1,99,3031124,'2013-01-22 14:47:13',1),(1,70,3031124,'2013-01-22 14:47:13',1),(1,243,3031129,'2013-01-22 14:47:25',1),(1,236,3031129,'2013-01-22 14:47:25',1),(1,145,3031129,'2013-01-22 14:47:25',1),(1,171,3031129,'2013-01-22 14:47:25',1),(1,169,3031129,'2013-01-22 14:47:25',1),(1,213,3031129,'2013-01-22 14:47:25',1),(1,81,3031129,'2013-01-22 14:47:25',1),(1,210,3031129,'2013-01-22 14:47:25',1),(1,162,3031128,'2013-01-22 14:47:25',1),(1,157,3031128,'2013-01-22 14:47:25',1),(1,175,3031128,'2013-01-22 14:47:25',1),(1,163,3031128,'2013-01-22 14:47:25',1),(1,176,3031128,'2013-01-22 14:47:25',1),(1,72,3031128,'2013-01-22 14:47:25',1),(1,1,3031128,'2013-01-22 14:47:25',1),(1,189,3031128,'2013-01-22 14:47:25',1),(1,175,3031114,'2013-01-22 14:47:36',1),(1,163,3031114,'2013-01-22 14:47:36',1),(1,176,3031114,'2013-01-22 14:47:36',1),(1,72,3031114,'2013-01-22 14:47:36',1),(1,104,3031123,'2013-01-22 14:47:36',1),(1,49,3031123,'2013-01-22 14:47:36',1),(1,68,3031123,'2013-01-22 14:47:36',1),(1,212,3031123,'2013-01-22 14:47:36',1),(1,90,3031123,'2013-01-22 14:47:36',1),(1,44,3031123,'2013-01-22 14:47:36',1),(1,34,3031123,'2013-01-22 14:47:36',1),(1,37,3031123,'2013-01-22 14:47:36',1),(1,55,3031115,'2013-01-22 14:47:40',1),(1,53,3031115,'2013-01-22 14:47:40',1),(1,1,3031108,'2013-01-22 14:47:47',1),(1,34,3031108,'2013-01-22 14:47:47',1),(1,37,3031108,'2013-01-22 14:47:47',1),(1,30,3031108,'2013-01-22 14:47:47',1),(1,53,3031109,'2013-01-22 14:47:50',1),(1,81,3031109,'2013-01-22 14:47:50',1),(1,154,3031107,'2013-01-22 14:47:59',1),(1,30,3031107,'2013-01-22 14:47:59',1),(1,243,3031107,'2013-01-22 14:47:59',1),(1,236,3031107,'2013-01-22 14:47:59',1),(1,145,3031107,'2013-01-22 14:47:59',1),(1,171,3031107,'2013-01-22 14:47:59',1),(1,169,3031107,'2013-01-22 14:47:59',1),(1,115,3031107,'2013-01-22 14:47:59',1),(1,169,3031112,'2013-01-22 14:48:01',1),(1,189,3031112,'2013-01-22 14:48:01',1),(1,115,3031112,'2013-01-22 14:48:01',1),(1,87,3031112,'2013-01-22 14:48:01',1),(1,243,3031117,'2013-01-22 15:18:02',1),(1,236,3031117,'2013-01-22 15:18:02',1),(1,145,3031117,'2013-01-22 15:18:02',1),(1,171,3031117,'2013-01-22 15:18:02',1),(1,53,3031113,'2013-01-22 15:18:03',1),(1,104,3031113,'2013-01-22 15:18:03',1),(1,227,3031171,'2013-01-23 00:46:14',1),(1,147,3031171,'2013-01-23 00:46:14',1),(1,244,3031172,'2013-01-23 00:46:14',1),(1,88,3031172,'2013-01-23 00:46:14',1),(1,244,3031173,'2013-01-23 00:46:14',1),(1,88,3031173,'2013-01-23 00:46:14',1),(1,227,3031173,'2013-01-23 00:46:14',1),(1,147,3031173,'2013-01-23 00:46:14',1),(1,59,3031174,'2013-01-23 00:46:14',1),(1,14,3031174,'2013-01-23 00:46:14',1),(1,160,3031174,'2013-01-23 00:46:14',1),(1,133,3031174,'2013-01-23 00:46:14',1),(1,154,3031175,'2013-01-23 00:46:21',1),(1,59,3031176,'2013-01-23 00:46:21',1),(1,14,3031176,'2013-01-23 00:46:21',1),(1,160,3031176,'2013-01-23 00:46:21',1),(1,133,3031176,'2013-01-23 00:46:21',1),(1,244,3031176,'2013-01-23 00:46:21',1),(1,88,3031176,'2013-01-23 00:46:21',1),(1,227,3031176,'2013-01-23 00:46:21',1),(1,147,3031176,'2013-01-23 00:46:21',1),(1,59,3031177,'2013-01-23 00:46:21',1),(1,14,3031177,'2013-01-23 00:46:21',1),(1,160,3031177,'2013-01-23 00:46:21',1),(1,133,3031177,'2013-01-23 00:46:21',1),(1,14,3031178,'2013-01-23 00:46:21',1),(1,160,3031178,'2013-01-23 00:46:21',1),(1,133,3031178,'2013-01-23 00:46:21',1),(1,244,3031178,'2013-01-23 00:46:21',1),(1,88,3031178,'2013-01-23 00:46:21',1),(1,227,3031178,'2013-01-23 00:46:21',1),(1,147,3031178,'2013-01-23 00:46:21',1),(1,154,3031178,'2013-01-23 00:46:21',1),(1,59,3031181,'2013-01-23 00:46:29',1),(1,14,3031181,'2013-01-23 00:46:29',1),(1,160,3031181,'2013-01-23 00:46:29',1),(1,133,3031181,'2013-01-23 00:46:29',1),(1,244,3031181,'2013-01-23 00:46:29',1),(1,88,3031181,'2013-01-23 00:46:29',1),(1,227,3031181,'2013-01-23 00:46:29',1),(1,147,3031181,'2013-01-23 00:46:29',1),(1,244,3031182,'2013-01-23 00:46:29',1),(1,88,3031182,'2013-01-23 00:46:29',1),(1,227,3031182,'2013-01-23 00:46:29',1),(1,147,3031182,'2013-01-23 00:46:29',1),(1,59,3031179,'2013-01-23 00:46:29',1),(1,14,3031179,'2013-01-23 00:46:29',1),(1,160,3031179,'2013-01-23 00:46:29',1),(1,133,3031179,'2013-01-23 00:46:29',1),(1,244,3031179,'2013-01-23 00:46:29',1),(1,88,3031179,'2013-01-23 00:46:29',1),(1,227,3031179,'2013-01-23 00:46:29',1),(1,147,3031179,'2013-01-23 00:46:29',1),(1,59,3031180,'2013-01-23 00:46:29',1),(1,14,3031180,'2013-01-23 00:46:29',1),(1,160,3031180,'2013-01-23 00:46:29',1),(1,133,3031180,'2013-01-23 00:46:29',1),(1,244,3031180,'2013-01-23 00:46:29',1),(1,88,3031180,'2013-01-23 00:46:29',1),(1,227,3031180,'2013-01-23 00:46:29',1),(1,147,3031180,'2013-01-23 00:46:29',1),(1,59,3031184,'2013-01-23 00:46:37',1),(1,14,3031184,'2013-01-23 00:46:37',1),(1,160,3031184,'2013-01-23 00:46:37',1),(1,133,3031184,'2013-01-23 00:46:37',1),(1,160,3031185,'2013-01-23 00:46:37',1),(1,133,3031185,'2013-01-23 00:46:37',1),(1,59,3031183,'2013-01-23 00:46:37',1),(1,14,3031183,'2013-01-23 00:46:37',1),(1,244,3031186,'2013-01-23 00:46:37',1),(1,88,3031186,'2013-01-23 00:46:37',1),(1,154,3031187,'2013-01-23 00:46:46',1),(1,154,3031188,'2013-01-23 00:46:46',1),(1,14,3031189,'2013-01-23 00:46:46',1),(1,59,3031170,'2013-01-23 00:46:46',1),(1,28,3031268,'2013-01-23 01:46:12',1),(1,160,3031270,'2013-01-23 01:46:13',1),(1,133,3031270,'2013-01-23 01:46:13',1),(1,244,3031270,'2013-01-23 01:46:13',1),(1,88,3031270,'2013-01-23 01:46:13',1),(1,154,3031269,'2013-01-23 01:46:13',1),(1,146,3031271,'2013-01-23 01:46:13',1),(1,43,3031271,'2013-01-23 01:46:13',1),(1,146,3031272,'2013-01-23 01:46:21',1),(1,43,3031272,'2013-01-23 01:46:21',1),(1,147,3031272,'2013-01-23 01:46:21',1),(1,45,3031272,'2013-01-23 01:46:21',1),(1,154,3031272,'2013-01-23 01:46:21',1),(1,28,3031272,'2013-01-23 01:46:21',1),(1,238,3031272,'2013-01-23 01:46:21',1),(1,57,3031272,'2013-01-23 01:46:21',1),(1,147,3031273,'2013-01-23 01:46:21',1),(1,45,3031273,'2013-01-23 01:46:21',1),(1,140,3031274,'2013-01-23 01:46:21',1),(1,227,3031274,'2013-01-23 01:46:21',1),(1,136,3031274,'2013-01-23 01:46:21',1),(1,79,3031274,'2013-01-23 01:46:21',1),(1,160,3031267,'2013-01-23 01:46:21',1),(1,133,3031267,'2013-01-23 01:46:21',1),(1,244,3031267,'2013-01-23 01:46:21',1),(1,88,3031267,'2013-01-23 01:46:21',1),(1,140,3031267,'2013-01-23 01:46:21',1),(1,227,3031267,'2013-01-23 01:46:21',1),(1,136,3031267,'2013-01-23 01:46:21',1),(1,79,3031267,'2013-01-23 01:46:21',1),(1,29,3031360,'2013-01-23 02:46:12',1),(1,59,3031360,'2013-01-23 02:46:12',1),(1,174,3031360,'2013-01-23 02:46:12',1),(1,14,3031360,'2013-01-23 02:46:12',1),(1,160,3031361,'2013-01-23 02:46:12',1),(1,133,3031361,'2013-01-23 02:46:12',1),(1,244,3031361,'2013-01-23 02:46:12',1),(1,88,3031361,'2013-01-23 02:46:12',1),(1,140,3031361,'2013-01-23 02:46:12',1),(1,227,3031361,'2013-01-23 02:46:12',1),(1,136,3031361,'2013-01-23 02:46:12',1),(1,79,3031361,'2013-01-23 02:46:12',1),(1,146,3031361,'2013-01-23 02:46:12',1),(1,43,3031361,'2013-01-23 02:46:12',1),(1,147,3031361,'2013-01-23 02:46:12',1),(1,45,3031361,'2013-01-23 02:46:12',1),(1,154,3031361,'2013-01-23 02:46:12',1),(1,28,3031361,'2013-01-23 02:46:12',1),(1,238,3031361,'2013-01-23 02:46:12',1),(1,57,3031361,'2013-01-23 02:46:12',1),(1,59,3031344,'2013-01-23 02:46:12',1),(1,69,3031344,'2013-01-23 02:46:12',1),(1,160,3031353,'2013-01-23 02:46:12',1),(1,133,3031353,'2013-01-23 02:46:12',1),(1,244,3031353,'2013-01-23 02:46:12',1),(1,88,3031353,'2013-01-23 02:46:12',1),(1,140,3031353,'2013-01-23 02:46:12',1),(1,227,3031353,'2013-01-23 02:46:12',1),(1,136,3031353,'2013-01-23 02:46:12',1),(1,79,3031353,'2013-01-23 02:46:12',1),(1,146,3031353,'2013-01-23 02:46:12',1),(1,43,3031353,'2013-01-23 02:46:12',1),(1,147,3031353,'2013-01-23 02:46:12',1),(1,45,3031353,'2013-01-23 02:46:12',1),(1,154,3031353,'2013-01-23 02:46:12',1),(1,28,3031353,'2013-01-23 02:46:12',1),(1,238,3031353,'2013-01-23 02:46:12',1),(1,57,3031353,'2013-01-23 02:46:12',1),(1,174,3031347,'2013-01-23 02:46:20',1),(1,14,3031347,'2013-01-23 02:46:20',1),(1,29,3031348,'2013-01-23 02:46:20',1),(1,59,3031348,'2013-01-23 02:46:20',1),(1,174,3031348,'2013-01-23 02:46:20',1),(1,14,3031348,'2013-01-23 02:46:20',1),(1,146,3031350,'2013-01-23 02:46:27',1),(1,43,3031350,'2013-01-23 02:46:27',1),(1,147,3031350,'2013-01-23 02:46:27',1),(1,45,3031350,'2013-01-23 02:46:27',1),(1,154,3031350,'2013-01-23 02:46:27',1),(1,28,3031350,'2013-01-23 02:46:27',1),(1,238,3031350,'2013-01-23 02:46:27',1),(1,57,3031350,'2013-01-23 02:46:27',1),(1,57,3031352,'2013-01-23 02:46:28',1),(1,154,3031355,'2013-01-23 02:46:35',1),(1,28,3031355,'2013-01-23 02:46:35',1),(1,194,3031354,'2013-01-23 02:46:35',1),(1,69,3031354,'2013-01-23 02:46:35',1),(1,146,3031354,'2013-01-23 02:46:35',1),(1,43,3031354,'2013-01-23 02:46:35',1),(1,147,3031354,'2013-01-23 02:46:35',1),(1,45,3031354,'2013-01-23 02:46:35',1),(1,154,3031354,'2013-01-23 02:46:35',1),(1,28,3031354,'2013-01-23 02:46:35',1),(1,194,3031356,'2013-01-23 02:46:35',1),(1,146,3031356,'2013-01-23 02:46:35',1),(1,43,3031356,'2013-01-23 02:46:35',1),(1,147,3031356,'2013-01-23 02:46:35',1),(1,45,3031356,'2013-01-23 02:46:35',1),(1,154,3031356,'2013-01-23 02:46:35',1),(1,28,3031356,'2013-01-23 02:46:35',1),(1,238,3031356,'2013-01-23 02:46:35',1),(1,194,3031357,'2013-01-23 02:46:35',1),(1,146,3031359,'2013-01-23 02:46:43',1),(1,43,3031359,'2013-01-23 02:46:43',1),(1,147,3031359,'2013-01-23 02:46:43',1),(1,45,3031359,'2013-01-23 02:46:43',1),(1,160,3031345,'2013-01-23 03:16:21',1),(1,133,3031345,'2013-01-23 03:16:21',1),(1,244,3031345,'2013-01-23 03:16:21',1),(1,88,3031345,'2013-01-23 03:16:21',1),(1,140,3031345,'2013-01-23 03:16:21',1),(1,227,3031345,'2013-01-23 03:16:21',1),(1,136,3031345,'2013-01-23 03:16:21',1),(1,79,3031345,'2013-01-23 03:16:21',1),(1,136,3031346,'2013-01-23 03:16:21',1),(1,138,3031346,'2013-01-23 03:16:21',1),(1,36,3031349,'2013-01-23 03:16:29',NULL),(1,29,3031349,'2013-01-23 03:16:29',NULL),(1,59,3031349,'2013-01-23 03:16:29',NULL),(1,174,3031349,'2013-01-23 03:16:29',NULL),(1,238,3031351,'2013-01-23 03:16:30',1),(1,205,3031358,'2013-01-23 03:16:46',1),(1,77,3031358,'2013-01-23 03:16:46',1),(1,69,3031358,'2013-01-23 03:16:46',1),(1,209,3031358,'2013-01-23 03:16:46',1),(1,138,3031445,'2013-01-23 03:46:11',1),(1,146,3031445,'2013-01-23 03:46:11',1),(1,41,3031445,'2013-01-23 03:46:11',1),(1,153,3031445,'2013-01-23 03:46:11',1),(1,220,3031439,'2013-01-23 03:46:11',1),(1,43,3031439,'2013-01-23 03:46:11',1),(1,147,3031439,'2013-01-23 03:46:11',1),(1,36,3031439,'2013-01-23 03:46:11',1),(1,19,3031439,'2013-01-23 03:46:11',1),(1,172,3031439,'2013-01-23 03:46:11',1),(1,63,3031439,'2013-01-23 03:46:11',1),(1,32,3031439,'2013-01-23 03:46:11',1),(1,136,3031440,'2013-01-23 03:46:19',1),(1,186,3031440,'2013-01-23 03:46:19',1),(1,238,3031440,'2013-01-23 03:46:19',1),(1,57,3031440,'2013-01-23 03:46:19',1),(1,167,3031442,'2013-01-23 03:46:19',1),(1,233,3031442,'2013-01-23 03:46:19',1),(1,167,3031443,'2013-01-23 03:46:19',1),(1,233,3031443,'2013-01-23 03:46:19',1),(1,79,3031447,'2013-01-23 03:46:27',1),(1,239,3031447,'2013-01-23 03:46:27',1),(1,45,3031447,'2013-01-23 03:46:27',1),(1,12,3031447,'2013-01-23 03:46:27',1),(1,144,3031448,'2013-01-23 03:46:27',1),(1,59,3031448,'2013-01-23 03:46:27',1),(1,152,3031449,'2013-01-23 03:46:27',1),(1,29,3031449,'2013-01-23 03:46:27',1),(1,36,3031452,'2013-01-23 03:46:35',1),(1,19,3031452,'2013-01-23 03:46:35',1),(1,172,3031452,'2013-01-23 03:46:35',1),(1,63,3031452,'2013-01-23 03:46:35',1),(1,57,3031456,'2013-01-23 03:46:52',1),(1,234,3031456,'2013-01-23 03:46:52',1),(1,178,3031446,'2013-01-23 04:16:21',1),(1,83,3031446,'2013-01-23 04:16:21',1),(1,3,3031454,'2013-01-23 04:16:38',1),(1,220,3031454,'2013-01-23 04:16:38',1),(1,43,3031454,'2013-01-23 04:16:38',1),(1,147,3031454,'2013-01-23 04:16:38',1),(1,36,3031454,'2013-01-23 04:16:38',1),(1,19,3031454,'2013-01-23 04:16:38',1),(1,172,3031454,'2013-01-23 04:16:38',1),(1,63,3031454,'2013-01-23 04:16:38',1),(1,136,3031455,'2013-01-23 04:16:45',1),(1,150,3031455,'2013-01-23 04:16:45',1),(1,186,3031455,'2013-01-23 04:16:45',1),(1,238,3031455,'2013-01-23 04:16:45',1),(1,79,3031444,'2013-01-23 04:46:15',NULL),(1,239,3031444,'2013-01-23 04:46:15',NULL),(1,45,3031444,'2013-01-23 04:46:15',NULL),(1,12,3031444,'2013-01-23 04:46:15',NULL),(1,167,3031444,'2013-01-23 04:46:15',NULL),(1,233,3031444,'2013-01-23 04:46:15',NULL),(1,205,3031444,'2013-01-23 04:46:15',NULL),(1,77,3031444,'2013-01-23 04:46:15',NULL),(1,138,3031450,'2013-01-23 04:46:31',NULL),(1,146,3031450,'2013-01-23 04:46:31',NULL),(1,41,3031450,'2013-01-23 04:46:31',NULL),(1,153,3031450,'2013-01-23 04:46:31',NULL),(1,3,3031462,'2013-01-23 04:46:48',1),(1,220,3031462,'2013-01-23 04:46:48',1),(1,43,3031462,'2013-01-23 04:46:48',1),(1,147,3031462,'2013-01-23 04:46:48',1),(1,177,3031462,'2013-01-23 04:46:48',1),(1,36,3031462,'2013-01-23 04:46:48',1),(1,19,3031462,'2013-01-23 04:46:48',1),(1,172,3031462,'2013-01-23 04:46:48',1),(1,79,3031459,'2013-01-23 04:46:55',1),(1,239,3031459,'2013-01-23 04:46:55',1),(1,45,3031459,'2013-01-23 04:46:55',1),(1,12,3031459,'2013-01-23 04:46:55',1),(1,167,3031459,'2013-01-23 04:46:55',1),(1,233,3031459,'2013-01-23 04:46:55',1),(1,248,3031459,'2013-01-23 04:46:55',1),(1,205,3031459,'2013-01-23 04:46:55',1),(1,3,3031460,'2013-01-23 05:16:57',NULL),(1,220,3031460,'2013-01-23 05:16:57',NULL),(1,43,3031460,'2013-01-23 05:16:57',NULL),(1,147,3031460,'2013-01-23 05:16:57',NULL),(1,177,3031460,'2013-01-23 05:16:57',NULL),(1,36,3031460,'2013-01-23 05:16:57',NULL),(1,19,3031460,'2013-01-23 05:16:57',NULL),(1,172,3031460,'2013-01-23 05:16:57',NULL),(1,35,3031451,'2013-01-23 06:46:47',1),(1,39,3031457,'2013-01-23 06:46:55',1),(1,31,3031453,'2013-01-23 07:16:50',1),(1,35,3031458,'2013-01-23 07:17:00',1),(1,247,3031438,'2013-01-23 09:16:33',1),(1,249,3031438,'2013-01-23 09:16:33',1),(1,94,3031438,'2013-01-23 09:16:33',1),(1,25,3031438,'2013-01-23 09:16:33',1),(1,113,3031438,'2013-01-23 09:16:33',1),(1,27,3031438,'2013-01-23 09:16:33',1),(1,237,3031438,'2013-01-23 09:16:33',1),(1,246,3031438,'2013-01-23 09:16:33',1),(1,149,3031438,'2013-01-23 09:16:33',1),(1,119,3031438,'2013-01-23 09:16:33',1),(1,137,3031438,'2013-01-23 09:16:33',1),(1,42,3031438,'2013-01-23 09:16:33',1),(1,150,3031438,'2013-01-23 09:16:33',1),(1,126,3031438,'2013-01-23 09:16:33',1),(1,180,3031438,'2013-01-23 09:16:33',1),(1,195,3031438,'2013-01-23 09:16:33',1); +/*!40000 ALTER TABLE `ak_on_nodes` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `akrr_default_walllimit` +-- + +DROP TABLE IF EXISTS `akrr_default_walllimit`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `akrr_default_walllimit` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `resource` text, + `app` text, + `walltime_limit` int(11) DEFAULT NULL, + `resource_param` text, + `app_param` text, + `last_update` datetime NOT NULL, + `comments` text NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `resource` (`resource`(100),`app`(100),`resource_param`(100),`app_param`(100)) +) ENGINE=MyISAM AUTO_INCREMENT=43 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `akrr_default_walllimit` +-- + +LOCK TABLES `akrr_default_walllimit` WRITE; +/*!40000 ALTER TABLE `akrr_default_walllimit` DISABLE KEYS */; +INSERT INTO `akrr_default_walllimit` VALUES (30,'UBHPC_12core','xdmod.app.md.namd',30,'{\"nnodes\":8}','{}','2015-08-24 14:21:35',''),(22,'UBHPC_8core','xdmod.app.astro.enzo',20,'{\"nnodes\":2}','{}','2015-04-01 14:03:38',''),(27,'UBHPC_12core','xdmod.app.md.namd',30,'{\"nnodes\":2}','{}','2015-08-24 14:20:13',''); +/*!40000 ALTER TABLE `akrr_default_walllimit` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Temporary table structure for view `akrr_err_distribution_alltime` +-- + +DROP TABLE IF EXISTS `akrr_err_distribution_alltime`; +/*!50001 DROP VIEW IF EXISTS `akrr_err_distribution_alltime`*/; +SET @saved_cs_client = @@character_set_client; +SET character_set_client = utf8; +/*!50001 CREATE VIEW `akrr_err_distribution_alltime` AS SELECT + 1 AS `Rows`, + 1 AS `err_regexp_id`, + 1 AS `err_msg`*/; +SET character_set_client = @saved_cs_client; + +-- +-- Table structure for table `akrr_err_regexp` +-- + +DROP TABLE IF EXISTS `akrr_err_regexp`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `akrr_err_regexp` ( + `id` int(8) NOT NULL AUTO_INCREMENT, + `active` tinyint(1) NOT NULL DEFAULT '0', + `resource` varchar(255) NOT NULL DEFAULT '*', + `app` varchar(255) NOT NULL DEFAULT '*', + `reg_exp` text NOT NULL, + `reg_exp_opt` varchar(255) NOT NULL DEFAULT '', + `source` varchar(255) NOT NULL DEFAULT '*' COMMENT 'where reg_exp will be applied', + `err_msg` text NOT NULL COMMENT 'Brief error message which will reported upstream', + `description` text NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM AUTO_INCREMENT=1000002 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `akrr_err_regexp` +-- + +LOCK TABLES `akrr_err_regexp` WRITE; +/*!40000 ALTER TABLE `akrr_err_regexp` DISABLE KEYS */; +/*!40000 ALTER TABLE `akrr_err_regexp` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Temporary table structure for view `akrr_erran` +-- + +DROP TABLE IF EXISTS `akrr_erran`; +/*!50001 DROP VIEW IF EXISTS `akrr_erran`*/; +SET @saved_cs_client = @@character_set_client; +SET character_set_client = utf8; +/*!50001 CREATE VIEW `akrr_erran` AS SELECT + 1 AS `task_id`, + 1 AS `time_finished`, + 1 AS `resource`, + 1 AS `app`, + 1 AS `resource_param`, + 1 AS `status`, + 1 AS `walltime`, + 1 AS `body`, + 1 AS `appstdout`, + 1 AS `stderr`, + 1 AS `stdout`*/; +SET character_set_client = @saved_cs_client; + +-- +-- Temporary table structure for view `akrr_erran2` +-- + +DROP TABLE IF EXISTS `akrr_erran2`; +/*!50001 DROP VIEW IF EXISTS `akrr_erran2`*/; +SET @saved_cs_client = @@character_set_client; +SET character_set_client = utf8; +/*!50001 CREATE VIEW `akrr_erran2` AS SELECT + 1 AS `task_id`, + 1 AS `time_finished`, + 1 AS `resource`, + 1 AS `app`, + 1 AS `resource_param`, + 1 AS `status`, + 1 AS `err_regexp_id`, + 1 AS `err_msg`, + 1 AS `walltime`, + 1 AS `akrr_status`, + 1 AS `akrr_status_info`, + 1 AS `appstdout`, + 1 AS `stderr`, + 1 AS `stdout`, + 1 AS `ii_body`, + 1 AS `ii_msg`*/; +SET character_set_client = @saved_cs_client; + +-- +-- Table structure for table `akrr_errmsg` +-- + +DROP TABLE IF EXISTS `akrr_errmsg`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `akrr_errmsg` ( + `task_id` int(11) DEFAULT NULL, + `err_regexp_id` int(11) NOT NULL DEFAULT '1', + `appstdout` longtext, + `stderr` longtext, + `stdout` longtext, + `taskexeclog` longtext, + UNIQUE KEY `task_id` (`task_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `akrr_errmsg` +-- + +LOCK TABLES `akrr_errmsg` WRITE; +/*!40000 ALTER TABLE `akrr_errmsg` DISABLE KEYS */; +INSERT INTO `akrr_errmsg` VALUES (3807152,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807153,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807154,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807155,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.C9ulsGSS4\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807156,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.RSSvKM6UX\nAKRR_NODELIST\ncpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17 cpn-u25-17\nSLURM_NODELIST\ncpn-u25-17\nGMX_NODELIST\ncpn-u25-17:cpus=32\ncpn-u25-17.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nTotal attempt to launch GAMESS is 1\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807158,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u23-28.cbls.ccr.buffalo.edu\ncpn-u24-20.cbls.ccr.buffalo.edu\ncpn-u25-34.cbls.ccr.buffalo.edu\ncpn-u25-27.cbls.ccr.buffalo.edu\ncpn-u25-21.cbls.ccr.buffalo.edu\ncpn-u24-37.cbls.ccr.buffalo.edu\ncpn-u25-36.cbls.ccr.buffalo.edu\ncpn-u23-36.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807157,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.ujrFDDJtg\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807161,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-26.cbls.ccr.buffalo.edu\ncpn-u24-17.cbls.ccr.buffalo.edu\ncpn-u24-19.cbls.ccr.buffalo.edu\ncpn-u24-26.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807159,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807160,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.oPaEhWos7\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807162,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.vSGqATr97\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807164,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-27.cbls.ccr.buffalo.edu\ncpn-u22-32.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807166,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.Z3dvwweeE\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807163,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nslurmstepd: error: *** JOB 2202554 ON cpn-u22-32 CANCELLED AT 2020-04-01T03:26:24 DUE TO TIME LIMIT ***\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.xcBPzlX56\nAKRR_NODELIST\ncpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 c','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807168,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.7WOH3MnDa\nAKRR_NODELIST\ncpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32 cpn-u22-32\nSLURM_NODELIST\ncpn-u22-[27,32]\nGMX_NODELIST\ncpn-u22-27:cpus=32 cpn-u22-32:cpus=32\ncpn-u22-27.cbls.ccr.buffalo.edu\n250 32000 32 128\ncpn-u22-32.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nAt','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807165,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.3R6Xy10ea\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807167,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.0Q7jtltFV\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807169,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.lErFG04S2\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807196,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 4.192 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.vBpBBk3FP\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807192,1,'Does Not Present','Does Not Present','Does Not Present','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807185,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 4.337 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.YHXdY35SE\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807208,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\nsrun: error: Unable to create step for job 2203698: Job/step already completing or completed\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.W1wTcI58X\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807181,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 6.046 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.dDJZsIZAj\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807191,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.jSTkcokty\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807193,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.tJH0uzg7o\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807195,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.729 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.kNmare6KC\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807194,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.avOvRqIbj\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807242,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.oXyIOEGGa\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807243,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.0Fe0acDsa\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807244,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.vo8jzNNiX\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807247,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807248,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807245,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.kmWJ6Ocha\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807249,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.oWs2cNcIo\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807250,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.L5jGrjldl\nAKRR_NODELIST\ncpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31\nSLURM_NODELIST\ncpn-u22-31\nGMX_NODELIST\ncpn-u22-31:cpus=32\ncpn-u22-31.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nTotal attempt to launch GAMESS is 1\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807251,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.Ni0WA10am\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807253,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807254,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.9h1HetnJT\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807255,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-24.cbls.ccr.buffalo.edu\ncpn-u24-20.cbls.ccr.buffalo.edu\ncpn-u22-31.cbls.ccr.buffalo.edu\ncpn-u24-38.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807256,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.s2U2XdMn1\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807258,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u24-28.cbls.ccr.buffalo.edu\ncpn-u24-37.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807259,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.JxtBJQRHw\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807260,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.FwhSP8llw\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807261,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.IFSPOieLz\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807257,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.7A9bXwDst\nAKRR_NODELIST\ncpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u24-24 cpn-u24-24 cpn-u24-24 cpn-u24-24 cpn-u24-24 cpn-u24-24 cpn-u24-24 cpn-u24-24 cpn-u24-24 cpn-u24-24 cpn-u24-24 cpn-u24-24 cpn-u24-24 cpn-u24-24 cpn-u24-24 cpn-u24-24 cpn-u24-24 cpn-u24-24 cpn-u24-24 c','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807246,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807262,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nslurmstepd: error: *** JOB 2265484 ON cpn-u24-31 CANCELLED AT 2020-04-03T04:04:58 DUE TO TIME LIMIT ***\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.9bG8o2Pae\nAKRR_NODELIST\ncpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-31 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37\nSLURM_NODELIST\ncpn-u24-[31,37]\nGMX_NODELIST\ncpn-u24-31:cpus=32 cpn-u24-37:cpus=32\ncpn-u24-31.cbls.ccr.buffalo.edu\n250 32000 32 128\ncpn-u24-37.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807263,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.jW9HFgbtU\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807252,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-24.cbls.ccr.buffalo.edu\ncpn-u24-31.cbls.ccr.buffalo.edu\ncpn-u24-28.cbls.ccr.buffalo.edu\ncpn-u23-36.cbls.ccr.buffalo.edu\ncpn-u24-24.cbls.ccr.buffalo.edu\ncpn-u22-31.cbls.ccr.buffalo.edu\ncpn-u24-37.cbls.ccr.buffalo.edu\ncpn-u25-36.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807278,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.589 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.qceqkIqD7\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807303,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\nslurmstepd: error: *** JOB 2296093 ON cpn-d07-25-02 CANCELLED AT 2020-04-03T19:36:30 DUE TO TIME LIMIT ***\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.JalpgJWeN\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ncat: /gpfs/scra'),(3807275,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 3.929 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.yuZAooTYJ\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807289,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 3.573 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.DwhITVVSh\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807290,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.5ka3JLqA7\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807284,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.PyjiC8kn1\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807288,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.651 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.97WBqYO5O\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807287,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.K4echjKYY\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807286,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.qgIMo7L45\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807337,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.BeHGHdpWj\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807339,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.7VBggeGja\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807336,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.DRzP1lZT1\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807341,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807342,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807338,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.jzotcVCaQ\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807340,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807343,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.JgLTsnnwL\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807344,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.fQRcIPWg8\nAKRR_NODELIST\ncpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25 cpn-u25-25\nSLURM_NODELIST\ncpn-u25-25\nGMX_NODELIST\ncpn-u25-25:cpus=32\ncpn-u25-25.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nTotal attempt to launch GAMESS is 1\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807345,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.6NlqCOYzB\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807347,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807348,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.LFYlMf3JN\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807346,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-33.cbls.ccr.buffalo.edu\ncpn-u23-28.cbls.ccr.buffalo.edu\ncpn-u23-33.cbls.ccr.buffalo.edu\ncpn-u25-18.cbls.ccr.buffalo.edu\ncpn-u24-29.cbls.ccr.buffalo.edu\ncpn-u23-35.cbls.ccr.buffalo.edu\ncpn-u23-38.cbls.ccr.buffalo.edu\ncpn-u24-35.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807349,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-33.cbls.ccr.buffalo.edu\ncpn-u23-28.cbls.ccr.buffalo.edu\ncpn-u23-33.cbls.ccr.buffalo.edu\ncpn-u23-38.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807350,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.H7xt6gvf9\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807352,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u23-28.cbls.ccr.buffalo.edu\ncpn-u23-33.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807354,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.dHyB01IIw\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807351,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nslurmstepd: error: *** JOB 2417287 ON cpn-u23-28 CANCELLED AT 2020-04-05T03:26:27 DUE TO TIME LIMIT ***\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.xGwjtAjZG\nAKRR_NODELIST\ncpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-33 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 c','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807353,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.EG7gmGUuF\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807355,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.PQbSBwgrR\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807356,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nslurmstepd: error: *** JOB 2419395 ON cpn-u23-28 CANCELLED AT 2020-04-05T04:04:50 DUE TO TIME LIMIT ***\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.qrWeTvxgb\nAKRR_NODELIST\ncpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-28 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32 cpn-u23-32\nSLURM_NODELIST\ncpn-u23-[28,32]\nGMX_NODELIST\ncpn-u23-28:cpus=32 cpn-u23-32:cpus=32\ncpn-u23-28.cbls.ccr.buffalo.edu\n250 32000 32 128\ncpn-u23-32.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807357,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.4bq78h7A3\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807369,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.666 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.UjYHDLvy9\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807371,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 3.893 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.RzCvlLLTL\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ncat: /gpfs/scra'),(3807379,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.bn9jL2BKZ\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807380,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.6ibBfgMmT\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ncat: /gpfs/scra'),(3807384,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.SsZbLXdXe\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807381,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 6.018 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.bY36e0yP5\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ncat: /gpfs/scra'),(3807382,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 3.863 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.GEWCjzMeD\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ncat: /gpfs/scra'),(3807383,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\nsrun: Job 2450823 step creation temporarily disabled, retrying\nsrun: Step created for job 2450823\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.V1v0vg0EH\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807398,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.yb2SDeOn8\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807430,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.CKK9FrdzU\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807431,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.lEDf8cvcl\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807433,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.yejzd4DMq\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807432,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.HYAGzjcK1\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807434,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807435,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807436,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807437,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.TgCYmi53f\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807438,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.CO1LVOTfM\nAKRR_NODELIST\ncpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28\nSLURM_NODELIST\ncpn-u22-28\nGMX_NODELIST\ncpn-u22-28:cpus=32\ncpn-u22-28.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nTotal attempt to launch GAMESS is 1\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807440,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-25.cbls.ccr.buffalo.edu\ncpn-u23-18.cbls.ccr.buffalo.edu\ncpn-u22-33.cbls.ccr.buffalo.edu\ncpn-u23-17.cbls.ccr.buffalo.edu\ncpn-u22-28.cbls.ccr.buffalo.edu\ncpn-u23-20.cbls.ccr.buffalo.edu\ncpn-u22-37.cbls.ccr.buffalo.edu\ncpn-u23-19.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807439,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.niXH4Q26F\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807443,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-25.cbls.ccr.buffalo.edu\ncpn-u22-33.cbls.ccr.buffalo.edu\ncpn-u22-27.cbls.ccr.buffalo.edu\ncpn-u22-28.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807441,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807442,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.W6rpwM6GB\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807444,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.mGuAd07cd\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807446,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-25.cbls.ccr.buffalo.edu\ncpn-u22-27.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807448,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.rUx957reE\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807445,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.Tp0vkYlFe\nAKRR_NODELIST\ncpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 c','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807450,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.hG6d9Py2y\nAKRR_NODELIST\ncpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27\nSLURM_NODELIST\ncpn-u22-[25,27]\nGMX_NODELIST\ncpn-u22-25:cpus=32 cpn-u22-27:cpus=32\ncpn-u22-25.cbls.ccr.buffalo.edu\n250 32000 32 128\ncpn-u22-27.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nAt','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807447,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.4mfOsAEJV\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807449,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.k8hrUSLX7\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807451,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.yzfjUtGPh\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807463,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.933 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.FdrGlbXnQ\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807468,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.541 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.V8mekusQt\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807472,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.LIcOSTyHT\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807475,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 4.357 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.YoXBaxjF3\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807478,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.UG3llREB4\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807476,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.7SGSO4zyP\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807477,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.oEBvlEoxe\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807474,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.754 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.uZXXsU2xp\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807493,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\nsrun: Job 2498406 step creation temporarily disabled, retrying\nsrun: Step created for job 2498406\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.HFsvHTHPr\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807524,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.IU0erdaz5\nDeleting temporary files\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsF'),(3807526,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.0aBEiydQ3\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807527,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.hvVHgGMEk\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807525,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.1ArpFBsH9\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807528,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807529,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807530,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807531,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.l6UKZ0hby\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807532,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.T3MGJOovs\nAKRR_NODELIST\ncpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20\nSLURM_NODELIST\ncpn-u22-20\nGMX_NODELIST\ncpn-u22-20:cpus=32\ncpn-u22-20.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nTotal attempt to launch GAMESS is 1\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsF'),(3807534,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-20.cbls.ccr.buffalo.edu\ncpn-u22-23.cbls.ccr.buffalo.edu\ncpn-u22-24.cbls.ccr.buffalo.edu\ncpn-u24-17.cbls.ccr.buffalo.edu\ncpn-u25-19.cbls.ccr.buffalo.edu\ncpn-u24-23.cbls.ccr.buffalo.edu\ncpn-u24-31.cbls.ccr.buffalo.edu\ncpn-u24-29.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807533,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.Rl3rIaPdr\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807537,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-20.cbls.ccr.buffalo.edu\ncpn-u22-24.cbls.ccr.buffalo.edu\ncpn-u22-23.cbls.ccr.buffalo.edu\ncpn-u24-17.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807535,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807536,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.mFwqNb65J\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807538,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.N8moqVF3X\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807540,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u24-23.cbls.ccr.buffalo.edu\ncpn-u24-29.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807542,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.JH7Xgw3Qq\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807539,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nslurmstepd: error: *** JOB 2506078 ON cpn-u22-20 CANCELLED AT 2020-04-09T03:26:48 DUE TO TIME LIMIT ***\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.9eZN8vdzo\nAKRR_NODELIST\ncpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 c','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807544,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.d7D4Tzgki\nAKRR_NODELIST\ncpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-20 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23 cpn-u22-23\nSLURM_NODELIST\ncpn-u22-[20,23]\nGMX_NODELIST\ncpn-u22-20:cpus=32 cpn-u22-23:cpus=32\ncpn-u22-20.cbls.ccr.buffalo.edu\n250 32000 32 128\ncpn-u22-23.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nAt','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807541,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.6yToo62ZS\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807543,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.r9dADGZ6v\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807545,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.eKbfVV6P8\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807557,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 10.883 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> sched','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\nslurmstepd: error: *** JOB 2506328 ON cpn-d09-18-01 CANCELLED AT 2020-04-09T10:44:51 DUE TO TIME LIMIT ***\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.6rm8G9FPz\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3807561,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 6.359 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.jHwKvZJVw\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3807569,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.LeKVleykO\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3807568,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 3.696 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.D8rHLG4Ds\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3807567,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.2lQB6Bk9T\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3807584,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.nqb8fEKqA\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3807570,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==','56: slurmstepd: error: couldn\'t chdir to `/gpfs/scratch/xdtas/edge/nwchem/2020.04.09.11.50.00.968115\': Stale file handle: going to /tmp instead\n The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\nslurmstepd: error: couldn\'t chdir to `/gpfs/scratch/xdtas/edge/nwchem.xynhCKwuV\': Stale file handle: going to /tmp instead\nslurmstepd: error: *** JOB 2506678 ON cpn-d09-33-02 CANCELLED AT 2020-04-09T12:57:05 DUE TO TIME LIMIT ***','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.xynhCKwuV\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3807572,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\n/bin/sh: line 37: cd: /gpfs/scratch/xdtas/edge/namd.1PSQY91Su: Not a directory\n/bin/sh: line 37: cd: /gpfs/scratch/xdtas/edge/namd.1PSQY91Su: Not a directory\nC','56: slurmstepd: error: couldn\'t chdir to `/gpfs/scratch/xdtas/edge/namd/2020.04.09.11.50.00.988662\': Stale file handle: going to /tmp instead\n\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.1PSQY91Su\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3807571,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==','56: slurmstepd: error: couldn\'t chdir to `/gpfs/scratch/xdtas/edge/nwchem/2020.04.09.11.50.00.978344\': Stale file handle: going to /tmp instead\n The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\nslurmstepd: error: couldn\'t chdir to `/gpfs/scratch/xdtas/edge/nwchem.mxJBq2Il6\': Stale file handle: going to /tmp instead\nslurmstepd: error: couldn\'t chdir to `/gpfs/scratch/xdtas/edge/nwchem/2020.04.09.11.50.00.978344\': Stale f','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.mxJBq2Il6\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3807618,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.vu18NDLUp\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807621,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.4umuqkFVD\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807619,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.rIYxMWsdl\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807620,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.GAWlNOkk6\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807624,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807623,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807625,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.xK7RPmwoo\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807626,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.bqrv9l0m1\nAKRR_NODELIST\ncpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31 cpn-u22-31\nSLURM_NODELIST\ncpn-u22-31\nGMX_NODELIST\ncpn-u22-31:cpus=32\ncpn-u22-31.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nTotal attempt to launch GAMESS is 1\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807622,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807627,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.eclJLUNAv\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807628,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-31.cbls.ccr.buffalo.edu\ncpn-u23-21.cbls.ccr.buffalo.edu\ncpn-u23-23.cbls.ccr.buffalo.edu\ncpn-u24-29.cbls.ccr.buffalo.edu\ncpn-u23-28.cbls.ccr.buffalo.edu\ncpn-u22-36.cbls.ccr.buffalo.edu\ncpn-u24-20.cbls.ccr.buffalo.edu\ncpn-u22-35.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807631,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u24-37.cbls.ccr.buffalo.edu\ncpn-u25-32.cbls.ccr.buffalo.edu\ncpn-u25-21.cbls.ccr.buffalo.edu\ncpn-u25-29.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807632,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.5hrueQ2GA\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807629,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807630,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.68UaKtKkV\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807636,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.1HjmA3VYP\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807633,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nslurmstepd: error: *** JOB 2513004 ON cpn-u24-37 CANCELLED AT 2020-04-11T03:33:08 DUE TO TIME LIMIT ***\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.8CEBDXHXz\nAKRR_NODELIST\ncpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-21 cpn-u25-21 cpn-u25-21 cpn-u25-21 cpn-u25-21 cpn-u25-21 cpn-u25-21 cpn-u25-21 cpn-u25-21 cpn-u25-21 cpn-u25-21 cpn-u25-21 cpn-u25-21 cpn-u25-21 cpn-u25-21 cpn-u25-21 cpn-u25-21 cpn-u25-21 cpn-u25-21 c','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807634,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-30.cbls.ccr.buffalo.edu\ncpn-u23-25.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807635,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.MTmKw22m3\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807637,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.YgdiRaQ7M\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807638,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nslurmstepd: error: *** JOB 2513011 ON cpn-u22-30 CANCELLED AT 2020-04-11T04:04:39 DUE TO TIME LIMIT ***\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.iUifdhjN9\nAKRR_NODELIST\ncpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25\nSLURM_NODELIST\ncpn-u22-30,cpn-u23-25\nGMX_NODELIST\ncpn-u22-30:cpus=32 cpn-u23-25:cpus=32\ncpn-u22-30.cbls.ccr.buffalo.edu\n250 32000 32 128\ncpn-u23-25.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807639,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.XWOJ0CFl5\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807651,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.735 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.W26Ee1ptE\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807654,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 4.273 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.LNKxuml0k\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807660,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.L8YsSDa3E\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807665,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> error 62 attaching to node:\nTimeout waiting for node-program to connect\nCharmrun> IBVERBS version of charmrun\n','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.l4FkIZbOy\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807664,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.yMgy5Gf2v\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807666,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 3.970 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.c0n5VotW2\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807662,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.HNYArY8zX\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807663,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.BX2RJYCw1\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807678,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.3SKFduM50\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807712,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.3Ptz8TvFr\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807715,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.3Qtd4TYNW\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807713,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.KsIAjg5nY\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807714,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.WJc0R2GLN\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807717,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807718,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807719,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.AduDu4cko\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807720,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.XLNXiHHJ5\nAKRR_NODELIST\ncpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35\nSLURM_NODELIST\ncpn-u25-35\nGMX_NODELIST\ncpn-u25-35:cpus=32\ncpn-u25-35.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nTotal attempt to launch GAMESS is 1\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807721,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.7WxhGe6Pe\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807725,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u25-35.cbls.ccr.buffalo.edu\ncpn-u25-36.cbls.ccr.buffalo.edu\ncpn-u25-38.cbls.ccr.buffalo.edu\ncpn-u25-37.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807723,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807724,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.7qqZ9VddO\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807726,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.Q7F5lFXBC\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807727,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nslurmstepd: error: *** JOB 2517301 ON cpn-u25-35 CANCELLED AT 2020-04-13T03:26:46 DUE TO TIME LIMIT ***\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.iRCym4ut2\nAKRR_NODELIST\ncpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-37 cpn-u25-37 cpn-u25-37 cpn-u25-37 cpn-u25-37 cpn-u25-37 cpn-u25-37 cpn-u25-37 cpn-u25-37 cpn-u25-37 cpn-u25-37 cpn-u25-37 cpn-u25-37 cpn-u25-37 cpn-u25-37 cpn-u25-37 cpn-u25-37 cpn-u25-37 cpn-u25-37 c','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807728,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u25-35.cbls.ccr.buffalo.edu\ncpn-u25-36.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807729,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.LTNQEUNc3\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807730,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.OMNToFppt\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807731,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.Z2uqTiDi6\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807732,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nslurmstepd: error: *** JOB 2517439 ON cpn-u25-35 CANCELLED AT 2020-04-13T04:04:48 DUE TO TIME LIMIT ***\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.tXlXtxte2\nAKRR_NODELIST\ncpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-35 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36 cpn-u25-36\nSLURM_NODELIST\ncpn-u25-[35-36]\nGMX_NODELIST\ncpn-u25-35:cpus=32 cpn-u25-36:cpus=32\ncpn-u25-35.cbls.ccr.buffalo.edu\n250 32000 32 128\ncpn-u25-36.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807733,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.DDl1e2hKU\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807716,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807722,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u23-35.cbls.ccr.buffalo.edu\ncpn-u25-36.cbls.ccr.buffalo.edu\ncpn-u25-35.cbls.ccr.buffalo.edu\ncpn-u25-38.cbls.ccr.buffalo.edu\ncpn-u25-37.cbls.ccr.buffalo.edu\ncpn-u24-25.cbls.ccr.buffalo.edu\ncpn-u23-36.cbls.ccr.buffalo.edu\ncpn-u24-26.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807745,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.993 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.fVE4fcoyk\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3807747,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.237 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.pa3Ym8YdX\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807755,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.7WDQfindp\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807759,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 3.495 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.8SDU3cQYM\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807760,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\nsrun: error: Unable to create step for job 2519998: Job/step already completing or completed\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.CQUegw2yo\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807758,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.774 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.dYura6Tqw\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807757,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.qLJxBQVAn\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807756,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.mZvW94vGq\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807775,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.9pFvVImSo\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807806,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.qgQde4vxt\nDeleting temporary files\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsF'),(3807809,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.2gSbOXMkr\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807808,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.6k2g7chKX\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807807,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.20jIfrmO0\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807810,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807811,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807812,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807813,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.iuVntyD3F\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807814,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.ekcVj2wOy\nAKRR_NODELIST\ncpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36 cpn-u23-36\nSLURM_NODELIST\ncpn-u23-36\nGMX_NODELIST\ncpn-u23-36:cpus=32\ncpn-u23-36.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nAttempt to launch GAMESS: 1\nAttempt to launch GAMESS: 2\nAttempt to launch GAMESS: 3\nAttempt to launch GAMESS: 4\nAttempt to launch GAMESS: 5\nAttempt to launch GAMESS: 6\nTotal attempt to launch GAMESS is 6\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807819,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u25-23.cbls.ccr.buffalo.edu\ncpn-u25-24.cbls.ccr.buffalo.edu\ncpn-u25-26.cbls.ccr.buffalo.edu\ncpn-u25-25.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807815,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.YuTo1D7DZ\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807820,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.9AYKQ1mm6\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807817,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807818,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.IkzEpaS4M\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807816,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-35.cbls.ccr.buffalo.edu\ncpn-u23-33.cbls.ccr.buffalo.edu\ncpn-u23-23.cbls.ccr.buffalo.edu\ncpn-u23-32.cbls.ccr.buffalo.edu\ncpn-u23-30.cbls.ccr.buffalo.edu\ncpn-u23-29.cbls.ccr.buffalo.edu\ncpn-u23-31.cbls.ccr.buffalo.edu\ncpn-u23-25.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807821,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nslurmstepd: error: *** JOB 2636043 ON cpn-u24-37 CANCELLED AT 2020-04-15T03:27:52 DUE TO TIME LIMIT ***\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.UZjUcnA4f\nAKRR_NODELIST\ncpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u25-16 cpn-u25-16 cpn-u25-16 cpn-u25-16 cpn-u25-16 cpn-u25-16 cpn-u25-16 cpn-u25-16 cpn-u25-16 cpn-u25-16 cpn-u25-16 cpn-u25-16 cpn-u25-16 cpn-u25-16 cpn-u25-16 cpn-u25-16 cpn-u25-16 cpn-u25-16 cpn-u25-16 c','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807822,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u24-37.cbls.ccr.buffalo.edu\ncpn-u24-38.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807823,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.hhPEWjsY7\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807824,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.oeNSfYFOn\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807826,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.Ls1abrxWM\nAKRR_NODELIST\ncpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-37 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38 cpn-u24-38\nSLURM_NODELIST\ncpn-u24-[37-38]\nGMX_NODELIST\ncpn-u24-37:cpus=32 cpn-u24-38:cpus=32\ncpn-u24-37.cbls.ccr.buffalo.edu\n250 32000 32 128\ncpn-u24-38.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nAt','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807827,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.tKxBqDFh3\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807825,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.cxC4F1mlc\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807839,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.574 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.PRJlzXnpS\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807844,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.032 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.CZvePtpgv\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807848,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.yZ2wEcL5X\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ncat: /gpfs/scra'),(3807851,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 6.004 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.RFX7XeWIj\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3807852,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 3.956 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.PUXW4Ri82\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edg'),(3807853,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\nsrun: error: Unable to create step for job 2636428: Job/step already completing or completed\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.rsph8kPic\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807854,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.tXTEy72f0\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807850,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.dVYZJeRF7\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807869,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.O6MLqHiD1\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807900,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.pCNCy4Q7v\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807902,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.8H1LaCIYO\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807903,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.wiHMNnOFA\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807901,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.mIA6QtAYK\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807904,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807905,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807906,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807907,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.hGuQU8hWG\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807908,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.wddQSW7er\nAKRR_NODELIST\ncpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37\nSLURM_NODELIST\ncpn-u22-37\nGMX_NODELIST\ncpn-u22-37:cpus=32\ncpn-u22-37.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nTotal attempt to launch GAMESS is 1\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807909,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.YwSgN3wT1\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807913,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-37.cbls.ccr.buffalo.edu\ncpn-u23-19.cbls.ccr.buffalo.edu\ncpn-u23-21.cbls.ccr.buffalo.edu\ncpn-u23-25.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807911,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807912,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.NzcVYMrCW\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807914,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.wbolPZabJ\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807915,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nslurmstepd: error: *** JOB 2645635 ON cpn-u22-37 CANCELLED AT 2020-04-17T03:28:45 DUE TO TIME LIMIT ***\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.wNyDTtHpo\nAKRR_NODELIST\ncpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-21 cpn-u23-21 cpn-u23-21 cpn-u23-21 cpn-u23-21 cpn-u23-21 cpn-u23-21 cpn-u23-21 cpn-u23-21 cpn-u23-21 cpn-u23-21 cpn-u23-21 cpn-u23-21 cpn-u23-21 cpn-u23-21 cpn-u23-21 cpn-u23-21 cpn-u23-21 cpn-u23-21 c','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807916,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-37.cbls.ccr.buffalo.edu\ncpn-u23-19.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807917,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.w3bVldK59\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807918,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.zaIv2l6n8\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807919,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.Fjis8SjGk\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807920,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.xomwYKTG0\nAKRR_NODELIST\ncpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19 cpn-u23-19\nSLURM_NODELIST\ncpn-u22-37,cpn-u23-19\nGMX_NODELIST\ncpn-u22-37:cpus=32 cpn-u23-19:cpus=32\ncpn-u22-37.cbls.ccr.buffalo.edu\n250 32000 32 128\ncpn-u23-19.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807921,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.JQQXuEiA7\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807910,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-18.cbls.ccr.buffalo.edu\ncpn-u22-32.cbls.ccr.buffalo.edu\ncpn-u22-19.cbls.ccr.buffalo.edu\ncpn-u22-26.cbls.ccr.buffalo.edu\ncpn-u22-27.cbls.ccr.buffalo.edu\ncpn-u22-25.cbls.ccr.buffalo.edu\ncpn-u22-30.cbls.ccr.buffalo.edu\ncpn-u22-21.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807933,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.378 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.PLPpXCsoY\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807937,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.331 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.ziM1PnYQ4\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ncat: /gpfs/scra'),(3807943,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.v9tzCksbG\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807947,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.AmZEeXvVm\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3807945,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 3.928 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.aQHJMT7NI\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3807946,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\nsrun: error: Unable to create step for job 2647336: Job/step already completing or completed\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.6RigkqKTk\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3807948,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.wW4UVJL5c\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3807944,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.886 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.wghukGsEp\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807963,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.fLlK0qCsU\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3807994,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.fCmn9lgBO\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807995,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.I1PcoGPzy\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807997,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.yMlwymOwf\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807996,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.MyxGlwZhd\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807998,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3807999,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808000,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808001,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.RROo63tha\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808002,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.6SxSjXq8j\nAKRR_NODELIST\ncpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36 cpn-u24-36\nSLURM_NODELIST\ncpn-u24-36\nGMX_NODELIST\ncpn-u24-36:cpus=32\ncpn-u24-36.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nTotal attempt to launch GAMESS is 1\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808004,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u24-36.cbls.ccr.buffalo.edu\ncpn-u24-37.cbls.ccr.buffalo.edu\ncpn-u25-17.cbls.ccr.buffalo.edu\ncpn-u25-18.cbls.ccr.buffalo.edu\ncpn-u25-16.cbls.ccr.buffalo.edu\ncpn-u25-19.cbls.ccr.buffalo.edu\ncpn-u25-20.cbls.ccr.buffalo.edu\ncpn-u24-38.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808003,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.gKDVLjgSY\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808007,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-30.cbls.ccr.buffalo.edu\ncpn-u23-20.cbls.ccr.buffalo.edu\ncpn-u23-21.cbls.ccr.buffalo.edu\ncpn-u23-18.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808005,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808006,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.NTNFGV7Cg\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808008,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.OAitIXxOB\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808010,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u23-21.cbls.ccr.buffalo.edu\ncpn-u24-27.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808012,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.PrDUoKduN\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808009,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.0izLeirua\nAKRR_NODELIST\ncpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-18 cpn-u23-20 cpn-u23-20 cpn-u23-20 cpn-u23-20 cpn-u23-20 cpn-u23-20 cpn-u23-20 cpn-u23-20 cpn-u23-20 cpn-u23-20 cpn-u23-20 cpn-u23-20 cpn-u23-20 cpn-u23-20 cpn-u23-20 cpn-u23-20 cpn-u23-20 cpn-u23-20 cpn-u23-20 c','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808011,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.72eQA4okZ\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808013,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.eoGz3O7Vi\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808014,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nslurmstepd: error: *** JOB 2660521 ON cpn-u24-27 CANCELLED AT 2020-04-19T04:04:37 DUE TO TIME LIMIT ***\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.NGiwChlJG\nAKRR_NODELIST\ncpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-27 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29 cpn-u24-29\nSLURM_NODELIST\ncpn-u24-[27,29]\nGMX_NODELIST\ncpn-u24-27:cpus=32 cpn-u24-29:cpus=32\ncpn-u24-27.cbls.ccr.buffalo.edu\n250 32000 32 128\ncpn-u24-29.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808015,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.q2JREf9SV\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808027,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.573 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.MGfuJrdfH\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808030,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.195 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.zJEY38Af0\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808036,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.yloUf3N94\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808041,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.Tp7hZCfWh\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808039,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\nsrun: error: Unable to create step for job 2660892: Job/step already completing or completed\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.AV1CMiEho\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3808042,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.852 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.zOhovPoKw\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3808038,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 4.603 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.IGwHFzOWt\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3808040,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.VqPWsrkpH\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808054,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\nsrun: error: Unable to create step for job 2663369: Job/step already completing or completed\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.LXcsVvcKk\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808088,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.XWLINxBxC\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808091,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.eLQwj0Y9g\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808090,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.jiUSbQxZ2\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808089,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.4PWlXNHQF\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808093,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808092,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808094,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808095,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.xgKrHimi9\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808096,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.eesaEX3vn\nAKRR_NODELIST\ncpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24 cpn-u25-24\nSLURM_NODELIST\ncpn-u25-24\nGMX_NODELIST\ncpn-u25-24:cpus=32\ncpn-u25-24.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nTotal attempt to launch GAMESS is 1\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsF'),(3808098,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-21.cbls.ccr.buffalo.edu\ncpn-u22-30.cbls.ccr.buffalo.edu\ncpn-u23-27.cbls.ccr.buffalo.edu\ncpn-u22-27.cbls.ccr.buffalo.edu\ncpn-u23-26.cbls.ccr.buffalo.edu\ncpn-u23-18.cbls.ccr.buffalo.edu\ncpn-u23-28.cbls.ccr.buffalo.edu\ncpn-u23-19.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808097,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.OgxKqCFh2\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808101,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-20.cbls.ccr.buffalo.edu\ncpn-u22-30.cbls.ccr.buffalo.edu\ncpn-u22-21.cbls.ccr.buffalo.edu\ncpn-u22-27.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808099,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808100,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.9Oa29et5d\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808102,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.17xQi42eC\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808104,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-21.cbls.ccr.buffalo.edu\ncpn-u22-27.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808106,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.T8i94KULQ\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808103,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.4aJguRsQV\nAKRR_NODELIST\ncpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 cpn-u22-30 c','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808105,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.rRHcwqTHu\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808107,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.40N2mSaeX\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808108,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.7E2vDDOVC\nAKRR_NODELIST\ncpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-21 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27\nSLURM_NODELIST\ncpn-u22-[21,27]\nGMX_NODELIST\ncpn-u22-21:cpus=32 cpn-u22-27:cpus=32\ncpn-u22-21.cbls.ccr.buffalo.edu\n250 32000 32 128\ncpn-u22-27.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nAt','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808109,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.l2qFkSYR8\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808121,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.914 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.chhrupHQt\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808123,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 4.338 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.hYHdL7yGt\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808131,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.ZmDmiddzv\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808132,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\nsrun: error: Unable to create step for job 2802819: Job/step already completing or completed\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.P48n0FrOM\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808135,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> error 59 attaching to node:\nTimeout waiting for node-program to connect\nCharmrun> IBVERBS version of charmrun\n','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.K8eruoSkj\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808134,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.qyO1YIpix\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808136,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 3.781 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.IfdZYtYoX\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808133,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.L4xfknLJ7\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808148,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\nsrun: error: Unable to create step for job 2806283: Job/step already completing or completed\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.GqRNy6GfW\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808185,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.j8hUdMVgQ\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808183,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.nzqXxkD0N\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808182,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.hv2WSPaJR\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808184,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.B1nKsO3J2\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808186,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808188,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808189,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.Q5IsT35aq\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808190,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.R7saSjcUN\nAKRR_NODELIST\ncpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27\nSLURM_NODELIST\ncpn-u22-27\nGMX_NODELIST\ncpn-u22-27:cpus=32\ncpn-u22-27.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nAttempt to launch GAMESS: 1\nAttempt to launch GAMESS: 2\nAttempt to launch GAMESS: 3\nAttempt to launch GAMESS: 4\nAttempt to launch GAMESS: 5\nAttempt to launch GAMESS: 6\nTotal attempt to launch GAMESS is 6\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808187,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808191,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.y1pWtLuje\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808192,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-16.cbls.ccr.buffalo.edu\ncpn-u22-25.cbls.ccr.buffalo.edu\ncpn-u25-23.cbls.ccr.buffalo.edu\ncpn-u22-37.cbls.ccr.buffalo.edu\ncpn-u25-27.cbls.ccr.buffalo.edu\ncpn-u25-34.cbls.ccr.buffalo.edu\ncpn-u25-19.cbls.ccr.buffalo.edu\ncpn-u22-27.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808193,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808194,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.cG3T6aXwJ\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808195,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-16.cbls.ccr.buffalo.edu\ncpn-u22-25.cbls.ccr.buffalo.edu\ncpn-u22-37.cbls.ccr.buffalo.edu\ncpn-u22-27.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808196,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.mb76Zp2Ig\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808198,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-16.cbls.ccr.buffalo.edu\ncpn-u22-25.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808197,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.Gk8n4WYYi\nAKRR_NODELIST\ncpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 cpn-u22-27 c','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808199,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.8hVi0pk68\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808200,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.4YHZ5t1sr\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808201,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.84x9e5xJy\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808202,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.0ss0wjP4i\nAKRR_NODELIST\ncpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-16 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25 cpn-u22-25\nSLURM_NODELIST\ncpn-u22-[16,25]\nGMX_NODELIST\ncpn-u22-16:cpus=32 cpn-u22-25:cpus=32\ncpn-u22-16.cbls.ccr.buffalo.edu\n250 32000 32 128\ncpn-u22-25.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nAt','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808203,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.oGyITlgLv\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808215,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.926 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.Mh1WYcQF1\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808220,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 3.820 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.zRb1OYM0Y\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808224,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.GJYkxCsDg\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'); +INSERT INTO `akrr_errmsg` VALUES (3808229,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 4.176 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.zpWvVwYp3\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edg'),(3808226,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.SCLScUqc3\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edg'),(3808228,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.633 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.U7As18pbm\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808230,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\nsrun: error: Unable to create step for job 2833294: Job/step already completing or completed\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.PpykOT6Gy\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edg'),(3808227,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.YWmwEO33S\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808245,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\nsrun: error: Unable to create step for job 2833375: Job/step already completing or completed\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.FD6ifregh\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808278,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.mj3ttjV3K\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808279,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.GXOqmUC9P\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808281,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808280,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808282,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808284,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.FeLlaQ8Ex\nAKRR_NODELIST\ncpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25 cpn-u23-25\nSLURM_NODELIST\ncpn-u23-25\nGMX_NODELIST\ncpn-u23-25:cpus=32\ncpn-u23-25.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nTotal attempt to launch GAMESS is 1\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808283,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.6A5XvF9QO\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808276,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.R3L0jHx71\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808289,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u23-29.cbls.ccr.buffalo.edu\ncpn-u24-17.cbls.ccr.buffalo.edu\ncpn-u23-35.cbls.ccr.buffalo.edu\ncpn-u24-23.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808285,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.lpxqcXac6\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808290,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.qFtS9Acax\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808277,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.SgS2cVdpO\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808292,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u24-32.cbls.ccr.buffalo.edu\ncpn-u25-23.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808287,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsF'),(3808293,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.zpgGNPUi2\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808288,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.AQe4uDkdw\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808294,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.6s3YoNxo4\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808291,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nslurmstepd: error: *** JOB 2837517 ON cpn-u23-29 CANCELLED AT 2020-04-25T04:01:14 DUE TO TIME LIMIT ***\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.P6ZKDRa86\nAKRR_NODELIST\ncpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-29 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u23-35 cpn-u24-17 cpn-u24-17 cpn-u24-17 cpn-u24-17 cpn-u24-17 cpn-u24-17 cpn-u24-17 cpn-u24-17 cpn-u24-17 cpn-u24-17 cpn-u24-17 cpn-u24-17 cpn-u24-17 cpn-u24-17 cpn-u24-17 cpn-u24-17 cpn-u24-17 cpn-u24-17 cpn-u24-17 c','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808296,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.WBaKTebS1\nAKRR_NODELIST\ncpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u24-32 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19 cpn-u25-19\nSLURM_NODELIST\ncpn-u24-32,cpn-u25-19\nGMX_NODELIST\ncpn-u24-32:cpus=32 cpn-u25-19:cpus=32\ncpn-u24-32.cbls.ccr.buffalo.edu\n250 32000 32 128\ncpn-u25-19.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808297,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.BAB0QNqD8\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808295,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.J64P2A7Xb\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808286,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u23-25.cbls.ccr.buffalo.edu\ncpn-u24-23.cbls.ccr.buffalo.edu\ncpn-u23-29.cbls.ccr.buffalo.edu\ncpn-u24-17.cbls.ccr.buffalo.edu\ncpn-u23-35.cbls.ccr.buffalo.edu\ncpn-u24-32.cbls.ccr.buffalo.edu\ncpn-u24-35.cbls.ccr.buffalo.edu\ncpn-u23-31.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808309,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.985 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.xcj4huiFM\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808313,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 3.414 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.QQQxd3RXv\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808319,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.mfwzadNTG\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808324,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.C9SJN4ryD\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808323,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.ozTDdapcw\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808321,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 6.016 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.AGaJsvGgn\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808320,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.scbBDvItO\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808322,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 3.883 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.yQL03gjT5\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808336,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.Tlg3mot1m\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808370,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.EQ0wmc2cF\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808373,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.Uaa2sKLHN\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808372,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.sMUqRPUxV\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808371,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.fp1TcpFm0\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808374,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808375,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808376,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808377,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.X1Oz9lrai\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808378,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.KdKwuifiu\nAKRR_NODELIST\ncpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19 cpn-u22-19\nSLURM_NODELIST\ncpn-u22-19\nGMX_NODELIST\ncpn-u22-19:cpus=32\ncpn-u22-19.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nTotal attempt to launch GAMESS is 1\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808380,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-19.cbls.ccr.buffalo.edu\ncpn-u22-26.cbls.ccr.buffalo.edu\ncpn-u22-35.cbls.ccr.buffalo.edu\ncpn-u22-29.cbls.ccr.buffalo.edu\ncpn-u22-36.cbls.ccr.buffalo.edu\ncpn-u22-37.cbls.ccr.buffalo.edu\ncpn-u22-28.cbls.ccr.buffalo.edu\ncpn-u22-32.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808379,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.ldc2KaxIy\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808383,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-19.cbls.ccr.buffalo.edu\ncpn-u22-26.cbls.ccr.buffalo.edu\ncpn-u22-29.cbls.ccr.buffalo.edu\ncpn-u22-28.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808381,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808382,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.eCxddx4ZH\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808384,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.njw9BUlSH\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808386,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-35.cbls.ccr.buffalo.edu\ncpn-u22-36.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808388,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.80d2P7DUV\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808385,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.NNoyKsLlk\nAKRR_NODELIST\ncpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-26 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-28 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 c','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808390,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.7ECw42LZ1\nAKRR_NODELIST\ncpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37 cpn-u22-37\nSLURM_NODELIST\ncpn-u22-[24,37]\nGMX_NODELIST\ncpn-u22-24:cpus=32 cpn-u22-37:cpus=32\ncpn-u22-24.cbls.ccr.buffalo.edu\n250 32000 32 128\ncpn-u22-37.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nAt','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808387,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.6R6yt5ZJT\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808389,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.1R88TDZns\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808391,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.BHshG6wtm\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808403,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.952 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.mL8LXWt6s\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808406,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.319 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.kRrhiAvVR\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808412,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.MZX5B6ixy\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808415,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 3.490 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.xhXu0vp10\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808417,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.XjfGF1Fvd\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808414,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 6.083 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.U1Y14JRzV\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808418,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.lRHgK0mtG\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808416,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\nsrun: error: Unable to create step for job 2842398: Job/step already completing or completed\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.vSgZZFUnE\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808429,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.OkMq9fBKP\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808465,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.BrctJ0yaz\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808467,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.POFoZvfj2\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808469,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808497,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 6.056 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.vmYx7pKRV\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808470,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808477,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-17.cbls.ccr.buffalo.edu\ncpn-u22-18.cbls.ccr.buffalo.edu\ncpn-u22-24.cbls.ccr.buffalo.edu\ncpn-u22-29.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808473,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.hrHy4tOgz\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808507,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.7BXrZouvi\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808511,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.LtPhkRDxX\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3808509,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\nsrun: error: Unable to create step for job 2852086: Job/step already completing or completed\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.PDYHeVrYL\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3808510,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.PwooJrAwv\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/e'),(3808512,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.828 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.DwogDkCVx\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808499,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 5.517 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.8wUSOCgr9\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808478,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.o19dwzXx5\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808471,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.Oqvaap7qE\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808466,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.TuCGvG5b2\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\nxdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully'),(3808480,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-17.cbls.ccr.buffalo.edu\ncpn-u22-33.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808472,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.SaC7R8yCl\nAKRR_NODELIST\ncpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33\nSLURM_NODELIST\ncpn-u22-33\nGMX_NODELIST\ncpn-u22-33:cpus=32\ncpn-u22-33.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\nTotal attempt to launch GAMESS is 1\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808476,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.JKDKG4EjE\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808481,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.IZhDXaNEC\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808475,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808482,1,'===ExeBinSignature=== MD5: 2bd81c141efba8c3864ba6aac71d26aa /projects/ccrstaff/general/appker/nwchem-6.8.1/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: 21a61f5b0d9e6164c9b85018bb77642d /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_scalapack_ilp64.so\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_core.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_sequential.so\n===ExeBinSignature=== MD5: f0f0a137794b7721df7253728873f3b9 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64_lin/libmkl_blacs_intelmpi_ilp64.so\n===ExeBinSignature=== MD',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/nwchem.PdOBP09g7\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808464,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.tYIflHukc\nDeleting temporary files\nDeleting temporary files\n',' echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\nexport PS1=\'PROMPTtTtT \';\\\necho ExeCUTEd_SucCeSsFully\n \n \nxdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsF'),(3808479,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nslurmstepd: error: *** JOB 2850562 ON cpn-u22-17 CANCELLED AT 2020-05-01T10:43:01 DUE TO TIME LIMIT ***\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.bOQN3z811\nAKRR_NODELIST\ncpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-17 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-18 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 cpn-u22-24 c','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808526,1,'===ExeBinSignature=== MD5: 8404c107e770525c3f2fbb173ec6ad64 /util/academic/nwchem/nwchem-6.8/bin/LINUX64/nwchem\n===ExeBinSignature=== MD5: fc7521ec0d9841e0b02405a3c6f14ac7 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_intel_ilp64.so\n===ExeBinSignature=== MD5: f69324cf9d6d73ccd17e71804fd72f8f /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_sequential.so\n===ExeBinSignature=== MD5: 8d910a2a99c55892275240801efe5adc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_core.so\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n The MKL Libraries are in your library path. This is adequate for compiling and\nrunning most codes. Source $MKL/bin/mklvars.sh\" for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) mkl/2018.3 4) nwchem/6.8\n\n \n\nsrun: error: Unable to create step for job 2852307: Job/step already completing or completed\n','Temporary working directory: /gpfs/scratch/xdtas/edge/nwchem.HS13XDPGJ\n\nERROR: architecture is not defined. Accepted values: ia32, intel64\n\nSyntax:\n source mklvars.sh [MKL_interface] [mod]\n\n must be one of the following\n ia32 : Setup for IA-32 architecture\n intel64 : Setup for Intel(R) 64 architecture\n\n mod (optional) - set path to Intel(R) MKL F95 modules\n\n MKL_interface (optional) - Intel(R) MKL programming interface for intel64\n Not applicable without mod\n lp64 : 4 bytes integer (default)\n ilp64 : 8 bytes integer\n\nIf the arguments to the sourced script are ignored (consult docs for\nyour shell) the alternative way to specify target is environment\nvariables COMPILERVARS_ARCHITECTURE or MKLVARS_ARCHITECTURE to pass\n to the script, MKLVARS_INTERFACE to pass and\nMKLVARS_MOD to pass \n\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808559,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.f9O54OzVL\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808561,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.q6GcmPlDN\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808485,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.lC8e5q6ST\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808508,1,'===ExeBinSignature=== MD5: e0f64a23b1fe3e2738322200af3bff1a /util/academic/namd/NAMD_2.9_Source-IBVERBS/namd2\n===ExeBinSignature=== MD5: 1574d0444d47222b340a2b755d4836ec /lib64/libibverbs.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /lib64/libstdc++.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: 07711242213230dc1139fc71f31754cf /lib64/libnl-route-3.so.200\n===ExeBinSignature=== MD5: 43d5e221199ce5536fa5f86b12c40a58 /lib64/libnl-3.so.200\nCharmrun> started all node programs in 4.121 seconds.\nCharmrun> IBVERBS version of charmrun\nConverse/Charm++ Commit ID: v6.4.0-beta1-0-g5776d21\nCharm++> schedu','\nCurrently Loaded Modules:\n 1) namd/2.9-IBVERBS-SRC\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/edge/namd.g4MsOPidO\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/edge\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/edge/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\ntest\nExeCUTEd_S'),(3808558,1,'===ExeBinSignature=== MD5: 50985a3a3479595f2499865ad84d3887 /projects/ccrstaff/general/appker/UBHPC/execs/enzo-dev/src/enzo/enzo.exe\n===ExeBinSignature=== MD5: 074e3582476c7a7e57ebee70015b767b /util/academic/intel/18.3/lib/intel64/libifcore.so.5\n===ExeBinSignature=== MD5: d1e822cd8f84fbf745ffad1d936d81fa /util/academic/intel/18.3/lib/intel64/libifport.so.5\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 15c032a7552e9dcbd1998e7c27a25177 /util/academic/hdf5/1.8.15p1/lib/libhdf5.so.10\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel6',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3 3) hdf5/1.8.15p1\n\n \n\n','AKRR:ERROR: App kernel executable does not exists (/projects/ccrstaff/general/appker/UBHPC/execs/enzo-stable/src/enzo/enzo.exe)\nTemporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.gM9P434oD\nDeleting temporary files\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808483,1,'===ExeBinSignature=== MD5: e3f44bab3b6f611f53168d43943f0594 /projects/ccrstaff/general/appker/UBHPC/execs/graph500/mpi214/graph500_mpi_replicated_csc_seqval\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 071ea8658daf96a77a828111b40261de /util/academic/intel/18.3/lib/intel64/libiomp5.so\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature==',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/ior.gIhFj89fX\nDeleting temporary files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808484,1,'===ExeBinSignature=== MD5: b7f73fe240e5d1fb144eddd1c6ae90ec /projects/ccrstaff/general/appker/UBHPC/gamess/gamess.01.x\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\nAttempt to launch GAMESS: 0\n----- GAMESS execution script \'rungms\' -----\nThis job is runnin',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\nbash: /proc/sys/kernel/sem: Permission denied\nbash: /proc/sys/kernel/sem: Permission denied\nslurmstepd: error: *** JOB 2850573 ON cpn-u22-29 CANCELLED AT 2020-05-01T11:04:10 DUE TO TIME LIMIT ***\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/gamess.SkwCw88PG\nAKRR_NODELIST\ncpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-29 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33 cpn-u22-33\nSLURM_NODELIST\ncpn-u22-[29,33]\nGMX_NODELIST\ncpn-u22-29:cpus=32 cpn-u22-33:cpus=32\ncpn-u22-29.cbls.ccr.buffalo.edu\n250 32000 32 128\ncpn-u22-33.cbls.ccr.buffalo.edu\n250 32000 32 128\nAttempt to launch GAMESS: 0\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808560,1,'===ExeBinSignature=== MD5: f28293db1cc0731f4d9e1151598e6c18 /projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: ebc6518301d43233b1de262f6cfdbfcc /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpicxx.so.12\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: b06038960f153e36545ed9ea947f80f6 /',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \nwhich: no charmrun in (/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin:/util/academic/intel/18.3/bin:/projects/ccrstaff/general/appker/UBHPC/execs/bin:/projects/ccrstaff/general/appker/edge/execs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/dell/srvadmin/bin:/user/xdtas/bin)\n','Temporary working directory: /gpfs/scratch/xdtas/ubhpc/namd.2H2hk1QeE\nDeleting temporary files\n','xdtas@srv-p22-13:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808474,1,'===ExeBinSignature=== MD5: 2a51c44b531f41c2473bd13adb4b1003 /projects/ccrstaff/general/appker/UBHPC/execs/imb/IMB-MPI1\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n===ExeBinSignature=== MD5: e58bbbc7feb5bf599009f16c7f36f975 /projects/ccrstaff/general/appk',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Checking that running one process per node (for debugging)\ncpn-u22-17.cbls.ccr.buffalo.edu\ncpn-u22-18.cbls.ccr.buffalo.edu\ncpn-u22-29.cbls.ccr.buffalo.edu\ncpn-u22-26.cbls.ccr.buffalo.edu\ncpn-u22-24.cbls.ccr.buffalo.edu\ncpn-u22-33.cbls.ccr.buffalo.edu\ncpn-u23-20.cbls.ccr.buffalo.edu\ncpn-u23-21.cbls.ccr.buffalo.edu\nDeleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'),(3808468,1,'===ExeBinSignature=== MD5: 93062843be96b1502135deeb456be1cc /projects/ccrstaff/general/appker/UBHPC/execs/hpcc-1.4.2/hpcc\n===ExeBinSignature=== MD5: 572d2ca03a00ac40754763833b8f0c1b /lib64/libpthread.so.0\n===ExeBinSignature=== MD5: 2705d15430ebce01274ef94967122bcb /lib64/libm.so.6\n===ExeBinSignature=== MD5: 0f65391c22de4d15744ea80ec857419a /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpifort.so.12\n===ExeBinSignature=== MD5: d9196e5f82db2befd02eb55c78747724 /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/lib/libmpi.so.12\n===ExeBinSignature=== MD5: bbb4814755042554781fce1b1da6fdb1 /lib64/libdl.so.2\n===ExeBinSignature=== MD5: 5928d7f9554dde0b45bc87ac09598ad0 /lib64/librt.so.1\n===ExeBinSignature=== MD5: c8f2c137eee1a4581bc0be7b63d2c603 /lib64/libgcc_s.so.1\n===ExeBinSignature=== MD5: d7fc482d2d4651aa0c36d597959208a7 /lib64/libc.so.6\n########################################################################\nThis is the DAR',' The Intel 18.3 compilers are in your path. This is adequate for compiling and\nrunning most codes. Source compilervars.sh for more features including the\ndebugger. \n Intel-MPI is in your path. This is adequate for compiling and running most\ncodes. Source the\n/util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh\nfile for more features. \n\nCurrently Loaded Modules:\n 1) intel/18.3 2) intel-mpi/2018.3\n\n \n\n','Deleting input files\n','xdtas@srv-p22-12:~$ echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> export PS1=\'PROMPTtTtT \';\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT \nPROMPTtTtT \nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo TeStTeStTeStThEproMPT;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nTeStTeStTeStThEproMPT\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> if [ -d \"/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC\" ]\n> then \n> echo EXIST\n> else echo DOES_NOT_EXIST\n> fi;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nEXIST\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> echo test > /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFully\nStArTEd_ExeCUTEtIoM_SucCeSsFully\nExeCUTEd_SucCeSsFully\nPROMPTtTtT echo StArTEd_ExeCUTEtIoM_SucCeSsFully;\\\n> cat /gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC/akrr_test_write;\\\n> echo ExeCUTEd_SucCeSsFul'); +/*!40000 ALTER TABLE `akrr_errmsg` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `akrr_internal_failure_codes` +-- + +DROP TABLE IF EXISTS `akrr_internal_failure_codes`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `akrr_internal_failure_codes` ( + `id` int(11) NOT NULL, + `description` text NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `akrr_internal_failure_codes` +-- + +LOCK TABLES `akrr_internal_failure_codes` WRITE; +/*!40000 ALTER TABLE `akrr_internal_failure_codes` DISABLE KEYS */; +/*!40000 ALTER TABLE `akrr_internal_failure_codes` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `akrr_resource_maintenance` +-- + +DROP TABLE IF EXISTS `akrr_resource_maintenance`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `akrr_resource_maintenance` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `resource` varchar(255) NOT NULL, + `start` datetime NOT NULL, + `end` datetime NOT NULL, + `comment` text NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `akrr_resource_maintenance` +-- + +LOCK TABLES `akrr_resource_maintenance` WRITE; +/*!40000 ALTER TABLE `akrr_resource_maintenance` DISABLE KEYS */; +/*!40000 ALTER TABLE `akrr_resource_maintenance` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `akrr_taks_errors` +-- + +DROP TABLE IF EXISTS `akrr_taks_errors`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `akrr_taks_errors` ( + `task_id` int(11) NOT NULL, + `err_reg_exp_id` int(11) DEFAULT NULL COMMENT 'errors identified using reg_exp', + PRIMARY KEY (`task_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `akrr_taks_errors` +-- + +LOCK TABLES `akrr_taks_errors` WRITE; +/*!40000 ALTER TABLE `akrr_taks_errors` DISABLE KEYS */; +/*!40000 ALTER TABLE `akrr_taks_errors` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `akrr_xdmod_instanceinfo` +-- + +DROP TABLE IF EXISTS `akrr_xdmod_instanceinfo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `akrr_xdmod_instanceinfo` ( + `instance_id` bigint(20) NOT NULL, + `collected` datetime NOT NULL, + `committed` datetime NOT NULL, + `resource` varchar(255) NOT NULL, + `executionhost` varchar(255) NOT NULL, + `reporter` varchar(255) NOT NULL, + `reporternickname` varchar(255) NOT NULL, + `status` int(1) unsigned DEFAULT NULL, + `message` longtext, + `stderr` longtext, + `body` longtext, + `memory` float NOT NULL, + `cputime` float NOT NULL, + `walltime` float NOT NULL, + `job_id` bigint(20) DEFAULT NULL, + `internal_failure` int(11) NOT NULL DEFAULT '0', + `nodes` text, + `ncores` int(11) DEFAULT NULL, + `nnodes` int(11) DEFAULT NULL, + UNIQUE KEY `instance_id` (`instance_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `akrr_xdmod_instanceinfo` +-- + +LOCK TABLES `akrr_xdmod_instanceinfo` WRITE; +/*!40000 ALTER TABLE `akrr_xdmod_instanceinfo` DISABLE KEYS */; +INSERT INTO `akrr_xdmod_instanceinfo` VALUES (3807152,'2020-04-01 00:41:46','2020-04-01 00:41:53','UBHPC_32core','UBHPC_32core','hpcc','hpcc.8',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAI4bhF4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 16\n \n \n Input:High Performance LINPACK Problem Size\n 56568\n \n \n Input:MPI Ranks\n 256\n \n \n Input:MPIRandom Problem Size\n 2048.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 28284\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1543.597\n MHz\n \n \n RunEnv:Nodes\n H4sIAI4bhF4CA+3GsQ0AIAwDsJ0reCASainQe9gRC/9zRbZ48r4HzxyWdausdlhTqQ2V2lR5DdhUmXVXqR0qtUtltHzpWK7vAQsAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 47228.200000000004\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4720.97792\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5428.59264\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4304.384\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4796.47744\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 71950.2\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 335.090\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 5296580.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 22.7847\n Second\n \n \n MPI Random Access\n 98.3815\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 42576.0768\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 199.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,199,2202411,0,';cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;',NULL,NULL),(3807153,'2020-04-01 01:09:51','2020-04-01 01:09:57','UBHPC_32core','UBHPC_32core','hpcc','hpcc.2',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIACIihF4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 28284\n \n \n Input:MPI Ranks\n 64\n \n \n Input:MPIRandom Problem Size\n 512.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 14142\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1277.124\n MHz\n \n \n RunEnv:Nodes\n H4sIACIihF4CA0suyNMtNTLRNTZUSB5l0oppqmtkOcqkBZMLAFqGFw3BAgAA\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 47570.700000000004\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4675.1232\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5396.31616\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4264.89856\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4760.84224\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 56201.9\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 547.902\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1791330.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 8.42149\n Second\n \n \n MPI Random Access\n 31.990200000000005\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 16975.4624\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 149.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,149,2202416,0,';cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;',NULL,NULL),(3807154,'2020-04-01 01:19:06','2020-04-01 01:19:13','UBHPC_32core','UBHPC_32core','hpcc','hpcc.1',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAE4khF4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 4\n \n \n Input:High Performance LINPACK Problem Size\n 20000\n \n \n Input:MPI Ranks\n 32\n \n \n Input:MPIRandom Problem Size\n 256.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 10000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 2031.811\n MHz\n \n \n RunEnv:Nodes\n H4sIAE4khF4CA0suyNMtNTLVNTZUSB5lUp/JBQA/9Io+YQEAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 47951.2\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4579.77856\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5326.47936\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4158.65856\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4662.15936\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 50854.799999999996\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 390.027\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1014350.0000000001\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 5.25848\n Second\n \n \n MPI Random Access\n 10.919699999999999\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 13863.1168\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 141.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,141,2202419,0,';cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;',NULL,NULL),(3807155,'2020-04-01 01:23:16','2020-04-01 01:23:23','UBHPC_32core','UBHPC_32core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAEglhF4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAEglhF4CA0suyNMtNTLRNTJVSB5l0oppqmtsPMqkBZMLAIm2DiLBAgAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 300.40740966796875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 87400\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 646.5911865234375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 15300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 94.03228759765625\n MByte\n \n \n Global Arrays \'Put\' Calls\n 11200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 17.0\n Second\n \n \n Wall Clock Time\n 37.9\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,37.9,2202527,0,';cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;',NULL,NULL),(3807156,'2020-04-01 01:27:58','2020-04-01 01:28:04','UBHPC_32core','UBHPC_32core','gamess','gamess.1',1,NULL,NULL,'\n Gamess\n \n Gamess\n \n \n App:ExeBinSignature\n H4sIAGEmhF4CA7WRTY7bMAyF9zlFTmCR1H+X7SxmM0A3XQcSSaVuncSwPcAcvzKShS/QhSCB0ke+p/fx5r+da2zRNiUH6gVbRedURJBD0QzKZzMvjz/K22qYl3UrrZmr3nUpkynz/FcX8+v7+88f5lpuuq6vbQAcvk4f+wDJmIP6lkgqVW0CpNV7jim6GMmdzec29l5cRG8jm/G+6WQwDdbw4zaPky7rpdzlMo11Kcuo64Vgvx6IyEzj/fPL9GdPLrheqfvqpWF9DEhPFdCCtxmZSNQJ+thtltT9pX7EXP6fivZYtqMSnylJbNl7J6JQna+cYmHIPqcicN65Z4cX+OIiCXEBWwAKO4jexWCTtTU1YKwHbt5+L1pkh+EJU4SerncWtLICUnTassshIlHlI3zbsfDKLjZ2PTgSFzyWAmyD+By7VIJU4gHjA8apEaONqorF+YSVoWqswXYHAewBuzJf1oPLWqtL6KL34Kh/UUzYWLGilNCk4gGVaefodPoHaVIrBsgCAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 02 AUG 2018 (R2)\n \n \n RunEnv:Nodes\n H4sIAGEmhF4CA0suyNMtNTLVNTRXSB5lUp/JBQBdY/JzYQEAAA==\n \n \n app\n gamess\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Attempts to Launch\n 1\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Time Spent in MP2 Energy Calculation\n 17.05\n Second\n \n \n Time Spent in Restricted Hartree-Fock Calculation\n 22.46\n Second\n \n \n User Time\n 41.2482\n Second\n \n \n Wall Clock Time\n 42.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,42,2202529,0,';cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;',NULL,NULL),(3807158,'2020-04-01 02:03:54','2020-04-01 02:04:00','UBHPC_32core','UBHPC_32core','imb','imb.8',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAM0uhF4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAM0uhF4CA+3GsQ0AIAgEwN4pXIBEAcF96I2N+zvFd3/V1T3y1ER3LxZXCxZXFx0sspYsrkt0stAmi6w5C22wiLYPMdK7jgELAAA=\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 17248.09\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1860.98\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3446.41\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 9881.03\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11158.31\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3578.86\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3948.69\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12104.99\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11554.8\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11242.45\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11564.3\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 15682.8\n MByte per Second\n \n \n Min AllGather Latency\n 4.679999999999999e-06\n Second\n \n \n Min AllGatherV Latency\n 4.86e-06\n Second\n \n \n Min AllReduce Latency\n 4.749999999999999e-06\n Second\n \n \n Min AllToAll Latency\n 4.34e-06\n Second\n \n \n Min AllToAllV Latency\n 4.3899999999999995e-06\n Second\n \n \n Min Barrier Latency\n 4.45e-06\n Second\n \n \n Min Broadcast Latency\n 1.85e-06\n Second\n \n \n Min Gather Latency\n 6.800000000000001e-07\n Second\n \n \n Min GatherV Latency\n 4.519999999999999e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 4.1100000000000005e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 1.4269999999999999e-05\n Second\n \n \n Min MPI-2 Window Creation Latency\n 5.349e-05\n Second\n \n \n Min Reduce Latency\n 4.16e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.29e-06\n Second\n \n \n Min Scatter Latency\n 1.48e-06\n Second\n \n \n Min ScatterV Latency\n 1.51e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 23.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,23,2202532,0,';cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;',NULL,NULL),(3807157,'2020-04-01 02:19:42','2020-04-01 02:19:48','UBHPC_32core','UBHPC_32core','graph500','graph500.2',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIEyhF4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIEyhF4CA0suyNMtNTLWNbZQSB5l0oppomtsNMqkBZMLAOgKYFbBAgAA\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 4.70321e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.06591e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 4.71006e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 385.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,385,2202530,0,';cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;',NULL,NULL),(3807161,'2020-04-01 02:48:56','2020-04-01 02:49:03','UBHPC_32core','UBHPC_32core','imb','imb.4',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAFw5hF4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAFw5hF4CA0suyNMtNTLSNTJTSB5l0oppomtoPsqkKdNylElLJlJSHmVSkckFAEcEiaCBBQAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18022.93\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1841.11\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3434.03\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11014.39\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11127.96\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3475.24\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 4037.68\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12104.99\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11440.58\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11230.25\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11599.37\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 18632.83\n MByte per Second\n \n \n Min AllGather Latency\n 2.97e-06\n Second\n \n \n Min AllGatherV Latency\n 3.06e-06\n Second\n \n \n Min AllReduce Latency\n 2.97e-06\n Second\n \n \n Min AllToAll Latency\n 2.56e-06\n Second\n \n \n Min AllToAllV Latency\n 2.6e-06\n Second\n \n \n Min Barrier Latency\n 2.83e-06\n Second\n \n \n Min Broadcast Latency\n 2.36e-06\n Second\n \n \n Min Gather Latency\n 8.399999999999999e-07\n Second\n \n \n Min GatherV Latency\n 3.2799999999999995e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 1.78e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 9.14e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 3.276e-05\n Second\n \n \n Min Reduce Latency\n 1.8999999999999998e-06\n Second\n \n \n Min ReduceScatter Latency\n 2e-06\n Second\n \n \n Min Scatter Latency\n 1.79e-06\n Second\n \n \n Min ScatterV Latency\n 1.78e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 16.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,16,2202536,0,';cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;',NULL,NULL),(3807159,'2020-04-01 02:58:26','2020-04-01 02:58:32','UBHPC_32core','UBHPC_32core','hpcc','hpcc.4',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAJU7hF4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 40000\n \n \n Input:MPI Ranks\n 128\n \n \n Input:MPIRandom Problem Size\n 1024.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 20000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1595.123\n MHz\n \n \n RunEnv:Nodes\n H4sIAJU7hF4CA0suyNMtNTLWNTJQSB5l0pBpPsqkHdNU13CUSVOmkeUokxZMLgBr78YFgQUAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48592.7\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4675.06176\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5388.3392\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4250.0608\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4739.50208\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 110065.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 405.742\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 3313710.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 12.8765\n Second\n \n \n MPI Random Access\n 58.8665\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 21978.9312\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 185.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,185,2202533,0,';cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;',NULL,NULL),(3807160,'2020-04-01 02:59:41','2020-04-01 02:59:47','UBHPC_32core','UBHPC_32core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAOA7hF4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAOA7hF4CA0suyNMtNTLRNTRXSB5l0o5pbDjKpCnTYpRJO6aprpHBKJMWTC4AUPHqRIEFAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 237.46490478515625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 48800\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 491.14227294921875\n MByte\n \n \n Global Arrays \'Get\' Calls\n 13300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 60.749053955078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 9002\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 25.5\n Second\n \n \n Wall Clock Time\n 58.4\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,58.4,2202534,0,';cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;',NULL,NULL),(3807162,'2020-04-01 03:23:41','2020-04-01 03:23:48','UBHPC_32core','UBHPC_32core','graph500','graph500.1',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIFBhF4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIFBhF4CA0suyNMtNTLWNTJVSB5lUp/JBQDoH+8AYQEAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 6.80521e+09\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.95523e+08\n Traversed Edges Per Second\n \n \n Median TEPS\n 7.48891e+09\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 337.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,337,2202537,0,';cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;',NULL,NULL),(3807164,'2020-04-01 03:27:45','2020-04-01 03:27:52','UBHPC_32core','UBHPC_32core','imb','imb.2',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAHVChF4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAHVChF4CA0suyNMtNTLSNTJXSB5l0o5pbDTKpAWTCwAWBtrtwQIAAA==\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 19382.13\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1935.98\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3406.96\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11308.94\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11139.94\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3467.88\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 4120.91\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12101.66\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11529.06\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11226.67\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11634.66\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 22629.52\n MByte per Second\n \n \n Min AllGather Latency\n 1.32e-06\n Second\n \n \n Min AllGatherV Latency\n 1.4099999999999998e-06\n Second\n \n \n Min AllReduce Latency\n 1.38e-06\n Second\n \n \n Min AllToAll Latency\n 1.3e-06\n Second\n \n \n Min AllToAllV Latency\n 1.5599999999999999e-06\n Second\n \n \n Min Barrier Latency\n 1.27e-06\n Second\n \n \n Min Broadcast Latency\n 1e-06\n Second\n \n \n Min Gather Latency\n 1.06e-06\n Second\n \n \n Min GatherV Latency\n 1.83e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 6.6e-07\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 5.96e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 1.895e-05\n Second\n \n \n Min Reduce Latency\n 1.08e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.29e-06\n Second\n \n \n Min Scatter Latency\n 1e-06\n Second\n \n \n Min ScatterV Latency\n 1.1399999999999999e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 9.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,9,2202555,0,';cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;',NULL,NULL),(3807166,'2020-04-01 03:31:59','2020-04-01 03:32:06','UBHPC_32core','UBHPC_32core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAHNDhF4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHNDhF4CA0suyNMtNTLSNTZWSB5lUp/JBQDWaRNqYQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 404.35791015625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 161000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 24900\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 152.587890625\n MByte\n \n \n Global Arrays \'Put\' Calls\n 17800\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 11.4\n Second\n \n \n Wall Clock Time\n 21.3\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,21.3,2202557,0,';cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3807163,'2020-04-01 03:37:31','2020-04-01 03:37:37','UBHPC_32core','UBHPC_32core','gamess','gamess.4',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2202554,0,';cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;',NULL,NULL),(3807168,'2020-04-01 03:45:29','2020-04-01 03:45:36','UBHPC_32core','UBHPC_32core','gamess','gamess.2',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2202559,0,';cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;',NULL,NULL),(3807165,'2020-04-01 03:59:19','2020-04-01 03:59:26','UBHPC_32core','UBHPC_32core','enzo','enzo.2',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIANpJhF4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIANpJhF4CA0suyNMtNTLSNTJXSB5l0o5pbDTKpAWTCwAWBtrtwQIAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 6.903283200000001\n Second\n \n \n All Grid Level 00 Calculation Time\n 26.199457199999998\n Second\n \n \n All Grid Level 01 Calculation Time\n 47.66834718700001\n Second\n \n \n All Grid Level 02 Calculation Time\n 23.481200163999997\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 19.15676062\n Second\n \n \n Communication Transpose Time\n 1.4645224320000003\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.177587830000001\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 23.960309660000004\n Second\n \n \n Hydro Equations Solving Time\n 31.98210373000001\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 16.026517885079997\n Second\n \n \n Radiative Transfer Calculation Time\n 40.2446681511\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 181.85338579999998\n Second\n \n \n Wall Clock Time\n 182.417018\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,182.417,2202556,0,';cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;',NULL,NULL),(3807167,'2020-04-01 04:02:57','2020-04-01 04:03:04','UBHPC_32core','UBHPC_32core','graph500','graph500.4',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIALVKhF4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIALVKhF4CA0suyNMtNTLSNTJXSB5l0o5pbDTKpCnTeJRJU6bpKJMWTC4AU+grKoEFAAA=\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 8.66691e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 3.67556e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 8.67299e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 362.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,362,2202558,0,';cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;',NULL,NULL),(3807169,'2020-04-01 04:20:58','2020-04-01 04:21:05','UBHPC_32core','UBHPC_32core','enzo','enzo.1',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAO5OhF4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAO5OhF4CA0suyNMtNTLSNTJTSB5lUp/JBQCUN4sdYQEAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 10.0752414\n Second\n \n \n All Grid Level 00 Calculation Time\n 43.484445\n Second\n \n \n All Grid Level 01 Calculation Time\n 87.47425644800002\n Second\n \n \n All Grid Level 02 Calculation Time\n 34.06034469\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 30.750422700000005\n Second\n \n \n Communication Transpose Time\n 1.2004950410000004\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.42624366\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 29.749170130000003\n Second\n \n \n Hydro Equations Solving Time\n 59.77176299999999\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 32.053550431889995\n Second\n \n \n Radiative Transfer Calculation Time\n 59.125699359500004\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 280.7131388000001\n Second\n \n \n Wall Clock Time\n 281.373170\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,281.373,2202560,0,';cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;',NULL,NULL),(3807196,'2020-04-01 12:22:22','2020-04-01 12:22:35','UBHPC_8core','UBHPC_8core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMi/hF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 8\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMi/hF4CA0suyNNNMTDXNbTQNTBUSKY5jwsA2oZHWHEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 323.765625\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 7.128345867341484e-10\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 326.557709\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',323.766,0,326.558,2203678,0,';cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;',NULL,NULL),(3807192,'2020-04-01 12:22:37','2020-04-01 12:22:43','UBHPC_8core','UBHPC_8core','nwchem','nwchem.1',0,'ERROR: Error happens during processing of output.','Traceback (most recent call last):\n File \"/data/akrr/akrr/akrr/akrr_task/akrr_task_appker.py\", line 518, in process_results\n raise_error=True)\n File \"/data/akrr/akrr/akrr/akrr_task/akrr_task_appker.py\", line 491, in get_result_files\n raise IOError(\"Error: standard files is not present among job-files copied from remote resource.\")\nOSError: Error: standard files is not present among job-files copied from remote resource.\n','\n \n Error\n ERROR: Error happens during processing of output.\n nwchem\n Traceback (most recent call last):\n File \"/data/akrr/akrr/akrr/akrr_task/akrr_task_appker.py\", line 518, in process_results\n raise_error=True)\n File \"/data/akrr/akrr/akrr/akrr_task/akrr_task_appker.py\", line 491, in get_result_files\n raise IOError(\"Error: standard files is not present among job-files copied from remote resource.\")\nOSError: Error: standard files is not present among job-files copied from remote resource.\n\n \n \n',0,0,0,2203679,0,NULL,NULL,NULL),(3807185,'2020-04-01 14:22:52','2020-04-01 14:22:59','UBHPC_8core','UBHPC_8core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAADchF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 16\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAADchF4CA0suyNNNMTDXNTTTNTBSSKYfz0LXwJAOPC4ARHWdYOEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 311.625000\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.3807863578307847e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 185.445618\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',311.625,0,185.446,2203648,0,';cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;',NULL,NULL),(3807208,'2020-04-01 14:42:29','2020-04-01 14:42:35','UBHPC_8core','UBHPC_8core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAJjghF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAJjghF4CA0suyNNNMTDXNTTTNTBSSKYfz0LXwJAOPC4ARHWdYOEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 411000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 1459.1217041015625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 48600\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 243.18695068359375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 32200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 72.2\n Second\n \n \n Wall Clock Time\n 109.4\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,109.4,2203698,0,';cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;',NULL,NULL),(3807181,'2020-04-01 16:42:54','2020-04-01 16:43:00','UBHPC_8core','UBHPC_8core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIANH8hF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIANH8hF4CA0suyNNNMTDXNTTTNTBSSKYfz0LXwJCePEv68owM6MPjAgD+959+wQEAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 310.722656\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.6865182454886647e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 106.356552\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',310.723,0,106.357,2203638,0,';cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;',NULL,NULL),(3807191,'2020-04-01 16:52:52','2020-04-01 16:52:58','UBHPC_8core','UBHPC_8core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIACf/hF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIACf/hF4CA0suyNNNMTDXNTTTNTBSSKYfz0LXwJCePEv68owM6MPjAgD+959+wQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 551.2237548828125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 202000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 938.41552734375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 27800\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 150.6805419921875\n MByte\n \n \n Global Arrays \'Put\' Calls\n 18800\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 49.6\n Second\n \n \n Wall Clock Time\n 90.8\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,90.8,2203660,0,';cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;',NULL,NULL),(3807193,'2020-04-01 17:53:00','2020-04-01 17:53:06','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAD8NhV4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAD8NhV4CA0suyNNNMTDXNTDRNTBUSKYfz5T+PCN68sxQbKcLz4iePHMU22nPs0CxneY8QwNk22nH4wIAN6L7k4EDAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 332.83233642578125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 104000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 665.6646728515625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18100\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 97.2747802734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 41.6\n Second\n \n \n Wall Clock Time\n 90.4\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,90.4,2203675,0,';cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;',NULL,NULL),(3807195,'2020-04-01 17:52:59','2020-04-01 17:53:06','UBHPC_8core','UBHPC_8core','namd','namd.8',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAD8NhV4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 8\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAD8NhV4CA0suyNNNMTDXNTDRNTBUSKYfz5T+PCN68sxQbKcLz4iePHMU22nPs0CxneY8QwNk22nH4wIAN6L7k4EDAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 325.933594\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 5.056787726164831e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 71.016075\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',325.934,0,71.0161,2203677,0,';cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;',NULL,NULL),(3807194,'2020-04-01 17:53:03','2020-04-01 17:53:11','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAEMNhV4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAEINhV4CA0suyNNNMbDUNTDRNTBUSKYfz5T+PCN68szozLOgM88SJXTpwjOiI8/QENl22vG4AMkmOLqBAwAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 314.7125244140625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 88500\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 671.38671875\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18100\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 98.22845458984375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12800\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 40.3\n Second\n \n \n Wall Clock Time\n 87.8\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,87.8,2203676,0,';cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-08-02;cpn-d09-08-02;cpn-d09-08-02;cpn-d09-08-02;cpn-d09-08-02;cpn-d09-08-02;cpn-d09-08-02;cpn-d09-08-02;cpn-d09-09-01;cpn-d09-09-01;cpn-d09-09-01;cpn-d09-09-01;cpn-d09-09-01;cpn-d09-09-01;cpn-d09-09-01;cpn-d09-09-01;cpn-d09-09-02;cpn-d09-09-02;cpn-d09-09-02;cpn-d09-09-02;cpn-d09-09-02;cpn-d09-09-02;cpn-d09-09-02;cpn-d09-09-02;cpn-d09-11-01;cpn-d09-11-01;cpn-d09-11-01;cpn-d09-11-01;cpn-d09-11-01;cpn-d09-11-01;cpn-d09-11-01;cpn-d09-11-01;',NULL,NULL),(3807242,'2020-04-02 20:04:05','2020-04-02 20:04:11','UBHPC_32core','UBHPC_32core','enzo','enzo.4',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAHh9hl4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAHh9hl4CA0suyNMtNTLSNTZRSB5l0opprGtsOsqkKdN8lEk7pomuocUokxZMLgD2FYcYgQUAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 5.360428400000001\n Second\n \n \n All Grid Level 00 Calculation Time\n 15.97867239\n Second\n \n \n All Grid Level 01 Calculation Time\n 31.68836617900001\n Second\n \n \n All Grid Level 02 Calculation Time\n 17.889984\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 12.034172040999998\n Second\n \n \n Communication Transpose Time\n 1.588609115\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 1.9967326899999993\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 19.895076040000003\n Second\n \n \n Hydro Equations Solving Time\n 16.19569071\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 9.268045670970002\n Second\n \n \n Radiative Transfer Calculation Time\n 64.73426635101\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 161\n \n \n Total Time Spent in Cycles\n 167.6050086\n Second\n \n \n Wall Clock Time\n 168.210250\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,168.21,2242250,0,';cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;',NULL,NULL),(3807243,'2020-04-02 22:55:36','2020-04-02 22:55:43','UBHPC_32core','UBHPC_32core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAKylhl4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAKylhl4CA0suyNMtNTLRNTJQSB5lUp/JBQB67ZvwYQEAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 575.359375\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 5.939864808676955e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 58.272903\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',575.359,0,58.2729,2244255,0,';cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;',NULL,NULL),(3807244,'2020-04-03 00:55:53','2020-04-03 00:56:00','UBHPC_32core','UBHPC_32core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAN3Bhl4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAN3Bhl4CA0suyNMtNTLRNTJQSB5l0o5pbDLKpAWTCwAUCYAjwQIAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 692.636719\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.087439959721224e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 43.592194\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',692.637,0,43.5922,2244257,0,';cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;',NULL,NULL),(3807247,'2020-04-03 01:09:58','2020-04-03 01:10:04','UBHPC_32core','UBHPC_32core','hpcc','hpcc.2',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIACnFhl4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 28284\n \n \n Input:MPI Ranks\n 64\n \n \n Input:MPIRandom Problem Size\n 512.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 14142\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1261.743\n MHz\n \n \n RunEnv:Nodes\n H4sIACnFhl4CA0suyNMtNTLRNTJQSB5l0o5pbDLKpAWTCwAUCYAjwQIAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 47475.9\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4661.93408\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5377.30048\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4264.04864\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4763.68896\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 66694.8\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 539.466\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1742510.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 8.65746\n Second\n \n \n MPI Random Access\n 32.7451\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 15047.4752\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 158.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,158,2254558,0,';cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;',NULL,NULL),(3807248,'2020-04-03 01:19:09','2020-04-03 01:19:16','UBHPC_32core','UBHPC_32core','hpcc','hpcc.1',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAFHHhl4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 4\n \n \n Input:High Performance LINPACK Problem Size\n 20000\n \n \n Input:MPI Ranks\n 32\n \n \n Input:MPIRandom Problem Size\n 256.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 10000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1958.624\n MHz\n \n \n RunEnv:Nodes\n H4sIAFHHhl4CA0suyNMtNTLSNTZUSB5lUp/JBQCHmvBaYQEAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 50305.799999999996\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4737.1264\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5375.41632\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4268.77952\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4801.77152\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 51746.299999999996\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 393.235\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 985856.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 5.41046\n Second\n \n \n MPI Random Access\n 10.9566\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 13860.9664\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 144.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,144,2255134,0,';cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;',NULL,NULL),(3807245,'2020-04-03 01:25:57','2020-04-03 01:26:03','UBHPC_32core','UBHPC_32core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAOjIhl4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 128\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAOjIhl4CA0suyNMtNTLSNTZUSB5l0oppomtkMMqkJdPYZJRJO6aprrHBKJMWTC4APf+TAYEFAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 626.628906\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.1855200554247887e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 34.887455\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',626.629,0,34.8875,2244256,0,';cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;',NULL,NULL),(3807249,'2020-04-03 01:53:20','2020-04-03 01:53:27','UBHPC_32core','UBHPC_32core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAFTPhl4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAFTPhl4CA0suyNMtNTLSNTZUSB5l0oppomtkMMqkBZMLAPdV2uLBAgAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 299.4537353515625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 84500\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 626.5640258789062\n MByte\n \n \n Global Arrays \'Get\' Calls\n 15200\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 93.841552734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 11200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 18.0\n Second\n \n \n Wall Clock Time\n 43.6\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,43.6,2256986,0,';cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;',NULL,NULL),(3807250,'2020-04-03 01:58:09','2020-04-03 01:58:16','UBHPC_32core','UBHPC_32core','gamess','gamess.1',1,NULL,NULL,'\n Gamess\n \n Gamess\n \n \n App:ExeBinSignature\n H4sIAHXQhl4CA7WRTY7bMAyF9zlFTmCR1H+X7SxmM0A3XQcSSaVuncSwPcAcvzKShS/QhSCB0ke+p/fx5r+da2zRNiUH6gVbRedURJBD0QzKZzMvjz/K22qYl3UrrZmr3nUpkynz/FcX8+v7+88f5lpuuq6vbQAcvk4f+wDJmIP6lkgqVW0CpNV7jim6GMmdzec29l5cRG8jm/G+6WQwDdbw4zaPky7rpdzlMo11Kcuo64Vgvx6IyEzj/fPL9GdPLrheqfvqpWF9DEhPFdCCtxmZSNQJ+thtltT9pX7EXP6fivZYtqMSnylJbNl7J6JQna+cYmHIPqcicN65Z4cX+OIiCXEBWwAKO4jexWCTtTU1YKwHbt5+L1pkh+EJU4SerncWtLICUnTassshIlHlI3zbsfDKLjZ2PTgSFzyWAmyD+By7VIJU4gHjA8apEaONqorF+YSVoWqswXYHAewBuzJf1oPLWqtL6KL34Kh/UUzYWLGilNCk4gGVaefodPoHaVIrBsgCAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 02 AUG 2018 (R2)\n \n \n RunEnv:Nodes\n H4sIAHXQhl4CA0suyNMtNTLSNTZUSB5lUp/JBQCHmvBaYQEAAA==\n \n \n app\n gamess\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Attempts to Launch\n 1\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Time Spent in MP2 Energy Calculation\n 17.01\n Second\n \n \n Time Spent in Restricted Hartree-Fock Calculation\n 22.54\n Second\n \n \n User Time\n 40.1841\n Second\n \n \n Wall Clock Time\n 41.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,41,2257214,0,';cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;',NULL,NULL),(3807251,'2020-04-03 02:19:46','2020-04-03 02:19:52','UBHPC_32core','UBHPC_32core','graph500','graph500.2',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIXVhl4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIXVhl4CA0suyNMtNTLSNTZUSB5l0oppomtkMMqkBZMLAPdV2uLBAgAA\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 4.59536e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.38974e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 4.60772e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 374.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,374,2258310,0,';cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;',NULL,NULL),(3807253,'2020-04-03 02:58:35','2020-04-03 02:58:41','UBHPC_32core','UBHPC_32core','hpcc','hpcc.4',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAJ7ehl4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 40000\n \n \n Input:MPI Ranks\n 128\n \n \n Input:MPIRandom Problem Size\n 1024.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 20000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1254.693\n MHz\n \n \n RunEnv:Nodes\n H4sIAJ7ehl4CA0suyNMtNTLSNTJRSB5l0o5pbDjKpB3TRNfIYJRJS6axxSiTFkwuAGe6w8WBBQAA\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 49127.8\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4777.4208\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5469.87008\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4342.55872\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4857.26208\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 99959.7\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 520.641\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 3344610.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 12.7575\n Second\n \n \n MPI Random Access\n 58.3158\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 28547.072\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 187.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,187,2260421,0,';cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;',NULL,NULL),(3807254,'2020-04-03 02:59:40','2020-04-03 02:59:47','UBHPC_32core','UBHPC_32core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAODehl4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAODehl4CA0suyNMtNTLSNTJRSB5l0o5pbDjKpB3TRNfIYJRJS6axxSiTFkwuAGe6w8WBBQAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 240.325927734375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 48800\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 491.14227294921875\n MByte\n \n \n Global Arrays \'Get\' Calls\n 13300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 60.749053955078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 9003\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 26.1\n Second\n \n \n Wall Clock Time\n 60.3\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,60.3,2260453,0,';cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;',NULL,NULL),(3807255,'2020-04-03 03:18:59','2020-04-03 03:19:05','UBHPC_32core','UBHPC_32core','imb','imb.4',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAGbjhl4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAGbjhl4CA0suyNMtNTLSNTJRSB5l0o5pbDjKpB3TRNfIYJRJS6axxSiTFkwuAGe6w8WBBQAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 17147.63\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1907.68\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3407.23\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 10956.77\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11125.14\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3552.13\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3872.8\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12115.0\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11596.69\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11284.28\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11616.99\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 15406.07\n MByte per Second\n \n \n Min AllGather Latency\n 2.88e-06\n Second\n \n \n Min AllGatherV Latency\n 3e-06\n Second\n \n \n Min AllReduce Latency\n 2.95e-06\n Second\n \n \n Min AllToAll Latency\n 2.5699999999999995e-06\n Second\n \n \n Min AllToAllV Latency\n 2.56e-06\n Second\n \n \n Min Barrier Latency\n 2.8199999999999997e-06\n Second\n \n \n Min Broadcast Latency\n 2.27e-06\n Second\n \n \n Min Gather Latency\n 8.1e-07\n Second\n \n \n Min GatherV Latency\n 3.0099999999999996e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 1.81e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 8.939999999999999e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 3.1899999999999996e-05\n Second\n \n \n Min Reduce Latency\n 1.95e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.0699999999999997e-06\n Second\n \n \n Min Scatter Latency\n 1.81e-06\n Second\n \n \n Min ScatterV Latency\n 1.83e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 15.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,15,2261618,0,';cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;',NULL,NULL),(3807256,'2020-04-03 03:23:43','2020-04-03 03:23:49','UBHPC_32core','UBHPC_32core','graph500','graph500.1',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAILkhl4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAILkhl4CA0suyNMtNTLSNTJRSB5lUp/JBQDFxGgtYQEAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 6.39876e+09\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.97184e+08\n Traversed Edges Per Second\n \n \n Median TEPS\n 7.1652e+09\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 342.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,342,2261915,0,';cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;',NULL,NULL),(3807258,'2020-04-03 03:58:00','2020-04-03 03:58:06','UBHPC_32core','UBHPC_32core','imb','imb.2',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAIvshl4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAIvshl4CA0suyNMtNTLRNbJQSB5l0o5pbD7KpAWTCwAgA1JDwQIAAA==\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18587.55\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1955.48\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3590.02\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11187.4\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11181.71\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3460.98\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 4156.06\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12199.85\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11592.87\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11218.08\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11620.06\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 22466.24\n MByte per Second\n \n \n Min AllGather Latency\n 1.31e-06\n Second\n \n \n Min AllGatherV Latency\n 1.4e-06\n Second\n \n \n Min AllReduce Latency\n 1.42e-06\n Second\n \n \n Min AllToAll Latency\n 1.32e-06\n Second\n \n \n Min AllToAllV Latency\n 1.62e-06\n Second\n \n \n Min Barrier Latency\n 1.26e-06\n Second\n \n \n Min Broadcast Latency\n 1e-06\n Second\n \n \n Min Gather Latency\n 1.07e-06\n Second\n \n \n Min GatherV Latency\n 1.8e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 6.7e-07\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 5.88e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 1.918e-05\n Second\n \n \n Min Reduce Latency\n 1.12e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.34e-06\n Second\n \n \n Min Scatter Latency\n 9.8e-07\n Second\n \n \n Min ScatterV Latency\n 1.1699999999999998e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 11.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,11,2264222,0,';cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;',NULL,NULL),(3807259,'2020-04-03 03:59:23','2020-04-03 03:59:29','UBHPC_32core','UBHPC_32core','enzo','enzo.2',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAN7shl4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAN7shl4CA0suyNMtNTLRNbJQSB5l0o5pbD7KpAWTCwAgA1JDwQIAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 6.786483499999999\n Second\n \n \n All Grid Level 00 Calculation Time\n 26.079709\n Second\n \n \n All Grid Level 01 Calculation Time\n 50.226138868\n Second\n \n \n All Grid Level 02 Calculation Time\n 24.257694139\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 20.378609219999998\n Second\n \n \n Communication Transpose Time\n 1.177999991\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 1.8935905250000007\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 23.92747599\n Second\n \n \n Hydro Equations Solving Time\n 32.229950970000004\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 16.74616574161\n Second\n \n \n Radiative Transfer Calculation Time\n 41.8513817841\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 186.87850609999998\n Second\n \n \n Wall Clock Time\n 187.483792\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,187.484,2264323,0,';cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;',NULL,NULL),(3807260,'2020-04-03 04:02:04','2020-04-03 04:02:11','UBHPC_32core','UBHPC_32core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAIDthl4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAIDthl4CA0suyNMtNTLVNTZTSB5lUp/JBQBEm2eaYQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 402.4505615234375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 163000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 24900\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 150.6805419921875\n MByte\n \n \n Global Arrays \'Put\' Calls\n 17600\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 11.6\n Second\n \n \n Wall Clock Time\n 22.1\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,22.1,2264508,0,';cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;',NULL,NULL),(3807261,'2020-04-03 04:02:58','2020-04-03 04:03:04','UBHPC_32core','UBHPC_32core','graph500','graph500.4',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIALXthl4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIALXthl4CA0suyNMtNTLSNTJRSB5l0o5pbDjKpB3TBBHUo0zaMC1GmbRgcgEA2boRmYEFAAA=\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 8.65967e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 3.1985e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 8.65852e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 363.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,363,2264568,0,';cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;',NULL,NULL),(3807257,'2020-04-03 04:07:33','2020-04-03 04:07:40','UBHPC_32core','UBHPC_32core','gamess','gamess.4',1,NULL,NULL,'\n Gamess\n \n Gamess\n \n \n App:ExeBinSignature\n H4sIAMnuhl4CA7WRTY7bMAyF9zlFTmCR1H+X7SxmM0A3XQcSSaVuncSwPcAcvzKShS/QhSCB0ke+p/fx5r+da2zRNiUH6gVbRedURJBD0QzKZzMvjz/K22qYl3UrrZmr3nUpkynz/FcX8+v7+88f5lpuuq6vbQAcvk4f+wDJmIP6lkgqVW0CpNV7jim6GMmdzec29l5cRG8jm/G+6WQwDdbw4zaPky7rpdzlMo11Kcuo64Vgvx6IyEzj/fPL9GdPLrheqfvqpWF9DEhPFdCCtxmZSNQJ+thtltT9pX7EXP6fivZYtqMSnylJbNl7J6JQna+cYmHIPqcicN65Z4cX+OIiCXEBWwAKO4jexWCTtTU1YKwHbt5+L1pkh+EJU4SerncWtLICUnTassshIlHlI3zbsfDKLjZ2PTgSFzyWAmyD+By7VIJU4gHjA8apEaONqorF+YSVoWqswXYHAewBuzJf1oPLWqtL6KL34Kh/UUzYWLGilNCk4gGVaefodPoHaVIrBsgCAAA=\n \n \n App:NCores\n 128\n \n \n App:NNodes\n 4\n \n \n App:Version\n 02 AUG 2018 (R2)\n \n \n RunEnv:Nodes\n H4sIAMnuhl4CA0suyNMtNTLSNTJRSB5l0o5pbDjKpB3TBBHUo0yaMJGCepRJRSYXAH3PwUyBBQAA\n \n \n app\n gamess\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Attempts to Launch\n 1\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Time Spent in MP2 Energy Calculation\n 124.06\n Second\n \n \n Time Spent in Restricted Hartree-Fock Calculation\n 421.58\n Second\n \n \n User Time\n 574.2868000000001\n Second\n \n \n Wall Clock Time\n 1052.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,1052,2262768,0,';cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;',NULL,NULL),(3807246,'2020-04-03 04:12:15','2020-04-03 04:12:21','UBHPC_32core','UBHPC_32core','hpcc','hpcc.8',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAOLvhl4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 16\n \n \n Input:High Performance LINPACK Problem Size\n 56568\n \n \n Input:MPI Ranks\n 256\n \n \n Input:MPIRandom Problem Size\n 2048.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 28284\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1688.946\n MHz\n \n \n RunEnv:Nodes\n H4sIAOLvhl4CA0suyNMtNTLSNTJRSB5l0o5pbDjKpB3TWNfYbJRJO6YJIimPMmnDtBhl0pIJLypGmbRhmo8yacc0RRTFo0yqMrkA1WMK2QELAAA=\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 46685.299999999996\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4723.49696\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5422.04928\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4279.51104\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4809.80992\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 108293.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 353.699\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 6117160.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 19.7283\n Second\n \n \n MPI Random Access\n 96.3928\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 42379.4688\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 172.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,172,2252860,0,';cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;',NULL,NULL),(3807262,'2020-04-03 04:15:33','2020-04-03 04:15:39','UBHPC_32core','UBHPC_32core','gamess','gamess.2',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2265484,0,';cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;',NULL,NULL),(3807263,'2020-04-03 04:20:57','2020-04-03 04:21:04','UBHPC_32core','UBHPC_32core','enzo','enzo.1',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAO3xhl4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAO3xhl4CA0suyNMtNTLVNTZTSB5lUp/JBQBEm2eaYQEAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 14.1357374\n Second\n \n \n All Grid Level 00 Calculation Time\n 43.79448139999998\n Second\n \n \n All Grid Level 01 Calculation Time\n 89.932639443\n Second\n \n \n All Grid Level 02 Calculation Time\n 36.527245814000004\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 31.77659563000001\n Second\n \n \n Communication Transpose Time\n 1.2458840409999996\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.4665419799999997\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 30.68450962\n Second\n \n \n Hydro Equations Solving Time\n 61.31740989999999\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 33.14747389299\n Second\n \n \n Radiative Transfer Calculation Time\n 58.6080884999\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 290.5766661\n Second\n \n \n Wall Clock Time\n 291.394785\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,291.395,2265843,0,';cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;',NULL,NULL),(3807252,'2020-04-03 04:34:15','2020-04-03 04:34:21','UBHPC_32core','UBHPC_32core','imb','imb.8',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAAr1hl4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAAr1hl4CA0suyNMtNTLSNTJRSB5l0o5pbDjKpB3TWNfYbJRJO6YJIimPMmnDtBhl0pIJLypGmbRhmo8yacc0RRTFo0yqMrkA1WMK2QELAAA=\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18172.81\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1750.61\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3248.85\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 9168.33\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 8663.97\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3194.47\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3647.86\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 9271.24\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 8920.53\n MByte per Second\n \n \n Max PingPing Bandwidth\n 8822.56\n MByte per Second\n \n \n Max PingPong Bandwidth\n 10187.74\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 17270.95\n MByte per Second\n \n \n Min AllGather Latency\n 4.839999999999999e-06\n Second\n \n \n Min AllGatherV Latency\n 5.0099999999999995e-06\n Second\n \n \n Min AllReduce Latency\n 4.87e-06\n Second\n \n \n Min AllToAll Latency\n 4.48e-06\n Second\n \n \n Min AllToAllV Latency\n 4.42e-06\n Second\n \n \n Min Barrier Latency\n 5.549999999999999e-06\n Second\n \n \n Min Broadcast Latency\n 1.73e-06\n Second\n \n \n Min Gather Latency\n 6.7e-07\n Second\n \n \n Min GatherV Latency\n 4.34e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 4.1e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 1.3909999999999999e-05\n Second\n \n \n Min MPI-2 Window Creation Latency\n 5.5549999999999995e-05\n Second\n \n \n Min Reduce Latency\n 4.17e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.36e-06\n Second\n \n \n Min Scatter Latency\n 1.31e-06\n Second\n \n \n Min ScatterV Latency\n 1.4e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 28.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,28,2259115,0,';cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;',NULL,NULL),(3807278,'2020-04-03 19:23:20','2020-04-03 19:23:32','UBHPC_8core','UBHPC_8core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAGzFh14CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 16\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAGzFh14CA0suyNNNMTDXNbDUNTBUSKYbz9CAPjwuAEMREuThAAAA\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 311.390625\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.369137183438369e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 193.015549\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',311.391,0,193.016,2292213,0,';cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;',NULL,NULL),(3807303,'2020-04-03 19:43:00','2020-04-03 19:43:08','UBHPC_8core','UBHPC_8core','nwchem','nwchem.2',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n nwchem\n \n \n \n ',0,0,0,2296093,0,';cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;',NULL,NULL),(3807275,'2020-04-03 19:43:12','2020-04-03 19:43:19','UBHPC_8core','UBHPC_8core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIABTKh14CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIABTKh14CA0suyNNNMTDXNbTUNTBSSKYbz8iUzjwzXQNDevIs6MPjAgDxuPH6wQEAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 310.500000\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.44784259392984e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 110.019783\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',310.5,0,110.02,2291826,0,';cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;',NULL,NULL),(3807289,'2020-04-03 19:53:12','2020-04-03 19:53:24','UBHPC_8core','UBHPC_8core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAG7Mh14CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 8\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAG7Mh14CA0suyNNNMTDXNTbQNTBUSKY5jwsA4Y8g33EAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 324.156250\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 7.02829591937139e-10\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 326.689636\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',324.156,0,326.69,2294372,0,';cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;',NULL,NULL),(3807290,'2020-04-03 19:53:27','2020-04-03 19:53:43','UBHPC_8core','UBHPC_8core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAH7Mh14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAH3Mh14CA0suyNNNMbDUNbLQNTBSSKY5jwsAn9TVdHEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 1869.20166015625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 783000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 2584.4573974609375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 93300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 456.80999755859375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 62600\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 107.4\n Second\n \n \n Wall Clock Time\n 114.4\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,114.4,2294373,0,';cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;',NULL,NULL),(3807284,'2020-04-03 19:53:32','2020-04-03 19:53:45','UBHPC_8core','UBHPC_8core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAIXMh14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAIXMh14CA0suyNNNMTDXBSFDhWT68Sx1DYzoyDM0oDPPENm3tONxAQACg++rwQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 552.1774291992188\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 199000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 1001.3580322265625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 28200\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 150.6805419921875\n MByte\n \n \n Global Arrays \'Put\' Calls\n 18800\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 52.6\n Second\n \n \n Wall Clock Time\n 93.2\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,93.2,2293306,0,';cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;',NULL,NULL),(3807288,'2020-04-03 20:53:24','2020-04-03 20:53:32','UBHPC_8core','UBHPC_8core','namd','namd.8',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAIjah14CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 8\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAIjah14CA0suyNNNMTDXBSFDhWT68SzozzOiJ88SxXa68IzoyDM0QLadPjwjevIMUWynGY8LAAyp08CBAwAA\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 326.101562\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 4.189832951360229e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 79.227158\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',326.102,0,79.2272,2294370,0,';cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;',NULL,NULL),(3807287,'2020-04-03 20:53:30','2020-04-03 20:53:37','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAI7ah14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAI7ah14CA0suyNNNMTDXBSFDhWT68SzozzOiJ88SxXa68IzoyDM0QLadPjwjevIMUWynGY8LAAyp08CBAwAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 313.75885009765625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 87700\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 671.38671875\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18100\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 98.22845458984375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 39.5\n Second\n \n \n Wall Clock Time\n 91.2\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,91.2,2294371,0,';cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;',NULL,NULL),(3807286,'2020-04-03 20:53:48','2020-04-03 20:53:55','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAKDah14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAKDah14CA0suyNNNMTDXBSFDhWT68SzozzOiJ88SxXa68IzoyDM0QLadPjwjevIMUWynGY8LAAyp08CBAwAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 337.6007080078125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 103000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 679.9697875976562\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18200\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 98.22845458984375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 42.0\n Second\n \n \n Wall Clock Time\n 93.5\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,93.5,2294379,0,';cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;',NULL,NULL),(3807337,'2020-04-05 00:55:52','2020-04-05 00:55:58','UBHPC_32core','UBHPC_32core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIANtkiV4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIANtkiV4CA0suyNMtNTLSNTZXSB5l0oppqmtsNsqkBZMLAHSAwGjBAgAA\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 628.636719\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.1679664186295316e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 43.769772\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',628.637,0,43.7698,2408566,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;',NULL,NULL),(3807339,'2020-04-05 00:55:54','2020-04-05 00:56:00','UBHPC_32core','UBHPC_32core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAN1kiV4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAN1kiV4CA0suyNMtNTLVNTZTSB5lUp/JBQBEm2eaYQEAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 575.152344\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 6.211064390104533e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 58.637306\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',575.152,0,58.6373,2408568,0,';cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;',NULL,NULL),(3807336,'2020-04-05 01:05:13','2020-04-05 01:05:19','UBHPC_32core','UBHPC_32core','enzo','enzo.4',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAAxniV4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAAxniV4CA0suyNMtNTLSNTZRSB5l0pBpPsqkHdNE12iUSUOmqa6x2SiTFkwuAK0Ff+SBBQAA\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 5.8561045\n Second\n \n \n All Grid Level 00 Calculation Time\n 15.841810099999988\n Second\n \n \n All Grid Level 01 Calculation Time\n 33.186434768999995\n Second\n \n \n All Grid Level 02 Calculation Time\n 18.941542438000006\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 12.511403334000002\n Second\n \n \n Communication Transpose Time\n 1.5594896280000006\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 1.9967370990000002\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 19.82532878\n Second\n \n \n Hydro Equations Solving Time\n 16.436920370000003\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 10.021369509050002\n Second\n \n \n Radiative Transfer Calculation Time\n 56.40099534532\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 161\n \n \n Total Time Spent in Cycles\n 162.7575292\n Second\n \n \n Wall Clock Time\n 163.351737\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,163.352,2394628,0,';cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;',NULL,NULL),(3807341,'2020-04-05 01:09:51','2020-04-05 01:09:57','UBHPC_32core','UBHPC_32core','hpcc','hpcc.2',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIACJoiV4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 28284\n \n \n Input:MPI Ranks\n 64\n \n \n Input:MPIRandom Problem Size\n 512.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 14142\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1488.995\n MHz\n \n \n RunEnv:Nodes\n H4sIACJoiV4CA0suyNMtNTLSNTZXSB5l0oppqmtsNsqkBZMLAHSAwGjBAgAA\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 50616.2\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4664.41216\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5390.68416\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4262.74816\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4778.62912\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 65946.20000000001\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 482.884\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1840670.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 8.19579\n Second\n \n \n MPI Random Access\n 32.897999999999996\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 21345.6896\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 141.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,141,2411987,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;',NULL,NULL),(3807342,'2020-04-05 01:19:09','2020-04-05 01:19:16','UBHPC_32core','UBHPC_32core','hpcc','hpcc.1',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAFFqiV4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 4\n \n \n Input:High Performance LINPACK Problem Size\n 20000\n \n \n Input:MPI Ranks\n 32\n \n \n Input:MPIRandom Problem Size\n 256.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 10000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 2188.696\n MHz\n \n \n RunEnv:Nodes\n H4sIAFFqiV4CA0suyNMtNTLSNTZXSB5lUp/JBQB0j9QLYQEAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 49723.6\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 5001.14432\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5600.90112\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4611.04128\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 5172.5824\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 51848.799999999996\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 357.869\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1002580.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 5.32021\n Second\n \n \n MPI Random Access\n 11.0399\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 13940.0192\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 139.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,139,2412237,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;',NULL,NULL),(3807338,'2020-04-05 01:25:58','2020-04-05 01:26:04','UBHPC_32core','UBHPC_32core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAOlriV4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 128\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAOlriV4CA0suyNMtNTLSNTZRSB5l0pBpPsqkHdNY18hklEk7pomukfkokxZMLgCMVT62gQUAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 626.628906\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.1556741655385307e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 35.020145\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',626.629,0,35.0201,2408567,0,';cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;',NULL,NULL),(3807340,'2020-04-05 01:41:56','2020-04-05 01:42:02','UBHPC_32core','UBHPC_32core','hpcc','hpcc.8',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAKdviV4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 16\n \n \n Input:High Performance LINPACK Problem Size\n 56568\n \n \n Input:MPI Ranks\n 256\n \n \n Input:MPIRandom Problem Size\n 2048.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 28284\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1092.938\n MHz\n \n \n RunEnv:Nodes\n H4sIAKdviV4CA+3SoREAIAwDQM8ULFBBWij74DkM+yOZIC7uB/h1tl3APOoSiUyRRzeEyGMYmkhlijz2X1mk0IdI5RQZLA8+W6MGAQsAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 50036.8\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4892.94848\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5553.2032\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4457.0112\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4993.23904\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 114224.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 571.626\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 6397460.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 18.8639\n Second\n \n \n MPI Random Access\n 95.29039999999999\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 34455.1424\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 183.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,183,2411241,0,';cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;',NULL,NULL),(3807343,'2020-04-05 01:53:19','2020-04-05 01:53:25','UBHPC_32core','UBHPC_32core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAFJyiV4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAFJyiV4CA0suyNMtNTLSNTZQSB5l0oppqmtkOsqkBZMLAO3b82zBAgAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 307.0831298828125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 101000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 646.5911865234375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 15300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 94.2230224609375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 11300\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 18.1\n Second\n \n \n Wall Clock Time\n 44.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,44,2413217,0,';cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;',NULL,NULL),(3807344,'2020-04-05 01:58:01','2020-04-05 01:58:08','UBHPC_32core','UBHPC_32core','gamess','gamess.1',1,NULL,NULL,'\n Gamess\n \n Gamess\n \n \n App:ExeBinSignature\n H4sIAGxziV4CA7WRTY7bMAyF9zlFTmCR1H+X7SxmM0A3XQcSSaVuncSwPcAcvzKShS/QhSCB0ke+p/fx5r+da2zRNiUH6gVbRedURJBD0QzKZzMvjz/K22qYl3UrrZmr3nUpkynz/FcX8+v7+88f5lpuuq6vbQAcvk4f+wDJmIP6lkgqVW0CpNV7jim6GMmdzec29l5cRG8jm/G+6WQwDdbw4zaPky7rpdzlMo11Kcuo64Vgvx6IyEzj/fPL9GdPLrheqfvqpWF9DEhPFdCCtxmZSNQJ+thtltT9pX7EXP6fivZYtqMSnylJbNl7J6JQna+cYmHIPqcicN65Z4cX+OIiCXEBWwAKO4jexWCTtTU1YKwHbt5+L1pkh+EJU4SerncWtLICUnTassshIlHlI3zbsfDKLjZ2PTgSFzyWAmyD+By7VIJU4gHjA8apEaONqorF+YSVoWqswXYHAewBuzJf1oPLWqtL6KL34Kh/UUzYWLGilNCk4gGVaefodPoHaVIrBsgCAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 02 AUG 2018 (R2)\n \n \n RunEnv:Nodes\n H4sIAGxziV4CA0suyNMtNTLVNTJVSB5lUp/JBQD10Nu8YQEAAA==\n \n \n app\n gamess\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Attempts to Launch\n 1\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Time Spent in MP2 Energy Calculation\n 17.12\n Second\n \n \n Time Spent in Restricted Hartree-Fock Calculation\n 22.49\n Second\n \n \n User Time\n 41.055\n Second\n \n \n Wall Clock Time\n 42.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,42,2413355,0,';cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;',NULL,NULL),(3807345,'2020-04-05 02:19:46','2020-04-05 02:19:53','UBHPC_32core','UBHPC_32core','graph500','graph500.2',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIZ4iV4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIZ4iV4CA0suyNMtNTLRNTZVSB5l0oppqmtoMcqkBZMLAP1+ULjBAgAA\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 4.65536e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.27422e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 4.66441e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 370.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,370,2414050,0,';cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;',NULL,NULL),(3807347,'2020-04-05 02:58:28','2020-04-05 02:58:34','UBHPC_32core','UBHPC_32core','hpcc','hpcc.4',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAJeBiV4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 40000\n \n \n Input:MPI Ranks\n 128\n \n \n Input:MPIRandom Problem Size\n 1024.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 20000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1428.881\n MHz\n \n \n RunEnv:Nodes\n H4sIAJeBiV4CA0suyNMtNTLSNTZWSB5l0oppomtkOcqkJdPYdJRJO6aprqHFKJMWTC4Ajo01o4EFAAA=\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 46986.5\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4928.27648\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5556.61312\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4488.09984\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4993.32096\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 78290.09999999999\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 472.783\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 3458820.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 12.3363\n Second\n \n \n MPI Random Access\n 58.344899999999996\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 16391.9872\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 178.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,178,2415370,0,';cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;',NULL,NULL),(3807348,'2020-04-05 02:59:41','2020-04-05 02:59:47','UBHPC_32core','UBHPC_32core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAOCBiV4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAOCBiV4CA0suyNMtNTLSNTZWSB5l0oppomtkOcqkJdPYdJRJO6aprqHFKJMWTC4Ajo01o4EFAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 244.140625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 57600\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 504.49371337890625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 13300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 60.749053955078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 9005\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 27.2\n Second\n \n \n Wall Clock Time\n 63.5\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,63.5,2415393,0,';cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;',NULL,NULL),(3807346,'2020-04-05 03:04:02','2020-04-05 03:04:08','UBHPC_32core','UBHPC_32core','imb','imb.8',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAOWCiV4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAOWCiV4CA+3SoQ0AIAxEUc8ULHCCFpIyTz3BsD+OsMC5c0///NwLxwzuNUUWHRYik19qkcEhUhkijx02RSbfyiKBAy1EBssFotd+IAELAAA=\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 16784.03\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1882.24\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3100.49\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 6154.34\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 5964.46\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3443.81\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3901.66\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12129.2\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11462.95\n MByte per Second\n \n \n Max PingPing Bandwidth\n 6065.43\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11488.02\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 20500.13\n MByte per Second\n \n \n Min AllGather Latency\n 4.8299999999999995e-06\n Second\n \n \n Min AllGatherV Latency\n 4.96e-06\n Second\n \n \n Min AllReduce Latency\n 4.81e-06\n Second\n \n \n Min AllToAll Latency\n 4.3899999999999995e-06\n Second\n \n \n Min AllToAllV Latency\n 4.42e-06\n Second\n \n \n Min Barrier Latency\n 4.44e-06\n Second\n \n \n Min Broadcast Latency\n 1.87e-06\n Second\n \n \n Min Gather Latency\n 6.7e-07\n Second\n \n \n Min GatherV Latency\n 4.35e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 4.1100000000000005e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 1.44e-05\n Second\n \n \n Min MPI-2 Window Creation Latency\n 5.5469999999999996e-05\n Second\n \n \n Min Reduce Latency\n 4.1e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.4500000000000003e-06\n Second\n \n \n Min Scatter Latency\n 1.26e-06\n Second\n \n \n Min ScatterV Latency\n 1.31e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 23.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,23,2414534,0,';cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;',NULL,NULL),(3807349,'2020-04-05 03:18:59','2020-04-05 03:19:05','UBHPC_32core','UBHPC_32core','imb','imb.4',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAGaGiV4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAGaGiV4CA0suyNMtNTLSNTZWSB5l0opprGtkMcqkJRMpqEeZtGBajDJpweQCABEn4SWBBQAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18276.17\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1834.01\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3437.05\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 10436.13\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11190.25\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3567.25\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3938.26\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12121.67\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11453.25\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11335.9\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11652.38\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 18113.87\n MByte per Second\n \n \n Min AllGather Latency\n 2.87e-06\n Second\n \n \n Min AllGatherV Latency\n 2.99e-06\n Second\n \n \n Min AllReduce Latency\n 2.8999999999999998e-06\n Second\n \n \n Min AllToAll Latency\n 2.5099999999999997e-06\n Second\n \n \n Min AllToAllV Latency\n 2.5699999999999995e-06\n Second\n \n \n Min Barrier Latency\n 2.7799999999999996e-06\n Second\n \n \n Min Broadcast Latency\n 2.31e-06\n Second\n \n \n Min Gather Latency\n 8.1e-07\n Second\n \n \n Min GatherV Latency\n 3.24e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 1.78e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 9.01e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 3.182e-05\n Second\n \n \n Min Reduce Latency\n 1.85e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.94e-06\n Second\n \n \n Min Scatter Latency\n 1.82e-06\n Second\n \n \n Min ScatterV Latency\n 1.85e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 17.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,17,2416262,0,';cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;',NULL,NULL),(3807350,'2020-04-05 03:23:43','2020-04-05 03:23:49','UBHPC_32core','UBHPC_32core','graph500','graph500.1',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIKHiV4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIKHiV4CA0suyNMtNTLWNbJQSB5lUp/JBQCGTm5XYQEAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 6.41334e+09\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.96785e+08\n Traversed Edges Per Second\n \n \n Median TEPS\n 7.09003e+09\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 339.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,339,2416524,0,';cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;',NULL,NULL),(3807352,'2020-04-05 03:27:47','2020-04-05 03:27:53','UBHPC_32core','UBHPC_32core','imb','imb.2',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAHaIiV4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAHaIiV4CA0suyNMtNTLWNbJQSB5l0o5pbDzKpAWTCwCgEHRHwQIAAA==\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18204.31\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1896.29\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3465.48\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11394.64\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11241.73\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3551.67\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3980.85\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12104.99\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11602.05\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11326.41\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11588.29\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 22684.96\n MByte per Second\n \n \n Min AllGather Latency\n 1.29e-06\n Second\n \n \n Min AllGatherV Latency\n 1.3899999999999998e-06\n Second\n \n \n Min AllReduce Latency\n 1.38e-06\n Second\n \n \n Min AllToAll Latency\n 1.32e-06\n Second\n \n \n Min AllToAllV Latency\n 1.57e-06\n Second\n \n \n Min Barrier Latency\n 1.2499999999999999e-06\n Second\n \n \n Min Broadcast Latency\n 9.9e-07\n Second\n \n \n Min Gather Latency\n 1.06e-06\n Second\n \n \n Min GatherV Latency\n 1.8e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 6.9e-07\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 5.87e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 1.831e-05\n Second\n \n \n Min Reduce Latency\n 1.06e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.24e-06\n Second\n \n \n Min Scatter Latency\n 1e-06\n Second\n \n \n Min ScatterV Latency\n 1.18e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 11.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,11,2418397,0,';cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;',NULL,NULL),(3807354,'2020-04-05 03:32:00','2020-04-05 03:32:07','UBHPC_32core','UBHPC_32core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAHSJiV4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHSJiV4CA0suyNMtNTLWNTZSSB5lUp/JBQD7spRHYQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 424.38507080078125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 186000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 24900\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 152.587890625\n MByte\n \n \n Global Arrays \'Put\' Calls\n 17800\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 11.1\n Second\n \n \n Wall Clock Time\n 23.2\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,23.2,2418685,0,';cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;',NULL,NULL),(3807351,'2020-04-05 03:37:30','2020-04-05 03:37:36','UBHPC_32core','UBHPC_32core','gamess','gamess.4',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2417287,0,';cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;',NULL,NULL),(3807353,'2020-04-05 03:59:19','2020-04-05 03:59:25','UBHPC_32core','UBHPC_32core','enzo','enzo.2',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIANqPiV4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIANqPiV4CA0suyNMtNTLWNbJQSB5l0o5pbDzKpAWTCwCgEHRHwQIAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 7.4976799\n Second\n \n \n All Grid Level 00 Calculation Time\n 26.062943200000007\n Second\n \n \n All Grid Level 01 Calculation Time\n 48.566029099\n Second\n \n \n All Grid Level 02 Calculation Time\n 23.745745786\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 20.01688195\n Second\n \n \n Communication Transpose Time\n 1.1753535149999996\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 1.9046777119999998\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 23.873481359999992\n Second\n \n \n Hydro Equations Solving Time\n 31.97791578000001\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 16.28157617505\n Second\n \n \n Radiative Transfer Calculation Time\n 40.1312129133\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 183.8072777\n Second\n \n \n Wall Clock Time\n 184.501591\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,184.502,2418528,0,';cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;',NULL,NULL),(3807355,'2020-04-05 04:02:58','2020-04-05 04:03:04','UBHPC_32core','UBHPC_32core','graph500','graph500.4',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIALWQiV4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIALWQiV4CA0suyNMtNTLWNbJQSB5l0o5pbDTKpCnTeJRJU6bpKJMWTC4AT3BjoYEFAAA=\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 8.67749e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 2.8601e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 8.6901e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 362.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,362,2418688,0,';cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;',NULL,NULL),(3807356,'2020-04-05 04:15:33','2020-04-05 04:15:39','UBHPC_32core','UBHPC_32core','gamess','gamess.2',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2419395,0,';cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;',NULL,NULL),(3807357,'2020-04-05 04:20:58','2020-04-05 04:21:05','UBHPC_32core','UBHPC_32core','enzo','enzo.1',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAO6UiV4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAO6UiV4CA0suyNMtNTLWNTZWSB5lUp/JBQBzyF2yYQEAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 11.3394695\n Second\n \n \n All Grid Level 00 Calculation Time\n 43.83575349999999\n Second\n \n \n All Grid Level 01 Calculation Time\n 93.99537708000001\n Second\n \n \n All Grid Level 02 Calculation Time\n 37.102518389000004\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 33.73168759\n Second\n \n \n Communication Transpose Time\n 1.2255566039999997\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.4691791400000005\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 32.538557999999995\n Second\n \n \n Hydro Equations Solving Time\n 62.497780600000006\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 34.71079586887\n Second\n \n \n Radiative Transfer Calculation Time\n 85.7534420747\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 161\n \n \n Total Time Spent in Cycles\n 322.0164561000001\n Second\n \n \n Wall Clock Time\n 322.972714\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,322.973,2419722,0,';cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;',NULL,NULL),(3807369,'2020-04-05 11:12:18','2020-04-05 11:12:25','UBHPC_8core','UBHPC_8core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAFb1iV4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAFb1iV4CA0suyNNNMTDXNbLUNTBUSKYrz4iOPGMDZNvpwzOiA48LAPyzmRvBAQAA\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 310.656250\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.5149071119058218e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 109.494431\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',310.656,0,109.494,2445126,0,';cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;',NULL,NULL),(3807371,'2020-04-05 11:22:21','2020-04-05 11:22:27','UBHPC_8core','UBHPC_8core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIALD3iV4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 16\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIALD3iV4CA0suyNNNMTDXNTbWNTBUSKYrz4gOPC4AINnU+uEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 312.230469\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.3760060324104463e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 186.254257\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',312.23,0,186.254,2445879,0,';cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;',NULL,NULL),(3807379,'2020-04-05 11:52:20','2020-04-05 11:52:27','UBHPC_8core','UBHPC_8core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIALj+iV4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIALj+iV4CA0suyNNNMTDXNTbQNTBUSKYrz4iePGMU2+nCM6IDjwsA2dIvBMEBAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 556.94580078125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 196000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 972.747802734375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 28000\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 152.587890625\n MByte\n \n \n Global Arrays \'Put\' Calls\n 18900\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 48.7\n Second\n \n \n Wall Clock Time\n 90.5\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,90.5,2448095,0,';cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;',NULL,NULL),(3807380,'2020-04-05 12:22:21','2020-04-05 12:22:29','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMEFil4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMEFil4CA0suyNNNMTDXNTDTNTBSSKYfD4gM6cwzoifPAsV2uvCM6MmzRLGdLjwjOvIMDZBtpx2PCwAykD0ngQMAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 309.94415283203125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 83100\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 651.3595581054688\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18000\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 98.22845458984375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 41.3\n Second\n \n \n Wall Clock Time\n 89.7\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,89.7,2450811,0,';cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;',NULL,NULL),(3807384,'2020-04-05 12:22:21','2020-04-05 12:22:31','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMQFil4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMMFil4CA0suyNNNMTDXNTTQNTBSSKYfz1DXwJDOPCN68oxRbKcLz4iePBMU2+nCM6InzwzFdprxuABuu9MjgQMAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 332.83233642578125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 109000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 665.6646728515625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18100\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 97.2747802734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 39.7\n Second\n \n \n Wall Clock Time\n 91.5\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,91.5,2450810,0,';cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-13-01;cpn-d07-13-01;cpn-d07-13-01;cpn-d07-13-01;cpn-d07-13-01;cpn-d07-13-01;cpn-d07-13-01;cpn-d07-13-01;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;',NULL,NULL),(3807381,'2020-04-05 12:22:21','2020-04-05 12:22:31','UBHPC_8core','UBHPC_8core','namd','namd.8',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMQFil4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 8\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMMFil4CA0suyNNNMTDXNTDTNTBSSKYfD4gM6cwzoifPAsV2uvCM6MmzRLGdLjwjOvIMDZBtpx2PCwAykD0ngQMAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 325.398438\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 4.944351325827809e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 73.324554\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',325.398,0,73.3246,2450809,0,';cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;',NULL,NULL),(3807382,'2020-04-05 12:22:27','2020-04-05 12:22:34','UBHPC_8core','UBHPC_8core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMYFil4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 8\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMYFil4CA0suyNNNMTDXNTbRNTBSSKY5jwsAUtxm53EAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 324.664062\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 7.100810202444099e-10\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 327.868469\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',324.664,0,327.868,2450812,0,';cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;',NULL,NULL),(3807383,'2020-04-05 12:22:29','2020-04-05 12:22:36','UBHPC_8core','UBHPC_8core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMgFil4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMgFil4CA0suyNNNMbDUNTbVNTBSSKY5jwsA3bKTC3EAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 1878.7384033203125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 779000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 2613.067626953125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 93500\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 455.8563232421875\n MByte\n \n \n Global Arrays \'Put\' Calls\n 62400\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 107.5\n Second\n \n \n Wall Clock Time\n 114.7\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,114.7,2450823,0,';cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;',NULL,NULL),(3807398,'2020-04-05 13:12:19','2020-04-05 13:12:25','UBHPC_8core','UBHPC_8core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAHYRil4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHYRil4CA0suyNNNMTDXNTTRNTBSSKYfz0zXwJAOPC4AS7wTI+EAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 399000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 1459.1217041015625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 48600\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 240.325927734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 32100\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 69.9\n Second\n \n \n Wall Clock Time\n 111.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,111,2453697,0,';cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;',NULL,NULL),(3807430,'2020-04-06 17:03:41','2020-04-06 17:03:47','UBHPC_32core','UBHPC_32core','enzo','enzo.4',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIADCZi14CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIADCZi14CA0suyNMtNTLWNTJWSB5l0pBpMsqkKdN0lElTpsUokxZMLgCdPzBQgQUAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 5.7758135\n Second\n \n \n All Grid Level 00 Calculation Time\n 17.26171851000001\n Second\n \n \n All Grid Level 01 Calculation Time\n 31.978206435\n Second\n \n \n All Grid Level 02 Calculation Time\n 18.426381126\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 12.347541273000003\n Second\n \n \n Communication Transpose Time\n 1.873370209\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.339154365\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 19.952143160000006\n Second\n \n \n Hydro Equations Solving Time\n 16.13874104\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 9.36344375474\n Second\n \n \n Radiative Transfer Calculation Time\n 59.39978552337\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 161\n \n \n Total Time Spent in Cycles\n 164.966701\n Second\n \n \n Wall Clock Time\n 165.597506\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,165.598,2494374,0,';cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-24;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;',NULL,NULL),(3807431,'2020-04-06 21:55:26','2020-04-06 21:55:33','UBHPC_32core','UBHPC_32core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJLdi14CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 128\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJLdi14CA0suyNMtNTLWNTZVSB5l0pBpNsqkKdN8lElTpsUokxZMLgCCd0N8gQUAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 626.628906\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.1831582440421616e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 34.394409\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',626.629,0,34.3944,2495614,0,';cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;',NULL,NULL),(3807433,'2020-04-06 21:55:28','2020-04-06 21:55:35','UBHPC_32core','UBHPC_32core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJPdi14CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJPdi14CA0suyNMtNTLRNbRQSB5l0pBpOcqkBZMLAM9NPZfBAgAA\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 628.636719\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 9.978546125829468e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 44.140289\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',628.637,0,44.1403,2495615,0,';cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;',NULL,NULL),(3807432,'2020-04-06 22:25:30','2020-04-06 22:25:36','UBHPC_32core','UBHPC_32core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJ3ki14CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJ3ki14CA0suyNMtNTLRNTRXSB5lUp/JBQD4wryrYQEAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 575.957031\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 6.348722637005435e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 59.220467\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',575.957,0,59.2205,2495613,0,';cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;',NULL,NULL),(3807434,'2020-04-07 00:41:48','2020-04-07 00:41:54','UBHPC_32core','UBHPC_32core','hpcc','hpcc.8',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAI8EjF4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 16\n \n \n Input:High Performance LINPACK Problem Size\n 56568\n \n \n Input:MPI Ranks\n 256\n \n \n Input:MPIRandom Problem Size\n 2048.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 28284\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1389.019\n MHz\n \n \n RunEnv:Nodes\n H4sIAI8EjF4CA+3GuQ0AIAwEwZwqaMAS2IinHnJEQv9UcdlONPseex7mkTfVNTqVdlBpJ9W1WR1U2kmlXVRZL1TR9AGk2Fm4AQsAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 47269.0\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4756.736\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5435.15648\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4326.4\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4841.50272\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 160654.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 438.257\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 6233570.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 19.3598\n Second\n \n \n MPI Random Access\n 98.8805\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 40717.5168\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 189.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,189,2496295,0,';cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u23-38;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-18;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-19;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;',NULL,NULL),(3807435,'2020-04-07 01:09:52','2020-04-07 01:09:59','UBHPC_32core','UBHPC_32core','hpcc','hpcc.2',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIACMLjF4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 28284\n \n \n Input:MPI Ranks\n 64\n \n \n Input:MPIRandom Problem Size\n 512.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 14142\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1224.7\n MHz\n \n \n RunEnv:Nodes\n H4sIACMLjF4CA0suyNMtNTLSNTZWSB5l0opprGs0yqQJkwsA/dMoHMECAAA=\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 50107.100000000006\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4629.56544\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5340.74368\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4226.95936\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4710.8608\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 65880.5\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 561.553\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1760600.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 8.56851\n Second\n \n \n MPI Random Access\n 32.8482\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 25116.3648\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 147.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,147,2496735,0,';cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;',NULL,NULL),(3807436,'2020-04-07 01:19:07','2020-04-07 01:19:15','UBHPC_32core','UBHPC_32core','hpcc','hpcc.1',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAE8NjF4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 4\n \n \n Input:High Performance LINPACK Problem Size\n 20000\n \n \n Input:MPI Ranks\n 32\n \n \n Input:MPIRandom Problem Size\n 256.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 10000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1974.005\n MHz\n \n \n RunEnv:Nodes\n H4sIAE8NjF4CA0suyNMtNTLSNTZWSB5lUp/JBQDWaRNqYQEAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48848.799999999996\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4587.39712\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5291.10016\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4192.93184\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4698.63424\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 50658.200000000004\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 393.009\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 993026.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 5.3714\n Second\n \n \n MPI Random Access\n 10.997200000000001\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 13697.8432\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 141.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,141,2496736,0,';cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3807437,'2020-04-07 01:23:15','2020-04-07 01:23:22','UBHPC_32core','UBHPC_32core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAEcOjF4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAEcOjF4CA0suyNMtNTLSNbJQSB5l0o5pbDzKpAWTCwBb72SfwQIAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 297.54638671875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 82500\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 634.1934204101562\n MByte\n \n \n Global Arrays \'Get\' Calls\n 15200\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 94.12765502929688\n MByte\n \n \n Global Arrays \'Put\' Calls\n 11200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 17.1\n Second\n \n \n Wall Clock Time\n 39.1\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,39.1,2496738,0,';cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3807438,'2020-04-07 01:27:58','2020-04-07 01:28:05','UBHPC_32core','UBHPC_32core','gamess','gamess.1',1,NULL,NULL,'\n Gamess\n \n Gamess\n \n \n App:ExeBinSignature\n H4sIAGEPjF4CA7WRTY7bMAyF9zlFTmCR1H+X7SxmM0A3XQcSSaVuncSwPcAcvzKShS/QhSCB0ke+p/fx5r+da2zRNiUH6gVbRedURJBD0QzKZzMvjz/K22qYl3UrrZmr3nUpkynz/FcX8+v7+88f5lpuuq6vbQAcvk4f+wDJmIP6lkgqVW0CpNV7jim6GMmdzec29l5cRG8jm/G+6WQwDdbw4zaPky7rpdzlMo11Kcuo64Vgvx6IyEzj/fPL9GdPLrheqfvqpWF9DEhPFdCCtxmZSNQJ+thtltT9pX7EXP6fivZYtqMSnylJbNl7J6JQna+cYmHIPqcicN65Z4cX+OIiCXEBWwAKO4jexWCTtTU1YKwHbt5+L1pkh+EJU4SerncWtLICUnTassshIlHlI3zbsfDKLjZ2PTgSFzyWAmyD+By7VIJU4gHjA8apEaONqorF+YSVoWqswXYHAewBuzJf1oPLWqtL6KL34Kh/UUzYWLGilNCk4gGVaefodPoHaVIrBsgCAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 02 AUG 2018 (R2)\n \n \n RunEnv:Nodes\n H4sIAGEPjF4CA0suyNMtNTLSNbJQSB5lUp/JBQAj7yCPYQEAAA==\n \n \n app\n gamess\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Attempts to Launch\n 1\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Time Spent in MP2 Energy Calculation\n 17.13\n Second\n \n \n Time Spent in Restricted Hartree-Fock Calculation\n 22.44\n Second\n \n \n User Time\n 41.181000000000004\n Second\n \n \n Wall Clock Time\n 42.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,42,2496739,0,';cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;',NULL,NULL),(3807440,'2020-04-07 02:03:56','2020-04-07 02:04:02','UBHPC_32core','UBHPC_32core','imb','imb.8',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAM8XjF4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAM8XjF4CA+3GMQ0AIAxFwR0VGGgCbQhFDzthwT8q3vZvun2PPXfzUbcKNlWyESraqXIN6yrbVNEulaw3lWj5cRx+VwELAAA=\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18049.75\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1867.96\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3417.75\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 10512.21\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11113.19\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3604.86\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3896.21\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12070.11\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11475.66\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11277.77\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11670.16\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 18662.48\n MByte per Second\n \n \n Min AllGather Latency\n 4.32e-06\n Second\n \n \n Min AllGatherV Latency\n 4.749999999999999e-06\n Second\n \n \n Min AllReduce Latency\n 4.4e-06\n Second\n \n \n Min AllToAll Latency\n 4.309999999999999e-06\n Second\n \n \n Min AllToAllV Latency\n 4.36e-06\n Second\n \n \n Min Barrier Latency\n 4.29e-06\n Second\n \n \n Min Broadcast Latency\n 1.69e-06\n Second\n \n \n Min Gather Latency\n 6.1e-07\n Second\n \n \n Min GatherV Latency\n 4.24e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 4.27e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 1.434e-05\n Second\n \n \n Min MPI-2 Window Creation Latency\n 5.11e-05\n Second\n \n \n Min Reduce Latency\n 4.03e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.23e-06\n Second\n \n \n Min Scatter Latency\n 1.44e-06\n Second\n \n \n Min ScatterV Latency\n 1.47e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 24.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,24,2496743,0,';cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;',NULL,NULL),(3807439,'2020-04-07 02:19:43','2020-04-07 02:19:49','UBHPC_32core','UBHPC_32core','graph500','graph500.2',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIIbjF4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIIbjF4CA0suyNMtNTLSNbJQSB5l0o5pbDzKpAWTCwBb72SfwQIAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 4.69924e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.0327e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 4.70386e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 386.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,386,2496740,0,';cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3807443,'2020-04-07 02:48:59','2020-04-07 02:49:05','UBHPC_32core','UBHPC_32core','imb','imb.4',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAF4ijF4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAF4ijF4CA0suyNMtNTLSNTJVSB5l0pBpPsqkKdNilElLprHxKJMWTC4A3cGNtoEFAAA=\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18405.72\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1881.59\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3496.13\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 10880.19\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11161.14\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3684.69\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 4060.23\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12073.42\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11459.96\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11287.17\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11667.07\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 19536.02\n MByte per Second\n \n \n Min AllGather Latency\n 2.58e-06\n Second\n \n \n Min AllGatherV Latency\n 2.6899999999999997e-06\n Second\n \n \n Min AllReduce Latency\n 2.6e-06\n Second\n \n \n Min AllToAll Latency\n 2.32e-06\n Second\n \n \n Min AllToAllV Latency\n 2.33e-06\n Second\n \n \n Min Barrier Latency\n 2.4900000000000003e-06\n Second\n \n \n Min Broadcast Latency\n 1.9699999999999998e-06\n Second\n \n \n Min Gather Latency\n 6.6e-07\n Second\n \n \n Min GatherV Latency\n 2.68e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 1.8799999999999998e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 8.01e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 2.935e-05\n Second\n \n \n Min Reduce Latency\n 1.7399999999999999e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.81e-06\n Second\n \n \n Min Scatter Latency\n 1.53e-06\n Second\n \n \n Min ScatterV Latency\n 1.58e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 15.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,15,2496746,0,';cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3807441,'2020-04-07 02:58:25','2020-04-07 02:58:32','UBHPC_32core','UBHPC_32core','hpcc','hpcc.4',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAJUkjF4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 40000\n \n \n Input:MPI Ranks\n 128\n \n \n Input:MPIRandom Problem Size\n 1024.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 20000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1199.45\n MHz\n \n \n RunEnv:Nodes\n H4sIAJUkjF4CA0suyNMtNTLSNTJVSB5l0pBpPsqkKdNilElLprHxKJMWTC4A3cGNtoEFAAA=\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 44077.7\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4836.13696\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5493.43232\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4384.90112\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4951.28576\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 87179.1\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 572.689\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 3516990.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 12.1323\n Second\n \n \n MPI Random Access\n 59.416999999999994\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 37134.336\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 182.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,182,2496744,0,';cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3807442,'2020-04-07 02:59:40','2020-04-07 02:59:47','UBHPC_32core','UBHPC_32core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAOAkjF4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAOAkjF4CA0suyNMtNTLSNTZXSB5l0opprGs4yqQt02KUSVOm5SiTFkwuAAXyWRCBBQAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 235.55755615234375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 46600\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 491.14227294921875\n MByte\n \n \n Global Arrays \'Get\' Calls\n 13300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 60.749053955078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 9003\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 26.1\n Second\n \n \n Wall Clock Time\n 59.8\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,59.8,2496745,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;',NULL,NULL),(3807444,'2020-04-07 03:23:43','2020-04-07 03:23:49','UBHPC_32core','UBHPC_32core','graph500','graph500.1',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIIqjF4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIIqjF4CA0suyNMtNTLSNTJVSB5lUp/JBQBNvqHYYQEAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 6.66789e+09\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.92131e+08\n Traversed Edges Per Second\n \n \n Median TEPS\n 7.35298e+09\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 337.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,337,2496747,0,';cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;',NULL,NULL),(3807446,'2020-04-07 03:27:46','2020-04-07 03:27:52','UBHPC_32core','UBHPC_32core','imb','imb.2',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAHUrjF4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAHUrjF4CA0suyNMtNTLSNTJVSB5l0pBpPsqkBZMLAD854MXBAgAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18760.0\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1867.78\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3553.26\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11370.34\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11072.62\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3538.68\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 4065.4\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12097.5\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11523.01\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11330.06\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11628.51\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 22689.35\n MByte per Second\n \n \n Min AllGather Latency\n 1.3e-06\n Second\n \n \n Min AllGatherV Latency\n 1.3899999999999998e-06\n Second\n \n \n Min AllReduce Latency\n 1.4099999999999998e-06\n Second\n \n \n Min AllToAll Latency\n 1.31e-06\n Second\n \n \n Min AllToAllV Latency\n 1.57e-06\n Second\n \n \n Min Barrier Latency\n 1.28e-06\n Second\n \n \n Min Broadcast Latency\n 1e-06\n Second\n \n \n Min Gather Latency\n 1.05e-06\n Second\n \n \n Min GatherV Latency\n 1.81e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 6.5e-07\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 5.8099999999999994e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 1.935e-05\n Second\n \n \n Min Reduce Latency\n 1.11e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.31e-06\n Second\n \n \n Min Scatter Latency\n 9.9e-07\n Second\n \n \n Min ScatterV Latency\n 1.1499999999999998e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 10.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,10,2496749,0,';cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;',NULL,NULL),(3807448,'2020-04-07 03:32:00','2020-04-07 03:32:07','UBHPC_32core','UBHPC_32core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAHQsjF4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHMsjF4CA0suyNMtNTLSNbJQSB5lUp/JBQAj7yCPYQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 433.92181396484375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 192000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 972.747802734375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 24900\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 151.63421630859375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 17700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 11.4\n Second\n \n \n Wall Clock Time\n 20.6\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,20.6,2496751,0,';cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;',NULL,NULL),(3807445,'2020-04-07 03:37:29','2020-04-07 03:37:35','UBHPC_32core','UBHPC_32core','gamess','gamess.4',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2496748,0,';cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3807450,'2020-04-07 03:45:30','2020-04-07 03:45:36','UBHPC_32core','UBHPC_32core','gamess','gamess.2',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2496754,0,';cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;',NULL,NULL),(3807447,'2020-04-07 03:59:20','2020-04-07 03:59:26','UBHPC_32core','UBHPC_32core','enzo','enzo.2',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIANsyjF4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIANsyjF4CA0suyNMtNTLSNTJVSB5l0pBpPsqkBZMLAD854MXBAgAA\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 6.352250700000001\n Second\n \n \n All Grid Level 00 Calculation Time\n 25.609122999999993\n Second\n \n \n All Grid Level 01 Calculation Time\n 48.794294396000005\n Second\n \n \n All Grid Level 02 Calculation Time\n 24.362388560000003\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 19.739202689999995\n Second\n \n \n Communication Transpose Time\n 1.2764140749999995\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 1.9903275059999987\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 23.82949602\n Second\n \n \n Hydro Equations Solving Time\n 32.121241729999994\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 16.835002304699998\n Second\n \n \n Radiative Transfer Calculation Time\n 41.2868409598\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 184.00762550000002\n Second\n \n \n Wall Clock Time\n 184.666981\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,184.667,2496750,0,';cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;',NULL,NULL),(3807449,'2020-04-07 04:02:57','2020-04-07 04:03:03','UBHPC_32core','UBHPC_32core','graph500','graph500.4',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIALQzjF4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIALQzjF4CA0suyNMtNTLSNTJVSB5l0pBpPsqkKdNilElLprHxKJMWTC4A3cGNtoEFAAA=\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 8.74107e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 3.287e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 8.78659e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 359.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,359,2496752,0,';cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3807451,'2020-04-07 04:20:59','2020-04-07 04:21:05','UBHPC_32core','UBHPC_32core','enzo','enzo.1',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAO43jF4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAO43jF4CA0suyNMtNTLSNTJVSB5lUp/JBQBNvqHYYQEAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 10.8799856\n Second\n \n \n All Grid Level 00 Calculation Time\n 42.9860316\n Second\n \n \n All Grid Level 01 Calculation Time\n 89.697638929\n Second\n \n \n All Grid Level 02 Calculation Time\n 36.125326275\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 31.666611960000004\n Second\n \n \n Communication Transpose Time\n 1.2106430969999997\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.41678403\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 29.776318120000003\n Second\n \n \n Hydro Equations Solving Time\n 61.05221299999999\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 33.22341412506001\n Second\n \n \n Radiative Transfer Calculation Time\n 58.2203180637\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 284.04867310000003\n Second\n \n \n Wall Clock Time\n 284.790371\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,284.79,2496755,0,';cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;',NULL,NULL),(3807463,'2020-04-07 11:12:17','2020-04-07 11:12:23','UBHPC_8core','UBHPC_8core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAFSYjF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAFSYjF4CA0suyNNNMTDXNTTVNTBUSKYrz4iePDM688xRfEszHhcAHnrdYsEBAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 310.496094\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.6859049082226297e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 107.648293\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',310.496,0,107.648,2498021,0,';cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;',NULL,NULL),(3807468,'2020-04-07 11:22:21','2020-04-07 11:22:28','UBHPC_8core','UBHPC_8core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIALGajF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 16\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIALGajF4CA0suyNNNMTDXNTTTNTBSSKYfz1zXwJAOPC4ABDrTKOEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 312.503906\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.3597043458870302e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 191.958160\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',312.504,0,191.958,2498029,0,';cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;',NULL,NULL),(3807472,'2020-04-07 11:52:21','2020-04-07 11:52:28','UBHPC_8core','UBHPC_8core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIALmhjF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIALmhjF4CA0suyNNNMTDXNbTQNTBSSKYfz1LXwJCOPCMTZNvpwDOlD48LAICvK37BAQAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 556.94580078125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 201000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 911.712646484375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 27600\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 150.6805419921875\n MByte\n \n \n Global Arrays \'Put\' Calls\n 18800\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 47.8\n Second\n \n \n Wall Clock Time\n 93.6\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,93.6,2498203,0,';cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;',NULL,NULL),(3807478,'2020-04-07 12:22:23','2020-04-07 12:22:30','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMKojF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMKojF4CA0suyNNNMTDXNTTVNTBUSKYrz4iePDM688xRfEsXnhE9eRYottOFZ0RPniWK7TTjcQEA7xafdIEDAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 326.1566162109375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 91900\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 666.6183471679688\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18100\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 97.2747802734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 43.0\n Second\n \n \n Wall Clock Time\n 93.3\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,93.3,2498236,0,';cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;',NULL,NULL),(3807475,'2020-04-07 12:22:23','2020-04-07 12:22:30','UBHPC_8core','UBHPC_8core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMKojF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 8\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMKojF4CA0suyNNNMTDXNTLRNTBSSKY5jwsA+hK/EXEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 323.320312\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 7.207051379069282e-10\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 326.277740\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',323.32,0,326.278,2498235,0,';cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;',NULL,NULL),(3807476,'2020-04-07 12:22:23','2020-04-07 12:22:32','UBHPC_8core','UBHPC_8core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMSojF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMSojF4CA0suyNNNMTDXNTLVNTBSSKY5jwsAL+FXcXEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 1859.6649169921875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 763000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 2593.994140625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 93400\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 456.80999755859375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 62500\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 106.5\n Second\n \n \n Wall Clock Time\n 112.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,112,2498237,0,';cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;',NULL,NULL),(3807477,'2020-04-07 12:22:23','2020-04-07 12:22:32','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMSojF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMSojF4CA0suyNNNMTDXNTTVNTBUSKYrz4iePDM688xRfEsXnhE9eRYottOFZ0RPniWK7TTjcQEA7xafdIEDAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 329.9713134765625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 113000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 657.0816040039062\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18000\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 97.2747802734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 40.6\n Second\n \n \n Wall Clock Time\n 91.6\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,91.6,2498234,0,';cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;',NULL,NULL),(3807474,'2020-04-07 12:22:30','2020-04-07 12:22:36','UBHPC_8core','UBHPC_8core','namd','namd.8',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMmojF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 8\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMmojF4CA0suyNNNMTDXNTTVNTBUSKYrz4iePDM688xRfEsXnhE9eRYottOFZ0RPniWK7TTjcQEA7xafdIEDAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 325.933594\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 3.916853043590658e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 74.937393\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',325.934,0,74.9374,2498238,0,';cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;',NULL,NULL),(3807493,'2020-04-07 13:12:19','2020-04-07 13:12:27','UBHPC_8core','UBHPC_8core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAHa0jF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHa0jF4CA0suyNNNMTDXNTLXNTBUSKYfz4I+PC4AeMq1T+EAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 952.7206420898438\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 391000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 1478.1951904296875\n MByte\n \n \n Global Arrays \'Get\' Calls\n 48700\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 242.2332763671875\n MByte\n \n \n Global Arrays \'Put\' Calls\n 32300\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 68.2\n Second\n \n \n Wall Clock Time\n 109.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,109,2498406,0,';cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;',NULL,NULL),(3807524,'2020-04-08 17:03:42','2020-04-08 17:03:48','UBHPC_32core','UBHPC_32core','enzo','enzo.4',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIADE8jl4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIADE8jl4CA0suyNMtNTLSNTZSSB5l0pBpPsqkKdNilEk7prGuofkokxZMLgAuKJaPgQUAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 5.5428784\n Second\n \n \n All Grid Level 00 Calculation Time\n 16.7645359\n Second\n \n \n All Grid Level 01 Calculation Time\n 32.46611375599999\n Second\n \n \n All Grid Level 02 Calculation Time\n 19.327602509000002\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 12.702417116000001\n Second\n \n \n Communication Transpose Time\n 1.457362135\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 1.9002070690000006\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 19.908370739999995\n Second\n \n \n Hydro Equations Solving Time\n 16.173459320000006\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 9.92205593912\n Second\n \n \n Radiative Transfer Calculation Time\n 71.02363228482\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 161\n \n \n Total Time Spent in Cycles\n 177.8856266\n Second\n \n \n Wall Clock Time\n 178.398938\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,178.399,2505209,0,';cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;',NULL,NULL),(3807527,'2020-04-08 21:55:27','2020-04-08 21:55:34','UBHPC_32core','UBHPC_32core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJOAjl4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 128\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJOAjl4CA0suyNMtNTLVNbRUSB5l0o5pZDDKpCnTcJRJU6bxKJMWTC4APvDA5IEFAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 626.558594\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.9343369963228254e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 34.815327\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',626.559,0,34.8153,2505552,0,';cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;',NULL,NULL),(3807526,'2020-04-08 21:55:27','2020-04-08 21:55:34','UBHPC_32core','UBHPC_32core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJOAjl4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJOAjl4CA0suyNMtNTLVNTJRSB5l0pBpOsqkBZMLANmMi1LBAgAA\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 628.636719\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 9.812964889211628e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 44.154247\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',628.637,0,44.1542,2505551,0,';cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;',NULL,NULL),(3807525,'2020-04-08 22:25:32','2020-04-08 22:25:38','UBHPC_32core','UBHPC_32core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJ+Hjl4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJ+Hjl4CA0suyNMtNTLVNTJTSB5lUp/JBQAsWfF5YQEAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 575.140625\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 6.136625837649428e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 58.373699\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',575.141,0,58.3737,2505553,0,';cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;',NULL,NULL),(3807528,'2020-04-09 00:41:49','2020-04-09 00:41:55','UBHPC_32core','UBHPC_32core','hpcc','hpcc.8',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAJCnjl4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 16\n \n \n Input:High Performance LINPACK Problem Size\n 56568\n \n \n Input:MPI Ranks\n 256\n \n \n Input:MPIRandom Problem Size\n 2048.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 28284\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 2015.789\n MHz\n \n \n RunEnv:Nodes\n H4sIAJCnjl4CA+3GoREAIAwEQU8VNBBBCDDUE89g6J8qzv2qzXvseZjvmirVYU1F601F21W0oaIdKtqpol0q0fIB8mYOTwELAAA=\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 45717.1\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4788.11136\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5536.19456\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4394.47552\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4899.15392\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 172387.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 296.787\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 6126190.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 19.6992\n Second\n \n \n MPI Random Access\n 97.52289999999999\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 56725.8112\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 198.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,198,2505723,0,';cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;',NULL,NULL),(3807529,'2020-04-09 01:09:52','2020-04-09 01:09:58','UBHPC_32core','UBHPC_32core','hpcc','hpcc.2',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIACOujl4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 28284\n \n \n Input:MPI Ranks\n 64\n \n \n Input:MPIRandom Problem Size\n 512.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 14142\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1803.405\n MHz\n \n \n RunEnv:Nodes\n H4sIACOujl4CA0suyNMtNTLSNTJQSB5l0oppomtkOcqkBZMLANZfUpbBAgAA\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48515.799999999996\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4672.37888\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5383.36256\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4251.83232\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4747.69408\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 66025.5\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 392.736\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1813150.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 8.32018\n Second\n \n \n MPI Random Access\n 33.1084\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 20429.7216\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 149.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,149,2505728,0,';cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;',NULL,NULL),(3807530,'2020-04-09 01:19:08','2020-04-09 01:19:14','UBHPC_32core','UBHPC_32core','hpcc','hpcc.1',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAE+wjl4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 4\n \n \n Input:High Performance LINPACK Problem Size\n 20000\n \n \n Input:MPI Ranks\n 32\n \n \n Input:MPIRandom Problem Size\n 256.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 10000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1994.256\n MHz\n \n \n RunEnv:Nodes\n H4sIAE+wjl4CA0suyNMtNTLSNTJQSB5lUp/JBQBnIq9MYQEAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48915.6\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4661.62688\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5391.89248\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4274.46272\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4766.23872\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 50239.600000000006\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 384.343\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 981092.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 5.43673\n Second\n \n \n MPI Random Access\n 10.9905\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 13900.288\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 140.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,140,2505730,0,';cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;',NULL,NULL),(3807531,'2020-04-09 01:23:17','2020-04-09 01:23:24','UBHPC_32core','UBHPC_32core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAEmxjl4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAEmxjl4CA0suyNMtNTLVNTZVSB5l0pBpNsqkBZMLAIV6+TbBAgAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 306.12945556640625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 90200\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 639.9154663085938\n MByte\n \n \n Global Arrays \'Get\' Calls\n 15300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 93.93692016601562\n MByte\n \n \n Global Arrays \'Put\' Calls\n 11200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 17.5\n Second\n \n \n Wall Clock Time\n 39.3\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,39.3,2505992,0,';cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;',NULL,NULL),(3807532,'2020-04-09 01:27:59','2020-04-09 01:28:05','UBHPC_32core','UBHPC_32core','gamess','gamess.1',1,NULL,NULL,'\n Gamess\n \n Gamess\n \n \n App:ExeBinSignature\n H4sIAGKyjl4CA7WRTY7bMAyF9zlFTmCR1H+X7SxmM0A3XQcSSaVuncSwPcAcvzKShS/QhSCB0ke+p/fx5r+da2zRNiUH6gVbRedURJBD0QzKZzMvjz/K22qYl3UrrZmr3nUpkynz/FcX8+v7+88f5lpuuq6vbQAcvk4f+wDJmIP6lkgqVW0CpNV7jim6GMmdzec29l5cRG8jm/G+6WQwDdbw4zaPky7rpdzlMo11Kcuo64Vgvx6IyEzj/fPL9GdPLrheqfvqpWF9DEhPFdCCtxmZSNQJ+thtltT9pX7EXP6fivZYtqMSnylJbNl7J6JQna+cYmHIPqcicN65Z4cX+OIiCXEBWwAKO4jexWCTtTU1YKwHbt5+L1pkh+EJU4SerncWtLICUnTassshIlHlI3zbsfDKLjZ2PTgSFzyWAmyD+By7VIJU4gHjA8apEaONqorF+YSVoWqswXYHAewBuzJf1oPLWqtL6KL34Kh/UUzYWLGilNCk4gGVaefodPoHaVIrBsgCAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 02 AUG 2018 (R2)\n \n \n RunEnv:Nodes\n H4sIAGKyjl4CA0suyNMtNTLSNTJQSB5lUp/JBQBnIq9MYQEAAA==\n \n \n app\n gamess\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Attempts to Launch\n 1\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Time Spent in MP2 Energy Calculation\n 16.9\n Second\n \n \n Time Spent in Restricted Hartree-Fock Calculation\n 22.42\n Second\n \n \n User Time\n 40.1841\n Second\n \n \n Wall Clock Time\n 41.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,41,2505994,0,';cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;',NULL,NULL),(3807534,'2020-04-09 02:03:54','2020-04-09 02:04:00','UBHPC_32core','UBHPC_32core','imb','imb.8',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAM26jl4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAM26jl4CA+3Sqw0AIAwFQM8ULNCEfgjpPPUEw/44NnjuuRvg6my5ZmKjFwmkk1AGiWOILhLJX5nEMEkkXUkcp2iSCLYHfKoxDAELAAA=\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 17065.71\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1868.19\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3256.73\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 9204.3\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 8699.96\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3518.12\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3666.03\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 9271.24\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 8940.94\n MByte per Second\n \n \n Max PingPing Bandwidth\n 8859.88\n MByte per Second\n \n \n Max PingPong Bandwidth\n 10181.55\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 15788.37\n MByte per Second\n \n \n Min AllGather Latency\n 4.7300000000000005e-06\n Second\n \n \n Min AllGatherV Latency\n 4.94e-06\n Second\n \n \n Min AllReduce Latency\n 4.759999999999999e-06\n Second\n \n \n Min AllToAll Latency\n 4.3799999999999996e-06\n Second\n \n \n Min AllToAllV Latency\n 4.3899999999999995e-06\n Second\n \n \n Min Barrier Latency\n 4.44e-06\n Second\n \n \n Min Broadcast Latency\n 1.77e-06\n Second\n \n \n Min Gather Latency\n 6.800000000000001e-07\n Second\n \n \n Min GatherV Latency\n 4.2e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 4.1100000000000005e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 1.413e-05\n Second\n \n \n Min MPI-2 Window Creation Latency\n 5.629e-05\n Second\n \n \n Min Reduce Latency\n 4.0399999999999994e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.43e-06\n Second\n \n \n Min Scatter Latency\n 1.24e-06\n Second\n \n \n Min ScatterV Latency\n 1.28e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 23.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,23,2506060,0,';cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;',NULL,NULL),(3807533,'2020-04-09 02:19:44','2020-04-09 02:19:51','UBHPC_32core','UBHPC_32core','graph500','graph500.2',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIO+jl4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIO+jl4CA0suyNMtNTLSNTJQSB5l0pBpPMqkBZMLAN6uCtnBAgAA\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 4.69251e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 976291\n Traversed Edges Per Second\n \n \n Median TEPS\n 4.69521e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 386.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,386,2506001,0,';cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;',NULL,NULL),(3807537,'2020-04-09 02:48:58','2020-04-09 02:49:05','UBHPC_32core','UBHPC_32core','imb','imb.4',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAF7Fjl4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAF7Fjl4CA0suyNMtNTLSNTJQSB5l0pBpPMqkKdNklEk7pomuofkokxZMLgAuheXxgQUAAA==\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18307.55\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1844.94\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3423.94\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11110.39\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11128.66\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3443.46\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3877.83\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12143.43\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11519.24\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11290.07\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11702.77\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 18854.49\n MByte per Second\n \n \n Min AllGather Latency\n 2.94e-06\n Second\n \n \n Min AllGatherV Latency\n 3.07e-06\n Second\n \n \n Min AllReduce Latency\n 2.96e-06\n Second\n \n \n Min AllToAll Latency\n 2.5299999999999995e-06\n Second\n \n \n Min AllToAllV Latency\n 2.58e-06\n Second\n \n \n Min Barrier Latency\n 2.84e-06\n Second\n \n \n Min Broadcast Latency\n 2.24e-06\n Second\n \n \n Min Gather Latency\n 8.299999999999999e-07\n Second\n \n \n Min GatherV Latency\n 3.0399999999999997e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 1.86e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 8.97e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 3.129e-05\n Second\n \n \n Min Reduce Latency\n 1.91e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.16e-06\n Second\n \n \n Min Scatter Latency\n 1.81e-06\n Second\n \n \n Min ScatterV Latency\n 1.86e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 14.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,14,2506075,0,';cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;',NULL,NULL),(3807535,'2020-04-09 02:58:27','2020-04-09 02:58:33','UBHPC_32core','UBHPC_32core','hpcc','hpcc.4',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAJbHjl4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 40000\n \n \n Input:MPI Ranks\n 128\n \n \n Input:MPIRandom Problem Size\n 1024.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 20000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1705.352\n MHz\n \n \n RunEnv:Nodes\n H4sIAJbHjl4CA0suyNMtNTLSNTJQSB5l0pBpPMqkKdNklEk7pomuofkokxZMLgAuheXxgQUAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 46778.3\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4674.07872\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5378.83648\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4253.0816\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4755.0464\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 81941.1\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 415.860\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 3631040.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 11.7512\n Second\n \n \n MPI Random Access\n 59.4392\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 27102.1056\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 188.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,188,2506071,0,';cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;',NULL,NULL),(3807536,'2020-04-09 02:59:40','2020-04-09 02:59:47','UBHPC_32core','UBHPC_32core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAODHjl4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAODHjl4CA0suyNMtNTLRNTJWSB5l0pBpOcqkJdPYcJRJO6aprqHlKJMWTC4A+FUVwYEFAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 244.140625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 53200\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 497.8179931640625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 13300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 60.749053955078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 9004\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 25.2\n Second\n \n \n Wall Clock Time\n 60.2\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,60.2,2506073,0,';cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;',NULL,NULL),(3807538,'2020-04-09 03:23:43','2020-04-09 03:23:49','UBHPC_32core','UBHPC_32core','graph500','graph500.1',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAILNjl4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAILNjl4CA0suyNMtNTLSNTJQSB5lUp/JBQBnIq9MYQEAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 6.54222e+09\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 2.12574e+08\n Traversed Edges Per Second\n \n \n Median TEPS\n 7.31801e+09\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 338.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,338,2506077,0,';cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;',NULL,NULL),(3807540,'2020-04-09 03:27:48','2020-04-09 03:27:55','UBHPC_32core','UBHPC_32core','imb','imb.2',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAHfOjl4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAHfOjl4CA0suyNMtNTLRNTJWSB5l0pBpOcqkBZMLAOxIXArBAgAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 19110.52\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1927.29\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3442.77\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11226.67\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11196.66\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3443.12\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3944.26\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12140.08\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11541.91\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11302.4\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11694.6\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 22555.53\n MByte per Second\n \n \n Min AllGather Latency\n 1.28e-06\n Second\n \n \n Min AllGatherV Latency\n 1.38e-06\n Second\n \n \n Min AllReduce Latency\n 1.38e-06\n Second\n \n \n Min AllToAll Latency\n 1.31e-06\n Second\n \n \n Min AllToAllV Latency\n 1.59e-06\n Second\n \n \n Min Barrier Latency\n 1.26e-06\n Second\n \n \n Min Broadcast Latency\n 9.9e-07\n Second\n \n \n Min Gather Latency\n 1.06e-06\n Second\n \n \n Min GatherV Latency\n 1.79e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 6.800000000000001e-07\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 5.99e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 1.9299999999999998e-05\n Second\n \n \n Min Reduce Latency\n 1.07e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.28e-06\n Second\n \n \n Min Scatter Latency\n 9.7e-07\n Second\n \n \n Min ScatterV Latency\n 1.1499999999999998e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 10.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,10,2506079,0,';cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;',NULL,NULL),(3807542,'2020-04-09 03:32:00','2020-04-09 03:32:07','UBHPC_32core','UBHPC_32core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAHTPjl4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHTPjl4CA0suyNMtNTLSNTJRSB5lUp/JBQDFxGgtYQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 410.0799560546875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 169000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 24900\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 152.587890625\n MByte\n \n \n Global Arrays \'Put\' Calls\n 17800\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 11.7\n Second\n \n \n Wall Clock Time\n 20.9\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,20.9,2506081,0,';cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;',NULL,NULL),(3807539,'2020-04-09 03:37:31','2020-04-09 03:37:38','UBHPC_32core','UBHPC_32core','gamess','gamess.4',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2506078,0,';cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;',NULL,NULL),(3807544,'2020-04-09 03:45:29','2020-04-09 03:45:36','UBHPC_32core','UBHPC_32core','gamess','gamess.2',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2506083,0,';cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;',NULL,NULL),(3807541,'2020-04-09 03:59:18','2020-04-09 03:59:25','UBHPC_32core','UBHPC_32core','enzo','enzo.2',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIANrVjl4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIANrVjl4CA0suyNMtNTLSNTJQSB5l0pBpPMqkBZMLAN6uCtnBAgAA\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 7.064824799999999\n Second\n \n \n All Grid Level 00 Calculation Time\n 25.536162999999995\n Second\n \n \n All Grid Level 01 Calculation Time\n 49.17456518400001\n Second\n \n \n All Grid Level 02 Calculation Time\n 23.908021349\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 19.99082039\n Second\n \n \n Communication Transpose Time\n 1.148766582\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 1.8590463430000008\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 24.12297119\n Second\n \n \n Hydro Equations Solving Time\n 32.44036645\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 16.462064235110002\n Second\n \n \n Radiative Transfer Calculation Time\n 40.7248772583\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 184.3352922\n Second\n \n \n Wall Clock Time\n 184.980707\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,184.981,2506080,0,';cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;',NULL,NULL),(3807543,'2020-04-09 04:02:58','2020-04-09 04:03:05','UBHPC_32core','UBHPC_32core','graph500','graph500.4',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIALbWjl4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIALXWjl4CA0suyNMtNTLSNTJQSB5l0pBpPMqkKdNklEk7pomuofkokxZMLgAuheXxgQUAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 8.73704e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 4.06451e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 8.79101e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 361.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,361,2506082,0,';cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-23;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;',NULL,NULL),(3807545,'2020-04-09 04:20:59','2020-04-09 04:21:06','UBHPC_32core','UBHPC_32core','enzo','enzo.1',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAO/ajl4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAO/ajl4CA0suyNMtNTLSNTJQSB5lUp/JBQBnIq9MYQEAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 11.3351971\n Second\n \n \n All Grid Level 00 Calculation Time\n 43.0998995\n Second\n \n \n All Grid Level 01 Calculation Time\n 92.219249107\n Second\n \n \n All Grid Level 02 Calculation Time\n 36.743921524\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 32.99140913\n Second\n \n \n Communication Transpose Time\n 1.1488206840000001\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.37787911\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 31.486560960000002\n Second\n \n \n Hydro Equations Solving Time\n 62.284702599999996\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 33.88213538976\n Second\n \n \n Radiative Transfer Calculation Time\n 77.249193953\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 161\n \n \n Total Time Spent in Cycles\n 308.988648\n Second\n \n \n Wall Clock Time\n 309.947681\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,309.948,2506084,0,';cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;',NULL,NULL),(3807557,'2020-04-09 11:12:27','2020-04-09 11:12:34','UBHPC_8core','UBHPC_8core','namd','namd.4',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n namd\n \n \n \n ',0,0,0,2506328,0,';cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;',NULL,NULL),(3807561,'2020-04-09 11:22:42','2020-04-09 11:22:49','UBHPC_8core','UBHPC_8core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMU9j14CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 16\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMU9j14CA0suyNNNMTDXNTTVNTBUSKYrz4gOPC4AD6Dc+OEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 312.089844\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.3927014089960156e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 185.258118\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',312.09,0,185.258,2506338,0,';cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;',NULL,NULL),(3807569,'2020-04-09 12:22:28','2020-04-09 12:22:41','UBHPC_8core','UBHPC_8core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAM1Lj14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAM1Lj14CA0suyNNNMTDXNbTQNTBUSKY5jwsA2oZHWHEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 1859.6649169921875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 765000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 2622.6043701171875\n MByte\n \n \n Global Arrays \'Get\' Calls\n 93600\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 456.80999755859375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 62600\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 106.9\n Second\n \n \n Wall Clock Time\n 111.4\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,111.4,2506676,0,';cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;',NULL,NULL),(3807568,'2020-04-09 12:22:37','2020-04-09 12:22:48','UBHPC_8core','UBHPC_8core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIANNLj14CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 8\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIANNLj14CA0suyNNNMbDUNbTUNTBUSKY5jwsAVeiytHEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 324.039062\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 7.223502387367539e-10\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 325.078888\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',324.039,0,325.079,2506680,0,';cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;',NULL,NULL),(3807567,'2020-04-09 12:22:49','2020-04-09 12:22:56','UBHPC_8core','UBHPC_8core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAN1Lj14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAN1Lj14CA0suyNNNMbDUNbTQNTBUSKYfz5K+PCNz+vOM6MDjAgBf6oPOwQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 547.4090576171875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 189000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 949.859619140625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 27900\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 150.6805419921875\n MByte\n \n \n Global Arrays \'Put\' Calls\n 18800\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 48.0\n Second\n \n \n Wall Clock Time\n 92.9\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,92.9,2506414,0,';cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;',NULL,NULL),(3807584,'2020-04-09 13:12:39','2020-04-09 13:12:47','UBHPC_8core','UBHPC_8core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAItXj14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAItXj14CA0suyNNNMbDUNTbXNTBSSKYfz0LXwJAOPC4Ac1/qreEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 402000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 1468.658447265625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 48600\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 241.27960205078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 32200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 69.2\n Second\n \n \n Wall Clock Time\n 107.9\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,107.9,2506708,0,';cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;',NULL,NULL),(3807570,'2020-04-09 13:22:50','2020-04-09 13:22:59','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n nwchem\n \n \n \n ',0,0,0,2506678,0,';cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;',NULL,NULL),(3807572,'2020-04-09 13:22:54','2020-04-09 13:23:01','UBHPC_8core','UBHPC_8core','namd','namd.8',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n namd\n \n \n \n ',0,0,0,2506677,0,';cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;',NULL,NULL),(3807571,'2020-04-09 13:22:55','2020-04-09 13:23:02','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAPNZj14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAPNZj14CA0suyNNNMbDUNTbWNTBSSKYfz1TXwJDOPCN68szozDNH8S1deEb05Fmg2E57niV9eFwApmu5HIEDAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 332.83233642578125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 107000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 658.9889526367188\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18100\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 97.2747802734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 41.1\n Second\n \n \n Wall Clock Time\n 90.6\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,90.6,2506679,0,';cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;',NULL,NULL),(3807618,'2020-04-10 18:33:51','2020-04-10 18:33:57','UBHPC_32core','UBHPC_32core','enzo','enzo.4',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAFL0kF4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAFL0kF4CA0suyNMtNTLSNTJQSB5l0opprGtkMcqkHdMEEdSjTBowTXUNLUaZtGByAQD6sjLFgQUAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 5.31017\n Second\n \n \n All Grid Level 00 Calculation Time\n 17.154856370000005\n Second\n \n \n All Grid Level 01 Calculation Time\n 33.898324771\n Second\n \n \n All Grid Level 02 Calculation Time\n 19.641965319999997\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 12.883704367999995\n Second\n \n \n Communication Transpose Time\n 2.210420174\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.6827302229999987\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 21.38926654\n Second\n \n \n Hydro Equations Solving Time\n 16.28781963\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 9.670832514099999\n Second\n \n \n Radiative Transfer Calculation Time\n 53.05394032952\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 161\n \n \n Total Time Spent in Cycles\n 164.0134021\n Second\n \n \n Wall Clock Time\n 164.662906\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,164.663,2512417,0,';cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;',NULL,NULL),(3807621,'2020-04-10 22:25:31','2020-04-10 22:25:38','UBHPC_32core','UBHPC_32core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJ4qkV4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJ4qkV4CA0suyNMtNTLSNTZXSB5lUp/JBQB0j9QLYQEAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 574.984375\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 6.26162313794982e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 58.073338\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',574.984,0,58.0733,2512565,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;',NULL,NULL),(3807619,'2020-04-10 23:55:43','2020-04-10 23:55:51','UBHPC_32core','UBHPC_32core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMQ/kV4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMQ/kV4CA0suyNMtNTLSNTZXSB5l0oppomtkPMqkBZMLAJN/FsfBAgAA\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 628.636719\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.1196202248197412e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 45.202061\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',628.637,0,45.2021,2512567,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;',NULL,NULL),(3807620,'2020-04-11 00:25:46','2020-04-11 00:25:53','UBHPC_32core','UBHPC_32core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAM5GkV4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 128\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAM5GkV4CA0suyNMtNTLSNTJVSB5l0o5pbD7KpB3TWNfQYpRJO6aJrpHxKJMWTC4AMrqKaoEFAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 626.628906\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.0614603797622315e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 34.456032\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',626.629,0,34.456,2512566,0,';cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;',NULL,NULL),(3807624,'2020-04-11 01:19:07','2020-04-11 01:19:13','UBHPC_32core','UBHPC_32core','hpcc','hpcc.1',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAE5TkV4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 4\n \n \n Input:High Performance LINPACK Problem Size\n 20000\n \n \n Input:MPI Ranks\n 32\n \n \n Input:MPIRandom Problem Size\n 256.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 10000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 2007.971\n MHz\n \n \n RunEnv:Nodes\n H4sIAE5TkV4CA0suyNMtNTLSNTZVSB5lUp/JBQAlfDc7YQEAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48652.9\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4657.24416\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5372.38528\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4263.18848\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4778.72128\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 51040.5\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 389.763\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1001770.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 5.32449\n Second\n \n \n MPI Random Access\n 10.915799999999999\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 14057.472\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 139.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,139,2512959,0,';cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;',NULL,NULL),(3807623,'2020-04-11 01:39:55','2020-04-11 01:40:01','UBHPC_32core','UBHPC_32core','hpcc','hpcc.2',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAC5YkV4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 28284\n \n \n Input:MPI Ranks\n 64\n \n \n Input:MPIRandom Problem Size\n 512.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 14142\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 2057.83\n MHz\n \n \n RunEnv:Nodes\n H4sIAC5YkV4CA0suyNMtNTLSNTZVSB5l0opprGtkMcqkBZMLAN00a/rBAgAA\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 47064.5\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4954.09152\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5529.4976\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4581.2224\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 5072.83456\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 49172.1\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 345.377\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1819460.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 8.2913\n Second\n \n \n MPI Random Access\n 32.9566\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 11120.2304\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 146.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,146,2512955,0,';cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;',NULL,NULL),(3807625,'2020-04-11 01:53:17','2020-04-11 01:53:24','UBHPC_32core','UBHPC_32core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAFFbkV4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAFFbkV4CA0suyNMtNTLSNTZUSB5l0pBpOsqkBZMLAKjEdinBAgAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 307.0831298828125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 90900\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 646.5911865234375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 15300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 93.841552734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 11200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 17.3\n Second\n \n \n Wall Clock Time\n 38.1\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,38.1,2512970,0,';cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;',NULL,NULL),(3807626,'2020-04-11 01:58:00','2020-04-11 01:58:07','UBHPC_32core','UBHPC_32core','gamess','gamess.1',1,NULL,NULL,'\n Gamess\n \n Gamess\n \n \n App:ExeBinSignature\n H4sIAGxckV4CA7WRTY7bMAyF9zlFTmCR1H+X7SxmM0A3XQcSSaVuncSwPcAcvzKShS/QhSCB0ke+p/fx5r+da2zRNiUH6gVbRedURJBD0QzKZzMvjz/K22qYl3UrrZmr3nUpkynz/FcX8+v7+88f5lpuuq6vbQAcvk4f+wDJmIP6lkgqVW0CpNV7jim6GMmdzec29l5cRG8jm/G+6WQwDdbw4zaPky7rpdzlMo11Kcuo64Vgvx6IyEzj/fPL9GdPLrheqfvqpWF9DEhPFdCCtxmZSNQJ+thtltT9pX7EXP6fivZYtqMSnylJbNl7J6JQna+cYmHIPqcicN65Z4cX+OIiCXEBWwAKO4jexWCTtTU1YKwHbt5+L1pkh+EJU4SerncWtLICUnTassshIlHlI3zbsfDKLjZ2PTgSFzyWAmyD+By7VIJU4gHjA8apEaONqorF+YSVoWqswXYHAewBuzJf1oPLWqtL6KL34Kh/UUzYWLGilNCk4gGVaefodPoHaVIrBsgCAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 02 AUG 2018 (R2)\n \n \n RunEnv:Nodes\n H4sIAGxckV4CA0suyNMtNTLSNTZUSB5lUp/JBQCHmvBaYQEAAA==\n \n \n app\n gamess\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Attempts to Launch\n 1\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Time Spent in MP2 Energy Calculation\n 16.92\n Second\n \n \n Time Spent in Restricted Hartree-Fock Calculation\n 23.04\n Second\n \n \n User Time\n 41.3448\n Second\n \n \n Wall Clock Time\n 42.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,42,2512971,0,';cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;',NULL,NULL),(3807622,'2020-04-11 02:12:02','2020-04-11 02:12:08','UBHPC_32core','UBHPC_32core','hpcc','hpcc.8',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIALVfkV4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 16\n \n \n Input:High Performance LINPACK Problem Size\n 56568\n \n \n Input:MPI Ranks\n 256\n \n \n Input:MPIRandom Problem Size\n 2048.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 28284\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1649.34\n MHz\n \n \n RunEnv:Nodes\n H4sIALVfkV4CA+3GsQ0AIAwDsJ0reCASbQHBPd0RC/9zRbZ4ct6D546wmiqxQ6V2qrwG3FRqQ6V2qbx2eFOp3Sqj5QMcjWr9AQsAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 49391.399999999994\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4728.25856\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5423.4624\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4274.59584\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4823.98208\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 121592.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 365.999\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 6181440.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 19.5231\n Second\n \n \n MPI Random Access\n 98.24910000000001\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 57961.984\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 205.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,205,2512693,0,';cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;',NULL,NULL),(3807627,'2020-04-11 02:19:43','2020-04-11 02:19:50','UBHPC_32core','UBHPC_32core','graph500','graph500.2',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAINhkV4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIJhkV4CA0suyNMtNTLSNTZUSB5l0pBpOsqkBZMLAKjEdinBAgAA\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 4.66102e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.09391e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 4.6556e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 372.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,372,2512975,0,';cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;',NULL,NULL),(3807628,'2020-04-11 02:33:57','2020-04-11 02:34:03','UBHPC_32core','UBHPC_32core','imb','imb.8',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIANhkkV4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIANhkkV4CA+3GsQ0AIAwDsJ0reCASbQHBPd0RC/9zRbZ4ct6D546wmiqxQ6V2qrwG3FRqQ6V2qbx2eFOp3Sqj5QMcjWr9AQsAAA==\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 17172.32\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1799.86\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3441.96\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 10583.68\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11146.29\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3428.69\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3906.34\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12076.74\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11481.65\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11184.55\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11500.79\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 16402.97\n MByte per Second\n \n \n Min AllGather Latency\n 4.72e-06\n Second\n \n \n Min AllGatherV Latency\n 5.12e-06\n Second\n \n \n Min AllReduce Latency\n 4.8e-06\n Second\n \n \n Min AllToAll Latency\n 4.3799999999999996e-06\n Second\n \n \n Min AllToAllV Latency\n 4.43e-06\n Second\n \n \n Min Barrier Latency\n 4.43e-06\n Second\n \n \n Min Broadcast Latency\n 1.78e-06\n Second\n \n \n Min Gather Latency\n 6.7e-07\n Second\n \n \n Min GatherV Latency\n 4.28e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 4.26e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 1.4099999999999999e-05\n Second\n \n \n Min MPI-2 Window Creation Latency\n 5.511e-05\n Second\n \n \n Min Reduce Latency\n 4.139999999999999e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.4199999999999997e-06\n Second\n \n \n Min Scatter Latency\n 1.51e-06\n Second\n \n \n Min ScatterV Latency\n 1.48e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 22.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,22,2512984,0,';cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-31;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;',NULL,NULL),(3807631,'2020-04-11 03:19:01','2020-04-11 03:19:07','UBHPC_32core','UBHPC_32core','imb','imb.4',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAGhvkV4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAGhvkV4CA0suyNMtNTLRNTZXSB5l0oppqmtkOMqkKdNylElLprHRKJMWTC4AdrhpFoEFAAA=\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18436.58\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1919.08\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3478.99\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11096.37\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 10899.74\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3545.53\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3956.15\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12118.33\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11519.24\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11284.28\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11688.0\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 18399.94\n MByte per Second\n \n \n Min AllGather Latency\n 2.91e-06\n Second\n \n \n Min AllGatherV Latency\n 3.02e-06\n Second\n \n \n Min AllReduce Latency\n 2.94e-06\n Second\n \n \n Min AllToAll Latency\n 2.54e-06\n Second\n \n \n Min AllToAllV Latency\n 2.5699999999999995e-06\n Second\n \n \n Min Barrier Latency\n 2.8199999999999997e-06\n Second\n \n \n Min Broadcast Latency\n 2.36e-06\n Second\n \n \n Min Gather Latency\n 8.199999999999999e-07\n Second\n \n \n Min GatherV Latency\n 3.23e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 1.89e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 9.119999999999999e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 3.293e-05\n Second\n \n \n Min Reduce Latency\n 1.91e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.95e-06\n Second\n \n \n Min Scatter Latency\n 1.77e-06\n Second\n \n \n Min ScatterV Latency\n 1.75e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 16.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,16,2513000,0,';cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;',NULL,NULL),(3807632,'2020-04-11 03:23:43','2020-04-11 03:23:49','UBHPC_32core','UBHPC_32core','graph500','graph500.1',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIJwkV4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIJwkV4CA0suyNMtNTLWNTJVSB5lUp/JBQDoH+8AYQEAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 6.61785e+09\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 2.05395e+08\n Traversed Edges Per Second\n \n \n Median TEPS\n 7.38243e+09\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 339.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,339,2513003,0,';cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;',NULL,NULL),(3807629,'2020-04-11 03:28:28','2020-04-11 03:28:35','UBHPC_32core','UBHPC_32core','hpcc','hpcc.4',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAKBxkV4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 40000\n \n \n Input:MPI Ranks\n 128\n \n \n Input:MPIRandom Problem Size\n 1024.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 20000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1651.904\n MHz\n \n \n RunEnv:Nodes\n H4sIAJ9xkV4CA0suyNMtNTLWNTJVSB5l0pBpPsqkHdNE19hwlEk7pqmuscEokxZMLgAcnuLOgQUAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48176.6\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4701.47072\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5384.09984\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4256.93184\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4922.20416\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 95386.9\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 399.791\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 3381330.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 12.619\n Second\n \n \n MPI Random Access\n 57.5471\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 35560.5504\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 190.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,190,2512997,0,';cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;',NULL,NULL),(3807630,'2020-04-11 03:29:43','2020-04-11 03:29:50','UBHPC_32core','UBHPC_32core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAOpxkV4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAOpxkV4CA0suyNMtNTLWNTZUSB5l0pBpMsqkHdNU18h8lElTpsUokxZMLgCzlXmKgQUAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 235.55755615234375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 45500\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 495.91064453125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 13300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 60.749053955078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 9004\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 27.2\n Second\n \n \n Wall Clock Time\n 65.3\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,65.3,2512998,0,';cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;cpn-u25-28;',NULL,NULL),(3807636,'2020-04-11 03:32:01','2020-04-11 03:32:08','UBHPC_32core','UBHPC_32core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAHVykV4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHVykV4CA0suyNMtNTLSNTZQSB5lUp/JBQAP4DmvYQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 393.86749267578125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 157000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 24800\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 150.6805419921875\n MByte\n \n \n Global Arrays \'Put\' Calls\n 17600\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 11.0\n Second\n \n \n Wall Clock Time\n 20.2\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,20.2,2513009,0,';cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;',NULL,NULL),(3807633,'2020-04-11 03:37:30','2020-04-11 03:37:36','UBHPC_32core','UBHPC_32core','gamess','gamess.4',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2513004,0,';cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;cpn-u25-29;',NULL,NULL),(3807634,'2020-04-11 03:57:49','2020-04-11 03:57:56','UBHPC_32core','UBHPC_32core','imb','imb.2',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAIF4kV4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAIF4kV4CA0suyNMtNTLSNTZQSB5l0opprGtkOsqkBZMLAPAUx9DBAgAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 19896.72\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1856.96\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3527.89\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 10480.27\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11181.71\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3561.79\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3995.68\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12136.73\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11529.06\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11341.75\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11699.65\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 22714.25\n MByte per Second\n \n \n Min AllGather Latency\n 1.58e-06\n Second\n \n \n Min AllGatherV Latency\n 1.6699999999999999e-06\n Second\n \n \n Min AllReduce Latency\n 1.6499999999999999e-06\n Second\n \n \n Min AllToAll Latency\n 1.58e-06\n Second\n \n \n Min AllToAllV Latency\n 1.84e-06\n Second\n \n \n Min Barrier Latency\n 1.53e-06\n Second\n \n \n Min Broadcast Latency\n 1.27e-06\n Second\n \n \n Min Gather Latency\n 1.35e-06\n Second\n \n \n Min GatherV Latency\n 2.08e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 6.7e-07\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 7.03e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 2.0989999999999997e-05\n Second\n \n \n Min Reduce Latency\n 1.3600000000000001e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.5599999999999999e-06\n Second\n \n \n Min Scatter Latency\n 1.28e-06\n Second\n \n \n Min ScatterV Latency\n 1.4299999999999999e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 10.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,10,2513007,0,';cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;',NULL,NULL),(3807635,'2020-04-11 03:59:17','2020-04-11 03:59:24','UBHPC_32core','UBHPC_32core','enzo','enzo.2',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIANl4kV4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIANl4kV4CA0suyNMtNTLWNTJXSB5l0o5pbDjKpAWTCwA0cODwwQIAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 5.4573393999999995\n Second\n \n \n All Grid Level 00 Calculation Time\n 25.8140159\n Second\n \n \n All Grid Level 01 Calculation Time\n 49.930008514\n Second\n \n \n All Grid Level 02 Calculation Time\n 24.051155106\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 20.542836739999995\n Second\n \n \n Communication Transpose Time\n 1.4366323870000013\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.1496941759999992\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 24.15933306\n Second\n \n \n Hydro Equations Solving Time\n 32.220491120000005\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 16.61752768319\n Second\n \n \n Radiative Transfer Calculation Time\n 37.8196424494\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 181.17422449999998\n Second\n \n \n Wall Clock Time\n 181.696153\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,181.696,2513008,0,';cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;',NULL,NULL),(3807637,'2020-04-11 04:02:57','2020-04-11 04:03:04','UBHPC_32core','UBHPC_32core','graph500','graph500.4',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIALV5kV4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIALR5kV4CA0suyNMtNTLSNTZQSB5l0opprGtkOsqkKdNslElTpvkokxZMLgADmb7mgQUAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 8.75673e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 3.49612e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 8.79639e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 358.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,358,2513010,0,';cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;',NULL,NULL),(3807638,'2020-04-11 04:15:31','2020-04-11 04:15:37','UBHPC_32core','UBHPC_32core','gamess','gamess.2',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2513011,0,';cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;',NULL,NULL),(3807639,'2020-04-11 04:20:59','2020-04-11 04:21:05','UBHPC_32core','UBHPC_32core','enzo','enzo.1',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAO59kV4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAO59kV4CA0suyNMtNTLWNTJTSB5lUp/JBQAxlsXFYQEAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 10.9822277\n Second\n \n \n All Grid Level 00 Calculation Time\n 43.77635719999999\n Second\n \n \n All Grid Level 01 Calculation Time\n 92.065736177\n Second\n \n \n All Grid Level 02 Calculation Time\n 36.899150768\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 32.733759860000006\n Second\n \n \n Communication Transpose Time\n 1.227456481\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.452870200000001\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 31.61084298999999\n Second\n \n \n Hydro Equations Solving Time\n 62.361146100000006\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 34.20919087317999\n Second\n \n \n Radiative Transfer Calculation Time\n 79.8794018099\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 161\n \n \n Total Time Spent in Cycles\n 312.0670427999999\n Second\n \n \n Wall Clock Time\n 312.891881\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,312.892,2513012,0,';cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;',NULL,NULL); +INSERT INTO `akrr_xdmod_instanceinfo` VALUES (3807651,'2020-04-11 11:12:18','2020-04-11 11:12:24','UBHPC_8core','UBHPC_8core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAFXekV4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAFXekV4CA0suyNNNMTDXNTDVNTBUSKYrz4iePDMU22nOMzRBtp12PC4ATG9XTMEBAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 311.007812\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.639385973247184e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 107.300186\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',311.008,0,107.3,2513231,0,';cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;',NULL,NULL),(3807654,'2020-04-11 11:22:18','2020-04-11 11:22:27','UBHPC_8core','UBHPC_8core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIALDgkV4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 16\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIALDgkV4CA0suyNNNMTDXNTTRNTBSSKYfz0zXwJAOPC4AS7wTI+EAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 312.105469\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.3529492941663533e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 186.762985\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',312.105,0,186.763,2513237,0,';cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;',NULL,NULL),(3807660,'2020-04-11 11:52:19','2020-04-11 11:52:27','UBHPC_8core','UBHPC_8core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIALjnkV4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIALjnkV4CA0suyNNNMTDXNbLUNTBUSKYrz4iOPGNjZNvpwzOiA48LANToHOTBAQAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 546.4553833007812\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 174000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 933.6471557617188\n MByte\n \n \n Global Arrays \'Get\' Calls\n 27800\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 151.63421630859375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 18900\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 49.9\n Second\n \n \n Wall Clock Time\n 89.2\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,89.2,2513252,0,';cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;',NULL,NULL),(3807665,'2020-04-11 12:22:18','2020-04-11 12:22:27','UBHPC_8core','UBHPC_8core','namd','namd.8',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n namd\n \n \n \n ',0,0,0,2513259,0,';cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-36-01;cpn-d09-36-01;cpn-d09-36-01;cpn-d09-36-01;cpn-d09-36-01;cpn-d09-36-01;cpn-d09-36-01;cpn-d09-36-01;',NULL,NULL),(3807664,'2020-04-11 12:22:19','2020-04-11 12:22:27','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAL7ukV4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAL7ukV4CA0suyNNNMTDXNbLUNTBUSKYrz4iOPGMDZNvpwDOkM8+Y/jwjevJMUGynC8+IDjwuAIfyEPaBAwAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 334.73968505859375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 108000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 652.313232421875\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18000\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 98.22845458984375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 43.1\n Second\n \n \n Wall Clock Time\n 99.9\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,99.9,2513257,0,';cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;',NULL,NULL),(3807666,'2020-04-11 12:22:19','2020-04-11 12:22:27','UBHPC_8core','UBHPC_8core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMDukV4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 8\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMDukV4CA0suyNNNMTDXNTDVNTBSSKY5jwsAPnqVR3EAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 325.726562\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 7.181844297615628e-10\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 331.855957\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',325.727,0,331.856,2513256,0,';cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;',NULL,NULL),(3807662,'2020-04-11 12:22:18','2020-04-11 12:22:28','UBHPC_8core','UBHPC_8core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMDukV4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMDukV4CA0suyNNNMTDXNTDTNTBUSKY5jwsA5/Q4hnEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 1850.128173828125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 755000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 2593.994140625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 93400\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 457.763671875\n MByte\n \n \n Global Arrays \'Put\' Calls\n 62600\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 108.6\n Second\n \n \n Wall Clock Time\n 119.6\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,119.6,2513258,0,';cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;',NULL,NULL),(3807663,'2020-04-11 12:22:27','2020-04-11 12:22:35','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMjukV4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMjukV4CA0suyNNNMTDXNbLUNTBUSKYrz4iOPGMDZNvpwDOkM8+Y/jwjevJMUGynC8+IDjwuAIfyEPaBAwAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 327.11029052734375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 94100\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 665.6646728515625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18100\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 98.22845458984375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 41.4\n Second\n \n \n Wall Clock Time\n 90.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,90,2513260,0,';cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;',NULL,NULL),(3807678,'2020-04-11 13:12:18','2020-04-11 13:12:26','UBHPC_8core','UBHPC_8core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAHX6kV4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHX6kV4CA0suyNNNMTDXNbLUNTBUSKYrz4gOPC4AjO1hheEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 395000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 1478.1951904296875\n MByte\n \n \n Global Arrays \'Get\' Calls\n 48700\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 241.27960205078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 32200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 72.1\n Second\n \n \n Wall Clock Time\n 111.2\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,111.2,2513495,0,';cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;',NULL,NULL),(3807712,'2020-04-12 17:03:37','2020-04-12 17:03:44','UBHPC_32core','UBHPC_32core','enzo','enzo.4',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAC2Ck14CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAC2Ck14CA0suyNMtNTLWNTJTSB5l0pBpPsqkKdNilElTpuUokxZMLgBAIIVdgQUAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 5.1091866\n Second\n \n \n All Grid Level 00 Calculation Time\n 17.261112600000008\n Second\n \n \n All Grid Level 01 Calculation Time\n 31.685913101999997\n Second\n \n \n All Grid Level 02 Calculation Time\n 19.809355523\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 12.360533487\n Second\n \n \n Communication Transpose Time\n 1.517951636\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 1.9794934670000002\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 20.216169529999995\n Second\n \n \n Hydro Equations Solving Time\n 16.068332300000005\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 9.63469667764\n Second\n \n \n Radiative Transfer Calculation Time\n 40.18730468564999\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 146.4657665\n Second\n \n \n Wall Clock Time\n 146.944805\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,146.945,2516959,0,';cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;',NULL,NULL),(3807715,'2020-04-12 21:55:25','2020-04-12 21:55:31','UBHPC_32core','UBHPC_32core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJDGk14CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJDGk14CA0suyNMtNTLWNTZSSB5l0pBpPMqkBZMLAF78iT3BAgAA\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 692.636719\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.1292276873078196e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 43.303528\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',692.637,0,43.3035,2517136,0,';cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;',NULL,NULL),(3807713,'2020-04-12 21:55:24','2020-04-12 21:55:31','UBHPC_32core','UBHPC_32core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJDGk14CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 128\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJDGk14CA0suyNMtNTLWNTJXSB5l0pBpMcqkKdNylElLprHhKJMWTC4AgVtzFYEFAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 626.628906\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.2021338677178186e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 34.194588\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',626.629,0,34.1946,2517135,0,';cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;',NULL,NULL),(3807714,'2020-04-12 22:25:29','2020-04-12 22:25:36','UBHPC_32core','UBHPC_32core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJzNk14CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJzNk14CA0suyNMtNTLWNTZRSB5lUp/JBQAIp7AWYQEAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 574.996094\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 6.0608999224204815e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 59.312294\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',574.996,0,59.3123,2517134,0,';cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;',NULL,NULL),(3807717,'2020-04-13 01:09:52','2020-04-13 01:09:59','UBHPC_32core','UBHPC_32core','hpcc','hpcc.2',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIACT0k14CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 28284\n \n \n Input:MPI Ranks\n 64\n \n \n Input:MPIRandom Problem Size\n 512.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 14142\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1944.909\n MHz\n \n \n RunEnv:Nodes\n H4sIACT0k14CA0suyNMtNTLVNTZVSB5l0pBpNsqkBZMLAIV6+TbBAgAA\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 49926.1\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4671.67232\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5389.17888\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4258.48832\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4772.4032\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 65758.79999999999\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 363.039\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1807560.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 8.34589\n Second\n \n \n MPI Random Access\n 33.0891\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 18546.5856\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 143.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,143,2517240,0,';cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;',NULL,NULL),(3807718,'2020-04-13 01:19:07','2020-04-13 01:19:14','UBHPC_32core','UBHPC_32core','hpcc','hpcc.1',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAE/2k14CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 4\n \n \n Input:High Performance LINPACK Problem Size\n 20000\n \n \n Input:MPI Ranks\n 32\n \n \n Input:MPIRandom Problem Size\n 256.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 10000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1969.262\n MHz\n \n \n RunEnv:Nodes\n H4sIAE/2k14CA0suyNMtNTLVNTZTSB5lUp/JBQBEm2eaYQEAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 50576.700000000004\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4676.0448\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5369.4976\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4240.97792\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4766.24896\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 52116.700000000004\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 396.438\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 999284.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 5.33776\n Second\n \n \n MPI Random Access\n 11.0368\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 14377.472\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 139.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,139,2517244,0,';cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;',NULL,NULL),(3807719,'2020-04-13 01:53:17','2020-04-13 01:53:24','UBHPC_32core','UBHPC_32core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAFH+k14CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAFH+k14CA0suyNMtNTLVNTZVSB5l0pBpNsqkBZMLAIV6+TbBAgAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 313.75885009765625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 97200\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 633.23974609375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 15200\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 93.841552734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 11200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 17.9\n Second\n \n \n Wall Clock Time\n 39.1\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,39.1,2517265,0,';cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;',NULL,NULL),(3807720,'2020-04-13 01:58:00','2020-04-13 01:58:06','UBHPC_32core','UBHPC_32core','gamess','gamess.1',1,NULL,NULL,'\n Gamess\n \n Gamess\n \n \n App:ExeBinSignature\n H4sIAGv/k14CA7WRTY7bMAyF9zlFTmCR1H+X7SxmM0A3XQcSSaVuncSwPcAcvzKShS/QhSCB0ke+p/fx5r+da2zRNiUH6gVbRedURJBD0QzKZzMvjz/K22qYl3UrrZmr3nUpkynz/FcX8+v7+88f5lpuuq6vbQAcvk4f+wDJmIP6lkgqVW0CpNV7jim6GMmdzec29l5cRG8jm/G+6WQwDdbw4zaPky7rpdzlMo11Kcuo64Vgvx6IyEzj/fPL9GdPLrheqfvqpWF9DEhPFdCCtxmZSNQJ+thtltT9pX7EXP6fivZYtqMSnylJbNl7J6JQna+cYmHIPqcicN65Z4cX+OIiCXEBWwAKO4jexWCTtTU1YKwHbt5+L1pkh+EJU4SerncWtLICUnTassshIlHlI3zbsfDKLjZ2PTgSFzyWAmyD+By7VIJU4gHjA8apEaONqorF+YSVoWqswXYHAewBuzJf1oPLWqtL6KL34Kh/UUzYWLGilNCk4gGVaefodPoHaVIrBsgCAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 02 AUG 2018 (R2)\n \n \n RunEnv:Nodes\n H4sIAGv/k14CA0suyNMtNTLVNTZVSB5lUp/JBQCdEk1fYQEAAA==\n \n \n app\n gamess\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Attempts to Launch\n 1\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Time Spent in MP2 Energy Calculation\n 16.97\n Second\n \n \n Time Spent in Restricted Hartree-Fock Calculation\n 22.71\n Second\n \n \n User Time\n 40.94160000000001\n Second\n \n \n Wall Clock Time\n 42.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,42,2517271,0,';cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;',NULL,NULL),(3807721,'2020-04-13 02:19:42','2020-04-13 02:19:49','UBHPC_32core','UBHPC_32core','graph500','graph500.2',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIIElF4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIIElF4CA0suyNMtNTLVNTZVSB5l0pBpNsqkBZMLAIV6+TbBAgAA\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 4.60519e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.47627e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 4.62427e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 371.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,371,2517295,0,';cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;',NULL,NULL),(3807725,'2020-04-13 02:48:55','2020-04-13 02:49:02','UBHPC_32core','UBHPC_32core','imb','imb.4',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAFsLlF4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAFsLlF4CA0suyNMtNTLVNTZVSB5l0pBpNsqkKdN8lElTpsUokxZMLgAD9htBgQUAAA==\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 17835.19\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1854.88\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3447.29\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11069.84\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11146.29\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3620.34\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3897.68\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12098.33\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11526.03\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11326.41\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11546.46\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 18559.12\n MByte per Second\n \n \n Min AllGather Latency\n 2.63e-06\n Second\n \n \n Min AllGatherV Latency\n 2.71e-06\n Second\n \n \n Min AllReduce Latency\n 2.64e-06\n Second\n \n \n Min AllToAll Latency\n 2.29e-06\n Second\n \n \n Min AllToAllV Latency\n 2.32e-06\n Second\n \n \n Min Barrier Latency\n 2.4999999999999998e-06\n Second\n \n \n Min Broadcast Latency\n 1.99e-06\n Second\n \n \n Min Gather Latency\n 6.6e-07\n Second\n \n \n Min GatherV Latency\n 2.75e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 1.81e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 8.14e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 2.8899999999999998e-05\n Second\n \n \n Min Reduce Latency\n 1.7599999999999999e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.84e-06\n Second\n \n \n Min Scatter Latency\n 1.5599999999999999e-06\n Second\n \n \n Min ScatterV Latency\n 1.58e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 16.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,16,2517299,0,';cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;',NULL,NULL),(3807723,'2020-04-13 02:58:25','2020-04-13 02:58:31','UBHPC_32core','UBHPC_32core','hpcc','hpcc.4',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAJQNlF4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 40000\n \n \n Input:MPI Ranks\n 128\n \n \n Input:MPIRandom Problem Size\n 1024.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 20000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1458.489\n MHz\n \n \n RunEnv:Nodes\n H4sIAJQNlF4CA0suyNMtNTLVNTZVSB5l0pBpNsqkKdN8lElTpsUokxZMLgAD9htBgQUAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 49822.6\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4859.136\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5528.48384\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4426.87488\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4908.83072\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 82034.2\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 477.578\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 3566300.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 11.9645\n Second\n \n \n MPI Random Access\n 58.039899999999996\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 38488.576\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 194.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,194,2517297,0,';cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;',NULL,NULL),(3807724,'2020-04-13 02:59:41','2020-04-13 02:59:47','UBHPC_32core','UBHPC_32core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAOANlF4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAOANlF4CA0suyNMtNTLVNTZVSB5l0pBpNsqkKdN8lElTpsUokxZMLgAD9htBgQUAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 238.4185791015625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 48800\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 491.14227294921875\n MByte\n \n \n Global Arrays \'Get\' Calls\n 13300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 60.749053955078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 9005\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 26.3\n Second\n \n \n Wall Clock Time\n 60.5\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,60.5,2517298,0,';cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;',NULL,NULL),(3807726,'2020-04-13 03:23:42','2020-04-13 03:23:49','UBHPC_32core','UBHPC_32core','graph500','graph500.1',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIITlF4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIITlF4CA0suyNMtNTLVNTZVSB5lUp/JBQCdEk1fYQEAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 6.39132e+09\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 2.00403e+08\n Traversed Edges Per Second\n \n \n Median TEPS\n 7.17616e+09\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 336.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,336,2517300,0,';cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;',NULL,NULL),(3807727,'2020-04-13 03:37:28','2020-04-13 03:37:35','UBHPC_32core','UBHPC_32core','gamess','gamess.4',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2517301,0,';cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;',NULL,NULL),(3807728,'2020-04-13 03:57:50','2020-04-13 03:57:57','UBHPC_32core','UBHPC_32core','imb','imb.2',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAIEblF4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAIEblF4CA0suyNMtNTLVNTZVSB5l0pBpNsqkBZMLAIV6+TbBAgAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18184.55\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1919.75\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3539.82\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 10495.9\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11134.29\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3408.37\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3932.36\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12132.54\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11500.42\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11290.07\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11712.51\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 22551.19\n MByte per Second\n \n \n Min AllGather Latency\n 1.32e-06\n Second\n \n \n Min AllGatherV Latency\n 1.4099999999999998e-06\n Second\n \n \n Min AllReduce Latency\n 1.3899999999999998e-06\n Second\n \n \n Min AllToAll Latency\n 1.31e-06\n Second\n \n \n Min AllToAllV Latency\n 1.6e-06\n Second\n \n \n Min Barrier Latency\n 1.26e-06\n Second\n \n \n Min Broadcast Latency\n 9.9e-07\n Second\n \n \n Min Gather Latency\n 1.06e-06\n Second\n \n \n Min GatherV Latency\n 1.78e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 6.7e-07\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 5.96e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 1.905e-05\n Second\n \n \n Min Reduce Latency\n 1.05e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.27e-06\n Second\n \n \n Min Scatter Latency\n 9.9e-07\n Second\n \n \n Min ScatterV Latency\n 1.1699999999999998e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 10.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,10,2517362,0,';cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;',NULL,NULL),(3807729,'2020-04-13 03:59:18','2020-04-13 03:59:24','UBHPC_32core','UBHPC_32core','enzo','enzo.2',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIANkblF4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIANkblF4CA0suyNMtNTLVNTZXSB5l0pBpMcqkBZMLAFnD8PvBAgAA\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 5.9927153\n Second\n \n \n All Grid Level 00 Calculation Time\n 26.3189247\n Second\n \n \n All Grid Level 01 Calculation Time\n 51.668879438000005\n Second\n \n \n All Grid Level 02 Calculation Time\n 25.354031148\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 20.82488137\n Second\n \n \n Communication Transpose Time\n 1.317743606\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.0411721480000002\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 25.078063670000002\n Second\n \n \n Hydro Equations Solving Time\n 32.666216800000015\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 17.084990007610003\n Second\n \n \n Radiative Transfer Calculation Time\n 80.9697750455\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 161\n \n \n Total Time Spent in Cycles\n 229.88502380000003\n Second\n \n \n Wall Clock Time\n 230.349690\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,230.35,2517373,0,';cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;',NULL,NULL),(3807730,'2020-04-13 04:02:03','2020-04-13 04:02:10','UBHPC_32core','UBHPC_32core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAH8clF4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAH8clF4CA0suyNMtNTLVNTZVSB5lUp/JBQCdEk1fYQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 454.90264892578125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 213000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 24800\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 151.63421630859375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 17700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 11.6\n Second\n \n \n Wall Clock Time\n 20.7\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,20.7,2517374,0,';cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;',NULL,NULL),(3807731,'2020-04-13 04:02:57','2020-04-13 04:03:05','UBHPC_32core','UBHPC_32core','graph500','graph500.4',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIALUclF4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIALUclF4CA0suyNMtNTLVNTZVSB5l0pBpNsqkKdN8lElTpsUokxZMLgAD9htBgQUAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 8.54768e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 3.76596e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 8.58113e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 369.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,369,2517375,0,';cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;',NULL,NULL),(3807732,'2020-04-13 04:15:31','2020-04-13 04:15:37','UBHPC_32core','UBHPC_32core','gamess','gamess.2',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2517439,0,';cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;',NULL,NULL),(3807733,'2020-04-13 04:20:59','2020-04-13 04:21:06','UBHPC_32core','UBHPC_32core','enzo','enzo.1',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAO8glF4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAO8glF4CA0suyNMtNTLVNTZXSB5lUp/JBQDM4a5vYQEAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 10.969727299999999\n Second\n \n \n All Grid Level 00 Calculation Time\n 43.0008946\n Second\n \n \n All Grid Level 01 Calculation Time\n 91.448390963\n Second\n \n \n All Grid Level 02 Calculation Time\n 36.358246095\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 32.5089256\n Second\n \n \n Communication Transpose Time\n 1.17532176\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.3901897200000004\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 31.019527519999997\n Second\n \n \n Hydro Equations Solving Time\n 61.40617149999999\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 33.51005187568\n Second\n \n \n Radiative Transfer Calculation Time\n 57.916942960600004\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 288.09329169999995\n Second\n \n \n Wall Clock Time\n 288.884974\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,288.885,2517500,0,';cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;',NULL,NULL),(3807716,'2020-04-13 04:42:16','2020-04-13 04:42:22','UBHPC_32core','UBHPC_32core','hpcc','hpcc.8',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAOsllF4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 16\n \n \n Input:High Performance LINPACK Problem Size\n 56568\n \n \n Input:MPI Ranks\n 256\n \n \n Input:MPIRandom Problem Size\n 2048.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 28284\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 2065.649\n MHz\n \n \n RunEnv:Nodes\n H4sIAOsllF4CA+3UIRUAIAxFUU8KCswMNuiD52DojyTBd8/dBHedbdebtagLCplQx24eUMqEOsavAmqYUMoBpZxQwfIAJL7OLwELAAA=\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 49900.3\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4778.84416\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5433.73312\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4337.57184\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4876.5952\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 98524.4\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 228.934\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 4842470.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 24.9214\n Second\n \n \n MPI Random Access\n 92.32509999999999\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 27601.5104\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 208.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,208,2517233,0,';cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;',NULL,NULL),(3807722,'2020-04-13 05:04:11','2020-04-13 05:04:18','UBHPC_32core','UBHPC_32core','imb','imb.8',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAA8rlF4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAA8rlF4CA+3UIRUAIAxFUU8KCswMNuiD52DojyTBd8/dBHedbdebtagLCplQx24eUMqEOsavAmqYUMoBpZxQwfIAJL7OLwELAAA=\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 17945.26\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1865.1\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3425.94\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11123.03\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11166.81\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3613.96\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3908.25\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12063.49\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11494.4\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11290.07\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11607.02\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 17932.0\n MByte per Second\n \n \n Min AllGather Latency\n 4.7e-06\n Second\n \n \n Min AllGatherV Latency\n 4.8200000000000004e-06\n Second\n \n \n Min AllReduce Latency\n 4.749999999999999e-06\n Second\n \n \n Min AllToAll Latency\n 4.37e-06\n Second\n \n \n Min AllToAllV Latency\n 4.3899999999999995e-06\n Second\n \n \n Min Barrier Latency\n 4.43e-06\n Second\n \n \n Min Broadcast Latency\n 1.83e-06\n Second\n \n \n Min Gather Latency\n 6.7e-07\n Second\n \n \n Min GatherV Latency\n 4.43e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 4.09e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 1.3949999999999999e-05\n Second\n \n \n Min MPI-2 Window Creation Latency\n 5.331e-05\n Second\n \n \n Min Reduce Latency\n 4.1100000000000005e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.4199999999999997e-06\n Second\n \n \n Min Scatter Latency\n 1.4299999999999999e-06\n Second\n \n \n Min ScatterV Latency\n 1.47e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 24.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,24,2517296,0,';cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-36;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;',NULL,NULL),(3807745,'2020-04-13 11:12:17','2020-04-13 11:12:24','UBHPC_8core','UBHPC_8core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAFWBlF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAFWBlF4CA0suyNNNMTDXNTDVNTBUSKYrz4iePDMU2+nCM6IDjwsATkZfe8EBAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 310.656250\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.6549494895859608e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 108.764145\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',310.656,0,108.764,2519788,0,';cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;',NULL,NULL),(3807747,'2020-04-13 11:22:20','2020-04-13 11:22:26','UBHPC_8core','UBHPC_8core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAK+DlF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 16\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAK+DlF4CA0suyNNNMTDXNTTXNTBSSKYbz8iUPjwuAHwoGXzhAAAA\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 311.800781\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.3753720381363161e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 191.533524\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',311.801,0,191.534,2519893,0,';cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;',NULL,NULL),(3807755,'2020-04-13 11:52:20','2020-04-13 11:52:26','UBHPC_8core','UBHPC_8core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIALeKlF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIALeKlF4CA0suyNNNMTDXNTDRNTBUSKYrz4iePFMU2+nCM6IDjwsA1FER2sEBAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 550.2700805664062\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 191000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 936.5081787109375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 27800\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 152.587890625\n MByte\n \n \n Global Arrays \'Put\' Calls\n 18900\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 49.7\n Second\n \n \n Wall Clock Time\n 92.5\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,92.5,2519984,0,';cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;',NULL,NULL),(3807759,'2020-04-13 12:22:19','2020-04-13 12:22:29','UBHPC_8core','UBHPC_8core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMGRlF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 8\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMGRlF4CA0suyNNNMTDXNTTXNTBSSKY5jwsAPFOdcHEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 323.542969\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 7.21422645456841e-10\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 328.391174\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',323.543,0,328.391,2520000,0,';cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;',NULL,NULL),(3807760,'2020-04-13 12:22:18','2020-04-13 12:22:29','UBHPC_8core','UBHPC_8core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMGRlF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMGRlF4CA0suyNNNMTDXNTTTNTBUSKY5jwsATzrhcHEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 1850.128173828125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 758000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 2603.5308837890625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 93400\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 455.8563232421875\n MByte\n \n \n Global Arrays \'Put\' Calls\n 62600\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 109.1\n Second\n \n \n Wall Clock Time\n 116.7\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,116.7,2519998,0,';cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;cpn-d07-16-01;',NULL,NULL),(3807758,'2020-04-13 12:22:19','2020-04-13 12:22:31','UBHPC_8core','UBHPC_8core','namd','namd.8',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMSRlF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 8\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMORlF4CA0suyNNNMTDXNTDRNTBUSKYrz4iePFMU2+nCM6InzxzFdrrwjOjJs0CxnfY8S/rwuAC4N57sgQMAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 325.757812\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 4.871062963359865e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 74.590355\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',325.758,0,74.5904,2519997,0,';cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;cpn-d07-09-01;',NULL,NULL),(3807757,'2020-04-13 12:22:20','2020-04-13 12:22:31','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMORlF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMORlF4CA0suyNNNMTDXNbDUNTBSSKYbz9BA18CQzjwjevIMUWynC8+InjxjOvNMUHxLF54RHXhcANPoFtyBAwAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 352.8594970703125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 131000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 666.6183471679688\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18100\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 97.2747802734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 38.5\n Second\n \n \n Wall Clock Time\n 88.2\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,88.2,2519999,0,';cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;',NULL,NULL),(3807756,'2020-04-13 12:22:28','2020-04-13 12:22:36','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMmRlF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMmRlF4CA0suyNNNMTDXNTDRNTBUSKYrz4iePFMU2+nCM6InzwzFdrrwjOjJM6czzwLFtzTjcQEAxVR3AoEDAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 329.9713134765625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 98400\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 664.7109985351562\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18100\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 97.2747802734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 41.7\n Second\n \n \n Wall Clock Time\n 92.9\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,92.9,2520001,0,';cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-04-02;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-07-02;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;',NULL,NULL),(3807775,'2020-04-13 13:12:28','2020-04-13 13:12:34','UBHPC_8core','UBHPC_8core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAH+dlF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAH+dlF4CA0suyNNNMTDXNTTVNTBSSKYfz5w+PC4A9e/7FuEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 953.67431640625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 395000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 1497.2686767578125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 48700\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 241.27960205078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 32100\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 71.2\n Second\n \n \n Wall Clock Time\n 108.1\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,108.1,2520323,0,';cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;',NULL,NULL),(3807806,'2020-04-14 17:03:46','2020-04-14 17:03:53','UBHPC_32core','UBHPC_32core','enzo','enzo.4',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIADYlll4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIADUlll4CA0suyNMtNTLWNTZRSB5l0pBpNsqkKdN8lEk7pqmu0SiTJkwuACK6tvmBBQAA\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 5.044954199999999\n Second\n \n \n All Grid Level 00 Calculation Time\n 17.460067140000003\n Second\n \n \n All Grid Level 01 Calculation Time\n 30.568353396000003\n Second\n \n \n All Grid Level 02 Calculation Time\n 18.301755165000003\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 11.892786671\n Second\n \n \n Communication Transpose Time\n 1.9173083329999996\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.3790550149999996\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 19.35118188\n Second\n \n \n Hydro Equations Solving Time\n 15.78238967\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 9.050471489179996\n Second\n \n \n Radiative Transfer Calculation Time\n 44.3826760883\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 147.3849083\n Second\n \n \n Wall Clock Time\n 147.900888\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,147.901,2634912,0,';cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u23-37;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;',NULL,NULL),(3807809,'2020-04-14 21:55:32','2020-04-14 21:55:39','UBHPC_32core','UBHPC_32core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJhpll4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 128\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJhpll4CA0suyNMtNTLRNTJUSB5l0pBpPMqkKdNklElTpukokxZMLgDwGpUCgQUAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 626.488281\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.4220078466392978e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 35.475174\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',626.488,0,35.4752,2635119,0,';cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;',NULL,NULL),(3807808,'2020-04-14 21:55:33','2020-04-14 21:55:39','UBHPC_32core','UBHPC_32core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJhpll4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJhpll4CA0suyNMtNTLRNbJQSB5l0pBpOcqkBZMLAP8ZbzLBAgAA\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 628.636719\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.167400572493241e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 44.258945\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',628.637,0,44.2589,2635121,0,';cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;',NULL,NULL),(3807807,'2020-04-14 22:25:37','2020-04-14 22:25:43','UBHPC_32core','UBHPC_32core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAKRwll4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAKRwll4CA0suyNMtNTLRNTJXSB5lUp/JBQABgnZUYQEAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 575.808594\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 6.327351876692567e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 58.264088\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',575.809,0,58.2641,2635120,0,';cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;',NULL,NULL),(3807810,'2020-04-15 00:41:50','2020-04-15 00:41:56','UBHPC_32core','UBHPC_32core','hpcc','hpcc.8',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAJGQll4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 16\n \n \n Input:High Performance LINPACK Problem Size\n 56568\n \n \n Input:MPI Ranks\n 256\n \n \n Input:MPIRandom Problem Size\n 2048.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 28284\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1562.951\n MHz\n \n \n RunEnv:Nodes\n H4sIAJGQll4CA+3GsREAEBBFwVwVGjDDOYN6LjcS/aviZ2+jjXvKMy9Wc1BhG5W2U2mdSjuotJNKu6i0myqaPktgsFsBCwAA\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48406.5\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4845.60896\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5491.29216\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4392.30464\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4952.60672\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 153307.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 411.096\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 6579440.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 18.3421\n Second\n \n \n MPI Random Access\n 97.1026\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 38555.5456\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 194.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,194,2635189,0,';cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-20;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-21;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-24;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;',NULL,NULL),(3807811,'2020-04-15 01:39:53','2020-04-15 01:40:00','UBHPC_32core','UBHPC_32core','hpcc','hpcc.2',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAC2ell4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 28284\n \n \n Input:MPI Ranks\n 64\n \n \n Input:MPIRandom Problem Size\n 512.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 14142\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 2248.168\n MHz\n \n \n RunEnv:Nodes\n H4sIAC2ell4CA0suyNMtNTLSNTJXSB5l0pBpOcqkBZMLAOOA6QjBAgAA\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 46460.5\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4669.2352\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5381.64224\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4260.67968\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4744.37632\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 66204.5\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 315.747\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1817220.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 8.30153\n Second\n \n \n MPI Random Access\n 33.6582\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 25134.4896\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 151.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,151,2635234,0,';cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;',NULL,NULL),(3807812,'2020-04-15 01:49:09','2020-04-15 01:49:16','UBHPC_32core','UBHPC_32core','hpcc','hpcc.1',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAFmgll4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 4\n \n \n Input:High Performance LINPACK Problem Size\n 20000\n \n \n Input:MPI Ranks\n 32\n \n \n Input:MPIRandom Problem Size\n 256.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 10000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1940.039\n MHz\n \n \n RunEnv:Nodes\n H4sIAFmgll4CA0suyNMtNTLWNTZRSB5lUp/JBQAIp7AWYQEAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 47145.1\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4666.44992\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5363.18976\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4263.75168\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4748.63616\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 51690.9\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 392.221\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 973984.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 5.47641\n Second\n \n \n MPI Random Access\n 10.9696\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 13478.6048\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 142.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,142,2635238,0,';cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;cpn-u23-34;',NULL,NULL),(3807813,'2020-04-15 01:53:18','2020-04-15 01:53:26','UBHPC_32core','UBHPC_32core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAFKhll4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAFKhll4CA0suyNMtNTLSNTZQSB5l0pBpPMqkBZMLAM5iO7rBAgAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 308.990478515625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 97200\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 646.5911865234375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 15300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 93.4600830078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 11200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 17.3\n Second\n \n \n Wall Clock Time\n 38.7\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,38.7,2635326,0,';cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3807814,'2020-04-15 01:58:01','2020-04-15 01:58:08','UBHPC_32core','UBHPC_32core','gamess','gamess.1',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2635403,0,';cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;cpn-u23-36;',NULL,NULL),(3807819,'2020-04-15 03:18:59','2020-04-15 03:19:06','UBHPC_32core','UBHPC_32core','imb','imb.4',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAGe1ll4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAGe1ll4CA0suyNMtNTLVNTJWSB5l0pBpMsqkKdN0lElTptkokxZMLgCrZsP/gQUAAA==\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18234.02\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1862.54\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3429.74\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 10538.03\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11119.52\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3457.67\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3890.53\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12087.53\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11510.2\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11299.5\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11658.95\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 18067.36\n MByte per Second\n \n \n Min AllGather Latency\n 2.6099999999999996e-06\n Second\n \n \n Min AllGatherV Latency\n 2.7e-06\n Second\n \n \n Min AllReduce Latency\n 2.64e-06\n Second\n \n \n Min AllToAll Latency\n 2.2999999999999996e-06\n Second\n \n \n Min AllToAllV Latency\n 2.35e-06\n Second\n \n \n Min Barrier Latency\n 2.5299999999999995e-06\n Second\n \n \n Min Broadcast Latency\n 2e-06\n Second\n \n \n Min Gather Latency\n 6.6e-07\n Second\n \n \n Min GatherV Latency\n 2.76e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 1.86e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 8.03e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 2.898e-05\n Second\n \n \n Min Reduce Latency\n 1.8e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.8799999999999998e-06\n Second\n \n \n Min Scatter Latency\n 1.5399999999999999e-06\n Second\n \n \n Min ScatterV Latency\n 1.5399999999999999e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 15.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,15,2635915,0,';cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;cpn-u25-26;',NULL,NULL),(3807815,'2020-04-15 03:19:51','2020-04-15 03:19:58','UBHPC_32core','UBHPC_32core','graph500','graph500.2',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAJu1ll4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAJq1ll4CA0suyNMtNTLVNTJWSB5l0pBpMsqkBZMLAHnmzYXBAgAA\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 4.64035e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.19448e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 4.63686e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 372.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,372,2635523,0,';cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;',NULL,NULL),(3807820,'2020-04-15 03:23:42','2020-04-15 03:23:48','UBHPC_32core','UBHPC_32core','graph500','graph500.1',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIG2ll4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIG2ll4CA0suyNMtNTLVNTJVSB5lUp/JBQD10Nu8YQEAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 6.52149e+09\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 2.02207e+08\n Traversed Edges Per Second\n \n \n Median TEPS\n 7.21034e+09\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 339.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,339,2635917,0,';cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;',NULL,NULL),(3807817,'2020-04-15 03:28:28','2020-04-15 03:28:35','UBHPC_32core','UBHPC_32core','hpcc','hpcc.4',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAKC3ll4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 40000\n \n \n Input:MPI Ranks\n 128\n \n \n Input:MPIRandom Problem Size\n 1024.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 20000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1366.589\n MHz\n \n \n RunEnv:Nodes\n H4sIAKC3ll4CA0suyNMtNTLRNTZXSB5l0pBpMcqkHdNU19BslElTpvkokxZMLgADi3EegQUAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 47397.7\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4762.624\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5462.54848\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4346.7776\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4871.0144\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 112561.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 512.634\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 3586870.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 11.8959\n Second\n \n \n MPI Random Access\n 59.013200000000005\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 37068.288\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 191.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,191,2635847,0,';cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;',NULL,NULL),(3807818,'2020-04-15 03:29:43','2020-04-15 03:29:50','UBHPC_32core','UBHPC_32core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAOu3ll4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAOu3ll4CA0suyNMtNTLVNbRQSB5l0pBpOcqkJdPIYJRJU6bhKJMWTC4AIN2sBYEFAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 244.140625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 54300\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 497.8179931640625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 13300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 60.749053955078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 9002\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 25.4\n Second\n \n \n Wall Clock Time\n 58.6\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,58.6,2635848,0,';cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;cpn-u25-21;',NULL,NULL),(3807816,'2020-04-15 03:34:03','2020-04-15 03:34:10','UBHPC_32core','UBHPC_32core','imb','imb.8',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAO+4ll4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAO+4ll4CA+3GoQ0AIBAEQU8VNPAJ/OUF9eAJhv6p4tyOmn1PvMxQ9U1dVaSotUWtXdRZDWrtpNYmtVbU0fYBjdUrVAELAAA=\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 16898.91\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1798.66\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3223.67\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 9132.16\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 8696.52\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3189.73\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3846.55\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12122.51\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11494.4\n MByte per Second\n \n \n Max PingPing Bandwidth\n 8831.86\n MByte per Second\n \n \n Max PingPong Bandwidth\n 10198.96\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 15431.74\n MByte per Second\n \n \n Min AllGather Latency\n 4.25e-06\n Second\n \n \n Min AllGatherV Latency\n 4.3799999999999996e-06\n Second\n \n \n Min AllReduce Latency\n 4.34e-06\n Second\n \n \n Min AllToAll Latency\n 4.35e-06\n Second\n \n \n Min AllToAllV Latency\n 4.42e-06\n Second\n \n \n Min Barrier Latency\n 4.049999999999999e-06\n Second\n \n \n Min Broadcast Latency\n 1.96e-06\n Second\n \n \n Min Gather Latency\n 6.1e-07\n Second\n \n \n Min GatherV Latency\n 4.599999999999999e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 4.25e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 1.4079999999999999e-05\n Second\n \n \n Min MPI-2 Window Creation Latency\n 5.5219999999999996e-05\n Second\n \n \n Min Reduce Latency\n 3.91e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.12e-06\n Second\n \n \n Min Scatter Latency\n 1.59e-06\n Second\n \n \n Min ScatterV Latency\n 1.69e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 24.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,24,2635719,0,';cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-23;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-32;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;cpn-u23-33;',NULL,NULL),(3807821,'2020-04-15 03:37:29','2020-04-15 03:37:36','UBHPC_32core','UBHPC_32core','gamess','gamess.4',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2636043,0,';cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;',NULL,NULL),(3807822,'2020-04-15 03:57:51','2020-04-15 03:57:58','UBHPC_32core','UBHPC_32core','imb','imb.2',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAIO+ll4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAIO+ll4CA0suyNMtNTLRNTZXSB5l0pBpMcqkBZMLAKI84CPBAgAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18268.11\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1923.57\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3504.91\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11051.76\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11139.94\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3488.92\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3850.08\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12199.85\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11547.98\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11274.87\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11625.05\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 22677.65\n MByte per Second\n \n \n Min AllGather Latency\n 1.29e-06\n Second\n \n \n Min AllGatherV Latency\n 1.3899999999999998e-06\n Second\n \n \n Min AllReduce Latency\n 1.38e-06\n Second\n \n \n Min AllToAll Latency\n 1.32e-06\n Second\n \n \n Min AllToAllV Latency\n 1.55e-06\n Second\n \n \n Min Barrier Latency\n 1.2499999999999999e-06\n Second\n \n \n Min Broadcast Latency\n 9.9e-07\n Second\n \n \n Min Gather Latency\n 1.06e-06\n Second\n \n \n Min GatherV Latency\n 1.78e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 6.800000000000001e-07\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 5.929999999999999e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 1.935e-05\n Second\n \n \n Min Reduce Latency\n 1.09e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.2499999999999999e-06\n Second\n \n \n Min Scatter Latency\n 1.0099999999999999e-06\n Second\n \n \n Min ScatterV Latency\n 1.1299999999999998e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 10.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,10,2636166,0,';cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;',NULL,NULL),(3807823,'2020-04-15 03:59:19','2020-04-15 03:59:26','UBHPC_32core','UBHPC_32core','enzo','enzo.2',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIANu+ll4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIANq+ll4CA0suyNMtNTLRNTZXSB5l0pBpMcqkBZMLAKI84CPBAgAA\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 6.8113806\n Second\n \n \n All Grid Level 00 Calculation Time\n 26.528963199999993\n Second\n \n \n All Grid Level 01 Calculation Time\n 49.55224394199999\n Second\n \n \n All Grid Level 02 Calculation Time\n 24.03883919\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 19.827797550000003\n Second\n \n \n Communication Transpose Time\n 1.2725073989999998\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 1.9935905499999993\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 24.76618787\n Second\n \n \n Hydro Equations Solving Time\n 32.26369874000001\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 16.64768414556\n Second\n \n \n Radiative Transfer Calculation Time\n 43.257054144799994\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 189.3762174\n Second\n \n \n Wall Clock Time\n 189.944684\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,189.945,2636168,0,';cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;',NULL,NULL),(3807824,'2020-04-15 04:02:03','2020-04-15 04:02:09','UBHPC_32core','UBHPC_32core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAH6/ll4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAH6/ll4CA0suyNMtNTLRNTZXSB5lUp/JBQBpQOC3YQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 414.84832763671875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 178000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 951.7669677734375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 24800\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 152.587890625\n MByte\n \n \n Global Arrays \'Put\' Calls\n 17800\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 10.8\n Second\n \n \n Wall Clock Time\n 18.5\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,18.5,2636170,0,';cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;',NULL,NULL),(3807826,'2020-04-15 04:15:33','2020-04-15 04:15:39','UBHPC_32core','UBHPC_32core','gamess','gamess.2',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2636181,0,';cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;',NULL,NULL),(3807827,'2020-04-15 04:20:58','2020-04-15 04:21:05','UBHPC_32core','UBHPC_32core','enzo','enzo.1',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAO7Dll4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAO7Dll4CA0suyNMtNTLRNTZXSB5lUp/JBQBpQOC3YQEAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 11.2750106\n Second\n \n \n All Grid Level 00 Calculation Time\n 43.34673629999999\n Second\n \n \n All Grid Level 01 Calculation Time\n 92.164737461\n Second\n \n \n All Grid Level 02 Calculation Time\n 37.233479571000004\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 32.53914162\n Second\n \n \n Communication Transpose Time\n 1.3204072820000006\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.5410649100000016\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 30.909634510000007\n Second\n \n \n Hydro Equations Solving Time\n 62.31067170000001\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 34.61159602322\n Second\n \n \n Radiative Transfer Calculation Time\n 89.5261781245\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 161\n \n \n Total Time Spent in Cycles\n 321.7441875\n Second\n \n \n Wall Clock Time\n 322.525913\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,322.526,2636185,0,';cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;',NULL,NULL),(3807825,'2020-04-15 10:03:39','2020-04-15 10:03:45','UBHPC_32core','UBHPC_32core','graph500','graph500.4',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAD4Ul14CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAD4Ul14CA0suyNMtNTLRNTJTSB5l0o5pbD7KpCnTYpRJO6aprrHxKJMWTC4A83JxFoEFAAA=\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 8.78223e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 6.52547e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 8.9482e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 368.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,368,2636172,0,';cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-26;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;cpn-u25-33;',NULL,NULL),(3807839,'2020-04-15 11:12:15','2020-04-15 11:12:21','UBHPC_8core','UBHPC_8core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAFIkl14CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAFIkl14CA0suyNNNMTDXNbLUNTBUSKYrz4iOPGMDZNvpwzOiA48LAPyzmRvBAQAA\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 310.996094\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.698130465400524e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 107.613228\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',310.996,0,107.613,2636372,0,';cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;',NULL,NULL),(3807844,'2020-04-15 11:22:19','2020-04-15 11:22:25','UBHPC_8core','UBHPC_8core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAK4ml14CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 16\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAK4ml14CA0suyNNNMTDXNTbQNTBUSKYrz4gOPC4ACIJRBeEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 311.882812\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.3910237239096115e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 184.249191\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',311.883,0,184.249,2636383,0,';cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;',NULL,NULL),(3807848,'2020-04-15 11:52:18','2020-04-15 11:52:27','UBHPC_8core','UBHPC_8core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIALctl14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIALYtl14CA0suyNNNMTDXNbLUNTBUSKYrz4iOPGMDZNvpwzOiA48LAPyzmRvBAQAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 563.6215209960938\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 201000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 903.1295776367188\n MByte\n \n \n Global Arrays \'Get\' Calls\n 27600\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 152.587890625\n MByte\n \n \n Global Arrays \'Put\' Calls\n 19000\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 48.1\n Second\n \n \n Wall Clock Time\n 89.6\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,89.6,2636415,0,';cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;',NULL,NULL),(3807851,'2020-04-15 12:22:19','2020-04-15 12:22:27','UBHPC_8core','UBHPC_8core','namd','namd.8',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAL80l14CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 8\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAL80l14CA0suyNNNMTDXNTTVNTBUSKYrz4iePDM688xRfEsXnhE9eRYottOFZ0RPniWK7TTjcQEA7xafdIEDAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 325.757812\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 4.855358859573312e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 72.451218\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',325.758,0,72.4512,2636429,0,';cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;',NULL,NULL),(3807852,'2020-04-15 12:22:19','2020-04-15 12:22:27','UBHPC_8core','UBHPC_8core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAL80l14CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 8\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAL80l14CA0suyNNNMbDUNTbXNTBUSKY5jwsA0c/WqnEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 323.527344\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 7.186334466378735e-10\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 323.065430\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',323.527,0,323.065,2636430,0,';cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;',NULL,NULL),(3807853,'2020-04-15 12:22:20','2020-04-15 12:22:29','UBHPC_8core','UBHPC_8core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAME0l14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAME0l14CA0suyNNNMbDUNTLXNTBSSKY5jwsA35ubPHEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 1850.128173828125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 762000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 2613.067626953125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 93500\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 457.763671875\n MByte\n \n \n Global Arrays \'Put\' Calls\n 62600\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 107.0\n Second\n \n \n Wall Clock Time\n 112.2\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,112.2,2636428,0,';cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;',NULL,NULL),(3807854,'2020-04-15 12:22:20','2020-04-15 12:22:29','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAME0l14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAME0l14CA0suyNNNMTDXNbLUNTBUSKYrz4iOPGMDZNvpwzOiJ88QxXba84zpzzOiJ88ExXaa8bgAJ8azM4EDAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 325.20294189453125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 95900\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 658.9889526367188\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18100\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 97.2747802734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 40.2\n Second\n \n \n Wall Clock Time\n 87.2\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,87.2,2636427,0,';cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;',NULL,NULL),(3807850,'2020-04-15 12:22:26','2020-04-15 12:22:33','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMY0l14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMY0l14CA0suyNNNMTDXNbTUNTBSSKYbz8hA18CQzjwjevJM6MwzpTPPDCV06cIzoifPHMV2mvG4AG6lpuGBAwAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 339.508056640625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 115000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 658.9889526367188\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18100\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 97.2747802734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 40.1\n Second\n \n \n Wall Clock Time\n 88.4\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,88.4,2636431,0,';cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;',NULL,NULL),(3807869,'2020-04-15 13:12:18','2020-04-15 13:12:24','UBHPC_8core','UBHPC_8core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAHVAl14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHVAl14CA0suyNNNMTDXNbLQNTBUSKYrz4gOPC4AlCQd0OEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 991.8212890625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 432000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 1478.1951904296875\n MByte\n \n \n Global Arrays \'Get\' Calls\n 48700\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 241.27960205078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 32300\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 71.1\n Second\n \n \n Wall Clock Time\n 108.4\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,108.4,2636469,0,';cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-02;cpn-d07-28-02;cpn-d07-28-02;cpn-d07-28-02;cpn-d07-28-02;cpn-d07-28-02;cpn-d07-28-02;cpn-d07-28-02;',NULL,NULL),(3807900,'2020-04-16 18:03:47','2020-04-16 18:03:53','UBHPC_32core','UBHPC_32core','enzo','enzo.4',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAEbWmF4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAEbWmF4CA0suyNMtNTLSNTJXSB5l0o5pbDDKpB3TWNfIcJRJU6bpKJMWTC4AQB8Uf4EFAAA=\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 5.696538\n Second\n \n \n All Grid Level 00 Calculation Time\n 19.00372745999999\n Second\n \n \n All Grid Level 01 Calculation Time\n 31.337172594\n Second\n \n \n All Grid Level 02 Calculation Time\n 18.16150919\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 12.132630168999999\n Second\n \n \n Communication Transpose Time\n 1.5876474800000007\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.1241966650000004\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 19.819457540000005\n Second\n \n \n Hydro Equations Solving Time\n 15.976278080000002\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 9.259375349859997\n Second\n \n \n Radiative Transfer Calculation Time\n 34.28412835835\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 140.1783845\n Second\n \n \n Wall Clock Time\n 141.044914\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,141.045,2642594,0,';cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;',NULL,NULL),(3807902,'2020-04-16 21:55:27','2020-04-16 21:55:33','UBHPC_32core','UBHPC_32core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJIMmV4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 128\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJIMmV4CA0suyNMtNTLSNTJUSB5l0pBpOsqkKdNslElTpvkokxZMLgC/4ThZgQUAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 626.828125\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.1277410624236674e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 35.441994\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',626.828,0,35.442,2643711,0,';cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;',NULL,NULL),(3807903,'2020-04-16 22:25:30','2020-04-16 22:25:36','UBHPC_32core','UBHPC_32core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJ0TmV4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJ0TmV4CA0suyNMtNTLSNTZRSB5lUp/JBQCtBv7OYQEAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 575.085938\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 5.958374793691273e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 58.769077\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',575.086,0,58.7691,2643712,0,';cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;',NULL,NULL),(3807901,'2020-04-16 22:25:30','2020-04-16 22:25:36','UBHPC_32core','UBHPC_32core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJ0TmV4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJ0TmV4CA0suyNMtNTLSNTZQSB5l0pBpNMqkBZMLAEYY8k/BAgAA\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 692.636719\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 8.487811502682149e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 50.349777\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',692.637,0,50.3498,2643710,0,';cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;',NULL,NULL),(3807904,'2020-04-17 00:41:54','2020-04-17 00:42:01','UBHPC_32core','UBHPC_32core','hpcc','hpcc.8',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAJYzmV4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 16\n \n \n Input:High Performance LINPACK Problem Size\n 56568\n \n \n Input:MPI Ranks\n 256\n \n \n Input:MPIRandom Problem Size\n 2048.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 28284\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1495.66\n MHz\n \n \n RunEnv:Nodes\n H4sIAJYzmV4CA+3GuQ0AIAwEwZwqaMASmMcFOUck9E8Vl+1Ek/fYczfvNamwi0q7qbRBlR2NSutU2kmlDapo+Verkn4BCwAA\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 47815.9\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4828.8768\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5465.96864\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4367.3088\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4915.78368\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 143837.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 361.334\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 5534030.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 21.807\n Second\n \n \n MPI Random Access\n 96.42240000000001\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 56974.336\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 199.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,199,2644586,0,';cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-34;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;',NULL,NULL),(3807905,'2020-04-17 01:09:51','2020-04-17 01:09:58','UBHPC_32core','UBHPC_32core','hpcc','hpcc.2',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIACM6mV4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 28284\n \n \n Input:MPI Ranks\n 64\n \n \n Input:MPIRandom Problem Size\n 512.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 14142\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 2150.5\n MHz\n \n \n RunEnv:Nodes\n H4sIACM6mV4CA0suyNMtNTLSNTJTSB5l0pBpPsqkBZMLAMHrK1jBAgAA\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 45967.9\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4674.2528\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5377.35168\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4255.73376\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4768.72704\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 44047.600000000006\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 328.090\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1806230.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 8.35205\n Second\n \n \n MPI Random Access\n 33.092499999999994\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 13403.4432\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 151.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,151,2644729,0,';cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;',NULL,NULL),(3807906,'2020-04-17 01:19:08','2020-04-17 01:19:14','UBHPC_32core','UBHPC_32core','hpcc','hpcc.1',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAE88mV4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 4\n \n \n Input:High Performance LINPACK Problem Size\n 20000\n \n \n Input:MPI Ranks\n 32\n \n \n Input:MPIRandom Problem Size\n 256.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 10000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1885.565\n MHz\n \n \n RunEnv:Nodes\n H4sIAE88mV4CA0suyNMtNTLSNbRUSB5lUp/JBQBS1SOFYQEAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48553.600000000006\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4553.58464\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5288.87808\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4160.58368\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4637.19424\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 28964.4\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 415.206\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1002110.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 5.32268\n Second\n \n \n MPI Random Access\n 10.964\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 10303.0784\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 142.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,142,2644780,0,';cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;',NULL,NULL),(3807907,'2020-04-17 01:53:16','2020-04-17 01:53:23','UBHPC_32core','UBHPC_32core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAFBEmV4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAFBEmV4CA0suyNMtNTLSNTZXSB5l0opprGtkOMqkBZMLAHrij5PBAgAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 308.03680419921875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 95900\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 646.5911865234375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 15300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 94.03228759765625\n MByte\n \n \n Global Arrays \'Put\' Calls\n 11300\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 18.0\n Second\n \n \n Wall Clock Time\n 41.2\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,41.2,2644826,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;',NULL,NULL),(3807908,'2020-04-17 01:58:00','2020-04-17 01:58:06','UBHPC_32core','UBHPC_32core','gamess','gamess.1',1,NULL,NULL,'\n Gamess\n \n Gamess\n \n \n App:ExeBinSignature\n H4sIAGtFmV4CA7WRTY7bMAyF9zlFTmCR1H+X7SxmM0A3XQcSSaVuncSwPcAcvzKShS/QhSCB0ke+p/fx5r+da2zRNiUH6gVbRedURJBD0QzKZzMvjz/K22qYl3UrrZmr3nUpkynz/FcX8+v7+88f5lpuuq6vbQAcvk4f+wDJmIP6lkgqVW0CpNV7jim6GMmdzec29l5cRG8jm/G+6WQwDdbw4zaPky7rpdzlMo11Kcuo64Vgvx6IyEzj/fPL9GdPLrheqfvqpWF9DEhPFdCCtxmZSNQJ+thtltT9pX7EXP6fivZYtqMSnylJbNl7J6JQna+cYmHIPqcicN65Z4cX+OIiCXEBWwAKO4jexWCTtTU1YKwHbt5+L1pkh+EJU4SerncWtLICUnTassshIlHlI3zbsfDKLjZ2PTgSFzyWAmyD+By7VIJU4gHjA8apEaONqorF+YSVoWqswXYHAewBuzJf1oPLWqtL6KL34Kh/UUzYWLGilNCk4gGVaefodPoHaVIrBsgCAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 02 AUG 2018 (R2)\n \n \n RunEnv:Nodes\n H4sIAGtFmV4CA0suyNMtNTLSNTZXSB5lUp/JBQB0j9QLYQEAAA==\n \n \n app\n gamess\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Attempts to Launch\n 1\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Time Spent in MP2 Energy Calculation\n 16.88\n Second\n \n \n Time Spent in Restricted Hartree-Fock Calculation\n 22.55\n Second\n \n \n User Time\n 40.3522\n Second\n \n \n Wall Clock Time\n 41.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,41,2644838,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;',NULL,NULL),(3807909,'2020-04-17 02:19:42','2020-04-17 02:19:48','UBHPC_32core','UBHPC_32core','graph500','graph500.2',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIFKmV4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIFKmV4CA0suyNMtNTLSNTZXSB5l0opprGtoOcqkBZMLAMdvyq/BAgAA\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 4.69026e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.1157e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 4.70172e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 386.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,386,2644852,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;',NULL,NULL),(3807913,'2020-04-17 02:48:55','2020-04-17 02:49:02','UBHPC_32core','UBHPC_32core','imb','imb.4',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAFtRmV4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAFtRmV4CA0suyNMtNTLSNTZXSB5l0opprGtoOcqkJdPIcJRJU6bpKJMWTC4A0MkH0oEFAAA=\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18110.14\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1869.26\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3446.68\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 10541.19\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11113.19\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 2969.15\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3950.55\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12097.5\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11500.42\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11277.77\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11530.57\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 18110.14\n MByte per Second\n \n \n Min AllGather Latency\n 2.96e-06\n Second\n \n \n Min AllGatherV Latency\n 3.0399999999999997e-06\n Second\n \n \n Min AllReduce Latency\n 2.97e-06\n Second\n \n \n Min AllToAll Latency\n 2.56e-06\n Second\n \n \n Min AllToAllV Latency\n 2.6e-06\n Second\n \n \n Min Barrier Latency\n 2.83e-06\n Second\n \n \n Min Broadcast Latency\n 2.3799999999999997e-06\n Second\n \n \n Min Gather Latency\n 8.299999999999999e-07\n Second\n \n \n Min GatherV Latency\n 3.33e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 1.78e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 9.16e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 3.1769999999999996e-05\n Second\n \n \n Min Reduce Latency\n 1.86e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.01e-06\n Second\n \n \n Min Scatter Latency\n 1.77e-06\n Second\n \n \n Min ScatterV Latency\n 1.77e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 16.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,16,2645630,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;',NULL,NULL),(3807911,'2020-04-17 02:58:27','2020-04-17 02:58:34','UBHPC_32core','UBHPC_32core','hpcc','hpcc.4',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAJZTmV4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 40000\n \n \n Input:MPI Ranks\n 128\n \n \n Input:MPIRandom Problem Size\n 1024.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 20000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1362.231\n MHz\n \n \n RunEnv:Nodes\n H4sIAJZTmV4CA0suyNMtNTLSNTZXSB5l0opprGtoOcqkJdPIcJRJU6bpKJMWTC4A0MkH0oEFAAA=\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48400.1\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4681.2672\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5385.87136\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4232.79616\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4735.52896\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 65925.79999999999\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 494.669\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 3450130.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 12.3674\n Second\n \n \n MPI Random Access\n 59.554500000000004\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 30247.7312\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 171.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,171,2645466,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;',NULL,NULL),(3807912,'2020-04-17 02:59:42','2020-04-17 02:59:48','UBHPC_32core','UBHPC_32core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAOFTmV4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAOFTmV4CA0suyNMtNTLSNTZXSB5l0opprGtoOcqkJdPIcJRJU6bpKJMWTC4A0MkH0oEFAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 233.65020751953125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 43300\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 491.14227294921875\n MByte\n \n \n Global Arrays \'Get\' Calls\n 13300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 60.749053955078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 9002\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 26.6\n Second\n \n \n Wall Clock Time\n 64.9\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,64.9,2645471,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;',NULL,NULL),(3807914,'2020-04-17 03:23:43','2020-04-17 03:23:50','UBHPC_32core','UBHPC_32core','graph500','graph500.1',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAINZmV4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAINZmV4CA0suyNMtNTLSNTZXSB5lUp/JBQB0j9QLYQEAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 6.87509e+09\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 2.23668e+08\n Traversed Edges Per Second\n \n \n Median TEPS\n 7.69436e+09\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 336.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,336,2645632,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;',NULL,NULL),(3807915,'2020-04-17 03:37:35','2020-04-17 03:37:42','UBHPC_32core','UBHPC_32core','gamess','gamess.4',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2645635,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;',NULL,NULL),(3807916,'2020-04-17 03:57:49','2020-04-17 03:57:56','UBHPC_32core','UBHPC_32core','imb','imb.2',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAIFhmV4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAIFhmV4CA0suyNMtNTLSNTZXSB5l0opprGtoOcqkBZMLAMdvyq/BAgAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18428.37\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1893.67\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3460.37\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11394.64\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11080.99\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3533.68\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 4078.12\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12232.09\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11557.84\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11269.1\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11607.02\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 22555.53\n MByte per Second\n \n \n Min AllGather Latency\n 1.6399999999999998e-06\n Second\n \n \n Min AllGatherV Latency\n 1.7399999999999999e-06\n Second\n \n \n Min AllReduce Latency\n 1.71e-06\n Second\n \n \n Min AllToAll Latency\n 1.6299999999999999e-06\n Second\n \n \n Min AllToAllV Latency\n 1.89e-06\n Second\n \n \n Min Barrier Latency\n 1.57e-06\n Second\n \n \n Min Broadcast Latency\n 1.31e-06\n Second\n \n \n Min Gather Latency\n 1.3899999999999998e-06\n Second\n \n \n Min GatherV Latency\n 2.13e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 6.5e-07\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 7.259999999999999e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 2.148e-05\n Second\n \n \n Min Reduce Latency\n 1.44e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.61e-06\n Second\n \n \n Min Scatter Latency\n 1.31e-06\n Second\n \n \n Min ScatterV Latency\n 1.49e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 12.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,12,2645667,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;',NULL,NULL),(3807917,'2020-04-17 03:59:19','2020-04-17 03:59:26','UBHPC_32core','UBHPC_32core','enzo','enzo.2',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIANthmV4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIANthmV4CA0suyNMtNTLWNTJUSB5l0pBpOsqkBZMLAEP3V5LBAgAA\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 8.3879835\n Second\n \n \n All Grid Level 00 Calculation Time\n 25.78082079999999\n Second\n \n \n All Grid Level 01 Calculation Time\n 48.228248269\n Second\n \n \n All Grid Level 02 Calculation Time\n 23.107707404999996\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 19.17215006\n Second\n \n \n Communication Transpose Time\n 1.1006901530000004\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 1.817353135\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 23.879573030000007\n Second\n \n \n Hydro Equations Solving Time\n 32.340589949999995\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 16.03560176593\n Second\n \n \n Radiative Transfer Calculation Time\n 48.0725804493\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 161\n \n \n Total Time Spent in Cycles\n 190.8008515\n Second\n \n \n Wall Clock Time\n 191.673326\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,191.673,2645669,0,';cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;',NULL,NULL),(3807918,'2020-04-17 04:02:04','2020-04-17 04:02:10','UBHPC_32core','UBHPC_32core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAH9imV4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAH9imV4CA0suyNMtNTLSNTZXSB5lUp/JBQB0j9QLYQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 398.6358642578125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 163000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 24900\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 152.587890625\n MByte\n \n \n Global Arrays \'Put\' Calls\n 17800\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 11.6\n Second\n \n \n Wall Clock Time\n 21.8\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,21.8,2645670,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;',NULL,NULL),(3807919,'2020-04-17 04:02:57','2020-04-17 04:03:04','UBHPC_32core','UBHPC_32core','graph500','graph500.4',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIALVimV4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIALVimV4CA0suyNMtNTLSNTZXSB5l0opprGtoOcqkJdPIcJRJU6bpKJMWTC4A0MkH0oEFAAA=\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 8.85986e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 3.32078e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 8.92281e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 365.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,365,2645671,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;',NULL,NULL),(3807920,'2020-04-17 04:15:32','2020-04-17 04:15:39','UBHPC_32core','UBHPC_32core','gamess','gamess.2',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2645674,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;',NULL,NULL),(3807921,'2020-04-17 04:20:59','2020-04-17 04:21:06','UBHPC_32core','UBHPC_32core','enzo','enzo.1',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAO9mmV4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAO5mmV4CA0suyNMtNTLSNTZXSB5lUp/JBQB0j9QLYQEAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 13.4840773\n Second\n \n \n All Grid Level 00 Calculation Time\n 43.488350499999996\n Second\n \n \n All Grid Level 01 Calculation Time\n 89.33131246900001\n Second\n \n \n All Grid Level 02 Calculation Time\n 35.824264719000006\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 31.89861553\n Second\n \n \n Communication Transpose Time\n 1.5555412989999995\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.7773663\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 30.198074240000004\n Second\n \n \n Hydro Equations Solving Time\n 60.8664699\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 32.46806927184001\n Second\n \n \n Radiative Transfer Calculation Time\n 58.72526170009999\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 287.58032040000006\n Second\n \n \n Wall Clock Time\n 288.599274\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,288.599,2645676,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;',NULL,NULL),(3807910,'2020-04-17 09:34:39','2020-04-17 09:34:46','UBHPC_32core','UBHPC_32core','imb','imb.8',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAHOwmV4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAHOwmV4CA+3GuQ0AIAwEwZwqaAAJG/HV4xyR0D9VbHYTTdxTnnuxlUMFu1WybirarqIdKtqpkm1VResq0fQBpSJOegELAAA=\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18255.78\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1759.26\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3420.54\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 10423.15\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11178.87\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3435.89\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3955.79\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12097.5\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11523.01\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11323.5\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11560.88\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 18796.07\n MByte per Second\n \n \n Min AllGather Latency\n 3.95e-06\n Second\n \n \n Min AllGatherV Latency\n 4.1e-06\n Second\n \n \n Min AllReduce Latency\n 3.9399999999999995e-06\n Second\n \n \n Min AllToAll Latency\n 4.309999999999999e-06\n Second\n \n \n Min AllToAllV Latency\n 4.33e-06\n Second\n \n \n Min Barrier Latency\n 3.78e-06\n Second\n \n \n Min Broadcast Latency\n 1.69e-06\n Second\n \n \n Min Gather Latency\n 5.5e-07\n Second\n \n \n Min GatherV Latency\n 4.17e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 4.08e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 1.366e-05\n Second\n \n \n Min MPI-2 Window Creation Latency\n 4.724e-05\n Second\n \n \n Min Reduce Latency\n 3.93e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.05e-06\n Second\n \n \n Min Scatter Latency\n 1.37e-06\n Second\n \n \n Min ScatterV Latency\n 1.42e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 21.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,21,2644857,0,';cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;',NULL,NULL),(3807933,'2020-04-17 11:12:17','2020-04-17 11:12:23','UBHPC_8core','UBHPC_8core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAFTHmV4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAFTHmV4CA0suyNNNMbDUNTTVNTBUSKYfz4z+PCN68sxRbKcZjwsAmpuY9cEBAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 311.113281\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.6682676272430123e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 108.716232\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',311.113,0,108.716,2647170,0,';cpn-d09-15-01;cpn-d09-15-01;cpn-d09-15-01;cpn-d09-15-01;cpn-d09-15-01;cpn-d09-15-01;cpn-d09-15-01;cpn-d09-15-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;',NULL,NULL),(3807937,'2020-04-17 11:22:17','2020-04-17 11:22:24','UBHPC_8core','UBHPC_8core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAK3JmV4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 16\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAK3JmV4CA0suyNNNMbDUNbTUNTBUSKYrz4gOPC4A6Rm7buEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 312.000000\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.3720112450041642e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 187.448486\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',312,0,187.448,2647190,0,';cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;',NULL,NULL),(3807943,'2020-04-17 11:52:19','2020-04-17 11:52:26','UBHPC_8core','UBHPC_8core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIALfQmV4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIALfQmV4CA0suyNNNMbDUNbTUNTBUSKYrz4iOPCMDOvNM6MPjAgA88kJhwQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 550.2700805664062\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 182000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 897.4075317382812\n MByte\n \n \n Global Arrays \'Get\' Calls\n 27500\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 151.63421630859375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 18900\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 47.1\n Second\n \n \n Wall Clock Time\n 90.8\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,90.8,2647283,0,';cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;',NULL,NULL),(3807947,'2020-04-17 12:22:18','2020-04-17 12:22:26','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAL7XmV4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAL7XmV4CA0suyNNNMTDXNTTVNTBUSKYrz4iePDM688xRfEsXnhE9eRYottOFZ0RPniWK7TTjcQEA7xafdIEDAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 331.878662109375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 111000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 658.0352783203125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18100\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 97.2747802734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 40.3\n Second\n \n \n Wall Clock Time\n 89.8\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,89.8,2647339,0,';cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;',NULL,NULL),(3807945,'2020-04-17 12:22:18','2020-04-17 12:22:26','UBHPC_8core','UBHPC_8core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAL7XmV4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 8\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAL7XmV4CA0suyNNNMbDUNbbUNTBSSKY5jwsA4unk4nEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 324.359375\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 7.077792012003935e-10\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 332.316681\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',324.359,0,332.317,2647338,0,';cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;',NULL,NULL),(3807946,'2020-04-17 12:22:18','2020-04-17 12:22:28','UBHPC_8core','UBHPC_8core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMDXmV4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMDXmV4CA0suyNNNMbDUNbLUNTBSSKY5jwsASic9FHEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 1878.7384033203125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 784000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 2613.067626953125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 93500\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 457.763671875\n MByte\n \n \n Global Arrays \'Put\' Calls\n 62600\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 107.4\n Second\n \n \n Wall Clock Time\n 112.2\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,112.2,2647336,0,';cpn-d09-29-02;cpn-d09-29-02;cpn-d09-29-02;cpn-d09-29-02;cpn-d09-29-02;cpn-d09-29-02;cpn-d09-29-02;cpn-d09-29-02;',NULL,NULL),(3807948,'2020-04-17 12:22:18','2020-04-17 12:22:28','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMDXmV4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMDXmV4CA0suyNNNMbDUNTTTNTBUSKYrz4iePEv68owM6MwzoTPPFDk26cMzoifPnD48LgD4bsJvgQMAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 321.38824462890625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 91900\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 658.9889526367188\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18100\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 98.22845458984375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 39.7\n Second\n \n \n Wall Clock Time\n 89.4\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,89.4,2647337,0,';cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;',NULL,NULL),(3807944,'2020-04-17 12:22:26','2020-04-17 12:22:33','UBHPC_8core','UBHPC_8core','namd','namd.8',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMXXmV4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 8\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMXXmV4CA0suyNNNMTDXNbTUNTBSSKYbz8hA18CQzjwjevJM6MwzRfEtXXhG9OSZodhOF54RHXhcALvAWlmBAwAA\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 325.582031\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 4.767671373947537e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 72.390617\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',325.582,0,72.3906,2647340,0,';cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;',NULL,NULL),(3807963,'2020-04-17 13:12:22','2020-04-17 13:12:29','UBHPC_8core','UBHPC_8core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAHrjmV4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHrjmV4CA0suyNNNMTDXNTLXNTBUSKYfz0LXwIgOPC4A3lAhL+EAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 982.2845458984375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 413000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 579\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 579\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 1468.658447265625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 48600\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 241.27960205078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 32300\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 69.2\n Second\n \n \n Wall Clock Time\n 106.9\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,106.9,2647414,0,';cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-28-02;cpn-d07-28-02;cpn-d07-28-02;cpn-d07-28-02;cpn-d07-28-02;cpn-d07-28-02;cpn-d07-28-02;cpn-d07-28-02;',NULL,NULL),(3807994,'2020-04-18 17:03:41','2020-04-18 17:03:47','UBHPC_32core','UBHPC_32core','enzo','enzo.4',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIADBrm14CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIADBrm14CA0suyNMtNTLSNbZQSB5l0opprGtoPsqkKdNilElTpuUokxZMLgCG1s18gQUAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 5.3529575000000005\n Second\n \n \n All Grid Level 00 Calculation Time\n 16.879877989999997\n Second\n \n \n All Grid Level 01 Calculation Time\n 32.61854316799999\n Second\n \n \n All Grid Level 02 Calculation Time\n 18.796854677000002\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 12.815713836999999\n Second\n \n \n Communication Transpose Time\n 1.7511170910000005\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.217665783\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 20.254474439999996\n Second\n \n \n Hydro Equations Solving Time\n 16.232037949999995\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 9.67067766689\n Second\n \n \n Radiative Transfer Calculation Time\n 66.66104314722\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 161\n \n \n Total Time Spent in Cycles\n 173.60758049999998\n Second\n \n \n Wall Clock Time\n 174.108057\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,174.108,2655691,0,';cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;',NULL,NULL),(3807995,'2020-04-18 21:55:26','2020-04-18 21:55:34','UBHPC_32core','UBHPC_32core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJOvm14CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 128\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJKvm14CA0suyNMtNTLVNTJQSB5l0pBpPMqkKdNklElTpukokxZMLgCFxHxYgQUAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 626.488281\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.502737988615257e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 35.797634\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',626.488,0,35.7976,2658907,0,';cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;',NULL,NULL),(3807997,'2020-04-18 21:55:31','2020-04-18 21:55:37','UBHPC_32core','UBHPC_32core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJavm14CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJavm14CA0suyNMtNTLVNTZQSB5l0pBpOMqkBZMLAL1kOe/BAgAA\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 628.636719\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.1706147600473865e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 44.198406\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',628.637,0,44.1984,2658909,0,';cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-30;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;',NULL,NULL),(3807996,'2020-04-18 22:25:31','2020-04-18 22:25:38','UBHPC_32core','UBHPC_32core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJ+2m14CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJ+2m14CA0suyNMtNTLVNTZSSB5lUp/JBQDmfaD7YQEAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 574.906250\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 5.996462087368453e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 59.390034\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',574.906,0,59.39,2658908,0,';cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;cpn-u25-32;',NULL,NULL),(3807998,'2020-04-19 00:41:49','2020-04-19 00:41:55','UBHPC_32core','UBHPC_32core','hpcc','hpcc.8',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAJDWm14CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 16\n \n \n Input:High Performance LINPACK Problem Size\n 56568\n \n \n Input:MPI Ranks\n 256\n \n \n Input:MPIRandom Problem Size\n 2048.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 28284\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1775.463\n MHz\n \n \n RunEnv:Nodes\n H4sIAJDWm14CA+3GMQ0AIAxFwR0VGGgCpQmgpzthwT8q3vZvurzHnof5rKmCXSrarZIdTUXbVbSuoh0q2lCJlg+vA9leAQsAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48064.6\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4647.87456\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5366.77376\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4222.83264\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4744.37632\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 168783.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 341.167\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 6202670.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 19.4563\n Second\n \n \n MPI Random Access\n 89.3731\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 41909.248\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 184.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,184,2659169,0,';cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;',NULL,NULL),(3807999,'2020-04-19 01:09:51','2020-04-19 01:09:58','UBHPC_32core','UBHPC_32core','hpcc','hpcc.2',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIACPdm14CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 28284\n \n \n Input:MPI Ranks\n 64\n \n \n Input:MPIRandom Problem Size\n 512.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 14142\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1523.73\n MHz\n \n \n RunEnv:Nodes\n H4sIACPdm14CA0suyNMtNTLWNTJQSB5l0pBpOMqkBZMLAHSi+THBAgAA\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 49727.600000000006\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4848.57856\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5467.51488\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4393.5232\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4923.92448\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 66551.4\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 475.314\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1854080.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 8.13651\n Second\n \n \n MPI Random Access\n 33.1693\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 17137.5616\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 153.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,153,2659181,0,';cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;',NULL,NULL),(3808000,'2020-04-19 01:19:08','2020-04-19 01:19:15','UBHPC_32core','UBHPC_32core','hpcc','hpcc.1',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAE/fm14CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 4\n \n \n Input:High Performance LINPACK Problem Size\n 20000\n \n \n Input:MPI Ranks\n 32\n \n \n Input:MPIRandom Problem Size\n 256.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 10000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1897.229\n MHz\n \n \n RunEnv:Nodes\n H4sIAE/fm14CA0suyNMtNTLRNbJQSB5lUp/JBQA+IBQzYQEAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 49051.299999999996\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4662.04672\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5367.07072\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4268.21632\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4779.776\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 49757.399999999994\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 401.212\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 974324.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 5.4745\n Second\n \n \n MPI Random Access\n 10.9711\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 14171.5456\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 141.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,141,2659240,0,';cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;',NULL,NULL),(3808001,'2020-04-19 01:23:18','2020-04-19 01:23:25','UBHPC_32core','UBHPC_32core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAEngm14CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAEngm14CA0suyNMtNTLRNTZTSB5l0pBpPsqkBZMLAAgt64bBAgAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 304.22210693359375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 93400\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 639.9154663085938\n MByte\n \n \n Global Arrays \'Get\' Calls\n 15300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 93.93692016601562\n MByte\n \n \n Global Arrays \'Put\' Calls\n 11200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 16.3\n Second\n \n \n Wall Clock Time\n 38.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,38,2659592,0,';cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;',NULL,NULL),(3808002,'2020-04-19 01:58:01','2020-04-19 01:58:08','UBHPC_32core','UBHPC_32core','gamess','gamess.1',1,NULL,NULL,'\n Gamess\n \n Gamess\n \n \n App:ExeBinSignature\n H4sIAG3om14CA7WRTY7bMAyF9zlFTmCR1H+X7SxmM0A3XQcSSaVuncSwPcAcvzKShS/QhSCB0ke+p/fx5r+da2zRNiUH6gVbRedURJBD0QzKZzMvjz/K22qYl3UrrZmr3nUpkynz/FcX8+v7+88f5lpuuq6vbQAcvk4f+wDJmIP6lkgqVW0CpNV7jim6GMmdzec29l5cRG8jm/G+6WQwDdbw4zaPky7rpdzlMo11Kcuo64Vgvx6IyEzj/fPL9GdPLrheqfvqpWF9DEhPFdCCtxmZSNQJ+thtltT9pX7EXP6fivZYtqMSnylJbNl7J6JQna+cYmHIPqcicN65Z4cX+OIiCXEBWwAKO4jexWCTtTU1YKwHbt5+L1pkh+EJU4SerncWtLICUnTassshIlHlI3zbsfDKLjZ2PTgSFzyWAmyD+By7VIJU4gHjA8apEaONqorF+YSVoWqswXYHAewBuzJf1oPLWqtL6KL34Kh/UUzYWLGilNCk4gGVaefodPoHaVIrBsgCAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 02 AUG 2018 (R2)\n \n \n RunEnv:Nodes\n H4sIAG3om14CA0suyNMtNTLRNTZTSB5lUp/JBQDhOilCYQEAAA==\n \n \n app\n gamess\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Attempts to Launch\n 1\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Time Spent in MP2 Energy Calculation\n 16.95\n Second\n \n \n Time Spent in Restricted Hartree-Fock Calculation\n 23.06\n Second\n \n \n User Time\n 40.1759\n Second\n \n \n Wall Clock Time\n 41.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,41,2659630,0,';cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;',NULL,NULL),(3808004,'2020-04-19 02:03:53','2020-04-19 02:04:01','UBHPC_32core','UBHPC_32core','imb','imb.8',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAM3pm14CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAM3pm14CA+3GsQ0AIAgEwN4pXIBEUQHnoTc27u8U3/1Vl/fI0ynDarLAOgttsLgu6cZC6yy0wUK7WWS1sYiWD0x+nlYBCwAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 17844.24\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1814.78\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3389.04\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11084.48\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11051.76\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3159.3\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3863.95\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12115.0\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11465.94\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11274.87\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11665.52\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 18914.3\n MByte per Second\n \n \n Min AllGather Latency\n 4.36e-06\n Second\n \n \n Min AllGatherV Latency\n 4.53e-06\n Second\n \n \n Min AllReduce Latency\n 4.3899999999999995e-06\n Second\n \n \n Min AllToAll Latency\n 4.33e-06\n Second\n \n \n Min AllToAllV Latency\n 4.34e-06\n Second\n \n \n Min Barrier Latency\n 4.26e-06\n Second\n \n \n Min Broadcast Latency\n 1.81e-06\n Second\n \n \n Min Gather Latency\n 6.2e-07\n Second\n \n \n Min GatherV Latency\n 4.3799999999999996e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 4.09e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 1.3919999999999999e-05\n Second\n \n \n Min MPI-2 Window Creation Latency\n 5.269e-05\n Second\n \n \n Min Reduce Latency\n 3.9e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.22e-06\n Second\n \n \n Min Scatter Latency\n 1.53e-06\n Second\n \n \n Min ScatterV Latency\n 1.51e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 28.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,28,2660106,0,';cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;cpn-u25-20;',NULL,NULL),(3808003,'2020-04-19 02:19:43','2020-04-19 02:19:50','UBHPC_32core','UBHPC_32core','graph500','graph500.2',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIPtm14CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIPtm14CA0suyNMtNTLRNTZTSB5l0pBpPsqkBZMLAAgt64bBAgAA\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 4.64594e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.36314e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 4.64174e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 376.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,376,2659908,0,';cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-36;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;cpn-u24-37;',NULL,NULL),(3808007,'2020-04-19 02:48:57','2020-04-19 02:49:04','UBHPC_32core','UBHPC_32core','imb','imb.4',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAFz0m14CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAFz0m14CA0suyNMtNTLSNTZQSB5l0opprGtoMcqkJdPIYJRJU6bhKJMWTC4AGm2nQYEFAAA=\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 17657.96\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1864.24\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3421.94\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11142.76\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11101.97\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3532.86\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3980.22\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12094.17\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11475.66\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11314.76\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11529.43\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 19120.9\n MByte per Second\n \n \n Min AllGather Latency\n 2.8999999999999998e-06\n Second\n \n \n Min AllGatherV Latency\n 3e-06\n Second\n \n \n Min AllReduce Latency\n 2.97e-06\n Second\n \n \n Min AllToAll Latency\n 2.5499999999999997e-06\n Second\n \n \n Min AllToAllV Latency\n 2.5899999999999998e-06\n Second\n \n \n Min Barrier Latency\n 2.8099999999999998e-06\n Second\n \n \n Min Broadcast Latency\n 2.37e-06\n Second\n \n \n Min Gather Latency\n 8.199999999999999e-07\n Second\n \n \n Min GatherV Latency\n 3.25e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 1.78e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 9.07e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 3.217e-05\n Second\n \n \n Min Reduce Latency\n 1.89e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.98e-06\n Second\n \n \n Min Scatter Latency\n 1.78e-06\n Second\n \n \n Min ScatterV Latency\n 1.83e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 16.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,16,2660424,0,';cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;',NULL,NULL),(3808005,'2020-04-19 02:58:27','2020-04-19 02:58:34','UBHPC_32core','UBHPC_32core','hpcc','hpcc.4',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAJf2m14CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 40000\n \n \n Input:MPI Ranks\n 128\n \n \n Input:MPIRandom Problem Size\n 1024.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 20000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1364.666\n MHz\n \n \n RunEnv:Nodes\n H4sIAJb2m14CA0suyNMtNTLSNTZQSB5l0opprGtoMcqkJdPIYJRJU6bhKJMWTC4AGm2nQYEFAAA=\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 49519.3\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4669.5424\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5394.59584\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4253.47072\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4753.38752\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 104117.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 495.965\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 3465350.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 12.3131\n Second\n \n \n MPI Random Access\n 60.147800000000004\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 35348.48\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 170.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,170,2660398,0,';cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;',NULL,NULL),(3808006,'2020-04-19 02:59:44','2020-04-19 02:59:50','UBHPC_32core','UBHPC_32core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAOP2m14CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAOP2m14CA0suyNMtNTLRNTJXSB5l0pBpMcqkKdNylElLprHhKJMWTC4An2b3z4EFAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 238.4185791015625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 48800\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 497.8179931640625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 13300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 60.749053955078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 9003\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 26.1\n Second\n \n \n Wall Clock Time\n 64.8\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,64.8,2660418,0,';cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;',NULL,NULL),(3808008,'2020-04-19 03:23:44','2020-04-19 03:23:50','UBHPC_32core','UBHPC_32core','graph500','graph500.1',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIP8m14CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIP8m14CA0suyNMtNTLSNTZQSB5lUp/JBQAP4DmvYQEAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 6.18007e+09\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.65155e+08\n Traversed Edges Per Second\n \n \n Median TEPS\n 6.72609e+09\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 340.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,340,2660464,0,';cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;',NULL,NULL),(3808010,'2020-04-19 03:27:47','2020-04-19 03:27:53','UBHPC_32core','UBHPC_32core','imb','imb.2',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAHb9m14CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAHb9m14CA0suyNMtNTLWNTJUSB5l0oppomtkPsqkBZMLAKpqzsbBAgAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 19647.84\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1810.48\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3508.96\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11394.64\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11176.03\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3132.44\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 4054.43\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12132.54\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11529.06\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11344.67\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11532.46\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 22739.21\n MByte per Second\n \n \n Min AllGather Latency\n 1.59e-06\n Second\n \n \n Min AllGatherV Latency\n 1.6799999999999998e-06\n Second\n \n \n Min AllReduce Latency\n 1.6499999999999999e-06\n Second\n \n \n Min AllToAll Latency\n 1.58e-06\n Second\n \n \n Min AllToAllV Latency\n 1.86e-06\n Second\n \n \n Min Barrier Latency\n 1.58e-06\n Second\n \n \n Min Broadcast Latency\n 1.29e-06\n Second\n \n \n Min Gather Latency\n 1.35e-06\n Second\n \n \n Min GatherV Latency\n 2.1e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 6.6e-07\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 7.33e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 2.015e-05\n Second\n \n \n Min Reduce Latency\n 1.38e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.62e-06\n Second\n \n \n Min Scatter Latency\n 1.29e-06\n Second\n \n \n Min ScatterV Latency\n 1.46e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 18.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,18,2660511,0,';cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;',NULL,NULL),(3808012,'2020-04-19 03:32:01','2020-04-19 03:32:08','UBHPC_32core','UBHPC_32core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAHX+m14CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHX+m14CA0suyNMtNTLRNbJUSB5lUp/JBQC2Wt3GYQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 420.57037353515625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 186000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 24800\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 151.63421630859375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 17600\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 11.2\n Second\n \n \n Wall Clock Time\n 23.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,23,2660515,0,';cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;',NULL,NULL),(3808009,'2020-04-19 03:37:31','2020-04-19 03:37:38','UBHPC_32core','UBHPC_32core','gamess','gamess.4',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2660502,0,';cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;',NULL,NULL),(3808011,'2020-04-19 03:59:19','2020-04-19 03:59:25','UBHPC_32core','UBHPC_32core','enzo','enzo.2',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIANoEnF4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIANoEnF4CA0suyNMtNTLWNTJUSB5l0oppomtkPsqkBZMLAKpqzsbBAgAA\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 8.653414300000001\n Second\n \n \n All Grid Level 00 Calculation Time\n 26.066691600000023\n Second\n \n \n All Grid Level 01 Calculation Time\n 49.989840863\n Second\n \n \n All Grid Level 02 Calculation Time\n 24.619721326999997\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 20.258572000000004\n Second\n \n \n Communication Transpose Time\n 1.1440555740000007\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 1.8587028889999995\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 24.197870090000002\n Second\n \n \n Hydro Equations Solving Time\n 32.24547502\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 17.06630047833\n Second\n \n \n Radiative Transfer Calculation Time\n 42.409345805499996\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 189.74265789999998\n Second\n \n \n Wall Clock Time\n 190.259709\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,190.26,2660513,0,';cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;',NULL,NULL),(3808013,'2020-04-19 04:02:59','2020-04-19 04:03:06','UBHPC_32core','UBHPC_32core','graph500','graph500.4',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIALcFnF4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIALcFnF4CA0suyNMtNTLWNTJUSB5l0oppomtkPsqkKdNylElLprHhKJMWTC4AEkfbLYEFAAA=\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 8.64684e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 3.26651e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 8.6716e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 365.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,365,2660516,0,';cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;cpn-u24-31;',NULL,NULL),(3808014,'2020-04-19 04:15:32','2020-04-19 04:15:38','UBHPC_32core','UBHPC_32core','gamess','gamess.2',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2660521,0,';cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;',NULL,NULL),(3808015,'2020-04-19 04:21:03','2020-04-19 04:21:10','UBHPC_32core','UBHPC_32core','enzo','enzo.1',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAPMJnF4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAPMJnF4CA0suyNMtNTLWNTJQSB5lUp/JBQDCg+GUYQEAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 14.5873083\n Second\n \n \n All Grid Level 00 Calculation Time\n 43.97537700000001\n Second\n \n \n All Grid Level 01 Calculation Time\n 91.31399530500002\n Second\n \n \n All Grid Level 02 Calculation Time\n 36.088500622000005\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 32.649807560000006\n Second\n \n \n Communication Transpose Time\n 1.2550235990000005\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.4971639500000005\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 30.905644\n Second\n \n \n Hydro Equations Solving Time\n 61.569462699999995\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 33.18851706588\n Second\n \n \n Radiative Transfer Calculation Time\n 92.6633795675\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 161\n \n \n Total Time Spent in Cycles\n 326.53825309999996\n Second\n \n \n Wall Clock Time\n 327.571107\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,327.571,2660527,0,';cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;',NULL,NULL),(3808027,'2020-04-19 11:12:17','2020-04-19 11:12:24','UBHPC_8core','UBHPC_8core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAFVqnF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAFVqnF4CA0suyNNNMbDUNTDRNTBSSKYfz1TXwJCePDM688zpw+MCAGBq8tLBAQAA\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 310.773438\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.7008923748406475e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 107.746284\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',310.773,0,107.746,2660819,0,';cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;',NULL,NULL),(3808030,'2020-04-19 11:22:17','2020-04-19 11:22:25','UBHPC_8core','UBHPC_8core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAK5snF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 16\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAK5snF4CA0suyNNNMbDUNTDRNTBSSKYfz1TXwJAOPC4Ab5WDT+EAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 311.523438\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.3503148934331487e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 186.159698\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',311.523,0,186.16,2660824,0,';cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;',NULL,NULL),(3808036,'2020-04-19 11:52:19','2020-04-19 11:52:27','UBHPC_8core','UBHPC_8core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIALhznF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIALhznF4CA0suyNNNMbDUNTDRNTBSSKYfz1TXwJCePDM688zpw+MCAGBq8tLBAQAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 573.1582641601562\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 217000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 949.859619140625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 27900\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 151.63421630859375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 18900\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 50.8\n Second\n \n \n Wall Clock Time\n 91.9\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,91.9,2660840,0,';cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;',NULL,NULL),(3808041,'2020-04-19 12:22:19','2020-04-19 12:22:26','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAL56nF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAL56nF4CA0suyNNNMbDUNTDRNTBSSKYfz1TXwJCePDM688zpzLNECV2a8wwNkG2nA8+Qzjxj+vC4ALu4kAiBAwAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 328.06396484375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 98400\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 651.3595581054688\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18000\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 98.22845458984375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 41.7\n Second\n \n \n Wall Clock Time\n 91.4\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,91.4,2660889,0,';cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-09-02;cpn-d09-09-02;cpn-d09-09-02;cpn-d09-09-02;cpn-d09-09-02;cpn-d09-09-02;cpn-d09-09-02;cpn-d09-09-02;cpn-d09-10-01;cpn-d09-10-01;cpn-d09-10-01;cpn-d09-10-01;cpn-d09-10-01;cpn-d09-10-01;cpn-d09-10-01;cpn-d09-10-01;cpn-d09-11-01;cpn-d09-11-01;cpn-d09-11-01;cpn-d09-11-01;cpn-d09-11-01;cpn-d09-11-01;cpn-d09-11-01;cpn-d09-11-01;cpn-d09-13-01;cpn-d09-13-01;cpn-d09-13-01;cpn-d09-13-01;cpn-d09-13-01;cpn-d09-13-01;cpn-d09-13-01;cpn-d09-13-01;',NULL,NULL),(3808039,'2020-04-19 12:22:19','2020-04-19 12:22:26','UBHPC_8core','UBHPC_8core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAL56nF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAL56nF4CA0suyNNNMbDUNbbUNTBSSKY5jwsA4unk4nEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 1878.7384033203125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 787000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 2603.5308837890625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 93500\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 457.763671875\n MByte\n \n \n Global Arrays \'Put\' Calls\n 62600\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 106.8\n Second\n \n \n Wall Clock Time\n 112.7\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,112.7,2660892,0,';cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;',NULL,NULL),(3808042,'2020-04-19 12:22:19','2020-04-19 12:22:28','UBHPC_8core','UBHPC_8core','namd','namd.8',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMB6nF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 8\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMB6nF4CA0suyNNNMTDXNbLUNTBUSKYrz4iOPGMDOvMMkX1LB54xnXkmdOaZ0p9nRAceFwAyPFp9gQMAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 326.042969\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 4.9678086002702494e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 73.461182\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',326.043,0,73.4612,2660890,0,';cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-33-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-35-01;cpn-d07-35-01;cpn-d07-35-01;cpn-d07-35-01;cpn-d07-35-01;cpn-d07-35-01;cpn-d07-35-01;cpn-d07-35-01;cpn-d07-35-02;cpn-d07-35-02;cpn-d07-35-02;cpn-d07-35-02;cpn-d07-35-02;cpn-d07-35-02;cpn-d07-35-02;cpn-d07-35-02;',NULL,NULL),(3808038,'2020-04-19 12:22:19','2020-04-19 12:22:28','UBHPC_8core','UBHPC_8core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMB6nF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 8\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMB6nF4CA0suyNNNMbDUNTTWNTBSSKY5jwsAcwdSpHEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 324.015625\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 7.134805005779192e-10\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 327.462036\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',324.016,0,327.462,2660891,0,';cpn-d09-13-02;cpn-d09-13-02;cpn-d09-13-02;cpn-d09-13-02;cpn-d09-13-02;cpn-d09-13-02;cpn-d09-13-02;cpn-d09-13-02;',NULL,NULL),(3808040,'2020-04-19 12:22:27','2020-04-19 12:22:34','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMd6nF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMd6nF4CA0suyNNNMTDXNTDVNTBUSKYrz4iePDMU2+nCM6InzxzFdtrzLOjMs0TxLc15hgbIttOOxwUAJIrn6YEDAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 323.29559326171875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 90700\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 651.3595581054688\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18000\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 97.2747802734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 40.5\n Second\n \n \n Wall Clock Time\n 87.1\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,87.1,2660893,0,';cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;',NULL,NULL),(3808054,'2020-04-19 13:12:19','2020-04-19 13:12:25','UBHPC_8core','UBHPC_8core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAHaGnF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHaGnF4CA0suyNNNMTDXNTbTNTBSSKYfz4I+PC4A3CZ6JuEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 391000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 1459.1217041015625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 48500\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 243.18695068359375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 32200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 70.3\n Second\n \n \n Wall Clock Time\n 110.2\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,110.2,2663369,0,';cpn-d07-36-02;cpn-d07-36-02;cpn-d07-36-02;cpn-d07-36-02;cpn-d07-36-02;cpn-d07-36-02;cpn-d07-36-02;cpn-d07-36-02;cpn-d07-38-02;cpn-d07-38-02;cpn-d07-38-02;cpn-d07-38-02;cpn-d07-38-02;cpn-d07-38-02;cpn-d07-38-02;cpn-d07-38-02;',NULL,NULL),(3808088,'2020-04-20 17:03:39','2020-04-20 17:03:46','UBHPC_32core','UBHPC_32core','enzo','enzo.4',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAC8Onl4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAC8Onl4CA0suyNMtNTLRNTJXSB5l0pBpOcqkJdPYYJRJU6bxKJMWTC4AJ3pErYEFAAA=\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 5.9366327\n Second\n \n \n All Grid Level 00 Calculation Time\n 17.777367440000006\n Second\n \n \n All Grid Level 01 Calculation Time\n 33.46800846199999\n Second\n \n \n All Grid Level 02 Calculation Time\n 19.804076527000003\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 12.778220813\n Second\n \n \n Communication Transpose Time\n 1.5494064599999993\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.0106833199999996\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 20.345708080000005\n Second\n \n \n Hydro Equations Solving Time\n 16.4445344\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 10.14519842705\n Second\n \n \n Radiative Transfer Calculation Time\n 56.8336727886\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 161\n \n \n Total Time Spent in Cycles\n 167.25456250000002\n Second\n \n \n Wall Clock Time\n 168.050839\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,168.051,2742014,0,';cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-27;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-29;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;cpn-u24-33;',NULL,NULL),(3808091,'2020-04-20 21:55:33','2020-04-20 21:55:39','UBHPC_32core','UBHPC_32core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJhSnl4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 128\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJhSnl4CA0suyNMtNTLSNTJUSB5l0opprGtkMMqkKdNslEk7pomukekokxZMLgCKxB5CgQUAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 626.417969\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.6147236965546642e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 36.116055\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',626.418,0,36.1161,2758210,0,';cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;cpn-u24-25;',NULL,NULL),(3808090,'2020-04-20 21:55:32','2020-04-20 21:55:39','UBHPC_32core','UBHPC_32core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJhSnl4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJhSnl4CA0suyNMtNTLRNTZSSB5l0pBpMsqkBZMLAAdmhfzBAgAA\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 692.636719\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.1559210320987713e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 43.772106\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',692.637,0,43.7721,2758212,0,';cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;cpn-u24-34;',NULL,NULL),(3808089,'2020-04-20 22:25:36','2020-04-20 22:25:42','UBHPC_32core','UBHPC_32core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAKNZnl4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAKNZnl4CA0suyNMtNTLRNTZVSB5lUp/JBQA4swOHYQEAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 575.082031\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 6.147755147207997e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 58.583878\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',575.082,0,58.5839,2758213,0,';cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;',NULL,NULL),(3808093,'2020-04-21 01:09:54','2020-04-21 01:10:01','UBHPC_32core','UBHPC_32core','hpcc','hpcc.2',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIACaAnl4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 28284\n \n \n Input:MPI Ranks\n 64\n \n \n Input:MPIRandom Problem Size\n 512.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 14142\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1276.867\n MHz\n \n \n RunEnv:Nodes\n H4sIACaAnl4CA0suyNMtNTLWNbRQSB5l0pBpOcqkBZMLAO243PLBAgAA\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 50187.399999999994\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4662.6304\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5382.3488\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4240.35328\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4760.2176\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 62499.8\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 537.044\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1755480.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 8.59352\n Second\n \n \n MPI Random Access\n 32.0794\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 9652.1728\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 154.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,154,2764628,0,';cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;',NULL,NULL),(3808092,'2020-04-21 01:11:54','2020-04-21 01:12:00','UBHPC_32core','UBHPC_32core','hpcc','hpcc.8',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAJ2Anl4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 16\n \n \n Input:High Performance LINPACK Problem Size\n 56568\n \n \n Input:MPI Ranks\n 256\n \n \n Input:MPIRandom Problem Size\n 2048.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 28284\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1354.156\n MHz\n \n \n RunEnv:Nodes\n H4sIAJ2Anl4CA+3GsQ0AIAwDsJ0reKASDRIt93RHLPzPFdniyXWPPcDgvVRiQ2V2DpXXaZ4qtVtlFkulNlRqU2W0fWjtX0UBCwAA\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48335.6\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4794.97216\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5475.97312\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4371.0976\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4872.11008\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 107444.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 466.624\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 6470470.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 18.651\n Second\n \n \n MPI Random Access\n 99.632\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 44999.8848\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 200.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,200,2763449,0,';cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;',NULL,NULL),(3808094,'2020-04-21 01:19:08','2020-04-21 01:19:14','UBHPC_32core','UBHPC_32core','hpcc','hpcc.1',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAE+Cnl4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 4\n \n \n Input:High Performance LINPACK Problem Size\n 20000\n \n \n Input:MPI Ranks\n 32\n \n \n Input:MPIRandom Problem Size\n 256.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 10000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1098.193\n MHz\n \n \n RunEnv:Nodes\n H4sIAE+Cnl4CA0suyNMtNTLWNTZQSB5lUp/JBQCqQXd3YQEAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48910.5\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4687.88224\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5394.0736\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4266.55744\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4739.98336\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 51500.4\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 714.426\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1004259.9999999999\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 5.3113\n Second\n \n \n MPI Random Access\n 11.026599999999998\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 14245.1712\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 138.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,138,2764947,0,';cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;',NULL,NULL),(3808095,'2020-04-21 01:23:15','2020-04-21 01:23:22','UBHPC_32core','UBHPC_32core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAEaDnl4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAEaDnl4CA0suyNMtNTLVNTJRSB5l0pBpOsqkBZMLANmMi1LBAgAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 303.2684326171875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 97100\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 646.5911865234375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 15300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 94.12765502929688\n MByte\n \n \n Global Arrays \'Put\' Calls\n 11200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 17.3\n Second\n \n \n Wall Clock Time\n 40.3\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,40.3,2765795,0,';cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;cpn-u25-25;',NULL,NULL),(3808096,'2020-04-21 01:28:00','2020-04-21 01:28:07','UBHPC_32core','UBHPC_32core','gamess','gamess.1',1,NULL,NULL,'\n Gamess\n \n Gamess\n \n \n App:ExeBinSignature\n H4sIAGSEnl4CA7WRTY7bMAyF9zlFTmCR1H+X7SxmM0A3XQcSSaVuncSwPcAcvzKShS/QhSCB0ke+p/fx5r+da2zRNiUH6gVbRedURJBD0QzKZzMvjz/K22qYl3UrrZmr3nUpkynz/FcX8+v7+88f5lpuuq6vbQAcvk4f+wDJmIP6lkgqVW0CpNV7jim6GMmdzec29l5cRG8jm/G+6WQwDdbw4zaPky7rpdzlMo11Kcuo64Vgvx6IyEzj/fPL9GdPLrheqfvqpWF9DEhPFdCCtxmZSNQJ+thtltT9pX7EXP6fivZYtqMSnylJbNl7J6JQna+cYmHIPqcicN65Z4cX+OIiCXEBWwAKO4jexWCTtTU1YKwHbt5+L1pkh+EJU4SerncWtLICUnTassshIlHlI3zbsfDKLjZ2PTgSFzyWAmyD+By7VIJU4gHjA8apEaONqorF+YSVoWqswXYHAewBuzJf1oPLWqtL6KL34Kh/UUzYWLGilNCk4gGVaefodPoHaVIrBsgCAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 02 AUG 2018 (R2)\n \n \n RunEnv:Nodes\n H4sIAGSEnl4CA0suyNMtNTLVNTJRSB5lUp/JBQB9qhJJYQEAAA==\n \n \n app\n gamess\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Attempts to Launch\n 1\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Time Spent in MP2 Energy Calculation\n 17.23\n Second\n \n \n Time Spent in Restricted Hartree-Fock Calculation\n 23.27\n Second\n \n \n User Time\n 41.2776\n Second\n \n \n Wall Clock Time\n 42.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,42,2765906,0,';cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;',NULL,NULL),(3808098,'2020-04-21 02:03:54','2020-04-21 02:04:02','UBHPC_32core','UBHPC_32core','imb','imb.8',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAM6Mnl4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAM6Mnl4CA+3GsQ0AIAwDsJ0reKASDRIt93RHLPzPFdniyXWPPcDgvVRiQ2V2DpXXaZ4qtVtlFkulNlRqU2W0fWjtX0UBCwAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 17779.76\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1727.99\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3473.22\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 10751.86\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11172.48\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3352.58\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3916.25\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12097.5\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11523.01\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11323.5\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11625.05\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 19239.05\n MByte per Second\n \n \n Min AllGather Latency\n 4.3899999999999995e-06\n Second\n \n \n Min AllGatherV Latency\n 4.58e-06\n Second\n \n \n Min AllReduce Latency\n 4.46e-06\n Second\n \n \n Min AllToAll Latency\n 4.34e-06\n Second\n \n \n Min AllToAllV Latency\n 4.36e-06\n Second\n \n \n Min Barrier Latency\n 4.42e-06\n Second\n \n \n Min Broadcast Latency\n 1.84e-06\n Second\n \n \n Min Gather Latency\n 6.4e-07\n Second\n \n \n Min GatherV Latency\n 4.43e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 4.09e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 1.406e-05\n Second\n \n \n Min MPI-2 Window Creation Latency\n 5.3479999999999996e-05\n Second\n \n \n Min Reduce Latency\n 3.92e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.21e-06\n Second\n \n \n Min Scatter Latency\n 1.51e-06\n Second\n \n \n Min ScatterV Latency\n 1.5599999999999999e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 27.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,27,2766855,0,';cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;',NULL,NULL),(3808097,'2020-04-21 02:19:43','2020-04-21 02:19:50','UBHPC_32core','UBHPC_32core','graph500','graph500.2',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIOQnl4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIOQnl4CA0suyNMtNTLSNTJXSB5l0o5pbDDKpAWTCwBH9TndwQIAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 4.67025e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.06249e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 4.68e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 368.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,368,2766491,0,';cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;',NULL,NULL),(3808101,'2020-04-21 02:48:58','2020-04-21 02:49:05','UBHPC_32core','UBHPC_32core','imb','imb.4',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAF2Xnl4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAF2Xnl4CA0suyNMtNTLSNTJQSB5l0pBpOMqkKdN8lElLprHBKJMWTC4AtNAX2YEFAAA=\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 17953.04\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1935.16\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3491.76\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11048.98\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11104.78\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3568.36\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 4127.01\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12111.66\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11567.72\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11256.84\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11634.66\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 19467.92\n MByte per Second\n \n \n Min AllGather Latency\n 2.62e-06\n Second\n \n \n Min AllGatherV Latency\n 2.71e-06\n Second\n \n \n Min AllReduce Latency\n 2.6499999999999996e-06\n Second\n \n \n Min AllToAll Latency\n 2.31e-06\n Second\n \n \n Min AllToAllV Latency\n 2.36e-06\n Second\n \n \n Min Barrier Latency\n 2.4999999999999998e-06\n Second\n \n \n Min Broadcast Latency\n 2e-06\n Second\n \n \n Min Gather Latency\n 6.800000000000001e-07\n Second\n \n \n Min GatherV Latency\n 2.8099999999999998e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 1.78e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 8.23e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 3.005e-05\n Second\n \n \n Min Reduce Latency\n 1.8e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.83e-06\n Second\n \n \n Min Scatter Latency\n 1.5399999999999999e-06\n Second\n \n \n Min ScatterV Latency\n 1.59e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 15.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,15,2768392,0,';cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;',NULL,NULL),(3808099,'2020-04-21 02:58:26','2020-04-21 02:58:32','UBHPC_32core','UBHPC_32core','hpcc','hpcc.4',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAJWZnl4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 40000\n \n \n Input:MPI Ranks\n 128\n \n \n Input:MPIRandom Problem Size\n 1024.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 20000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1356.719\n MHz\n \n \n RunEnv:Nodes\n H4sIAJWZnl4CA0suyNMtNTLSNTJQSB5l0pBpOMqkKdN8lElLprHBKJMWTC4AtNAX2YEFAAA=\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 47368.899999999994\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4859.31008\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5539.5328\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4432.54784\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4968.17152\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 78314.5\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 506.549\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 3518690.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 12.1264\n Second\n \n \n MPI Random Access\n 58.9788\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 30470.7584\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 179.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,179,2767759,0,';cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;',NULL,NULL),(3808100,'2020-04-21 02:59:41','2020-04-21 02:59:47','UBHPC_32core','UBHPC_32core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAOCZnl4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAOCZnl4CA0suyNMtNTLWNbRUSB5l0o5pZDbKpCnTfJRJU6bFKJMWTC4Aa35vNoEFAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 242.2332763671875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 54300\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 484.466552734375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 13200\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 60.749053955078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 9003\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 24.6\n Second\n \n \n Wall Clock Time\n 58.3\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,58.3,2767801,0,';cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-26;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-27;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;cpn-u23-28;',NULL,NULL),(3808102,'2020-04-21 03:23:43','2020-04-21 03:23:49','UBHPC_32core','UBHPC_32core','graph500','graph500.1',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIKfnl4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIKfnl4CA0suyNMtNTLSNTJQSB5lUp/JBQBnIq9MYQEAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 6.704e+09\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 2.22462e+08\n Traversed Edges Per Second\n \n \n Median TEPS\n 7.40425e+09\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 336.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,336,2768536,0,';cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;cpn-u22-20;',NULL,NULL),(3808104,'2020-04-21 03:27:46','2020-04-21 03:27:52','UBHPC_32core','UBHPC_32core','imb','imb.2',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAHWgnl4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAHWgnl4CA0suyNMtNTLSNTJUSB5l0pBpPsqkBZMLAOn7pHrBAgAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18758.0\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1901.58\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3380.32\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11253.96\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11116.71\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3518.12\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 4062.2\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12104.99\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11576.85\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11266.21\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11714.07\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 22629.52\n MByte per Second\n \n \n Min AllGather Latency\n 1.35e-06\n Second\n \n \n Min AllGatherV Latency\n 1.4299999999999999e-06\n Second\n \n \n Min AllReduce Latency\n 1.4e-06\n Second\n \n \n Min AllToAll Latency\n 1.34e-06\n Second\n \n \n Min AllToAllV Latency\n 1.6399999999999998e-06\n Second\n \n \n Min Barrier Latency\n 1.31e-06\n Second\n \n \n Min Broadcast Latency\n 1.0099999999999999e-06\n Second\n \n \n Min Gather Latency\n 1.07e-06\n Second\n \n \n Min GatherV Latency\n 1.86e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 6.6e-07\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 5.95e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 1.891e-05\n Second\n \n \n Min Reduce Latency\n 1.09e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.3e-06\n Second\n \n \n Min Scatter Latency\n 9.8e-07\n Second\n \n \n Min ScatterV Latency\n 1.1899999999999998e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 10.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,10,2769640,0,';cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;',NULL,NULL),(3808106,'2020-04-21 03:32:00','2020-04-21 03:32:06','UBHPC_32core','UBHPC_32core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAHOhnl4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHOhnl4CA0suyNMtNTLSNTZQSB5lUp/JBQAP4DmvYQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 421.5240478515625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 180000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 24900\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 152.587890625\n MByte\n \n \n Global Arrays \'Put\' Calls\n 17800\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 11.7\n Second\n \n \n Wall Clock Time\n 22.1\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,22.1,2769823,0,';cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;',NULL,NULL),(3808103,'2020-04-21 03:37:30','2020-04-21 03:37:36','UBHPC_32core','UBHPC_32core','gamess','gamess.4',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2768990,0,';cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;',NULL,NULL),(3808105,'2020-04-21 03:59:19','2020-04-21 03:59:25','UBHPC_32core','UBHPC_32core','enzo','enzo.2',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIANqnnl4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIANqnnl4CA0suyNMtNTLSNTJUSB5l0pBpPsqkBZMLAOn7pHrBAgAA\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 8.3001898\n Second\n \n \n All Grid Level 00 Calculation Time\n 25.883889200000006\n Second\n \n \n All Grid Level 01 Calculation Time\n 49.326776325999994\n Second\n \n \n All Grid Level 02 Calculation Time\n 24.398683081\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 20.114490520000004\n Second\n \n \n Communication Transpose Time\n 1.4611870789999999\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.1988767479999995\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 24.10001074\n Second\n \n \n Hydro Equations Solving Time\n 32.33787264\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 16.44402488712\n Second\n \n \n Radiative Transfer Calculation Time\n 42.4152224293\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 188.18315540000006\n Second\n \n \n Wall Clock Time\n 188.910262\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,188.91,2769735,0,';cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;',NULL,NULL),(3808107,'2020-04-21 04:02:56','2020-04-21 04:03:03','UBHPC_32core','UBHPC_32core','graph500','graph500.4',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIALSonl4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIALSonl4CA0suyNMtNTLSNTJUSB5l0pBpPsqkJdPYYJRJO6axrqHFKJMWTC4AiqojyIEFAAA=\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 8.67958e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 3.30482e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 8.73798e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 361.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,361,2769877,0,';cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u22-30;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;',NULL,NULL),(3808108,'2020-04-21 04:15:32','2020-04-21 04:15:39','UBHPC_32core','UBHPC_32core','gamess','gamess.2',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2770557,0,';cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;',NULL,NULL),(3808109,'2020-04-21 04:20:57','2020-04-21 04:21:04','UBHPC_32core','UBHPC_32core','enzo','enzo.1',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAO2snl4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAO2snl4CA0suyNMtNTLSNTJUSB5lUp/JBQDvWGa5YQEAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 13.540313\n Second\n \n \n All Grid Level 00 Calculation Time\n 43.17064800000002\n Second\n \n \n All Grid Level 01 Calculation Time\n 88.70942976799999\n Second\n \n \n All Grid Level 02 Calculation Time\n 35.453831728000004\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 31.238358299999998\n Second\n \n \n Communication Transpose Time\n 1.2368041729999995\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.457874620000002\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 29.891668020000004\n Second\n \n \n Hydro Equations Solving Time\n 60.60627549999998\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 32.28998067276\n Second\n \n \n Radiative Transfer Calculation Time\n 54.6250252742\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 281.7206105000001\n Second\n \n \n Wall Clock Time\n 282.843912\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,282.844,2770780,0,';cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;',NULL,NULL),(3808121,'2020-04-21 11:12:15','2020-04-21 11:12:22','UBHPC_8core','UBHPC_8core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAFINn14CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAFINn14CA0suyNNNMbDUNTTVNTBSSKYfz0zXwJDOPCN68sxRbKcZjwsAxjA+hMEBAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 310.375000\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.632063801226542e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 109.474937\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',310.375,0,109.475,2798621,0,';cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;',NULL,NULL),(3808123,'2020-04-21 11:22:23','2020-04-21 11:22:30','UBHPC_8core','UBHPC_8core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIALMPn14CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 16\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIALMPn14CA0suyNNNMbDUNbLQNTBSSKYfz1LXwJAOPC4AczwHIeEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 311.964844\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.3695853443411474e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 187.304886\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',311.965,0,187.305,2799209,0,';cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-29-01;cpn-d09-29-01;cpn-d09-29-01;cpn-d09-29-01;cpn-d09-29-01;cpn-d09-29-01;cpn-d09-29-01;cpn-d09-29-01;',NULL,NULL),(3808131,'2020-04-21 11:52:21','2020-04-21 11:52:27','UBHPC_8core','UBHPC_8core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIALgWn14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIALgWn14CA0suyNNNMbDUNTbQNTBSSKYfz1DXwJCePGP684zowOMCADbbNfPBAQAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 578.8803100585938\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 221000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 912.6663208007812\n MByte\n \n \n Global Arrays \'Get\' Calls\n 27600\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 152.587890625\n MByte\n \n \n Global Arrays \'Put\' Calls\n 19000\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 48.1\n Second\n \n \n Wall Clock Time\n 90.3\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,90.3,2801117,0,';cpn-d09-30-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;',NULL,NULL),(3808132,'2020-04-21 12:22:20','2020-04-21 12:22:28','UBHPC_8core','UBHPC_8core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMAdn14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMAdn14CA0suyNNNMbDUNTHQNTBUSKY5jwsAIHGj/nEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 1859.6649169921875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 769000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 2593.994140625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 93400\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 456.80999755859375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 62500\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 107.0\n Second\n \n \n Wall Clock Time\n 113.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,113,2802819,0,';cpn-d09-40-01;cpn-d09-40-01;cpn-d09-40-01;cpn-d09-40-01;cpn-d09-40-01;cpn-d09-40-01;cpn-d09-40-01;cpn-d09-40-01;',NULL,NULL),(3808135,'2020-04-21 12:22:20','2020-04-21 12:22:30','UBHPC_8core','UBHPC_8core','namd','namd.8',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n namd\n \n \n \n ',0,0,0,2802817,0,';cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-28-02;cpn-d09-29-01;cpn-d09-29-01;cpn-d09-29-01;cpn-d09-29-01;cpn-d09-29-01;cpn-d09-29-01;cpn-d09-29-01;cpn-d09-29-01;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-30-02;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-31-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-01;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-33-02;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-01;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;cpn-d09-35-02;',NULL,NULL),(3808134,'2020-04-21 12:22:19','2020-04-21 12:22:30','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMIdn14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMIdn14CA0suyNNNMbDUNTbTNTBUSKYrz4iePHMU2+nCM6InzwLFdrrwjOjJs0SxnS48IzrwuADwdxPkgQMAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 334.73968505859375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 117000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 657.0816040039062\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18000\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 98.22845458984375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 40.1\n Second\n \n \n Wall Clock Time\n 89.3\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,89.3,2802820,0,';cpn-d09-36-01;cpn-d09-36-01;cpn-d09-36-01;cpn-d09-36-01;cpn-d09-36-01;cpn-d09-36-01;cpn-d09-36-01;cpn-d09-36-01;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-36-02;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-01;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-37-02;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-01;cpn-d09-38-02;cpn-d09-38-02;cpn-d09-38-02;cpn-d09-38-02;cpn-d09-38-02;cpn-d09-38-02;cpn-d09-38-02;cpn-d09-38-02;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;',NULL,NULL),(3808136,'2020-04-21 12:22:20','2020-04-21 12:22:31','UBHPC_8core','UBHPC_8core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMQdn14CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 8\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMQdn14CA0suyNNNMbDUNTTXNTBUSKY5jwsAwFQUnHEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 324.230469\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 7.118045669381016e-10\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 327.243866\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',324.23,0,327.244,2802818,0,';cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;',NULL,NULL),(3808133,'2020-04-21 12:22:27','2020-04-21 12:22:35','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMgdn14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMcdn14CA0suyNNNMbDUNTDRNTBUSKYrz4iePFMU2+nCM6InzwzFdrrwjOjJM0exnS48IzrwuACcZFDRgQMAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 345.2301025390625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 110000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 652.313232421875\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18000\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 97.2747802734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 41.9\n Second\n \n \n Wall Clock Time\n 91.5\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,91.5,2802837,0,';cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-01;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-07-02;',NULL,NULL),(3808148,'2020-04-21 13:12:29','2020-04-21 13:12:35','UBHPC_8core','UBHPC_8core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAIApn14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAIApn14CA0suyNNNMbDUNbbUNTBUSKYrz4gOPC4A19DISOEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 951.7669677734375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 386000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 1497.2686767578125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 48700\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 241.27960205078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 32200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 70.8\n Second\n \n \n Wall Clock Time\n 111.2\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,111.2,2806283,0,';cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-01;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;cpn-d09-39-02;',NULL,NULL),(3808183,'2020-04-22 22:25:31','2020-04-22 22:25:38','UBHPC_32core','UBHPC_32core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJ78oF4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJ78oF4CA0suyNMtNTLVNTJRSB5l0o5pbDrKpAWTCwCxTh2xwQIAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 628.636719\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.1738439397958922e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 43.228474\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',628.637,0,43.2285,2832093,0,';cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;cpn-u25-35;',NULL,NULL),(3808185,'2020-04-22 22:25:31','2020-04-22 22:25:38','UBHPC_32core','UBHPC_32core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJ/8oF4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJ/8oF4CA0suyNMtNTLVNTJRSB5lUp/JBQB9qhJJYQEAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 575.289062\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 6.234297363515646e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 57.833065\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',575.289,0,57.8331,2832092,0,';cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;',NULL,NULL),(3808182,'2020-04-22 23:04:24','2020-04-22 23:04:31','UBHPC_32core','UBHPC_32core','enzo','enzo.4',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIALwFoV4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIALwFoV4CA0suyNMtNTLRNbZQSB5l0oppqmtoNsqkKdN8lElTpsUokxZMLgCjb02GgQUAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 5.196584999999999\n Second\n \n \n All Grid Level 00 Calculation Time\n 15.963074770000006\n Second\n \n \n All Grid Level 01 Calculation Time\n 31.356442439000002\n Second\n \n \n All Grid Level 02 Calculation Time\n 18.517378568999998\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 12.133533974999999\n Second\n \n \n Communication Transpose Time\n 1.6401626890000005\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.0895085149999995\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 19.728020660000002\n Second\n \n \n Hydro Equations Solving Time\n 15.963325410000003\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 9.438872420970002\n Second\n \n \n Radiative Transfer Calculation Time\n 40.125391328160006\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 142.6978215\n Second\n \n \n Wall Clock Time\n 143.458787\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,143.459,2831191,0,';cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;',NULL,NULL),(3808184,'2020-04-22 23:25:39','2020-04-22 23:25:46','UBHPC_32core','UBHPC_32core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIALcKoV4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 128\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIALcKoV4CA0suyNMtNTLRNbZQSB5l0oppqmtoNsqkKdN8lElTpsUokxZMLgCjb02GgQUAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 626.808594\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.174329002069961e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 34.445160\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',626.809,0,34.4452,2832094,0,';cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u24-38;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-16;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;',NULL,NULL),(3808186,'2020-04-23 00:41:47','2020-04-23 00:41:54','UBHPC_32core','UBHPC_32core','hpcc','hpcc.8',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAI8coV4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 16\n \n \n Input:High Performance LINPACK Problem Size\n 56568\n \n \n Input:MPI Ranks\n 256\n \n \n Input:MPIRandom Problem Size\n 2048.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 28284\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1359.924\n MHz\n \n \n RunEnv:Nodes\n H4sIAI8coV4CA+3GoREAIAwDQM8ULFDRlNJjHjyHYX+miMur3/fYA8xn3yqvSJXaUpkNldg0XyqzCJXaUpmNoTLaPt4jYNABCwAA\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 46311.6\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4701.20448\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5386.79296\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4260.06528\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4814.336\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 109003.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 456.873\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 6362240.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 18.9683\n Second\n \n \n MPI Random Access\n 101.513\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 41738.1376\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 195.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,195,2832304,0,';cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;',NULL,NULL),(3808188,'2020-04-23 01:49:10','2020-04-23 01:49:17','UBHPC_32core','UBHPC_32core','hpcc','hpcc.1',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAFksoV4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 4\n \n \n Input:High Performance LINPACK Problem Size\n 20000\n \n \n Input:MPI Ranks\n 32\n \n \n Input:MPIRandom Problem Size\n 256.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 10000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1832.629\n MHz\n \n \n RunEnv:Nodes\n H4sIAFksoV4CA0suyNMtNTLVNTZXSB5lUp/JBQDM4a5vYQEAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 49811.2\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 5014.20032\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5356.05248\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4545.49504\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 5156.29056\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 50037.100000000006\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 428.905\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1006110.0000000001\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 5.30154\n Second\n \n \n MPI Random Access\n 10.9367\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 13514.1376\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 143.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,143,2832330,0,';cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;cpn-u25-37;',NULL,NULL),(3808189,'2020-04-23 01:53:17','2020-04-23 01:53:24','UBHPC_32core','UBHPC_32core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAFEtoV4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAFEtoV4CA0suyNMtNTLSNTJXSB5l0o5pPMqkCZMLADya1HnBAgAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 303.2684326171875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 90500\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 667.572021484375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 15400\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 94.2230224609375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 11200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 16.9\n Second\n \n \n Wall Clock Time\n 39.4\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,39.4,2832694,0,';cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;',NULL,NULL),(3808190,'2020-04-23 01:58:01','2020-04-23 01:58:08','UBHPC_32core','UBHPC_32core','gamess','gamess.1',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2832695,0,';cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;',NULL,NULL),(3808187,'2020-04-23 02:09:58','2020-04-23 02:10:04','UBHPC_32core','UBHPC_32core','hpcc','hpcc.2',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIADkxoV4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 28284\n \n \n Input:MPI Ranks\n 64\n \n \n Input:MPIRandom Problem Size\n 512.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 14142\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 2193.823\n MHz\n \n \n RunEnv:Nodes\n H4sIADkxoV4CA0suyNMtNTLSNTRTSB5l0o5pZDrKpAWTCwBZDFAywQIAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 49389.6\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4672.50176\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5399.45984\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4269.21984\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4743.24992\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 65609.9\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 328.458\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1844680.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 8.17797\n Second\n \n \n MPI Random Access\n 33.6792\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 8422.9632\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 139.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,139,2832328,0,';cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;',NULL,NULL),(3808191,'2020-04-23 02:19:44','2020-04-23 02:19:50','UBHPC_32core','UBHPC_32core','graph500','graph500.2',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIMzoV4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIMzoV4CA0suyNMtNTLSNTRTSB5l0o5pZDrKpAWTCwBZDFAywQIAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 4.68789e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.20425e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 4.70008e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 386.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,386,2832860,0,';cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;',NULL,NULL); +INSERT INTO `akrr_xdmod_instanceinfo` VALUES (3808192,'2020-04-23 02:33:59','2020-04-23 02:34:05','UBHPC_32core','UBHPC_32core','imb','imb.8',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIANo2oV4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIANo2oV4CA+3GoREAIAwDQM8ULFDRlNJjHjyHYX+miMur3/fYA8xn3yqvSJXaUpkNldg0XyqzCJXaUpmNoTLaPt4jYNABCwAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 17729.59\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1829.37\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3476.72\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 10724.33\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11101.97\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3570.68\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3935.35\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12090.85\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11538.89\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11244.61\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11649.3\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 19386.4\n MByte per Second\n \n \n Min AllGather Latency\n 4.49e-06\n Second\n \n \n Min AllGatherV Latency\n 4.509999999999999e-06\n Second\n \n \n Min AllReduce Latency\n 4.42e-06\n Second\n \n \n Min AllToAll Latency\n 4.2999999999999995e-06\n Second\n \n \n Min AllToAllV Latency\n 4.33e-06\n Second\n \n \n Min Barrier Latency\n 4.36e-06\n Second\n \n \n Min Broadcast Latency\n 1.7599999999999999e-06\n Second\n \n \n Min Gather Latency\n 6.4e-07\n Second\n \n \n Min GatherV Latency\n 4.28e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 4.09e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 1.419e-05\n Second\n \n \n Min MPI-2 Window Creation Latency\n 5.1319999999999997e-05\n Second\n \n \n Min Reduce Latency\n 3.93e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.25e-06\n Second\n \n \n Min Scatter Latency\n 1.42e-06\n Second\n \n \n Min ScatterV Latency\n 1.48e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 25.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,25,2832906,0,';cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;cpn-u25-34;',NULL,NULL),(3808193,'2020-04-23 02:58:26','2020-04-23 02:58:32','UBHPC_32core','UBHPC_32core','hpcc','hpcc.4',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAJU8oV4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 40000\n \n \n Input:MPI Ranks\n 128\n \n \n Input:MPIRandom Problem Size\n 1024.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 20000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 2194.848\n MHz\n \n \n RunEnv:Nodes\n H4sIAJU8oV4CA0suyNMtNTLSNTRTSB5l0o5pZDrKpCnTfJRJS6bxKJMmTC4AWvIJPYEFAAA=\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 47968.0\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 5143.98208\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5720.60672\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4706.01728\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 5280.9216\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 110419.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 326.923\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 3673840.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 11.6143\n Second\n \n \n MPI Random Access\n 60.93429999999999\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 30752.768\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 167.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,167,2832912,0,';cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;',NULL,NULL),(3808194,'2020-04-23 02:59:39','2020-04-23 02:59:46','UBHPC_32core','UBHPC_32core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAN88oV4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAN88oV4CA0suyNMtNTLVNbRUSB5l0o5pZDzKpCnTZJRJU6b5KJMWTC4ApRPw/IEFAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 237.46490478515625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 49900\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 497.8179931640625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 13300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 60.749053955078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 9004\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 25.6\n Second\n \n \n Wall Clock Time\n 60.5\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,60.5,2832913,0,';cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;',NULL,NULL),(3808195,'2020-04-23 03:18:58','2020-04-23 03:19:05','UBHPC_32core','UBHPC_32core','imb','imb.4',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAGZBoV4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAGZBoV4CA0suyNMtNTLSNTRTSB5l0o5pZDrKpCnTfJRJS6bxKJMmTC4AWvIJPYEFAAA=\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18041.88\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1881.8\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3402.55\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11281.38\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11223.09\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3444.15\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3889.75\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12090.85\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11516.98\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11290.07\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11684.89\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 18666.44\n MByte per Second\n \n \n Min AllGather Latency\n 2.5899999999999998e-06\n Second\n \n \n Min AllGatherV Latency\n 2.6899999999999997e-06\n Second\n \n \n Min AllReduce Latency\n 2.6499999999999996e-06\n Second\n \n \n Min AllToAll Latency\n 2.29e-06\n Second\n \n \n Min AllToAllV Latency\n 2.31e-06\n Second\n \n \n Min Barrier Latency\n 2.4999999999999998e-06\n Second\n \n \n Min Broadcast Latency\n 2.01e-06\n Second\n \n \n Min Gather Latency\n 6.7e-07\n Second\n \n \n Min GatherV Latency\n 2.7699999999999997e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 1.81e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 8.2e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 3.005e-05\n Second\n \n \n Min Reduce Latency\n 1.82e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.82e-06\n Second\n \n \n Min Scatter Latency\n 1.62e-06\n Second\n \n \n Min ScatterV Latency\n 1.57e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 20.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,20,2832919,0,';cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;',NULL,NULL),(3808196,'2020-04-23 03:23:42','2020-04-23 03:23:49','UBHPC_32core','UBHPC_32core','graph500','graph500.1',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIJCoV4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIJCoV4CA0suyNMtNTLSNTRTSB5lUp/JBQBtd0HiYQEAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 6.27425e+09\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 2.16509e+08\n Traversed Edges Per Second\n \n \n Median TEPS\n 6.96975e+09\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 336.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,336,2832921,0,';cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;',NULL,NULL),(3808198,'2020-04-23 03:27:45','2020-04-23 03:27:52','UBHPC_32core','UBHPC_32core','imb','imb.2',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAHVDoV4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAHVDoV4CA0suyNMtNTLSNTRTSB5l0o5pZDrKpAWTCwBZDFAywQIAAA==\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18538.58\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1903.8\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3520.13\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11293.69\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11203.07\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3511.74\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 4153.21\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12175.37\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11608.94\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11335.9\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11699.65\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 22623.7\n MByte per Second\n \n \n Min AllGather Latency\n 1.32e-06\n Second\n \n \n Min AllGatherV Latency\n 1.4099999999999998e-06\n Second\n \n \n Min AllReduce Latency\n 1.3899999999999998e-06\n Second\n \n \n Min AllToAll Latency\n 1.31e-06\n Second\n \n \n Min AllToAllV Latency\n 1.58e-06\n Second\n \n \n Min Barrier Latency\n 1.26e-06\n Second\n \n \n Min Broadcast Latency\n 9.9e-07\n Second\n \n \n Min Gather Latency\n 1.08e-06\n Second\n \n \n Min GatherV Latency\n 1.79e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 6.6e-07\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 5.8899999999999995e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 1.957e-05\n Second\n \n \n Min Reduce Latency\n 1.09e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.28e-06\n Second\n \n \n Min Scatter Latency\n 1.0099999999999999e-06\n Second\n \n \n Min ScatterV Latency\n 1.1399999999999999e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 12.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,12,2832938,0,';cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;',NULL,NULL),(3808197,'2020-04-23 03:37:29','2020-04-23 03:37:36','UBHPC_32core','UBHPC_32core','gamess','gamess.4',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2832927,0,';cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;',NULL,NULL),(3808199,'2020-04-23 03:59:19','2020-04-23 03:59:25','UBHPC_32core','UBHPC_32core','enzo','enzo.2',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIANpKoV4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIANpKoV4CA0suyNMtNTLSNTRTSB5l0o5pZDrKpAWTCwBZDFAywQIAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 7.1579248\n Second\n \n \n All Grid Level 00 Calculation Time\n 25.358044500000005\n Second\n \n \n All Grid Level 01 Calculation Time\n 48.853761522\n Second\n \n \n All Grid Level 02 Calculation Time\n 22.923761998999996\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 19.947691189999997\n Second\n \n \n Communication Transpose Time\n 1.2273677039999995\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 1.9489215749999997\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 23.926424269999995\n Second\n \n \n Hydro Equations Solving Time\n 31.998574530000006\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 16.240616662390003\n Second\n \n \n Radiative Transfer Calculation Time\n 40.839179837900005\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 182.81872329999996\n Second\n \n \n Wall Clock Time\n 183.399758\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,183.4,2832939,0,';cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;',NULL,NULL),(3808200,'2020-04-23 04:02:03','2020-04-23 04:02:09','UBHPC_32core','UBHPC_32core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAH5LoV4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAH5LoV4CA0suyNMtNTLVNbRUSB5lUp/JBQDqu1nhYQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 433.92181396484375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 193000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 24900\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 151.63421630859375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 17700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 11.2\n Second\n \n \n Wall Clock Time\n 20.3\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,20.3,2832942,0,';cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;',NULL,NULL),(3808201,'2020-04-23 04:02:57','2020-04-23 04:03:03','UBHPC_32core','UBHPC_32core','graph500','graph500.4',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIALRLoV4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIALRLoV4CA0suyNMtNTLSNTRTSB5l0o5pZDrKpCnTfJRJS6bxKJMmTC4AWvIJPYEFAAA=\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 8.81223e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 2.92976e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 8.82911e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 368.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,368,2832943,0,';cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-27;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;',NULL,NULL),(3808202,'2020-04-23 04:15:31','2020-04-23 04:15:38','UBHPC_32core','UBHPC_32core','gamess','gamess.2',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2832952,0,';cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;cpn-u22-25;',NULL,NULL),(3808203,'2020-04-23 04:20:59','2020-04-23 04:21:05','UBHPC_32core','UBHPC_32core','enzo','enzo.1',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAO5PoV4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAO5PoV4CA0suyNMtNTLSNTRTSB5lUp/JBQBtd0HiYQEAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 11.275195600000002\n Second\n \n \n All Grid Level 00 Calculation Time\n 43.15063649999999\n Second\n \n \n All Grid Level 01 Calculation Time\n 90.216496762\n Second\n \n \n All Grid Level 02 Calculation Time\n 35.736850821\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 32.06363097999999\n Second\n \n \n Communication Transpose Time\n 1.2113041289999993\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.437234889999999\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 30.599689220000005\n Second\n \n \n Hydro Equations Solving Time\n 60.994198000000026\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 32.85603955622\n Second\n \n \n Radiative Transfer Calculation Time\n 54.887263660200006\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 282.3952702000001\n Second\n \n \n Wall Clock Time\n 283.280913\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,283.281,2832958,0,';cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;cpn-u22-16;',NULL,NULL),(3808215,'2020-04-23 11:12:19','2020-04-23 11:12:26','UBHPC_8core','UBHPC_8core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAFewoV4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAFewoV4CA0suyNNNMbDUNTTVNTBSSKYfz0zXwJDOPCN68sxRbKcZjwsAxjA+hMEBAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 310.656250\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.5969236842036926e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 108.737770\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',310.656,0,108.738,2833234,0,';cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;',NULL,NULL),(3808220,'2020-04-23 11:22:19','2020-04-23 11:22:25','UBHPC_8core','UBHPC_8core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAK6yoV4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 16\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAK6yoV4CA0suyNNNMbDUNTTXNTBUSKYrz4gOPC4A++u1jOEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 312.277344\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.398887045466627e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 184.649796\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',312.277,0,184.65,2833240,0,';cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-17-02;',NULL,NULL),(3808224,'2020-04-23 11:52:19','2020-04-23 11:52:27','UBHPC_8core','UBHPC_8core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIALi5oV4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIALi5oV4CA0suyNNNMbDUNTLRNTBSSKYfz1TXwJDOPCN68sxRbKcZjwsAgXepz8EBAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 619.8883056640625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 257000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 909.8052978515625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 27600\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 151.63421630859375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 18900\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 47.8\n Second\n \n \n Wall Clock Time\n 90.5\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,90.5,2833259,0,';cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;',NULL,NULL),(3808229,'2020-04-23 12:22:20','2020-04-23 12:22:28','UBHPC_8core','UBHPC_8core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMDAoV4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 8\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMDAoV4CA0suyNNNMTDXNTLXNTBUSKY5jwsAI5wS0HEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 324.613281\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 7.141479857456063e-10\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 327.966248\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',324.613,0,327.966,2833293,0,';cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;cpn-d07-27-01;',NULL,NULL),(3808226,'2020-04-23 12:22:20','2020-04-23 12:22:28','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMDAoV4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMDAoV4CA0suyNNNMTDXNTTVNTBUSKYrz4iePDM688xRfEsXnhE9eRYottOFZ0RPniWK7TTjcQEA7xafdIEDAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 322.3419189453125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 101000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 649.4522094726562\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18000\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 98.22845458984375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 39.2\n Second\n \n \n Wall Clock Time\n 88.7\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,88.7,2833292,0,';cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;',NULL,NULL),(3808228,'2020-04-23 12:22:21','2020-04-23 12:22:30','UBHPC_8core','UBHPC_8core','namd','namd.8',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMLAoV4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 8\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMLAoV4CA0suyNNNMbDUNTTTNTBUSKYrz4iePHMU2+nCM6InzwLFdtrzLOnPM6Ijz8iAPjwuADPTUJ6BAwAA\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 325.582031\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 4.949441455531743e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 73.069504\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',325.582,0,73.0695,2833291,0,';cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;',NULL,NULL),(3808230,'2020-04-23 12:22:21','2020-04-23 12:22:30','UBHPC_8core','UBHPC_8core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMLAoV4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMLAoV4CA0suyNNNMTDXNbLQNTBUSKY5jwsAY9NcmHEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 1859.6649169921875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 765000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 2613.067626953125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 93500\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 456.80999755859375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 62500\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 107.6\n Second\n \n \n Wall Clock Time\n 113.2\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,113.2,2833294,0,';cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;cpn-d07-28-01;',NULL,NULL),(3808227,'2020-04-23 12:22:28','2020-04-23 12:22:34','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMfAoV4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMfAoV4CA0suyNNNMTDXNbTUNTBSSKYbz8hA18CQzjwjevJM6MwzRfEtXXhG9OSZodhOF54RHXhcALvAWlmBAwAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 372.88665771484375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 141000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 645.6375122070312\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18000\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 97.2747802734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 40.9\n Second\n \n \n Wall Clock Time\n 89.5\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,89.5,2833295,0,';cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;',NULL,NULL),(3808245,'2020-04-23 13:12:24','2020-04-23 13:12:30','UBHPC_8core','UBHPC_8core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAHvMoV4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHvMoV4CA0suyNNNMbDUNTLXNTBUSKYrz4gOPC4AWsb/ueEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 972.747802734375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 408000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 1487.73193359375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 48700\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 242.2332763671875\n MByte\n \n \n Global Arrays \'Put\' Calls\n 32200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 72.1\n Second\n \n \n Wall Clock Time\n 110.6\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,110.6,2833375,0,';cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-01;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;cpn-d09-27-02;',NULL,NULL),(3808278,'2020-04-24 22:25:31','2020-04-24 22:25:38','UBHPC_32core','UBHPC_32core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJ+fo14CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJ6fo14CA0suyNMtNTLWNTRXSB5lUp/JBQBArMbPYQEAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 575.207031\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 6.215465320811243e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 58.031685\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',575.207,0,58.0317,2834930,0,';cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;',NULL,NULL),(3808279,'2020-04-24 22:25:31','2020-04-24 22:25:38','UBHPC_32core','UBHPC_32core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJ+fo14CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJ6fo14CA0suyNMtNTLWNTRXSB5l0o5pZDDKpAWTCwAd3Ce8wQIAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 628.636719\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.1607714951665475e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 43.638683\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',628.637,0,43.6387,2834931,0,';cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-17;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;',NULL,NULL),(3808281,'2020-04-25 01:09:56','2020-04-25 01:10:02','UBHPC_32core','UBHPC_32core','hpcc','hpcc.2',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIACfGo14CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 28284\n \n \n Input:MPI Ranks\n 64\n \n \n Input:MPIRandom Problem Size\n 512.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 14142\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 2130.505\n MHz\n \n \n RunEnv:Nodes\n H4sIACfGo14CA0suyNMtNTLWNbJUSB5l0oppqmtoMcqkBZMLACSq0CPBAgAA\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48631.5\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4902.23616\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5492.81792\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4415.76448\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4978.64704\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 54365.200000000004\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 325.244\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1773910.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 8.50422\n Second\n \n \n MPI Random Access\n 31.6617\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 11091.7632\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 153.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,153,2836553,0,';cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;',NULL,NULL),(3808280,'2020-04-25 01:11:52','2020-04-25 01:11:59','UBHPC_32core','UBHPC_32core','hpcc','hpcc.8',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAJvGo14CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 16\n \n \n Input:High Performance LINPACK Problem Size\n 56568\n \n \n Input:MPI Ranks\n 256\n \n \n Input:MPIRandom Problem Size\n 2048.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 28284\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1399.401\n MHz\n \n \n RunEnv:Nodes\n H4sIAJvGo14CA+3SoRUAIAgFwO4ULkAQ5IHz0H0W9zc6wW+/3QBXZ8tVE129SBzNSRynjCCRVCOhTBJH/5VJDJNEUoNEsD20OPZAAQsAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 47890.700000000004\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4837.02784\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5478.01088\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4392.99072\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4925.94176\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 161918.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 452.439\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 6483390.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 18.6138\n Second\n \n \n MPI Random Access\n 101.358\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 37855.5392\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 196.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,196,2835835,0,';cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u24-28;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-18;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;cpn-u25-27;',NULL,NULL),(3808282,'2020-04-25 02:19:15','2020-04-25 02:19:21','UBHPC_32core','UBHPC_32core','hpcc','hpcc.1',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAGbWo14CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 4\n \n \n Input:High Performance LINPACK Problem Size\n 20000\n \n \n Input:MPI Ranks\n 32\n \n \n Input:MPIRandom Problem Size\n 256.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 10000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 2404.156\n MHz\n \n \n RunEnv:Nodes\n H4sIAGbWo14CA0suyNMtNTLWNTJVSB5lUp/JBQDoH+8AYQEAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 46994.4\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4672.27648\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5377.92512\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4255.2832\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4917.34016\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 47698.3\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 314.145\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 966726.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 5.51752\n Second\n \n \n MPI Random Access\n 11.0252\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 13698.048\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 138.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,138,2837067,0,';cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;',NULL,NULL),(3808284,'2020-04-25 02:28:04','2020-04-25 02:28:10','UBHPC_32core','UBHPC_32core','gamess','gamess.1',1,NULL,NULL,'\n Gamess\n \n Gamess\n \n \n App:ExeBinSignature\n H4sIAHfYo14CA7WRTY7bMAyF9zlFTmCR1H+X7SxmM0A3XQcSSaVuncSwPcAcvzKShS/QhSCB0ke+p/fx5r+da2zRNiUH6gVbRedURJBD0QzKZzMvjz/K22qYl3UrrZmr3nUpkynz/FcX8+v7+88f5lpuuq6vbQAcvk4f+wDJmIP6lkgqVW0CpNV7jim6GMmdzec29l5cRG8jm/G+6WQwDdbw4zaPky7rpdzlMo11Kcuo64Vgvx6IyEzj/fPL9GdPLrheqfvqpWF9DEhPFdCCtxmZSNQJ+thtltT9pX7EXP6fivZYtqMSnylJbNl7J6JQna+cYmHIPqcicN65Z4cX+OIiCXEBWwAKO4jexWCTtTU1YKwHbt5+L1pkh+EJU4SerncWtLICUnTassshIlHlI3zbsfDKLjZ2PTgSFzyWAmyD+By7VIJU4gHjA8apEaONqorF+YSVoWqswXYHAewBuzJf1oPLWqtL6KL34Kh/UUzYWLGilNCk4gGVaefodPoHaVIrBsgCAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 02 AUG 2018 (R2)\n \n \n RunEnv:Nodes\n H4sIAHfYo14CA0suyNMtNTLWNTJVSB5lUp/JBQDoH+8AYQEAAA==\n \n \n app\n gamess\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Attempts to Launch\n 1\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Time Spent in MP2 Energy Calculation\n 17.21\n Second\n \n \n Time Spent in Restricted Hartree-Fock Calculation\n 23.11\n Second\n \n \n User Time\n 41.349000000000004\n Second\n \n \n Wall Clock Time\n 42.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,42,2837473,0,';cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;',NULL,NULL),(3808283,'2020-04-25 03:23:26','2020-04-25 03:23:32','UBHPC_32core','UBHPC_32core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAHHlo14CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHHlo14CA0suyNMtNTLWNbJUSB5l0o5pbDrKpAWTCwDGtjnUwQIAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 297.54638671875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 91200\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 646.5911865234375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 15300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 93.93692016601562\n MByte\n \n \n Global Arrays \'Put\' Calls\n 11200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 17.1\n Second\n \n \n Wall Clock Time\n 40.6\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,40.6,2837463,0,';cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;',NULL,NULL),(3808276,'2020-04-25 03:34:44','2020-04-25 03:34:52','UBHPC_32core','UBHPC_32core','enzo','enzo.4',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIABjoo14CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIABjoo14CA0suyNMtNTLWNbJUSB5l0o5pbDrKpB3TRNfQfJRJS6aR8SiTFkwuAGbRrBKBBQAA\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 5.5730455\n Second\n \n \n All Grid Level 00 Calculation Time\n 17.664552930000006\n Second\n \n \n All Grid Level 01 Calculation Time\n 31.178589247999998\n Second\n \n \n All Grid Level 02 Calculation Time\n 18.709616933999996\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 12.080450589000003\n Second\n \n \n Communication Transpose Time\n 1.4760952280000004\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 1.958733997\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 19.47886071\n Second\n \n \n Hydro Equations Solving Time\n 15.937570919999997\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 9.6633361725\n Second\n \n \n Radiative Transfer Calculation Time\n 35.77378173381\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 140.45954760000004\n Second\n \n \n Wall Clock Time\n 141.174910\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,141.175,2834797,0,';cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;',NULL,NULL),(3808289,'2020-04-25 03:49:03','2020-04-25 03:49:10','UBHPC_32core','UBHPC_32core','imb','imb.4',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAHPro14CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAHPro14CA0suyNMtNTLWNbJUSB5l0o5pbDrKpB3TRNfQfJRJS6aR8SiTFkwuAGbRrBKBBQAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 17445.21\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1867.78\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3372.67\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 10431.18\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11104.78\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3525.7\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3953.57\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12094.17\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11516.98\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11205.93\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11678.68\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 18165.3\n MByte per Second\n \n \n Min AllGather Latency\n 2.8999999999999998e-06\n Second\n \n \n Min AllGatherV Latency\n 3.0099999999999996e-06\n Second\n \n \n Min AllReduce Latency\n 2.92e-06\n Second\n \n \n Min AllToAll Latency\n 2.52e-06\n Second\n \n \n Min AllToAllV Latency\n 2.5499999999999997e-06\n Second\n \n \n Min Barrier Latency\n 2.8e-06\n Second\n \n \n Min Broadcast Latency\n 2.29e-06\n Second\n \n \n Min Gather Latency\n 8.1e-07\n Second\n \n \n Min GatherV Latency\n 2.96e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 1.79e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 8.91e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 3.171e-05\n Second\n \n \n Min Reduce Latency\n 1.9299999999999997e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.14e-06\n Second\n \n \n Min Scatter Latency\n 1.81e-06\n Second\n \n \n Min ScatterV Latency\n 1.81e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 17.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,17,2837510,0,';cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;',NULL,NULL),(3808285,'2020-04-25 03:49:53','2020-04-25 03:50:00','UBHPC_32core','UBHPC_32core','graph500','graph500.2',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAKTro14CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAKTro14CA0suyNMtNTLWNbJUSB5l0o5pbDrKpAWTCwDGtjnUwQIAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 4.68209e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.07802e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 4.69096e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 369.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,369,2837481,0,';cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;',NULL,NULL),(3808290,'2020-04-25 03:53:46','2020-04-25 03:53:52','UBHPC_32core','UBHPC_32core','graph500','graph500.1',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAI3so14CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAI3so14CA0suyNMtNTLRNTZSSB5lUp/JBQBD3O4jYQEAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 6.71553e+09\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 2.16233e+08\n Traversed Edges Per Second\n \n \n Median TEPS\n 7.577e+09\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 337.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,337,2837514,0,';cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;',NULL,NULL),(3808277,'2020-04-25 03:56:10','2020-04-25 03:56:17','UBHPC_32core','UBHPC_32core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAB7to14CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 128\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAB3to14CA0suyNMtNTLWNbJUSB5l0o5pbDrKpB3TRNfQfJRJS6aR8SiTFkwuAGbRrBKBBQAA\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 626.628906\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.2044203035927644e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 34.518314\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',626.629,0,34.5183,2834932,0,';cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;',NULL,NULL),(3808292,'2020-04-25 03:57:49','2020-04-25 03:57:56','UBHPC_32core','UBHPC_32core','imb','imb.2',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAIDto14CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAIDto14CA0suyNMtNTLRNTZSSB5l0oppqmtkPMqkBZMLALFqsGPBAgAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 20769.38\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1858.44\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3389.63\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 10826.63\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11043.43\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3542.51\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 4016.76\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12185.49\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11488.4\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11283.55\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11698.1\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 22665.96\n MByte per Second\n \n \n Min AllGather Latency\n 1.6299999999999999e-06\n Second\n \n \n Min AllGatherV Latency\n 1.7199999999999998e-06\n Second\n \n \n Min AllReduce Latency\n 1.7199999999999998e-06\n Second\n \n \n Min AllToAll Latency\n 1.62e-06\n Second\n \n \n Min AllToAllV Latency\n 1.87e-06\n Second\n \n \n Min Barrier Latency\n 1.59e-06\n Second\n \n \n Min Broadcast Latency\n 1.33e-06\n Second\n \n \n Min Gather Latency\n 1.4099999999999998e-06\n Second\n \n \n Min GatherV Latency\n 2.16e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 6.5e-07\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 7.36e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 2.145e-05\n Second\n \n \n Min Reduce Latency\n 1.44e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.6299999999999999e-06\n Second\n \n \n Min Scatter Latency\n 1.34e-06\n Second\n \n \n Min ScatterV Latency\n 1.47e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 11.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,11,2837520,0,';cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;',NULL,NULL),(3808287,'2020-04-25 03:58:34','2020-04-25 03:58:41','UBHPC_32core','UBHPC_32core','hpcc','hpcc.4',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAK7to14CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 40000\n \n \n Input:MPI Ranks\n 128\n \n \n Input:MPIRandom Problem Size\n 1024.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 20000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1094.219\n MHz\n \n \n RunEnv:Nodes\n H4sIAK7to14CA0suyNMtNTLWNbJUSB5l0o5pbDrKpB3TRNfQfJRJS6aR8SiTFkwuAGbRrBKBBQAA\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48974.1\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4869.9392\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5539.60448\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4432.77312\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4977.64352\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 82504.5\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 659.578\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 3695220.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 11.5471\n Second\n \n \n MPI Random Access\n 58.2142\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 37197.9264\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 190.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,190,2837497,0,';cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;',NULL,NULL),(3808293,'2020-04-25 03:59:17','2020-04-25 03:59:24','UBHPC_32core','UBHPC_32core','enzo','enzo.2',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIANnto14CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIANnto14CA0suyNMtNTLRNTZSSB5l0oppqmtkPMqkBZMLALFqsGPBAgAA\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 7.6227535\n Second\n \n \n All Grid Level 00 Calculation Time\n 25.991103299999992\n Second\n \n \n All Grid Level 01 Calculation Time\n 49.35258389999999\n Second\n \n \n All Grid Level 02 Calculation Time\n 24.054125330000005\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 19.96807859\n Second\n \n \n Communication Transpose Time\n 1.171957676\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 1.8842055799999997\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 23.748425729999994\n Second\n \n \n Hydro Equations Solving Time\n 32.299842840000004\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 16.57312928945\n Second\n \n \n Radiative Transfer Calculation Time\n 42.7272517153\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 187.3172079\n Second\n \n \n Wall Clock Time\n 188.003711\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,188.004,2837521,0,';cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;cpn-u25-23;',NULL,NULL),(3808288,'2020-04-25 03:59:48','2020-04-25 03:59:54','UBHPC_32core','UBHPC_32core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAPfto14CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAPfto14CA0suyNMtNTLWNbJUSB5l0o5pbDrKpB3TRNfQfJRJS6aR8SiTFkwuAGbRrBKBBQAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 229.83551025390625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 38900\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 491.14227294921875\n MByte\n \n \n Global Arrays \'Get\' Calls\n 13300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 60.749053955078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 9005\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 25.4\n Second\n \n \n Wall Clock Time\n 58.7\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,58.7,2837498,0,';cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;',NULL,NULL),(3808294,'2020-04-25 04:02:03','2020-04-25 04:02:10','UBHPC_32core','UBHPC_32core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAH7uo14CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAH7uo14CA0suyNMtNTLRNTZSSB5lUp/JBQBD3O4jYQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 432.9681396484375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 195000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 24900\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 152.587890625\n MByte\n \n \n Global Arrays \'Put\' Calls\n 17800\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 11.7\n Second\n \n \n Wall Clock Time\n 22.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,22,2837522,0,';cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;',NULL,NULL),(3808291,'2020-04-25 04:07:34','2020-04-25 04:07:41','UBHPC_32core','UBHPC_32core','gamess','gamess.4',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2837517,0,';cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;',NULL,NULL),(3808296,'2020-04-25 04:15:32','2020-04-25 04:15:39','UBHPC_32core','UBHPC_32core','gamess','gamess.2',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2837532,0,';cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;cpn-u25-19;',NULL,NULL),(3808297,'2020-04-25 04:21:01','2020-04-25 04:21:08','UBHPC_32core','UBHPC_32core','enzo','enzo.1',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAPHyo14CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAPDyo14CA0suyNMtNTLRNTZSSB5lUp/JBQBD3O4jYQEAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 11.960001799999999\n Second\n \n \n All Grid Level 00 Calculation Time\n 43.176808499999986\n Second\n \n \n All Grid Level 01 Calculation Time\n 88.782131284\n Second\n \n \n All Grid Level 02 Calculation Time\n 34.068274741\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 31.35361371\n Second\n \n \n Communication Transpose Time\n 1.296459048\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.5103821100000014\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 29.819054610000006\n Second\n \n \n Hydro Equations Solving Time\n 59.9576829\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 32.457616627700006\n Second\n \n \n Radiative Transfer Calculation Time\n 55.6410605959\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 279.9322717\n Second\n \n \n Wall Clock Time\n 280.693733\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,280.694,2837533,0,';cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;',NULL,NULL),(3808295,'2020-04-25 04:33:01','2020-04-25 04:33:07','UBHPC_32core','UBHPC_32core','graph500','graph500.4',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAMD1o14CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAMD1o14CA0suyNMtNTLWNbJUSB5l0o5pbDrKpB3TRNfQfJRJS6aR8SiTFkwuAGbRrBKBBQAA\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 8.80199e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 2.42101e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 8.82362e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 368.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,368,2837523,0,';cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;',NULL,NULL),(3808286,'2020-04-25 05:04:13','2020-04-25 05:04:20','UBHPC_32core','UBHPC_32core','imb','imb.8',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIABD9o14CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIABD9o14CA+3GoREAIAwDQM8ULFDRhB7HPHgOw/5MEZdXv++JBwaqb1fY5SrLdKUtV9cROV1lQVdZwpW2XEXbB2XmZyABCwAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 17335.19\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1833.18\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3421.07\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 10759.75\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11137.11\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3661.72\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3905.64\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12143.43\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11570.0\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11063.57\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11631.58\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 18106.41\n MByte per Second\n \n \n Min AllGather Latency\n 4.35e-06\n Second\n \n \n Min AllGatherV Latency\n 4.4699999999999996e-06\n Second\n \n \n Min AllReduce Latency\n 4.36e-06\n Second\n \n \n Min AllToAll Latency\n 4.37e-06\n Second\n \n \n Min AllToAllV Latency\n 4.41e-06\n Second\n \n \n Min Barrier Latency\n 4.32e-06\n Second\n \n \n Min Broadcast Latency\n 1.73e-06\n Second\n \n \n Min Gather Latency\n 6.2e-07\n Second\n \n \n Min GatherV Latency\n 4.2999999999999995e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 4.08e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 1.4099999999999999e-05\n Second\n \n \n Min MPI-2 Window Creation Latency\n 5.09e-05\n Second\n \n \n Min Reduce Latency\n 3.9399999999999995e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.27e-06\n Second\n \n \n Min Scatter Latency\n 1.42e-06\n Second\n \n \n Min ScatterV Latency\n 1.5199999999999998e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 26.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,26,2837489,0,';cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-25;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-29;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u23-35;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-17;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-23;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-32;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;cpn-u24-35;',NULL,NULL),(3808309,'2020-04-25 11:12:16','2020-04-25 11:12:22','UBHPC_8core','UBHPC_8core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAFNTpF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAFNTpF4CA0suyNNNMbDUNTTVNTBUSKYrz4iePDMU2+nCM6IDjwsAE1XCPMEBAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 310.898438\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.541677151084915e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 108.654930\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',310.898,0,108.655,2837745,0,';cpn-d09-15-01;cpn-d09-15-01;cpn-d09-15-01;cpn-d09-15-01;cpn-d09-15-01;cpn-d09-15-01;cpn-d09-15-01;cpn-d09-15-01;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;',NULL,NULL),(3808313,'2020-04-25 11:22:17','2020-04-25 11:22:23','UBHPC_8core','UBHPC_8core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAKxVpF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 16\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAKxVpF4CA0suyNNNMbDUNbTUNTBUSKYrz4gOPC4A6Rm7buEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 311.558594\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.3568134422221347e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 187.308975\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',311.559,0,187.309,2837761,0,';cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;',NULL,NULL),(3808319,'2020-04-25 11:52:18','2020-04-25 11:52:25','UBHPC_8core','UBHPC_8core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIALVcpF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIALVcpF4CA0suyNNNMbDUNTLQNTBSSKYfz4TOPFNdA0M684zowOMCAKdcnTXBAQAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 569.3435668945312\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 208000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 911.712646484375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 27600\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 151.63421630859375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 18900\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 47.0\n Second\n \n \n Wall Clock Time\n 92.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,92,2837810,0,';cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-24-02;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-01;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-25-02;cpn-d09-25-02;',NULL,NULL),(3808324,'2020-04-25 12:22:19','2020-04-25 12:22:27','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAL9jpF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAL9jpF4CA0suyNNNMTDXNTDRNTBUSKYfz5T+PCN68sxQbKcLz4iePHMU22nPs6A/z4gOPC4AQ8zlm4EDAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 327.11029052734375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 98400\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 658.9889526367188\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18100\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 98.22845458984375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 41.1\n Second\n \n \n Wall Clock Time\n 89.1\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,89.1,2837825,0,';cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-01;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-05-02;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-01;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-06-02;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-07-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-01;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;cpn-d07-08-02;',NULL,NULL),(3808323,'2020-04-25 12:22:18','2020-04-25 12:22:27','UBHPC_8core','UBHPC_8core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAL9jpF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAL9jpF4CA0suyNNNMTDXNTTRNTBSSKY5jwsAQ0ek0XEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 1859.6649169921875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 769000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 2603.5308837890625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 93500\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 456.80999755859375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 62500\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 106.8\n Second\n \n \n Wall Clock Time\n 111.3\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,111.3,2837826,0,';cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;cpn-d07-14-02;',NULL,NULL),(3808320,'2020-04-25 12:22:19','2020-04-25 12:22:29','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMFjpF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMFjpF4CA0suyNNNMbDUNTTVNTBSSKYfz0zXwJDOPCN68sxRbKcLz4iePAsU22nPs6Q/z4gOPC4AjuURhoEDAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 341.4154052734375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 112000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 658.9889526367188\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18100\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 98.22845458984375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 40.2\n Second\n \n \n Wall Clock Time\n 88.5\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,88.5,2837824,0,';cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-15-02;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-01;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-16-02;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-01;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-17-02;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-18-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-01;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;cpn-d09-19-02;',NULL,NULL),(3808321,'2020-04-25 12:22:19','2020-04-25 12:22:29','UBHPC_8core','UBHPC_8core','namd','namd.8',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMFjpF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 8\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMFjpF4CA0suyNNNMTDXNbDUNTBSSKYbz9BA18CQzjwjevIMUWynC8+InjxjFNvpwjOiJ88ExXaa8bgAYBD1CYEDAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 325.406250\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 5.194751223363913e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 71.032471\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',325.406,0,71.0325,2837827,0,';cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-09-02;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-01;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-10-02;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-01;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-11-02;cpn-d07-13-01;cpn-d07-13-01;cpn-d07-13-01;cpn-d07-13-01;cpn-d07-13-01;cpn-d07-13-01;cpn-d07-13-01;cpn-d07-13-01;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-13-02;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-01;cpn-d07-14-01;',NULL,NULL),(3808322,'2020-04-25 12:22:26','2020-04-25 12:22:33','UBHPC_8core','UBHPC_8core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMZjpF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 8\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMZjpF4CA0suyNNNMbDUNTLQNTBSSKY5jwsAtUZwxXEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 323.769531\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 7.150927475293546e-10\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 325.879547\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',323.77,0,325.88,2837828,0,';cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;cpn-d09-20-02;',NULL,NULL),(3808336,'2020-04-25 13:12:18','2020-04-25 13:12:26','UBHPC_8core','UBHPC_8core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAHdvpF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHdvpF4CA0suyNNNMTDXNTTTNTBSSKYfz1zXwJAOPC4ABDrTKOEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 392000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 1487.73193359375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 48700\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 243.18695068359375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 32300\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 72.7\n Second\n \n \n Wall Clock Time\n 108.9\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,108.9,2837856,0,';cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;',NULL,NULL),(3808370,'2020-04-26 17:03:40','2020-04-26 17:03:46','UBHPC_32core','UBHPC_32core','enzo','enzo.4',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAC/3pV4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAC/3pV4CA0suyNMtNTLSNbRUSB5l0o5pZDbKpCnTcpRJS6ax0SiTFkwuANkeV4SBBQAA\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 4.7256944\n Second\n \n \n All Grid Level 00 Calculation Time\n 20.16332212999999\n Second\n \n \n All Grid Level 01 Calculation Time\n 32.973621939\n Second\n \n \n All Grid Level 02 Calculation Time\n 19.591138597999997\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 13.02325539\n Second\n \n \n Communication Transpose Time\n 2.030537362000001\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.5325248209999986\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 20.472863030000003\n Second\n \n \n Hydro Equations Solving Time\n 16.365868329999998\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 10.12354746863\n Second\n \n \n Radiative Transfer Calculation Time\n 56.741966198120004\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 161\n \n \n Total Time Spent in Cycles\n 168.3810622\n Second\n \n \n Wall Clock Time\n 168.924448\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,168.924,2840343,0,';cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;',NULL,NULL),(3808373,'2020-04-26 21:55:26','2020-04-26 21:55:32','UBHPC_32core','UBHPC_32core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJE7pl4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 128\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJE7pl4CA0suyNMtNTLSNbRUSB5l0o5pZDbKpCnTcpRJS6ax0SiTFkwuANkeV4SBBQAA\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 626.417969\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.2155804045206705e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 34.230911\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',626.418,0,34.2309,2840604,0,';cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;',NULL,NULL),(3808372,'2020-04-26 21:55:26','2020-04-26 21:55:33','UBHPC_32core','UBHPC_32core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJI7pl4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJI7pl4CA0suyNMtNTLSNTZVSB5l0pBpNsqkBZMLAKePGFPBAgAA\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 692.636719\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.1090126128004455e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 43.790569\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',692.637,0,43.7906,2840602,0,';cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;',NULL,NULL),(3808371,'2020-04-26 22:25:31','2020-04-26 22:25:38','UBHPC_32core','UBHPC_32core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAJ9Cpl4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAJ9Cpl4CA0suyNMtNTLSNTZXSB5lUp/JBQB0j9QLYQEAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 575.562500\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 6.300085681165264e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 58.160915\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',575.562,0,58.1609,2840603,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;',NULL,NULL),(3808374,'2020-04-27 00:41:48','2020-04-27 00:41:55','UBHPC_32core','UBHPC_32core','hpcc','hpcc.8',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAJBipl4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 16\n \n \n Input:High Performance LINPACK Problem Size\n 56568\n \n \n Input:MPI Ranks\n 256\n \n \n Input:MPIRandom Problem Size\n 2048.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 28284\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1458.618\n MHz\n \n \n RunEnv:Nodes\n H4sIAJBipl4CA+3GqxEAIAxEQU8VNBBBGD6pJ57B0D9VPHerNu+x524taqpcfapot4o2VLLdVbRDRTtVtEslWj5t4EbDAQsAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48836.3\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4677.7344\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5389.4656\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4245.62688\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4766.63808\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 191207.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 451.913\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 6749880.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 17.879\n Second\n \n \n MPI Random Access\n 102.461\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 55646.4128\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 193.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,193,2840826,0,';cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;',NULL,NULL),(3808375,'2020-04-27 01:09:53','2020-04-27 01:09:59','UBHPC_32core','UBHPC_32core','hpcc','hpcc.2',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIACRppl4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 28284\n \n \n Input:MPI Ranks\n 64\n \n \n Input:MPIRandom Problem Size\n 512.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 14142\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 2385.699\n MHz\n \n \n RunEnv:Nodes\n H4sIACRppl4CA0suyNMtNTLSNbRUSB5l0o5pZDbKpAWTCwBFFg1wwQIAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48579.0\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 5005.13792\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5501.46048\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4474.35776\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 5148.11904\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 67038.70000000001\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 279.714\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1708320.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 8.83073\n Second\n \n \n MPI Random Access\n 32.5688\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 19573.3504\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 143.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,143,2841332,0,';cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;',NULL,NULL),(3808376,'2020-04-27 01:19:09','2020-04-27 01:19:15','UBHPC_32core','UBHPC_32core','hpcc','hpcc.1',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAFBrpl4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 4\n \n \n Input:High Performance LINPACK Problem Size\n 20000\n \n \n Input:MPI Ranks\n 32\n \n \n Input:MPIRandom Problem Size\n 256.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 10000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1952.215\n MHz\n \n \n RunEnv:Nodes\n H4sIAFBrpl4CA0suyNMtNTLSNbRUSB5lUp/JBQBS1SOFYQEAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48302.700000000004\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 5045.8112\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5631.11936\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4625.72544\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 5102.01856\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 50900.5\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 390.394\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 975530.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 5.46773\n Second\n \n \n MPI Random Access\n 10.899000000000001\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 14058.9056\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 142.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,142,2841374,0,';cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;',NULL,NULL),(3808377,'2020-04-27 01:23:15','2020-04-27 01:23:22','UBHPC_32core','UBHPC_32core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAEdspl4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAEdspl4CA0suyNMtNTLSNbRUSB5l0o5pZDbKpAWTCwBFFg1wwQIAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 305.17578125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 96600\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 646.5911865234375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 15300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 94.12765502929688\n MByte\n \n \n Global Arrays \'Put\' Calls\n 11200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 16.6\n Second\n \n \n Wall Clock Time\n 37.9\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,37.9,2841390,0,';cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;',NULL,NULL),(3808378,'2020-04-27 01:27:56','2020-04-27 01:28:02','UBHPC_32core','UBHPC_32core','gamess','gamess.1',1,NULL,NULL,'\n Gamess\n \n Gamess\n \n \n App:ExeBinSignature\n H4sIAF9tpl4CA7WRTY7bMAyF9zlFTmCR1H+X7SxmM0A3XQcSSaVuncSwPcAcvzKShS/QhSCB0ke+p/fx5r+da2zRNiUH6gVbRedURJBD0QzKZzMvjz/K22qYl3UrrZmr3nUpkynz/FcX8+v7+88f5lpuuq6vbQAcvk4f+wDJmIP6lkgqVW0CpNV7jim6GMmdzec29l5cRG8jm/G+6WQwDdbw4zaPky7rpdzlMo11Kcuo64Vgvx6IyEzj/fPL9GdPLrheqfvqpWF9DEhPFdCCtxmZSNQJ+thtltT9pX7EXP6fivZYtqMSnylJbNl7J6JQna+cYmHIPqcicN65Z4cX+OIiCXEBWwAKO4jexWCTtTU1YKwHbt5+L1pkh+EJU4SerncWtLICUnTassshIlHlI3zbsfDKLjZ2PTgSFzyWAmyD+By7VIJU4gHjA8apEaONqorF+YSVoWqswXYHAewBuzJf1oPLWqtL6KL34Kh/UUzYWLGilNCk4gGVaefodPoHaVIrBsgCAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 02 AUG 2018 (R2)\n \n \n RunEnv:Nodes\n H4sIAF9tpl4CA0suyNMtNTLSNbRUSB5lUp/JBQBS1SOFYQEAAA==\n \n \n app\n gamess\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Attempts to Launch\n 1\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Time Spent in MP2 Energy Calculation\n 16.96\n Second\n \n \n Time Spent in Restricted Hartree-Fock Calculation\n 22.53\n Second\n \n \n User Time\n 40.262\n Second\n \n \n Wall Clock Time\n 41.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,41,2841394,0,';cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;',NULL,NULL),(3808380,'2020-04-27 02:03:56','2020-04-27 02:04:02','UBHPC_32core','UBHPC_32core','imb','imb.8',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAM91pl4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAM91pl4CA+3GqxEAIAxEQU8VNBBBGD6pJ57B0D9VPHerNu+x524taqpcfapot4o2VLLdVbRDRTtVtEslWj5t4EbDAQsAAA==\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18548.35\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1825.61\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3428.67\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11428.69\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11166.81\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3444.24\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3872.54\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12059.35\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11516.23\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11302.4\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11602.43\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 17943.89\n MByte per Second\n \n \n Min AllGather Latency\n 3.97e-06\n Second\n \n \n Min AllGatherV Latency\n 4.219999999999999e-06\n Second\n \n \n Min AllReduce Latency\n 3.99e-06\n Second\n \n \n Min AllToAll Latency\n 4.32e-06\n Second\n \n \n Min AllToAllV Latency\n 4.33e-06\n Second\n \n \n Min Barrier Latency\n 3.7599999999999996e-06\n Second\n \n \n Min Broadcast Latency\n 1.6499999999999999e-06\n Second\n \n \n Min Gather Latency\n 5.6e-07\n Second\n \n \n Min GatherV Latency\n 4.1199999999999995e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 4.28e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 1.3779999999999999e-05\n Second\n \n \n Min MPI-2 Window Creation Latency\n 4.7659999999999994e-05\n Second\n \n \n Min Reduce Latency\n 3.88e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.1099999999999997e-06\n Second\n \n \n Min Scatter Latency\n 1.3899999999999998e-06\n Second\n \n \n Min ScatterV Latency\n 1.4099999999999998e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 22.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,22,2841508,0,';cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;',NULL,NULL),(3808379,'2020-04-27 02:19:43','2020-04-27 02:19:49','UBHPC_32core','UBHPC_32core','graph500','graph500.2',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIJ5pl4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIJ5pl4CA0suyNMtNTLSNbRUSB5l0o5pZDbKpAWTCwBFFg1wwQIAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 4.69392e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.06179e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 4.69007e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 387.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,387,2841505,0,';cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;',NULL,NULL),(3808383,'2020-04-27 02:48:57','2020-04-27 02:49:04','UBHPC_32core','UBHPC_32core','imb','imb.4',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAF2Apl4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAF2Apl4CA0suyNMtNTLSNbRUSB5l0o5pZDbKpCnTYpRJU6blKJMWTC4AuSsNo4EFAAA=\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18497.65\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1917.48\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3478.71\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11544.94\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11154.77\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3606.38\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3974.47\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12111.66\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11551.01\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11311.85\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11707.83\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 19404.57\n MByte per Second\n \n \n Min AllGather Latency\n 2.64e-06\n Second\n \n \n Min AllGatherV Latency\n 2.6899999999999997e-06\n Second\n \n \n Min AllReduce Latency\n 2.66e-06\n Second\n \n \n Min AllToAll Latency\n 2.29e-06\n Second\n \n \n Min AllToAllV Latency\n 2.33e-06\n Second\n \n \n Min Barrier Latency\n 2.4900000000000003e-06\n Second\n \n \n Min Broadcast Latency\n 1.99e-06\n Second\n \n \n Min Gather Latency\n 6.6e-07\n Second\n \n \n Min GatherV Latency\n 2.75e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 1.79e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 8.2e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 2.9579999999999998e-05\n Second\n \n \n Min Reduce Latency\n 1.7599999999999999e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.84e-06\n Second\n \n \n Min Scatter Latency\n 1.5399999999999999e-06\n Second\n \n \n Min ScatterV Latency\n 1.55e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 14.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,14,2841522,0,';cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;',NULL,NULL),(3808381,'2020-04-27 02:58:26','2020-04-27 02:58:32','UBHPC_32core','UBHPC_32core','hpcc','hpcc.4',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAJWCpl4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 40000\n \n \n Input:MPI Ranks\n 128\n \n \n Input:MPIRandom Problem Size\n 1024.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 20000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1663.055\n MHz\n \n \n RunEnv:Nodes\n H4sIAJWCpl4CA0suyNMtNTLSNbRUSB5l0o5pZDbKpCnTYpRJU6blKJMWTC4AuSsNo4EFAAA=\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 49017.6\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4671.86688\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5377.62816\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4238.0288\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4739.51232\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 114225.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 424.449\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 3614120.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 11.8062\n Second\n \n \n MPI Random Access\n 60.2677\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 36651.2128\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 185.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,185,2841510,0,';cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;',NULL,NULL),(3808382,'2020-04-27 02:59:40','2020-04-27 02:59:46','UBHPC_32core','UBHPC_32core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAN+Cpl4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAN+Cpl4CA0suyNMtNTLSNTZSSB5l0pBpOsqkKdNslElTpvkokxZMLgDZjia/gQUAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 236.51123046875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 48800\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 497.8179931640625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 13300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 60.749053955078125\n MByte\n \n \n Global Arrays \'Put\' Calls\n 9005\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 24.3\n Second\n \n \n Wall Clock Time\n 57.4\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,57.4,2841511,0,';cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;',NULL,NULL),(3808384,'2020-04-27 03:23:44','2020-04-27 03:23:50','UBHPC_32core','UBHPC_32core','graph500','graph500.1',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAIOIpl4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAIOIpl4CA0suyNMtNTLSNbRUSB5lUp/JBQBS1SOFYQEAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 7.02698e+09\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 2.26639e+08\n Traversed Edges Per Second\n \n \n Median TEPS\n 7.87233e+09\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 335.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,335,2841523,0,';cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;cpn-u22-19;',NULL,NULL),(3808386,'2020-04-27 03:27:48','2020-04-27 03:27:55','UBHPC_32core','UBHPC_32core','imb','imb.2',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAHiJpl4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAHiJpl4CA0suyNMtNTLSNTZVSB5l0pBpNsqkBZMLAKePGFPBAgAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18712.11\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1906.54\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3480.43\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11586.77\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11099.17\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3570.68\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 4124.59\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12112.49\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11529.06\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11292.97\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11660.49\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 22555.53\n MByte per Second\n \n \n Min AllGather Latency\n 1.33e-06\n Second\n \n \n Min AllGatherV Latency\n 1.4299999999999999e-06\n Second\n \n \n Min AllReduce Latency\n 1.37e-06\n Second\n \n \n Min AllToAll Latency\n 1.32e-06\n Second\n \n \n Min AllToAllV Latency\n 1.59e-06\n Second\n \n \n Min Barrier Latency\n 1.2499999999999999e-06\n Second\n \n \n Min Broadcast Latency\n 9.9e-07\n Second\n \n \n Min Gather Latency\n 1.06e-06\n Second\n \n \n Min GatherV Latency\n 1.79e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 6.5e-07\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 5.91e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 1.92e-05\n Second\n \n \n Min Reduce Latency\n 1.16e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.29e-06\n Second\n \n \n Min Scatter Latency\n 1.0299999999999999e-06\n Second\n \n \n Min ScatterV Latency\n 1.1699999999999998e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 10.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,10,2841532,0,';cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;cpn-u22-36;',NULL,NULL),(3808388,'2020-04-27 03:32:01','2020-04-27 03:32:08','UBHPC_32core','UBHPC_32core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAHWKpl4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHWKpl4CA0suyNMtNTLSNTZXSB5lUp/JBQB0j9QLYQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 404.35791015625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 168000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 24900\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 152.587890625\n MByte\n \n \n Global Arrays \'Put\' Calls\n 17700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 11.5\n Second\n \n \n Wall Clock Time\n 21.9\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,21.9,2841539,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;',NULL,NULL),(3808385,'2020-04-27 03:37:30','2020-04-27 03:37:36','UBHPC_32core','UBHPC_32core','gamess','gamess.4',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2841527,0,';cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-28;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;cpn-u22-32;',NULL,NULL),(3808390,'2020-04-27 03:45:29','2020-04-27 03:45:35','UBHPC_32core','UBHPC_32core','gamess','gamess.2',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2841545,0,';cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;',NULL,NULL),(3808387,'2020-04-27 03:59:19','2020-04-27 03:59:25','UBHPC_32core','UBHPC_32core','enzo','enzo.2',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIANqQpl4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIANqQpl4CA0suyNMtNTLSNTJUSB5l0o5pbDrKpAWTCwDQytGpwQIAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 6.7925987\n Second\n \n \n All Grid Level 00 Calculation Time\n 25.80030439999999\n Second\n \n \n All Grid Level 01 Calculation Time\n 49.341343859999995\n Second\n \n \n All Grid Level 02 Calculation Time\n 23.255278260999997\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 19.821424759999996\n Second\n \n \n Communication Transpose Time\n 1.3108048140000006\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.032730958\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 23.9908941\n Second\n \n \n Hydro Equations Solving Time\n 32.39944251\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 16.30014354996\n Second\n \n \n Radiative Transfer Calculation Time\n 68.5783033761\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 161\n \n \n Total Time Spent in Cycles\n 211.61593770000002\n Second\n \n \n Wall Clock Time\n 212.104010\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,212.104,2841533,0,';cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-21;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;cpn-u22-35;',NULL,NULL),(3808389,'2020-04-27 04:02:56','2020-04-27 04:03:03','UBHPC_32core','UBHPC_32core','graph500','graph500.4',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIALSRpl4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIALSRpl4CA0suyNMtNTLSNTZXSB5l0pBpMcqkHdNY13CUSVum5SiTFkwuAGXynPSBBQAA\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 8.86737e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 2.99557e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 8.90074e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 367.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,367,2841540,0,';cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-37;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-18;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;cpn-u23-19;',NULL,NULL),(3808391,'2020-04-27 04:20:58','2020-04-27 04:21:05','UBHPC_32core','UBHPC_32core','enzo','enzo.1',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAO6Vpl4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAO6Vpl4CA0suyNMtNTLSNbZQSB5lUp/JBQBLLbZsYQEAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 10.132358100000001\n Second\n \n \n All Grid Level 00 Calculation Time\n 43.50110840000003\n Second\n \n \n All Grid Level 01 Calculation Time\n 92.14635445900001\n Second\n \n \n All Grid Level 02 Calculation Time\n 37.036090772\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 32.69349494\n Second\n \n \n Communication Transpose Time\n 1.247474747\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.4665524399999996\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 31.304501529999996\n Second\n \n \n Hydro Equations Solving Time\n 62.34450739999998\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 34.12095162609\n Second\n \n \n Radiative Transfer Calculation Time\n 72.746326877\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 161\n \n \n Total Time Spent in Cycles\n 304.07573289999993\n Second\n \n \n Wall Clock Time\n 304.804340\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,304.804,2841548,0,';cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;cpn-u22-38;',NULL,NULL),(3808403,'2020-04-27 11:12:17','2020-04-27 11:12:24','UBHPC_8core','UBHPC_8core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAFX2pl4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAFT2pl4CA0suyNNNMTDXNTTVNTBSSKYfz5zOPAtdA0M684zowOMCAEShBs/BAQAA\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 310.785156\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.6708688336315804e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 107.698547\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',310.785,0,107.699,2842312,0,';cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;',NULL,NULL),(3808406,'2020-04-27 11:22:18','2020-04-27 11:22:25','UBHPC_8core','UBHPC_8core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAK34pl4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 16\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAK34pl4CA0suyNNNMTDXNTTXNTBSSKYfz0LXwJAOPC4AiU8JVeEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 311.589844\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.3503112467423742e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 185.479645\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',311.59,0,185.48,2842314,0,';cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;',NULL,NULL),(3808412,'2020-04-27 11:52:18','2020-04-27 11:52:24','UBHPC_8core','UBHPC_8core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIALX/pl4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIALX/pl4CA0suyNNNMTDXNTTXNTBSSKYfz0LXwJCOPCMDZNvpwDOlD48LAD0DXQXBAQAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 562.6678466796875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 200000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 911.712646484375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 27600\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 151.63421630859375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 18900\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 47.3\n Second\n \n \n Wall Clock Time\n 90.6\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,90.6,2842336,0,';cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;',NULL,NULL),(3808415,'2020-04-27 12:22:19','2020-04-27 12:22:27','UBHPC_8core','UBHPC_8core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAL8Gp14CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 8\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAL8Gp14CA0suyNNNMTDXNbTUNTBSSKY5jwsAqe87WHEAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 324.503906\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 7.142397988700727e-10\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 326.198151\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',324.504,0,326.198,2842397,0,';cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;',NULL,NULL),(3808417,'2020-04-27 12:22:19','2020-04-27 12:22:27','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAL8Gp14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAL8Gp14CA0suyNNNMbDUNTDRNTBUSKYrz4iePFMU2+nCM6Inz4zOPHMU39KeZ0F/nhEdeFwAV7it4IEDAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 338.55438232421875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 102000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 644.683837890625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18000\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 97.2747802734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 43.9\n Second\n \n \n Wall Clock Time\n 96.2\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,96.2,2842396,0,';cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-01;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-04-02;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-05-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-02;cpn-d09-08-02;cpn-d09-08-02;cpn-d09-08-02;cpn-d09-08-02;cpn-d09-08-02;cpn-d09-08-02;cpn-d09-08-02;',NULL,NULL),(3808418,'2020-04-27 12:22:20','2020-04-27 12:22:29','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMEGp14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMEGp14CA0suyNNNMTDXNbLUNTBUSKYrz4iOPGMDZNvpwzOiJ88QxXba84xRbKc9zwTFdrrwjOjA4wIAlD5Q5oEDAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 336.64703369140625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 112000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 650.4058837890625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18000\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 98.22845458984375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 39.0\n Second\n \n \n Wall Clock Time\n 88.9\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,88.9,2842394,0,';cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-01;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-30-02;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-31-01;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-33-02;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-01;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;cpn-d07-34-02;',NULL,NULL),(3808414,'2020-04-27 12:22:20','2020-04-27 12:22:29','UBHPC_8core','UBHPC_8core','namd','namd.8',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMEGp14CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 8\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMEGp14CA0suyNNNMTDXNTbVNTBSSKYfz0zXwJCePHM68yzozLOkP8+IjjwTA2Tb6cMzogOPCwA+l66AgQMAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 325.757812\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 4.922059192683852e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 73.541420\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',325.758,0,73.5414,2842395,0,';cpn-d07-35-02;cpn-d07-35-02;cpn-d07-35-02;cpn-d07-35-02;cpn-d07-35-02;cpn-d07-35-02;cpn-d07-35-02;cpn-d07-35-02;cpn-d07-36-01;cpn-d07-36-01;cpn-d07-36-01;cpn-d07-36-01;cpn-d07-36-01;cpn-d07-36-01;cpn-d07-36-01;cpn-d07-36-01;cpn-d07-37-01;cpn-d07-37-01;cpn-d07-37-01;cpn-d07-37-01;cpn-d07-37-01;cpn-d07-37-01;cpn-d07-37-01;cpn-d07-37-01;cpn-d07-38-01;cpn-d07-38-01;cpn-d07-38-01;cpn-d07-38-01;cpn-d07-38-01;cpn-d07-38-01;cpn-d07-38-01;cpn-d07-38-01;cpn-d07-39-01;cpn-d07-39-01;cpn-d07-39-01;cpn-d07-39-01;cpn-d07-39-01;cpn-d07-39-01;cpn-d07-39-01;cpn-d07-39-01;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-02;cpn-d07-40-02;cpn-d07-40-02;cpn-d07-40-02;cpn-d07-40-02;cpn-d07-40-02;cpn-d07-40-02;cpn-d07-40-02;',NULL,NULL),(3808416,'2020-04-27 12:22:27','2020-04-27 12:22:33','UBHPC_8core','UBHPC_8core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAMYGp14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAMYGp14CA0suyNNNMTDXNTLQNTBSSKY5jwsA79ttSXEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 1859.6649169921875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 765000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 2622.6043701171875\n MByte\n \n \n Global Arrays \'Get\' Calls\n 93600\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 456.80999755859375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 62400\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 106.0\n Second\n \n \n Wall Clock Time\n 111.3\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,111.3,2842398,0,';cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;',NULL,NULL),(3808429,'2020-04-27 13:12:18','2020-04-27 13:12:26','UBHPC_8core','UBHPC_8core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAHYSp14CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHUSp14CA0suyNNNMTDXNbbUNTBSSKYbz8RA18CQDjwuAIE56aXhAAAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 398000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 1478.1951904296875\n MByte\n \n \n Global Arrays \'Get\' Calls\n 48700\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 242.2332763671875\n MByte\n \n \n Global Arrays \'Put\' Calls\n 32200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 70.4\n Second\n \n \n Wall Clock Time\n 107.5\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,107.5,2842447,0,';cpn-d07-39-02;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-01;',NULL,NULL),(3808465,'2020-04-29 16:27:34','2020-04-29 16:27:43','UBHPC_32core','UBHPC_32core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIADrjqV4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIADrjqV4CA0suyNMtNTLVNTRXSB5l0o5pZDLKpAWTCwBmMBFgwQIAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 628.636719\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.1833689330154016e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 42.986523\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',628.637,0,42.9865,2850235,0,';cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-17;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;cpn-u25-24;',NULL,NULL),(3808467,'2020-04-29 16:27:44','2020-04-29 16:27:51','UBHPC_32core','UBHPC_32core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAETjqV4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAETjqV4CA0suyNMtNTLVNbZQSB5lUp/JBQDzQ8wIYQEAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 575.660156\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 6.099085747046518e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 57.724354\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',575.66,0,57.7244,2850234,0,';cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;cpn-u25-38;',NULL,NULL),(3808469,'2020-05-01 10:15:54','2020-05-01 10:16:00','UBHPC_32core','UBHPC_32core','hpcc','hpcc.2',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAB0vrF4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 28284\n \n \n Input:MPI Ranks\n 64\n \n \n Input:MPIRandom Problem Size\n 512.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 14142\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 2100.0\n MHz\n \n \n RunEnv:Nodes\n H4sIAB0vrF4CA0suyNMtNTLSNbRQSB5l0o5pbDzKpAWTCwCS+/zFwQIAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48609.9\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4849.36704\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5521.36704\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4418.16064\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4922.7264\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 44822.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 342.457\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1841050.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 8.1941\n Second\n \n \n MPI Random Access\n 33.463899999999995\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 14235.136\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 153.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,153,2850502,0,';cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3808497,'2020-05-01 10:18:18','2020-05-01 10:18:26','UBHPC_8core','UBHPC_8core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAK8vrF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAK8vrF4CA0suyNNNMbDUNTDTNTBSSKYfz1zXwJDOPCN68ixQbKcZjwsA2S5IPcEBAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 310.656250\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.7481813909645295e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 106.360298\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',310.656,0,106.36,2851345,0,';cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-01;',NULL,NULL),(3808470,'2020-05-01 10:25:20','2020-05-01 10:25:28','UBHPC_32core','UBHPC_32core','hpcc','hpcc.1',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAFUxrF4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 8\n \n \n Input:High Performance LINPACK Grid Rows\n 4\n \n \n Input:High Performance LINPACK Problem Size\n 20000\n \n \n Input:MPI Ranks\n 32\n \n \n Input:MPIRandom Problem Size\n 256.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 10000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 2100.0\n MHz\n \n \n RunEnv:Nodes\n H4sIAFUxrF4CA0suyNMtNTLSNbRQSB5lUp/JBQDar+pwYQEAAA==\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 47893.2\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4652.81024\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5376.512\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4248.10496\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4765.2864\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 52426.200000000004\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 375.484\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 1009300.0000000001\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 5.28481\n Second\n \n \n MPI Random Access\n 11.6145\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 10242.048\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 141.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,141,2850505,0,';cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;',NULL,NULL),(3808477,'2020-05-01 10:25:22','2020-05-01 10:25:28','UBHPC_32core','UBHPC_32core','imb','imb.4',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAFUxrF4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAFUxrF4CA0suyNMtNTLSNTRXSB5l0pBpMcqkJdPIZJRJU6blKJMWTC4AxhoReoEFAAA=\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 18220.33\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1804.99\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3492.04\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 10629.08\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11146.29\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3423.99\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3870.33\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12115.83\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11602.05\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11269.1\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11544.94\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 18970.38\n MByte per Second\n \n \n Min AllGather Latency\n 2.5899999999999998e-06\n Second\n \n \n Min AllGatherV Latency\n 2.7e-06\n Second\n \n \n Min AllReduce Latency\n 2.6899999999999997e-06\n Second\n \n \n Min AllToAll Latency\n 2.2799999999999998e-06\n Second\n \n \n Min AllToAllV Latency\n 2.2999999999999996e-06\n Second\n \n \n Min Barrier Latency\n 2.5099999999999997e-06\n Second\n \n \n Min Broadcast Latency\n 1.99e-06\n Second\n \n \n Min Gather Latency\n 6.800000000000001e-07\n Second\n \n \n Min GatherV Latency\n 2.75e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 1.81e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 8.289999999999999e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 2.8719999999999996e-05\n Second\n \n \n Min Reduce Latency\n 1.78e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.87e-06\n Second\n \n \n Min Scatter Latency\n 1.5599999999999999e-06\n Second\n \n \n Min ScatterV Latency\n 1.57e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 13.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,13,2850558,0,';cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;',NULL,NULL),(3808473,'2020-05-01 10:25:53','2020-05-01 10:26:01','UBHPC_32core','UBHPC_32core','graph500','graph500.2',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAHYxrF4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAHYxrF4CA0suyNMtNTLSNbRQSB5l0o5pZDnKpAWTCwDvBwbVwQIAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 4.67548e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 1.26227e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 4.70343e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 369.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,369,2850549,0,';cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;',NULL,NULL),(3808507,'2020-05-01 10:28:24','2020-05-01 10:28:52','UBHPC_8core','UBHPC_8core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIABMyrF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIABMyrF4CA0suyNNNMbDUNTDTNTBSSKYfz1zXwJDOPCN68ixQbKcZjwsA2S5IPcEBAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 572.20458984375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 206000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 936.5081787109375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 27800\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 150.6805419921875\n MByte\n \n \n Global Arrays \'Put\' Calls\n 18800\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 48.4\n Second\n \n \n Wall Clock Time\n 89.9\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,89.9,2851751,0,';cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-06-02;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-01;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-07-02;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-01;cpn-d09-08-01;',NULL,NULL),(3808511,'2020-05-01 10:28:24','2020-05-01 10:28:53','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIABMyrF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIABMyrF4CA0suyNNNMTDXNTTVNTBUSKYrz4iePDM688xRfEsXnhE9eRYottOFZ0RPniWK7TTjcQEA7xafdIEDAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 329.01763916015625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 91900\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 671.38671875\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18100\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 98.22845458984375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 39.6\n Second\n \n \n Wall Clock Time\n 87.9\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,87.9,2852084,0,';cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-01;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-15-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-17-02;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-01;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-18-02;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;cpn-d07-19-01;',NULL,NULL),(3808509,'2020-05-01 10:28:33','2020-05-01 10:28:58','UBHPC_8core','UBHPC_8core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIACIyrF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIACIyrF4CA0suyNNNMbDUNTDVNTBUSKY5jwsAwn0cq3EAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 1888.275146484375\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 780000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 2613.067626953125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 93500\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 456.80999755859375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 62500\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 106.4\n Second\n \n \n Wall Clock Time\n 111.3\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,111.3,2852086,0,';cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;cpn-d09-05-01;',NULL,NULL),(3808510,'2020-05-01 10:28:42','2020-05-01 10:29:02','UBHPC_8core','UBHPC_8core','nwchem','nwchem.8',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIACgyrF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIACgyrF4CA0suyNNNMTDXNbTUNTBSSKYbz8hA18CQzjwjevJM6MwzRfEtXXhG9OSZodhOF54RHXhcALvAWlmBAwAA\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 325.20294189453125\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 88600\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 658.9889526367188\n MByte\n \n \n Global Arrays \'Get\' Calls\n 18100\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 97.2747802734375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 12700\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 39.7\n Second\n \n \n Wall Clock Time\n 88.2\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,88.2,2852085,0,';cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-19-02;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-01;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-20-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-24-02;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-01;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-25-02;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-01;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;cpn-d07-26-02;',NULL,NULL),(3808512,'2020-05-01 10:28:51','2020-05-01 10:29:03','UBHPC_8core','UBHPC_8core','namd','namd.8',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIACoyrF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 8\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIACoyrF4CA0suyNNNMTDXNTbVNTBSSKYfz0zXwJDOPCN68sxRbKc9z4LOPEv684zoyDMxQLaddjwuAG4A4Q6BAwAA\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 325.574219\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 4.871703683495156e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 71.874130\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',325.574,0,71.8741,2852083,0,';cpn-d07-35-02;cpn-d07-35-02;cpn-d07-35-02;cpn-d07-35-02;cpn-d07-35-02;cpn-d07-35-02;cpn-d07-35-02;cpn-d07-35-02;cpn-d07-36-01;cpn-d07-36-01;cpn-d07-36-01;cpn-d07-36-01;cpn-d07-36-01;cpn-d07-36-01;cpn-d07-36-01;cpn-d07-36-01;cpn-d07-36-02;cpn-d07-36-02;cpn-d07-36-02;cpn-d07-36-02;cpn-d07-36-02;cpn-d07-36-02;cpn-d07-36-02;cpn-d07-36-02;cpn-d07-37-01;cpn-d07-37-01;cpn-d07-37-01;cpn-d07-37-01;cpn-d07-37-01;cpn-d07-37-01;cpn-d07-37-01;cpn-d07-37-01;cpn-d07-38-01;cpn-d07-38-01;cpn-d07-38-01;cpn-d07-38-01;cpn-d07-38-01;cpn-d07-38-01;cpn-d07-38-01;cpn-d07-38-01;cpn-d07-39-01;cpn-d07-39-01;cpn-d07-39-01;cpn-d07-39-01;cpn-d07-39-01;cpn-d07-39-01;cpn-d07-39-01;cpn-d07-39-01;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-39-02;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-01;cpn-d07-40-01;',NULL,NULL),(3808499,'2020-05-01 10:28:51','2020-05-01 10:29:03','UBHPC_8core','UBHPC_8core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIACwyrF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 16\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIACwyrF4CA0suyNNNMTDXNbLUNTBSSKYbz9hA18CQDjwuAC1wl+3hAAAA\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 311.546875\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.3924299155212773e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 184.708725\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',311.547,0,184.709,2851430,0,';cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-29-02;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;cpn-d07-30-01;',NULL,NULL),(3808478,'2020-05-01 10:30:38','2020-05-01 10:30:45','UBHPC_32core','UBHPC_32core','graph500','graph500.1',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAJIyrF4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAJIyrF4CA0suyNMtNTLSNTZWSB5lUp/JBQDWaRNqYQEAAA==\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 6.62044e+09\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 2.04225e+08\n Traversed Edges Per Second\n \n \n Median TEPS\n 7.35824e+09\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 339.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,339,2850560,0,';cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3808471,'2020-05-01 10:30:41','2020-05-01 10:30:48','UBHPC_32core','UBHPC_32core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAJUyrF4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAJUyrF4CA0suyNMtNTLSNbRQSB5l0o5pbDzKpAWTCwCS+/zFwQIAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 297.54638671875\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 86100\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 579\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 579\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 646.5911865234375\n MByte\n \n \n Global Arrays \'Get\' Calls\n 15300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 94.03228759765625\n MByte\n \n \n Global Arrays \'Put\' Calls\n 11200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 17.3\n Second\n \n \n Wall Clock Time\n 40.9\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,40.9,2850539,0,';cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3808466,'2020-05-01 10:34:33','2020-05-01 10:34:39','UBHPC_32core','UBHPC_32core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAHwzrF4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 128\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAHwzrF4CA0suyNMtNTLSNTRXSB5l0pBpMcqkJdPIcpRJS6ax8SiTFkwuABUUPrKBBQAA\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 626.417969\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.178188923038051e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 34.218071\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',626.418,0,34.2181,2850236,0,';cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3808480,'2020-05-01 10:34:46','2020-05-01 10:34:55','UBHPC_32core','UBHPC_32core','imb','imb.2',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAIwzrF4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAIszrF4CA0suyNMtNTLSNTRXSB5l0o5pbDzKpAWTCwBXaItCwQIAAA==\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 19440.49\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1890.16\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3331.73\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 10389.29\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11127.96\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3464.64\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 4145.39\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12171.15\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11535.1\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11302.4\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11579.9\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 22629.52\n MByte per Second\n \n \n Min AllGather Latency\n 1.33e-06\n Second\n \n \n Min AllGatherV Latency\n 1.3899999999999998e-06\n Second\n \n \n Min AllReduce Latency\n 1.37e-06\n Second\n \n \n Min AllToAll Latency\n 1.31e-06\n Second\n \n \n Min AllToAllV Latency\n 1.57e-06\n Second\n \n \n Min Barrier Latency\n 1.24e-06\n Second\n \n \n Min Broadcast Latency\n 9.9e-07\n Second\n \n \n Min Gather Latency\n 1.06e-06\n Second\n \n \n Min GatherV Latency\n 1.81e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 6.800000000000001e-07\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 5.99e-06\n Second\n \n \n Min MPI-2 Window Creation Latency\n 1.9339999999999998e-05\n Second\n \n \n Min Reduce Latency\n 1.07e-06\n Second\n \n \n Min ReduceScatter Latency\n 1.29e-06\n Second\n \n \n Min Scatter Latency\n 9.8e-07\n Second\n \n \n Min ScatterV Latency\n 1.16e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 11.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,11,2850566,0,';cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3808472,'2020-05-01 10:34:55','2020-05-01 10:35:02','UBHPC_32core','UBHPC_32core','gamess','gamess.1',1,NULL,NULL,'\n Gamess\n \n Gamess\n \n \n App:ExeBinSignature\n H4sIAJIzrF4CA7WRTY7bMAyF9zlFTmCR1H+X7SxmM0A3XQcSSaVuncSwPcAcvzKShS/QhSCB0ke+p/fx5r+da2zRNiUH6gVbRedURJBD0QzKZzMvjz/K22qYl3UrrZmr3nUpkynz/FcX8+v7+88f5lpuuq6vbQAcvk4f+wDJmIP6lkgqVW0CpNV7jim6GMmdzec29l5cRG8jm/G+6WQwDdbw4zaPky7rpdzlMo11Kcuo64Vgvx6IyEzj/fPL9GdPLrheqfvqpWF9DEhPFdCCtxmZSNQJ+thtltT9pX7EXP6fivZYtqMSnylJbNl7J6JQna+cYmHIPqcicN65Z4cX+OIiCXEBWwAKO4jexWCTtTU1YKwHbt5+L1pkh+EJU4SerncWtLICUnTassshIlHlI3zbsfDKLjZ2PTgSFzyWAmyD+By7VIJU4gHjA8apEaONqorF+YSVoWqswXYHAewBuzJf1oPLWqtL6KL34Kh/UUzYWLGilNCk4gGVaefodPoHaVIrBsgCAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 02 AUG 2018 (R2)\n \n \n RunEnv:Nodes\n H4sIAJIzrF4CA0suyNMtNTLSNTZWSB5lUp/JBQDWaRNqYQEAAA==\n \n \n app\n gamess\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Attempts to Launch\n 1\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Time Spent in MP2 Energy Calculation\n 16.94\n Second\n \n \n Time Spent in Restricted Hartree-Fock Calculation\n 22.34\n Second\n \n \n User Time\n 40.221\n Second\n \n \n Wall Clock Time\n 41.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,41,2850541,0,';cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3808476,'2020-05-01 10:37:11','2020-05-01 10:37:19','UBHPC_32core','UBHPC_32core','nwchem','nwchem.4',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIABs0rF4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIABs0rF4CA0suyNMtNTLSNTRXSB5l0pBpMcqkJdPIZJRJU6blKJMWTC4AxhoReoEFAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 237.46490478515625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 47700\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 497.8179931640625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 13300\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 61.03515625\n MByte\n \n \n Global Arrays \'Put\' Calls\n 9003\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 25.3\n Second\n \n \n Wall Clock Time\n 60.5\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,60.5,2850557,0,';cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;',NULL,NULL),(3808481,'2020-05-01 10:38:03','2020-05-01 10:38:16','UBHPC_32core','UBHPC_32core','enzo','enzo.2',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAFM0rF4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAFI0rF4CA0suyNMtNTLSNTJTSB5l0o5pbDzKpAWTCwALz3rawQIAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 9.1041594\n Second\n \n \n All Grid Level 00 Calculation Time\n 25.441894499999997\n Second\n \n \n All Grid Level 01 Calculation Time\n 48.574152518\n Second\n \n \n All Grid Level 02 Calculation Time\n 23.464631667000003\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 19.184226779999996\n Second\n \n \n Communication Transpose Time\n 1.1303226059999998\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 1.862012395999999\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 23.977312020000003\n Second\n \n \n Hydro Equations Solving Time\n 32.109342510000005\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 16.15060942473\n Second\n \n \n Radiative Transfer Calculation Time\n 48.819251226000006\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 192.80594620000002\n Second\n \n \n Wall Clock Time\n 193.451878\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,193.452,2850567,0,';cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3808475,'2020-05-01 10:38:06','2020-05-01 10:38:18','UBHPC_32core','UBHPC_32core','hpcc','hpcc.4',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAFc0rF4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 8\n \n \n Input:High Performance LINPACK Problem Size\n 40000\n \n \n Input:MPI Ranks\n 128\n \n \n Input:MPIRandom Problem Size\n 1024.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 20000\n \n \n Input:STREAM Array Size\n 4166666\n MWord\n \n \n RunEnv:CPU Speed\n 1469.384\n MHz\n \n \n RunEnv:Nodes\n H4sIAFc0rF4CA0suyNMtNTLSNTRXSB5l0pBpMcqkJdPIZJRJU6blKJMWTC4AxhoReoEFAAA=\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 48736.1\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4768.47104\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5446.6048\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4337.8688\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4876.41088\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 107144.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 484.639\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 3646060.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 11.7028\n Second\n \n \n MPI Random Access\n 60.0261\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 25015.296\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 179.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,179,2850556,0,';cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;',NULL,NULL),(3808482,'2020-05-01 10:38:33','2020-05-01 10:38:47','UBHPC_32core','UBHPC_32core','nwchem','nwchem.1',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8.1\n \n \n App:ExeBinSignature\n H4sIAHQ0rF4CA7WUy3LbMAxF9/mK/EAlAgRfXXfTmaa7znTnAUAwUSPbquxM+/mlY7fxZF1v9CB1ycN7AT18Ch/vUWoGBQJrwll9jiQcmTVBxX6/H5d1/8P0eBhV18ORWxsfbWcrzyMvy7Ot4+6XPtn2QxzyAKNMu/HL56/fvke6TNw9vO4DHKEFcbVYhEhaJAcHWSSlSFjvx5fj1JdUrraddJx2R5tHyIMfdb9dptnWw4Z3dTNPsvI62WGD7jQ9IOI4T7uX3+P2ee5PctZG6p/uTu99eHNQnnlhfd5M8xJpOOzPWE1TQDDtWLl74MQhucBeYwPqJtwY63XoHVKuBRwjl6Ih5ILYCcll1xOywFVvjKT71d7sicUjaSs11uRVKyRLkB21mrDlduvU7OeL7Y4Tz29ErjkGn1KhXjkItSUMPmHOyTcv5cZEMrMezrH1xd4lFxJWVHaenWMllwKl6LP3kptTkPvTKr0v+nU5Pq3GtUsHd2mQ5EKFQN6ZqDnARNYKlZgAUfRavD3J4lnmWgy+gCJWo65PRMbZmeb+CIX/ix/L9NeLV19OCMvU9uvxBAJ4SaZlKT4YOdEaVKC3EkfB3Ckoid6O5F8MA51RegeVaKFlrIJirTo0CUFTTtSLhm6Hcm2IiFAGSiE4wtBrIUNTA4HKsVWBq0TrqcCHiy4UzDW10iW19l8SBdGcWF0JJXN1V7pLApdTp6bUj4yVYgBmpz7WUFKXocucrnR6VUGaG2rvKDMDppBB1Iklib4Xc3T+Svaoujmcd7z7Ayr7W8U+BgAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAHM0rF4CA0suyNMtNTLSNTZWSB5lUp/JBQDWaRNqYQEAAA==\n \n \n app\n nwchem\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 406.2652587890625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 165000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 963.2110595703125\n MByte\n \n \n Global Arrays \'Get\' Calls\n 24900\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 152.587890625\n MByte\n \n \n Global Arrays \'Put\' Calls\n 17800\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 11.2\n Second\n \n \n Wall Clock Time\n 21.9\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,21.9,2850568,0,';cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3808464,'2020-05-01 10:40:44','2020-05-01 10:40:52','UBHPC_32core','UBHPC_32core','enzo','enzo.4',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAPA0rF4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAO80rF4CA0suyNMtNTLSNTRXSB5l0o5pbDzKpB3TRNfYYJRJO6aprrHhKJMWTC4AluRYxoEFAAA=\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 5.9018109\n Second\n \n \n All Grid Level 00 Calculation Time\n 15.928562280000008\n Second\n \n \n All Grid Level 01 Calculation Time\n 30.763369396999998\n Second\n \n \n All Grid Level 02 Calculation Time\n 19.292833552000005\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 12.143186262\n Second\n \n \n Communication Transpose Time\n 1.6279459599999992\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.0814942579999998\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 18.971846929999998\n Second\n \n \n Hydro Equations Solving Time\n 15.767672889999993\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 9.456293423930001\n Second\n \n \n Radiative Transfer Calculation Time\n 40.673951096479996\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 143.9932036\n Second\n \n \n Wall Clock Time\n 144.492095\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,144.492,2844229,0,';cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u24-30;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;cpn-u25-31;',NULL,NULL),(3808479,'2020-05-01 10:43:54','2020-05-01 10:44:00','UBHPC_32core','UBHPC_32core','gamess','gamess.4',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2850562,0,';cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;',NULL,NULL),(3808526,'2020-05-01 10:48:09','2020-05-01 10:48:17','UBHPC_8core','UBHPC_8core','nwchem','nwchem.2',1,NULL,NULL,'\n NWChem\n \n NWChem\n \n \n App:Branch\n 6.8\n \n \n App:ExeBinSignature\n H4sIAKw2rF4CA7WUy47bMAxF9/MV+YHaJEW9uu6mQKe7At0FIkV1jDqP5oH286tMjMDoulmZlnGke69Iv37yHzeJgRUhWozgyatr1EQwOtNQauDNeL1M81i0VNtNOu5/65vtlseHMKRRpv345fPXb98DL8svr7edm0ZPaAo1J0YDAWLwxWloyEXjvztP+4vNI6bBjXrYHafZTudt2dftPMmpnCY7bwlunwciGudpf/0z7n7OvZI728/vdV/avr9up/kYeDgfFjkhO2JtuYYanWrF7hkTcKuRWmpPlHO2X1fbX6YyP9SkmhEKlZzV+5SJelYMCdCa+VL1iWr0cLKHDh+pkhZwBaAoQ/Qcg0vOSWqgKJsbdWePl7eTldrRAe4wtOBdRiWqxhV9ZLaSwDT1EnP5LyaO09rAu4nj1A6ny00I0l1JTzMH8y1RFRJrFcjEe40pcozEz1OyViEinJCj98Dke5IJmxoK1hJaFVyFWW+tMCycz5RqbLkjtfZBYS+aYlHIPqdSYcUttpeWbkmy88YgWr0K9gkrQSj17DmKPs/1Y7YGvkuh/vfoHcAOTNQAKbK1zDlEJBJd99HuhoXl3mJT7pdGlYPHUkBdqD7HbpwglbjCdIVpaqTooplhYZ9QFMSiBNebOYBbYT9Ut+d7Zi9/AQRoFr3xBAAA\n \n \n App:Version\n 6.8\n \n \n Input:File\n aump2.nw\n \n \n RunEnv:Nodes\n H4sIAKw2rF4CA0suyNNNMTDXNTTTNTBSSKYfz1zXwJAOPC4ABDrTKOEAAAA=\n \n \n app\n nwchem\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Global Arrays \'Accumulate\' Amount\n 953.67431640625\n MByte\n \n \n Global Arrays \'Accumulate\' Calls\n 392000\n Number of Calls\n \n \n Global Arrays \'Create\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Destroy\' Calls\n 580\n Number of Calls\n \n \n Global Arrays \'Get\' Amount\n 1459.1217041015625\n MByte\n \n \n Global Arrays \'Get\' Calls\n 48600\n Number of Calls\n \n \n Global Arrays \'Put\' Amount\n 243.18695068359375\n MByte\n \n \n Global Arrays \'Put\' Calls\n 32200\n Number of Calls\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n User Time\n 69.2\n Second\n \n \n Wall Clock Time\n 110.4\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,110.4,2852307,0,';cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-16-02;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;cpn-d07-17-01;',NULL,NULL),(3808559,'2020-05-01 10:56:56','2020-05-01 10:57:04','UBHPC_32core','UBHPC_32core','namd','namd.4',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIALw4rF4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 128\n \n \n App:NNodes\n 4\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIALw4rF4CA0suyNMtNTLSNTRXSB5l0pBpMcqkJdPIZJRJU6bZKJMWTC4A+bhzHYEFAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 626.558594\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 2.1610547676109757e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 34.451565\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',626.559,0,34.4516,2858921,0,';cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;',NULL,NULL),(3808561,'2020-05-01 10:57:03','2020-05-01 10:57:11','UBHPC_32core','UBHPC_32core','namd','namd.2',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIAMQ4rF4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 64\n \n \n App:NNodes\n 2\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIAMQ4rF4CA0suyNMtNTLSNTJTSB5l0o5pbDzKpAWTCwALz3rawQIAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 628.636719\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 1.1600457058008087e-08\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 43.372158\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',628.637,0,43.3722,2858922,0,';cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3808485,'2020-05-01 10:57:05','2020-05-01 10:57:13','UBHPC_32core','UBHPC_32core','enzo','enzo.1',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAMU4rF4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAMU4rF4CA0suyNMtNTLSNTZWSB5lUp/JBQDWaRNqYQEAAA==\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 14.047586299999999\n Second\n \n \n All Grid Level 00 Calculation Time\n 43.46943\n Second\n \n \n All Grid Level 01 Calculation Time\n 88.75354070600001\n Second\n \n \n All Grid Level 02 Calculation Time\n 35.015689044\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 31.296634720000004\n Second\n \n \n Communication Transpose Time\n 1.2815995560000002\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 2.51763365\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 30.49334235\n Second\n \n \n Hydro Equations Solving Time\n 60.275241900000005\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 33.06736282992\n Second\n \n \n Radiative Transfer Calculation Time\n 56.5418840809\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 160\n \n \n Total Time Spent in Cycles\n 285.046997\n Second\n \n \n Wall Clock Time\n 285.814850\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,285.815,2850575,0,';cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3808508,'2020-05-01 10:59:01','2020-05-01 10:59:08','UBHPC_8core','UBHPC_8core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIADk5rF4CA1XQuW5bMRAF0N5fod6Q3qxc0sWwixRKEQNpBXI4TARIlqEl3x8+WwheGjbkmeG922f9snLoQQpxxe7sFDkxEQGUzrV3LKvpdt0fpmKl+XFv01s5tun71+3zjjZ593q6nc3X355+vvx4ev24pIftPBc1SgMRaRLHwMoChWpUbZI4uK2mw74Gmc99/ePnetlcThv8xLVWSSjjNQipSkzYzbFiK6G3igvcDrO7L9VIjawAlxHABOKgYSTimjoY1oV7v/4+e2kzhk9MEbShCoNXc0CK4j1LDhHH/22JjzML979CAE45QEdl56Ci3rKXLLGnUe6CXa7NHh8X1lInQ47ujkU0YTWoHmvgEWOMXdhfZrtlRS12kzTiNgmKpYBxaJpj1kyQSlxQW2yEGBFJiJCJoRki524RO+Moy/qCvR3W59Pt6mv+aBjuNQk39eExZ3NVDr1oT6EijcKLpv8n/LMPfwEpVjS2bgIAAA==\n \n \n App:NCores\n 8\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.9\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIADk5rF4CA0suyNNNMTDXNTDRNTBUSKY5jwsATRPpR3EAAAA=\n \n \n app\n namd\n \n \n resource\n UBHPC_8core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 323.453125\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 7.176535599204841e-10\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 324.203247\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',323.453,0,324.203,2852087,0,';cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;cpn-d07-04-01;',NULL,NULL),(3808558,'2020-05-01 11:05:44','2020-05-01 11:05:51','UBHPC_32core','UBHPC_32core','enzo','enzo.4',1,NULL,NULL,'\n Enzo\n \n Enzo\n \n \n App:ExeBinSignature\n H4sIAMw6rF4CA7VUu64cNwzt/RW3N7JDUqIopXRSpDHgJvWFRFH2xvvCzNq48Nebs7sxBi6C3MLFDEYjnaPDx+H7P/n3J4aSuYYaohQuPCiWkhPXnmMPOcvTdJnP/5hel0l1Xq51jOmjnWyuh6leLp9tnv5+99eHPyZ7MV0mO307/9bt67TMelvcXjvffPN+vQ4kWuBMUZJKFWOxZiYAyE2StKfpy3XvzFq7Hfc67U9XO0yYd2E67Nt9meL6vR96nm23nHd8p+5omUh7HjmONiTyGLVjLyH1jKO+hvpynq8bahbqpBVCBagaQdj1hxxCywMUXbWj7tjL9dNsta9guINbazFjFGaIxI50MWrYsNc0esMNuB9WHN1xyAqBquPIStfW0StjoiSVGEV+judTHzzhLu+QL3gLyZ/158qJDzEkwB05BrCmBkhej1FiSYJETbeRHFdcusP8cGLMAbDHQB43dqNEI6lHMFT/I7d6Pl72B5uX53rqz84713lvyzPBur0jIr/s9OVl8mPbItwkXPb68nLT/0gKjMShoBJ1ix6IxGg1g2n2Tyz11wkZj5b4V0kvWJLxyNQbNRsdyBqzSpYoQvHXKdmq4EK5yyjeV70btMhNs1QFN3OuHTb1fMh/NCUkCLkkGMjBQuLI1ovVEmVkT/IGt1y7vn27aQbNgxSDmBnWyBmbQjNpKbhJnHaD/aj6vGyudakaPWPUo/dTraBuTi7r6CHIVTZQ3dyYpWT3QZCaLDVUqNQomUfgVYcYX2Ht43DeO+sIlUUaoYQxsGuQUirkUlHWGQX/n3X5ejz8oK0IAyglcG8E9xeVEMGT5E3qy4KvEHu6HnQzhtyqSROFET0VLGXQiEC4DiM1g23Rvt2T/uY7UkQCkuQFAAA=\n \n \n App:Version\n Branch:stable Revision:1616af64765d+\n \n \n RunEnv:Nodes\n H4sIAMw6rF4CA0suyNMtNTLSNTRXSB5l0pBpMcqkJdPIZJRJU6bZKJMWTC4A+bhzHYEFAAA=\n \n \n app\n enzo\n \n \n resource\n UBHPC_32core\n \n \n \n \n All Data Group Write Time\n 6.1645778\n Second\n \n \n All Grid Level 00 Calculation Time\n 16.885660149999993\n Second\n \n \n All Grid Level 01 Calculation Time\n 31.660727331\n Second\n \n \n All Grid Level 02 Calculation Time\n 18.405176351999998\n Second\n \n \n App kernel executable exists\n 0\n \n \n App kernel input exists\n 1\n \n \n Boundary Conditions Setting Time\n 12.343899578999999\n Second\n \n \n Communication Transpose Time\n 1.4629108009999998\n Second\n \n \n Final Simulation Time\n 26.413138\n Enzo Time Unit\n \n \n Gravitational Potential Field Computing Time\n 1.9231606409999993\n Second\n \n \n Grid Hierarchy Rebuilding Time\n 19.690014889999997\n Second\n \n \n Hydro Equations Solving Time\n 16.20491074\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Poisson Equation Solving Time\n 9.558563731410002\n Second\n \n \n Radiative Transfer Calculation Time\n 65.07695994809\n Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Total Cycles\n 161\n \n \n Total Time Spent in Cycles\n 170.19304050000002\n Second\n \n \n Wall Clock Time\n 170.873628\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,170.874,2857915,0,';cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;',NULL,NULL),(3808483,'2020-05-01 11:09:11','2020-05-01 11:09:17','UBHPC_32core','UBHPC_32core','graph500','graph500.4',1,NULL,NULL,'\n Graph500\n \n Graph500\n \n \n App:ExeBinSignature\n H4sIAJo7rF4CA7WSPY7cMAxG+z3FnGBEStRfyiRFmgXSpDYoitp14plxbG+wx4+cGQSu0qUxLAiPfPyo58/+w0ldIypcXAktIDbvMKRKLpNr4DOdzLzcvqtsqxFZ1o1bMy961YUnw/P8Qxfz7eOXr5+Mvqus5mXh+dUDmMs8WqS/56Gfh0XnaRTetA6yyrDqz188PT3vGjaCr+jJgRZRQBtJW6YcIlpbpJzMNJZA+/dyXm/ncMegBe8yirVVqfORSDmBSuq/mPlk3raxiwpXvYxixuumk8F0dkZuXWnSZR34Woded+Fl1HWwsF+frbW92fXtfZ/kzt3b/1GYx3Zbtl0E7d2kZsxBfUu2Flu0VbBavJeYIsVo6f+ZHC1KKZSQovdA1nuKCZsoFqwcWi14iLFOO/jgfLapxpY7UqtCIV8kRRbIPieucOAeYz+4aKsVBscALASxtwwuOVdSA8Hj2ubtdVGuOwyP5UXsywo+VW45cIycbELEQmADVv1HZPv0hyTGnqDvle91JTUr6KKqIpNPWASKxhJcdw3gDlIv0p/hYZ6egVBfoa0UPDKDuFB9jj0GC4njAZX7M3z6DWsHkqVGAwAA\n \n \n App:Version\n 2.1.4 replicated csc\n \n \n Edge Factor\n 16\n \n \n Input File\n /projects/ccrstaff/general/appker/UBHPC/inputs/graph500/input23\n \n \n Number of Edges\n 134217728\n \n \n Number of Roots to Check\n 64\n \n \n Number of Vertices\n 8388608\n \n \n RunEnv:Nodes\n H4sIAJo7rF4CA0suyNMtNTLSNTRXSB5l0pBpMcqkJdPIZJRJU6bZKJMWTC4A+bhzHYEFAAA=\n \n \n Scale\n 23\n \n \n app\n graph500\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Harmonic Mean TEPS\n 8.77115e+08\n Traversed Edges Per Second\n \n \n Harmonic Standard Deviation TEPS\n 3.38306e+06\n Traversed Edges Per Second\n \n \n Median TEPS\n 8.8007e+08\n Traversed Edges Per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 358.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,358,2850569,0,';cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;',NULL,NULL),(3808484,'2020-05-01 11:21:48','2020-05-01 11:21:54','UBHPC_32core','UBHPC_32core','gamess','gamess.2',0,'ERROR: error caught by parser',NULL,'\n \n Error\n ERROR: error caught by parser\n gamess\n \n \n \n ',0,0,0,2850573,0,';cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;',NULL,NULL),(3808560,'2020-05-01 11:57:11','2020-05-01 11:57:18','UBHPC_32core','UBHPC_32core','namd','namd.1',1,NULL,NULL,'\n NAMD\n \n NAMD\n \n \n App:ExeBinSignature\n H4sIANtGrF4CA7WSu47bMBBF+/0K94s1Z4bD13ZJtkgRBwGC1AI5HG6U+AVJBvz5oWMX+oFtCAHk4T0c3d2be900ipRsLSgCwWLjmhTRoUtRvWDcmPN0+qOyzEZkmpfcmnnXo055b/L5/Fcn8+vz1x9fjF5VZvP90+5toC3agsPP02USNd/G4+X6co1+8PwyiphjPlR62t3SSykckYNzwOQch4hNFAvW7FuX2pj9WDzf1rrfzqftg3OBKkkGmwGyMISOehutLbGBYFlx5+X3pLneYLjDFMBVdGxBiyggBdaWOPmAREXW8OGG+TvWD3uH0QJWttSjsCp5al66aRPZmMsy9qFIrnoYxYzHRfcG49YaOR3O416necjHOvR7pzyNOg8Et+0tEfWwPiXTj925e/x/hfMo1+vNAx+Ph+adTShEVbk/JDBrjqAS+yem/HEi7TQta5OaMHl1LVItVLRVIC3OSYiBQyD+OJO1hUsUa2ip96dWhcKuSAxZIPUS5wqr//nQf5QPPNiYPDR0Vq137LS3PycOLfYhr7h5qfL8vCqDxEaCNqgqZnYRi0DRULztvezXrth3kWFexXZV4T4xqtz7lDOI9dWl0G0JYg4rVO6JT/8AolVNvqoDAAA=\n \n \n App:NCores\n 32\n \n \n App:NNodes\n 1\n \n \n App:Version\n 2.13b1\n \n \n Input:Coordinate File\n apoa1.pdb\n \n \n Input:Number of Angles\n 74136\n \n \n Input:Number of Atoms\n 92224\n \n \n Input:Number of Bonds\n 70660\n \n \n Input:Number of Dihedrals\n 74130\n \n \n Input:Number of Steps\n 1200\n \n \n Input:Structure File\n apoa1.psf\n \n \n Input:Timestep\n 2e-15\n Second per Step\n \n \n RunEnv:Nodes\n H4sIANpGrF4CA0suyNMtNTLSNTRXSB5lUp/JBQDlDYgXYQEAAA==\n \n \n app\n namd\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Memory\n 575.062500\n MByte\n \n \n Molecular Dynamics Simulation Performance\n 6.340148993501348e-09\n Second per Day\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 57.875259\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',575.062,0,57.8753,2858924,0,';cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;',NULL,NULL),(3808474,'2020-05-01 16:40:38','2020-05-01 16:40:45','UBHPC_32core','UBHPC_32core','imb','imb.8',1,NULL,NULL,'\n Intel MPI Benchmarks\n \n Intel MPI Benchmarks\n \n \n App:ExeBinSignature\n H4sIAEmJrF4CA+2STWscMQyG7/kV+we6lmz5K8e0heawkEMLvS2WLKfTzn4wM4H8/HrYUOZcaE85GIzkR3plvYdP/n5ni0chYu+wEYql6LiiK5WJEcDtzHW6/FRZZiMyzUtpzTzrWacymnK9/tLJfHv48vTR6KvKbIYTm8fDw4fD0yPeHdYG0IJ3uVe2Vamij0RaEqikfsVcduZlGXotKVVPg5jhvOhoMO2dkcvpOow6zcdyrsdx4KlMg85HC2t6b60143B+eTX92Y0L1CO8nh5ql2nZz5c92puSmjEH9S3Zypa1VbDK3ktMkWK09O+UbFUwMyWk6D2Q9Z5iwiaKjLWEVhl3K3Oj67iCb5zPNtXYckdqVWDyLCkWgexzKhU23NvYb1y01UoBVwCKEMTeMrjkHKcGgrzhrsuPSUtdYbjBNoLvOyMHyqKANpK2TDlEtJZlC59WLNwwSc0KuqiqWMgnZAHWyMF1KWE11R/sWeQ4b+T2EYX6hmyl4LEUEBeqz7FPaSGVuEFl01F96h8rsfWNcvM5A+SGoQdcaDn6v7Tx5+9f31387uL/4OK735+gqhCOBQAA\n \n \n App:MPI Thread Environment\n \n \n \n App:MPI Version\n 3.1 \n \n \n App:Max Message Size\n 4.0 \n MByte\n \n \n RunEnv:Nodes\n H4sIAEmJrF4CA+3GuQ0AIAwDwJ4pWCAScRDPPOkRDfszhTtfdXmPPcB81lSJXSqz6Cq1Q6V2q8xGqLyGoanUuspo+YTLOmoBCwAA\n \n \n app\n imb\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Max Exchange Bandwidth\n 17529.52\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (aggregate)\n 1821.86\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Get\' Bandwidth (non-aggregate)\n 3446.41\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (aggregate)\n 11111.09\n MByte per Second\n \n \n Max MPI-2 Bidirectional \'Put\' Bandwidth (non-aggregate)\n 11123.03\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (aggregate)\n 3132.01\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Get\' Bandwidth (non-aggregate)\n 3880.4\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (aggregate)\n 12090.85\n MByte per Second\n \n \n Max MPI-2 Unidirectional \'Put\' Bandwidth (non-aggregate)\n 11554.8\n MByte per Second\n \n \n Max PingPing Bandwidth\n 11265.49\n MByte per Second\n \n \n Max PingPong Bandwidth\n 11529.43\n MByte per Second\n \n \n Max SendRecv Bandwidth\n 18117.6\n MByte per Second\n \n \n Min AllGather Latency\n 4.55e-06\n Second\n \n \n Min AllGatherV Latency\n 4.61e-06\n Second\n \n \n Min AllReduce Latency\n 4.53e-06\n Second\n \n \n Min AllToAll Latency\n 4.4e-06\n Second\n \n \n Min AllToAllV Latency\n 4.37e-06\n Second\n \n \n Min Barrier Latency\n 6.019999999999999e-06\n Second\n \n \n Min Broadcast Latency\n 1.78e-06\n Second\n \n \n Min Gather Latency\n 6.3e-07\n Second\n \n \n Min GatherV Latency\n 4.049999999999999e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (aggregate)\n 4.1e-06\n Second\n \n \n Min MPI-2 \'Accumulate\' Latency (non-aggregate)\n 1.384e-05\n Second\n \n \n Min MPI-2 Window Creation Latency\n 5.2369999999999995e-05\n Second\n \n \n Min Reduce Latency\n 4e-06\n Second\n \n \n Min ReduceScatter Latency\n 2.3799999999999997e-06\n Second\n \n \n Min Scatter Latency\n 1.3899999999999998e-06\n Second\n \n \n Min ScatterV Latency\n 1.42e-06\n Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 23.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,23,2850551,0,';cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-20;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;cpn-u23-21;',NULL,NULL),(3808468,'2020-05-01 16:49:14','2020-05-01 16:49:21','UBHPC_32core','UBHPC_32core','hpcc','hpcc.8',1,NULL,NULL,'\n xdmod.benchmark.hpcc\n \n xdmod.benchmark.hpcc\n \n \n App:ExeBinSignature\n H4sIAE6LrF4CA7WSS27cMAyG9znFXKAWSb27bLvoJkA3XQ9EikrcemYM2wFy/MpxFr5ANwQB6tP/8/H8w3+9ZAuBkrOsOTB6ILS+qrLzgRVFLmZeHn9UttWILOtWWjMvetelTKbM819dzO9vP399N/qusprXWeQLDm6gj/TpedfwkSpJAVsAijiI3sVgk7WcGgjyxUwjB7fHeXtdtNRhfQxwwBTBV/TOgrIoIEWnLbscIhKxnOHbjoUDgxa8zShEVV3no3NaEqiknmIuF/O2jb0FKVVvo5jxvulkMA3WyOM2j5Mu67Xc67X/u5Rl1PVKsJcHIupi97d3058d3CH/YWEe22PZdiNIh5OaMQf1LVFlYm0VSNl7iSm6GMn9PydnF8zsErroPTjyfQEJmygy1hJaZTyNsU47+Mn5TKnGljtSq0K/C5YUi0D2OZUKJ+6z7YOT1EjQRlXF4nxCFmCNHGw/hQD2xL2IXNcT2uXE9WlRdcFjKSA2VJ9jVyRIJZ5QOTb+9A9mR7k/ywIAAA==\n \n \n App:Version\n 1.4.2f\n \n \n Input:DGEMM Problem Size\n 2040\n \n \n Input:High Performance LINPACK Grid Cols\n 16\n \n \n Input:High Performance LINPACK Grid Rows\n 16\n \n \n Input:High Performance LINPACK Problem Size\n 56568\n \n \n Input:MPI Ranks\n 256\n \n \n Input:MPIRandom Problem Size\n 2048.0\n MWord\n \n \n Input:OpenMP Threads\n 0\n \n \n Input:PTRANS Problem Size\n 28284\n \n \n Input:STREAM Array Size\n 4166586\n MWord\n \n \n RunEnv:CPU Speed\n 1096.655\n MHz\n \n \n RunEnv:Nodes\n H4sIAE6LrF4CA+3GuQ0AIAwDwJ4pWCASiRHPPOkRDfszhTtfdXmPvQjzWVMldqnMRlepHSq1W2UWUHmFoanUuspo+ZQHCwkBCwAA\n \n \n app\n hpcc\n \n \n resource\n UBHPC_32core\n \n \n \n \n App kernel executable exists\n 1\n \n \n App kernel input exists\n 1\n \n \n Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance\n 49166.1\n MFLOP per Second\n \n \n Average STREAM \'Add\' Memory Bandwidth\n 4862.464\n MByte per Second\n \n \n Average STREAM \'Copy\' Memory Bandwidth\n 5532.43648\n MByte per Second\n \n \n Average STREAM \'Scale\' Memory Bandwidth\n 4417.11616\n MByte per Second\n \n \n Average STREAM \'Triad\' Memory Bandwidth\n 4939.3152\n MByte per Second\n \n \n Fast Fourier Transform (FFTW) Floating-Point Performance\n 140443.0\n MFLOP per Second\n \n \n High Performance LINPACK Efficiency\n 577.133\n Percent\n \n \n High Performance LINPACK Floating-Point Performance\n 6481060.0\n MFLOP per Second\n \n \n High Performance LINPACK Run Time\n 18.6205\n Second\n \n \n MPI Random Access\n 100.39099999999999\n MUpdate per Second\n \n \n Network scratch directory accessible\n 1\n \n \n Network scratch directory exists\n 1\n \n \n Parallel Matrix Transpose (PTRANS)\n 56787.7632\n MByte per Second\n \n \n Task working directory accessible\n 1\n \n \n Task working directory exists\n 1\n \n \n Wall Clock Time\n 188.0\n Second\n \n \n local scratch directory accessible\n 1\n \n \n local scratch directory exists\n 1\n \n \n \n\n',0,0,188,2850497,0,';cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-17;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-18;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-24;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-26;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-29;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u22-33;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-30;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;cpn-u23-31;',NULL,NULL); +/*!40000 ALTER TABLE `akrr_xdmod_instanceinfo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `app_kernels` +-- + +DROP TABLE IF EXISTS `app_kernels`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `app_kernels` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(256) NOT NULL, + `enabled` tinyint(1) NOT NULL DEFAULT '1', + `nodes_list` varchar(255) DEFAULT '1;2;4;8;16', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `app_kernels` +-- + +LOCK TABLES `app_kernels` WRITE; +/*!40000 ALTER TABLE `app_kernels` DISABLE KEYS */; +INSERT INTO `app_kernels` VALUES (2,'xdmod.appker.densela.blas',0,NULL),(7,'imb',1,'2;4;8;16'),(12,'omb',0,NULL),(22,'gamess',1,'1;2;4;8'),(23,'namd',1,'1;2;4;8'),(24,'nwchem',1,'1;2;4;8'),(25,'hpcc',1,'1;2;4;8;16'),(26,'mpi-tile-io',0,NULL),(27,'ior',1,'1;2;4;8'),(28,'graph500',1,'1;2;4;8'),(29,'enzo',1,'1;2;4;8'),(30,'bundle',1,'1;2;4;8;16'),(31,'xdmod.app.md.namd2',0,'1,2,4,8'),(32,'mdtest',1,'1,2,4,8'),(33,'hpcg',1,'1;2;4;8'),(34,'gromacs_micro',1,'1'); +/*!40000 ALTER TABLE `app_kernels` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `completed_tasks` +-- + +DROP TABLE IF EXISTS `completed_tasks`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `completed_tasks` ( + `task_id` int(11) DEFAULT NULL, + `time_finished` datetime DEFAULT NULL, + `status` text, + `status_info` text, + `time_to_start` datetime DEFAULT NULL, + `datetime_stamp` text, + `time_activated` datetime DEFAULT NULL, + `time_submitted_to_queue` datetime DEFAULT NULL, + `repeat_in` char(20) DEFAULT NULL, + `resource` text, + `app` text, + `resource_param` text, + `app_param` text, + `task_param` text, + `group_id` text, + `fatal_errors_count` int(11) DEFAULT '0', + `fails_to_submit_to_the_queue` int(11) DEFAULT '0', + `parent_task_id` int(11) DEFAULT NULL, + UNIQUE KEY `task_id` (`task_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `completed_tasks` +-- + +LOCK TABLES `completed_tasks` WRITE; +/*!40000 ALTER TABLE `completed_tasks` DISABLE KEYS */; +INSERT INTO `completed_tasks` VALUES (3807152,'2020-04-01 00:41:53','Done','Done','2020-04-01 00:09:30','2020.04.01.00.09.30.698024','2020-04-01 00:09:30','2020-04-01 00:10:38','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':8}','{}','{}','',0,0,3749429),(3807153,'2020-04-01 01:09:57','Done','Done','2020-04-01 00:37:34','2020.04.01.00.37.34.257188','2020-04-01 00:37:34','2020-04-01 00:38:42','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':2}','{}','{}','',0,0,3749427),(3807154,'2020-04-01 01:19:13','Done','Done','2020-04-01 00:46:50','2020.04.01.00.46.50.322930','2020-04-01 00:46:50','2020-04-01 00:47:58','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':1}','{}','{}','',0,0,3749425),(3807155,'2020-04-01 01:23:23','Done','Done','2020-04-01 01:21:01','2020.04.01.01.21.01.435997','2020-04-01 01:21:01','2020-04-01 01:22:09','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':2}','{}','{}','',0,0,3750289),(3807156,'2020-04-01 01:28:04','Done','Done','2020-04-01 01:25:44','2020.04.01.01.25.44.085299','2020-04-01 01:25:44','2020-04-01 01:26:52','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':1}','{}','{}','',0,0,3750281),(3807158,'2020-04-01 02:04:00','Done','Done','2020-04-01 02:01:40','2020.04.01.02.01.40.208766','2020-04-01 02:01:40','2020-04-01 02:02:48','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':8}','{}','{}','',0,0,3749455),(3807157,'2020-04-01 02:19:48','Done','Done','2020-04-01 01:47:26','2020.04.01.01.47.26.861015','2020-04-01 01:47:26','2020-04-01 01:48:33','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':2}','{}','{}','',0,0,3750274),(3807161,'2020-04-01 02:49:03','Done','Done','2020-04-01 02:46:43','2020.04.01.02.46.43.036808','2020-04-01 02:46:43','2020-04-01 02:47:50','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':4}','{}','{}','',0,0,3749454),(3807159,'2020-04-01 02:58:33','Done','Done','2020-04-01 02:26:09','2020.04.01.02.26.09.142730','2020-04-01 02:26:09','2020-04-01 02:27:17','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':4}','{}','{}','',0,0,3749428),(3807160,'2020-04-01 02:59:47','Done','Done','2020-04-01 02:27:24','2020.04.01.02.27.24.298230','2020-04-01 02:27:24','2020-04-01 02:28:31','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':4}','{}','{}','',0,0,3750290),(3807162,'2020-04-01 03:23:48','Done','Done','2020-04-01 02:51:26','2020.04.01.02.51.26.672652','2020-04-01 02:51:26','2020-04-01 02:52:33','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':1}','{}','{}','',0,0,3750273),(3807164,'2020-04-01 03:27:52','Done','Done','2020-04-01 03:25:33','2020.04.01.03.25.33.742910','2020-04-01 03:25:33','2020-04-01 03:26:40','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':2}','{}','{}','',0,0,3749453),(3807166,'2020-04-01 03:32:06','Done','Done','2020-04-01 03:29:47','2020.04.01.03.29.47.709761','2020-04-01 03:29:47','2020-04-01 03:30:54','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':1}','{}','{}','',0,0,3750288),(3807163,'2020-04-01 03:37:37','Done','Done','2020-04-01 03:05:13','2020.04.01.03.05.13.519417','2020-04-01 03:05:13','2020-04-01 03:06:22','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':4}','{}','{}','',0,0,3750286),(3807168,'2020-04-01 03:45:36','Done','Done','2020-04-01 03:43:15','2020.04.01.03.43.15.450446','2020-04-01 03:43:15','2020-04-01 03:44:23','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':2}','{}','{}','',0,0,3750285),(3807165,'2020-04-01 03:59:26','Done','Done','2020-04-01 03:27:02','2020.04.01.03.27.02.834037','2020-04-01 03:27:02','2020-04-01 03:28:09','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':2}','{}','{}','',0,0,3750277),(3807167,'2020-04-01 04:03:05','Done','Done','2020-04-01 03:30:41','2020.04.01.03.30.41.066018','2020-04-01 03:30:41','2020-04-01 03:31:48','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':4}','{}','{}','',0,0,3750275),(3807169,'2020-04-01 04:21:05','Done','Done','2020-04-01 03:48:42','2020.04.01.03.48.42.438575','2020-04-01 03:48:42','2020-04-01 03:49:49','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':1}','{}','{}','',0,0,3750276),(3807196,'2020-04-01 12:22:36','Done','Done','2020-04-01 11:50:00','2020.04.01.11.50.00.712522','2020-04-01 11:50:00','2020-04-01 11:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3542580),(3807192,'2020-04-01 12:22:43','Done','Done','2020-04-01 11:50:00','2020.04.01.11.50.00.723280','2020-04-01 11:50:00','2020-04-01 11:51:17','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',1,0,3105899),(3807185,'2020-04-01 14:22:59','Done','Done','2020-04-01 10:50:00','2020.04.01.10.50.00.433423','2020-04-01 10:50:00','2020-04-01 10:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105854),(3807208,'2020-04-01 14:42:36','Done','Done','2020-04-01 12:40:00','2020.04.01.12.40.00.945496','2020-04-01 12:40:00','2020-04-01 12:41:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105806),(3807181,'2020-04-01 16:43:00','Done','Done','2020-04-01 10:40:00','2020.04.01.10.40.00.164313','2020-04-01 10:40:00','2020-04-01 10:41:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105846),(3807191,'2020-04-01 16:52:58','Done','Done','2020-04-01 11:20:00','2020.04.01.11.20.00.519126','2020-04-01 11:20:00','2020-04-01 11:21:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105879),(3807193,'2020-04-01 17:53:07','Done','Done','2020-04-01 11:50:00','2020.04.01.11.50.00.649293','2020-04-01 11:50:00','2020-04-01 11:51:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3807195,'2020-04-01 17:53:07','Done','Done','2020-04-01 11:50:00','2020.04.01.11.50.00.701244','2020-04-01 11:50:00','2020-04-01 11:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105896),(3807194,'2020-04-01 17:53:11','Done','Done','2020-04-01 11:50:00','2020.04.01.11.50.00.690659','2020-04-01 11:50:00','2020-04-01 11:51:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3807242,'2020-04-02 20:04:11','Done','Done','2020-04-02 16:31:22','2020.04.02.16.31.22.638674','2020-04-02 16:31:22','2020-04-02 16:32:38','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':4}','{}','{}','',0,0,3750278),(3807243,'2020-04-02 22:55:43','Done','Done','2020-04-02 21:53:11','2020.04.02.21.53.11.747489','2020-04-02 21:53:11','2020-04-02 21:54:22','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':1}','{}','{}','',0,0,3749221),(3807244,'2020-04-03 00:56:00','Done','Done','2020-04-02 21:53:11','2020.04.02.21.53.11.393531','2020-04-02 21:53:11','2020-04-02 21:54:22','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':2}','{}','{}','',0,0,3749222),(3807247,'2020-04-03 01:10:04','Done','Done','2020-04-03 00:37:34','2020.04.03.00.37.34.619265','2020-04-03 00:37:34','2020-04-03 00:38:48','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':2}','{}','{}','',0,0,3749427),(3807248,'2020-04-03 01:19:17','Done','Done','2020-04-03 00:46:50','2020.04.03.00.46.50.149730','2020-04-03 00:46:50','2020-04-03 00:47:58','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':1}','{}','{}','',0,0,3749425),(3807245,'2020-04-03 01:26:03','Done','Done','2020-04-02 21:53:11','2020.04.02.21.53.11.736750','2020-04-02 21:53:11','2020-04-02 21:54:22','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':4}','{}','{}','',0,0,3749223),(3807249,'2020-04-03 01:53:27','Done','Done','2020-04-03 01:21:01','2020.04.03.01.21.01.786239','2020-04-03 01:21:01','2020-04-03 01:22:11','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':2}','{}','{}','',0,0,3750289),(3807250,'2020-04-03 01:58:16','Done','Done','2020-04-03 01:25:44','2020.04.03.01.25.44.087323','2020-04-03 01:25:44','2020-04-03 01:27:00','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':1}','{}','{}','',0,0,3750281),(3807251,'2020-04-03 02:19:53','Done','Done','2020-04-03 01:47:26','2020.04.03.01.47.26.217602','2020-04-03 01:47:26','2020-04-03 01:48:36','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':2}','{}','{}','',0,0,3750274),(3807253,'2020-04-03 02:58:41','Done','Done','2020-04-03 02:26:09','2020.04.03.02.26.09.430024','2020-04-03 02:26:09','2020-04-03 02:27:26','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':4}','{}','{}','',0,0,3749428),(3807254,'2020-04-03 02:59:47','Done','Done','2020-04-03 02:27:24','2020.04.03.02.27.24.929642','2020-04-03 02:27:24','2020-04-03 02:28:32','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':4}','{}','{}','',0,0,3750290),(3807255,'2020-04-03 03:19:05','Done','Done','2020-04-03 02:46:43','2020.04.03.02.46.43.014449','2020-04-03 02:46:43','2020-04-03 02:47:50','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':4}','{}','{}','',0,0,3749454),(3807256,'2020-04-03 03:23:49','Done','Done','2020-04-03 02:51:26','2020.04.03.02.51.26.260795','2020-04-03 02:51:26','2020-04-03 02:52:33','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':1}','{}','{}','',0,0,3750273),(3807258,'2020-04-03 03:58:07','Done','Done','2020-04-03 03:25:33','2020.04.03.03.25.33.844439','2020-04-03 03:25:33','2020-04-03 03:26:51','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':2}','{}','{}','',0,0,3749453),(3807259,'2020-04-03 03:59:29','Done','Done','2020-04-03 03:27:02','2020.04.03.03.27.02.432038','2020-04-03 03:27:02','2020-04-03 03:28:14','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':2}','{}','{}','',0,0,3750277),(3807260,'2020-04-03 04:02:11','Done','Done','2020-04-03 03:29:47','2020.04.03.03.29.47.496398','2020-04-03 03:29:47','2020-04-03 03:30:55','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':1}','{}','{}','',0,0,3750288),(3807261,'2020-04-03 04:03:05','Done','Done','2020-04-03 03:30:41','2020.04.03.03.30.41.851443','2020-04-03 03:30:41','2020-04-03 03:31:49','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':4}','{}','{}','',0,0,3750275),(3807257,'2020-04-03 04:07:40','Done','Done','2020-04-03 03:05:13','2020.04.03.03.05.13.304514','2020-04-03 03:05:13','2020-04-03 03:06:22','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':4}','{}','{}','',0,0,3750286),(3807246,'2020-04-03 04:12:21','Done','Done','2020-04-03 00:09:30','2020.04.03.00.09.30.722125','2020-04-03 00:09:30','2020-04-03 00:10:44','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':8}','{}','{}','',0,0,3749429),(3807262,'2020-04-03 04:15:39','Done','Done','2020-04-03 03:43:15','2020.04.03.03.43.15.754531','2020-04-03 03:43:15','2020-04-03 03:44:24','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':2}','{}','{}','',0,0,3750285),(3807263,'2020-04-03 04:21:04','Done','Done','2020-04-03 03:48:42','2020.04.03.03.48.42.786659','2020-04-03 03:48:42','2020-04-03 03:49:49','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':1}','{}','{}','',0,0,3750276),(3807252,'2020-04-03 04:34:22','Done','Done','2020-04-03 02:01:40','2020.04.03.02.01.40.750940','2020-04-03 02:01:40','2020-04-03 02:02:51','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':8}','{}','{}','',0,0,3749455),(3807278,'2020-04-03 19:23:33','Done','Done','2020-04-03 10:50:00','2020.04.03.10.50.00.862375','2020-04-03 10:50:00','2020-04-03 10:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105854),(3807303,'2020-04-03 19:43:09','Done','Done','2020-04-03 12:40:00','2020.04.03.12.40.00.315598','2020-04-03 12:40:00','2020-04-03 12:41:07','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105806),(3807275,'2020-04-03 19:43:19','Done','Done','2020-04-03 10:40:00','2020.04.03.10.40.00.494750','2020-04-03 10:40:00','2020-04-03 10:41:09','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105846),(3807289,'2020-04-03 19:53:25','Done','Done','2020-04-03 11:50:00','2020.04.03.11.50.01.012959','2020-04-03 11:50:01','2020-04-03 11:51:13','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3542580),(3807290,'2020-04-03 19:53:43','Done','Done','2020-04-03 11:50:00','2020.04.03.11.50.01.024208','2020-04-03 11:50:01','2020-04-03 11:51:13','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105899),(3807284,'2020-04-03 19:53:45','Done','Done','2020-04-03 11:20:00','2020.04.03.11.20.00.242084','2020-04-03 11:20:00','2020-04-03 11:21:13','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105879),(3807288,'2020-04-03 20:53:32','Done','Done','2020-04-03 11:50:00','2020.04.03.11.50.01.001954','2020-04-03 11:50:01','2020-04-03 11:51:11','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105896),(3807287,'2020-04-03 20:53:38','Done','Done','2020-04-03 11:50:00','2020.04.03.11.50.00.969684','2020-04-03 11:50:00','2020-04-03 11:51:13','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3807286,'2020-04-03 20:53:55','Done','Done','2020-04-03 11:50:00','2020.04.03.11.50.01.034561','2020-04-03 11:50:01','2020-04-03 11:51:20','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3807337,'2020-04-05 00:55:58','Done','Done','2020-04-04 21:53:11','2020.04.04.21.53.11.722700','2020-04-04 21:53:11','2020-04-04 21:54:20','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':2}','{}','{}','',0,0,3749222),(3807339,'2020-04-05 00:56:01','Done','Done','2020-04-04 21:53:11','2020.04.04.21.53.11.710385','2020-04-04 21:53:11','2020-04-04 21:54:20','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':1}','{}','{}','',0,0,3749221),(3807336,'2020-04-05 01:05:20','Done','Done','2020-04-04 16:31:22','2020.04.04.16.31.22.684668','2020-04-04 16:31:22','2020-04-04 16:32:34','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':4}','{}','{}','',0,0,3750278),(3807341,'2020-04-05 01:09:57','Done','Done','2020-04-05 00:37:34','2020.04.05.00.37.34.031414','2020-04-05 00:37:34','2020-04-05 00:38:42','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':2}','{}','{}','',0,0,3749427),(3807342,'2020-04-05 01:19:16','Done','Done','2020-04-05 00:46:50','2020.04.05.00.46.50.431828','2020-04-05 00:46:50','2020-04-05 00:47:59','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':1}','{}','{}','',0,0,3749425),(3807338,'2020-04-05 01:26:04','Done','Done','2020-04-04 21:53:11','2020.04.04.21.53.11.518166','2020-04-04 21:53:11','2020-04-04 21:54:20','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':4}','{}','{}','',0,0,3749223),(3807340,'2020-04-05 01:42:02','Done','Done','2020-04-05 00:09:30','2020.04.05.00.09.30.060279','2020-04-05 00:09:30','2020-04-05 00:10:40','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':8}','{}','{}','',0,0,3749429),(3807343,'2020-04-05 01:53:26','Done','Done','2020-04-05 01:21:01','2020.04.05.01.21.01.968883','2020-04-05 01:21:01','2020-04-05 01:22:10','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':2}','{}','{}','',0,0,3750289),(3807344,'2020-04-05 01:58:08','Done','Done','2020-04-05 01:25:44','2020.04.05.01.25.44.785121','2020-04-05 01:25:44','2020-04-05 01:26:52','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':1}','{}','{}','',0,0,3750281),(3807345,'2020-04-05 02:19:53','Done','Done','2020-04-05 01:47:26','2020.04.05.01.47.26.045042','2020-04-05 01:47:26','2020-04-05 01:48:36','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':2}','{}','{}','',0,0,3750274),(3807347,'2020-04-05 02:58:34','Done','Done','2020-04-05 02:26:09','2020.04.05.02.26.09.533518','2020-04-05 02:26:09','2020-04-05 02:27:18','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':4}','{}','{}','',0,0,3749428),(3807348,'2020-04-05 02:59:47','Done','Done','2020-04-05 02:27:24','2020.04.05.02.27.24.060591','2020-04-05 02:27:24','2020-04-05 02:28:31','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':4}','{}','{}','',0,0,3750290),(3807346,'2020-04-05 03:04:08','Done','Done','2020-04-05 02:01:40','2020.04.05.02.01.40.970561','2020-04-05 02:01:40','2020-04-05 02:02:49','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':8}','{}','{}','',0,0,3749455),(3807349,'2020-04-05 03:19:05','Done','Done','2020-04-05 02:46:43','2020.04.05.02.46.43.715378','2020-04-05 02:46:43','2020-04-05 02:47:50','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':4}','{}','{}','',0,0,3749454),(3807350,'2020-04-05 03:23:49','Done','Done','2020-04-05 02:51:26','2020.04.05.02.51.26.984615','2020-04-05 02:51:26','2020-04-05 02:52:34','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':1}','{}','{}','',0,0,3750273),(3807352,'2020-04-05 03:27:53','Done','Done','2020-04-05 03:25:33','2020.04.05.03.25.33.846686','2020-04-05 03:25:33','2020-04-05 03:26:41','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':2}','{}','{}','',0,0,3749453),(3807354,'2020-04-05 03:32:07','Done','Done','2020-04-05 03:29:47','2020.04.05.03.29.47.396116','2020-04-05 03:29:47','2020-04-05 03:30:54','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':1}','{}','{}','',0,0,3750288),(3807351,'2020-04-05 03:37:36','Done','Done','2020-04-05 03:05:13','2020.04.05.03.05.13.405487','2020-04-05 03:05:13','2020-04-05 03:06:21','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':4}','{}','{}','',0,0,3750286),(3807353,'2020-04-05 03:59:25','Done','Done','2020-04-05 03:27:02','2020.04.05.03.27.02.234819','2020-04-05 03:27:02','2020-04-05 03:28:10','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':2}','{}','{}','',0,0,3750277),(3807355,'2020-04-05 04:03:04','Done','Done','2020-04-05 03:30:41','2020.04.05.03.30.41.732702','2020-04-05 03:30:41','2020-04-05 03:31:48','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':4}','{}','{}','',0,0,3750275),(3807356,'2020-04-05 04:15:39','Done','Done','2020-04-05 03:43:15','2020.04.05.03.43.15.088042','2020-04-05 03:43:15','2020-04-05 03:44:24','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':2}','{}','{}','',0,0,3750285),(3807357,'2020-04-05 04:21:05','Done','Done','2020-04-05 03:48:42','2020.04.05.03.48.42.100666','2020-04-05 03:48:42','2020-04-05 03:49:49','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':1}','{}','{}','',0,0,3750276),(3807369,'2020-04-05 11:12:25','Done','Done','2020-04-05 10:40:00','2020.04.05.10.40.00.435022','2020-04-05 10:40:00','2020-04-05 10:41:09','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105846),(3807371,'2020-04-05 11:22:27','Done','Done','2020-04-05 10:50:00','2020.04.05.10.50.00.406093','2020-04-05 10:50:00','2020-04-05 10:51:09','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105854),(3807379,'2020-04-05 11:52:27','Done','Done','2020-04-05 11:20:00','2020.04.05.11.20.00.250109','2020-04-05 11:20:00','2020-04-05 11:21:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105879),(3807380,'2020-04-05 12:22:29','Done','Done','2020-04-05 11:50:00','2020.04.05.11.50.00.432716','2020-04-05 11:50:00','2020-04-05 11:51:09','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3807384,'2020-04-05 12:22:31','Done','Done','2020-04-05 11:50:00','2020.04.05.11.50.00.421870','2020-04-05 11:50:00','2020-04-05 11:51:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3807381,'2020-04-05 12:22:31','Done','Done','2020-04-05 11:50:00','2020.04.05.11.50.00.318370','2020-04-05 11:50:00','2020-04-05 11:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105896),(3807382,'2020-04-05 12:22:34','Done','Done','2020-04-05 11:50:00','2020.04.05.11.50.00.400761','2020-04-05 11:50:00','2020-04-05 11:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3542580),(3807383,'2020-04-05 12:22:36','Done','Done','2020-04-05 11:50:00','2020.04.05.11.50.00.411507','2020-04-05 11:50:00','2020-04-05 11:51:16','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105899),(3807398,'2020-04-05 13:12:26','Done','Done','2020-04-05 12:40:00','2020.04.05.12.40.00.308261','2020-04-05 12:40:00','2020-04-05 12:41:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105806),(3807430,'2020-04-06 17:03:47','Done','Done','2020-04-06 16:31:22','2020.04.06.16.31.22.063726','2020-04-06 16:31:22','2020-04-06 16:32:32','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':4}','{}','{}','',0,0,3750278),(3807431,'2020-04-06 21:55:33','Done','Done','2020-04-06 21:53:11','2020.04.06.21.53.11.957243','2020-04-06 21:53:11','2020-04-06 21:54:19','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':4}','{}','{}','',0,0,3749223),(3807433,'2020-04-06 21:55:35','Done','Done','2020-04-06 21:53:11','2020.04.06.21.53.11.946406','2020-04-06 21:53:11','2020-04-06 21:54:20','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':2}','{}','{}','',0,0,3749222),(3807432,'2020-04-06 22:25:36','Done','Done','2020-04-06 21:53:11','2020.04.06.21.53.11.022824','2020-04-06 21:53:11','2020-04-06 21:54:19','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':1}','{}','{}','',0,0,3749221),(3807434,'2020-04-07 00:41:54','Done','Done','2020-04-07 00:09:30','2020.04.07.00.09.30.920635','2020-04-07 00:09:30','2020-04-07 00:10:38','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':8}','{}','{}','',0,0,3749429),(3807435,'2020-04-07 01:09:59','Done','Done','2020-04-07 00:37:34','2020.04.07.00.37.34.663976','2020-04-07 00:37:34','2020-04-07 00:38:42','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':2}','{}','{}','',0,0,3749427),(3807436,'2020-04-07 01:19:15','Done','Done','2020-04-07 00:46:50','2020.04.07.00.46.50.306920','2020-04-07 00:46:50','2020-04-07 00:47:58','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':1}','{}','{}','',0,0,3749425),(3807437,'2020-04-07 01:23:22','Done','Done','2020-04-07 01:21:01','2020.04.07.01.21.01.058418','2020-04-07 01:21:01','2020-04-07 01:22:09','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':2}','{}','{}','',0,0,3750289),(3807438,'2020-04-07 01:28:05','Done','Done','2020-04-07 01:25:44','2020.04.07.01.25.44.801689','2020-04-07 01:25:44','2020-04-07 01:26:52','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':1}','{}','{}','',0,0,3750281),(3807440,'2020-04-07 02:04:02','Done','Done','2020-04-07 02:01:40','2020.04.07.02.01.40.509995','2020-04-07 02:01:40','2020-04-07 02:02:49','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':8}','{}','{}','',0,0,3749455),(3807439,'2020-04-07 02:19:49','Done','Done','2020-04-07 01:47:26','2020.04.07.01.47.26.973008','2020-04-07 01:47:26','2020-04-07 01:48:33','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':2}','{}','{}','',0,0,3750274),(3807443,'2020-04-07 02:49:05','Done','Done','2020-04-07 02:46:43','2020.04.07.02.46.43.477639','2020-04-07 02:46:43','2020-04-07 02:47:52','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':4}','{}','{}','',0,0,3749454),(3807441,'2020-04-07 02:58:32','Done','Done','2020-04-07 02:26:09','2020.04.07.02.26.09.116494','2020-04-07 02:26:09','2020-04-07 02:27:17','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':4}','{}','{}','',0,0,3749428),(3807442,'2020-04-07 02:59:47','Done','Done','2020-04-07 02:27:24','2020.04.07.02.27.24.471216','2020-04-07 02:27:24','2020-04-07 02:28:32','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':4}','{}','{}','',0,0,3750290),(3807444,'2020-04-07 03:23:50','Done','Done','2020-04-07 02:51:26','2020.04.07.02.51.26.601559','2020-04-07 02:51:26','2020-04-07 02:52:34','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':1}','{}','{}','',0,0,3750273),(3807446,'2020-04-07 03:27:52','Done','Done','2020-04-07 03:25:33','2020.04.07.03.25.33.884071','2020-04-07 03:25:33','2020-04-07 03:26:40','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':2}','{}','{}','',0,0,3749453),(3807448,'2020-04-07 03:32:07','Done','Done','2020-04-07 03:29:47','2020.04.07.03.29.47.091652','2020-04-07 03:29:47','2020-04-07 03:30:54','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':1}','{}','{}','',0,0,3750288),(3807445,'2020-04-07 03:37:35','Done','Done','2020-04-07 03:05:13','2020.04.07.03.05.13.444736','2020-04-07 03:05:13','2020-04-07 03:06:21','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':4}','{}','{}','',0,0,3750286),(3807450,'2020-04-07 03:45:37','Done','Done','2020-04-07 03:43:15','2020.04.07.03.43.15.762132','2020-04-07 03:43:15','2020-04-07 03:44:23','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':2}','{}','{}','',0,0,3750285),(3807447,'2020-04-07 03:59:26','Done','Done','2020-04-07 03:27:02','2020.04.07.03.27.03.001912','2020-04-07 03:27:03','2020-04-07 03:28:11','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':2}','{}','{}','',0,0,3750277),(3807449,'2020-04-07 04:03:03','Done','Done','2020-04-07 03:30:41','2020.04.07.03.30.41.466096','2020-04-07 03:30:41','2020-04-07 03:31:48','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':4}','{}','{}','',0,0,3750275),(3807451,'2020-04-07 04:21:05','Done','Done','2020-04-07 03:48:42','2020.04.07.03.48.42.227299','2020-04-07 03:48:42','2020-04-07 03:49:50','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':1}','{}','{}','',0,0,3750276),(3807463,'2020-04-07 11:12:23','Done','Done','2020-04-07 10:40:00','2020.04.07.10.40.00.440179','2020-04-07 10:40:00','2020-04-07 10:41:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105846),(3807468,'2020-04-07 11:22:28','Done','Done','2020-04-07 10:50:00','2020.04.07.10.50.00.612927','2020-04-07 10:50:00','2020-04-07 10:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105854),(3807472,'2020-04-07 11:52:29','Done','Done','2020-04-07 11:20:00','2020.04.07.11.20.00.347917','2020-04-07 11:20:00','2020-04-07 11:21:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105879),(3807478,'2020-04-07 12:22:30','Done','Done','2020-04-07 11:50:00','2020.04.07.11.50.00.531086','2020-04-07 11:50:00','2020-04-07 11:51:09','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3807475,'2020-04-07 12:22:30','Done','Done','2020-04-07 11:50:00','2020.04.07.11.50.00.455442','2020-04-07 11:50:00','2020-04-07 11:51:09','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3542580),(3807476,'2020-04-07 12:22:32','Done','Done','2020-04-07 11:50:00','2020.04.07.11.50.00.508879','2020-04-07 11:50:00','2020-04-07 11:51:09','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105899),(3807477,'2020-04-07 12:22:32','Done','Done','2020-04-07 11:50:00','2020.04.07.11.50.00.519893','2020-04-07 11:50:00','2020-04-07 11:51:09','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3807474,'2020-04-07 12:22:37','Done','Done','2020-04-07 11:50:00','2020.04.07.11.50.00.541739','2020-04-07 11:50:00','2020-04-07 11:51:18','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105896),(3807493,'2020-04-07 13:12:27','Done','Done','2020-04-07 12:40:00','2020.04.07.12.40.00.245249','2020-04-07 12:40:00','2020-04-07 12:41:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105806),(3807524,'2020-04-08 17:03:48','Done','Done','2020-04-08 16:31:22','2020.04.08.16.31.22.552827','2020-04-08 16:31:22','2020-04-08 16:32:33','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':4}','{}','{}','',0,0,3750278),(3807526,'2020-04-08 21:55:34','Done','Done','2020-04-08 21:53:11','2020.04.08.21.53.11.202826','2020-04-08 21:53:11','2020-04-08 21:54:20','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':2}','{}','{}','',0,0,3749222),(3807527,'2020-04-08 21:55:34','Done','Done','2020-04-08 21:53:11','2020.04.08.21.53.11.666358','2020-04-08 21:53:11','2020-04-08 21:54:20','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':4}','{}','{}','',0,0,3749223),(3807525,'2020-04-08 22:25:38','Done','Done','2020-04-08 21:53:11','2020.04.08.21.53.11.681154','2020-04-08 21:53:11','2020-04-08 21:54:20','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':1}','{}','{}','',0,0,3749221),(3807528,'2020-04-09 00:41:55','Done','Done','2020-04-09 00:09:30','2020.04.09.00.09.30.441530','2020-04-09 00:09:30','2020-04-09 00:10:40','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':8}','{}','{}','',0,0,3749429),(3807529,'2020-04-09 01:09:58','Done','Done','2020-04-09 00:37:34','2020.04.09.00.37.34.932755','2020-04-09 00:37:34','2020-04-09 00:38:42','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':2}','{}','{}','',0,0,3749427),(3807530,'2020-04-09 01:19:14','Done','Done','2020-04-09 00:46:50','2020.04.09.00.46.50.471081','2020-04-09 00:46:50','2020-04-09 00:47:58','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':1}','{}','{}','',0,0,3749425),(3807531,'2020-04-09 01:23:24','Done','Done','2020-04-09 01:21:01','2020.04.09.01.21.01.606590','2020-04-09 01:21:01','2020-04-09 01:22:10','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':2}','{}','{}','',0,0,3750289),(3807532,'2020-04-09 01:28:05','Done','Done','2020-04-09 01:25:44','2020.04.09.01.25.44.945370','2020-04-09 01:25:44','2020-04-09 01:26:52','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':1}','{}','{}','',0,0,3750281),(3807534,'2020-04-09 02:04:00','Done','Done','2020-04-09 02:01:40','2020.04.09.02.01.40.284176','2020-04-09 02:01:40','2020-04-09 02:02:48','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':8}','{}','{}','',0,0,3749455),(3807533,'2020-04-09 02:19:51','Done','Done','2020-04-09 01:47:26','2020.04.09.01.47.26.309642','2020-04-09 01:47:26','2020-04-09 01:48:35','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':2}','{}','{}','',0,0,3750274),(3807537,'2020-04-09 02:49:05','Done','Done','2020-04-09 02:46:43','2020.04.09.02.46.43.108216','2020-04-09 02:46:43','2020-04-09 02:47:52','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':4}','{}','{}','',0,0,3749454),(3807535,'2020-04-09 02:58:33','Done','Done','2020-04-09 02:26:09','2020.04.09.02.26.09.337033','2020-04-09 02:26:09','2020-04-09 02:27:18','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':4}','{}','{}','',0,0,3749428),(3807536,'2020-04-09 02:59:47','Done','Done','2020-04-09 02:27:24','2020.04.09.02.27.24.009139','2020-04-09 02:27:24','2020-04-09 02:28:32','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':4}','{}','{}','',0,0,3750290),(3807538,'2020-04-09 03:23:49','Done','Done','2020-04-09 02:51:26','2020.04.09.02.51.26.198749','2020-04-09 02:51:26','2020-04-09 02:52:33','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':1}','{}','{}','',0,0,3750273),(3807540,'2020-04-09 03:27:55','Done','Done','2020-04-09 03:25:33','2020.04.09.03.25.33.876579','2020-04-09 03:25:33','2020-04-09 03:26:41','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':2}','{}','{}','',0,0,3749453),(3807542,'2020-04-09 03:32:07','Done','Done','2020-04-09 03:29:47','2020.04.09.03.29.47.384460','2020-04-09 03:29:47','2020-04-09 03:30:55','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':1}','{}','{}','',0,0,3750288),(3807539,'2020-04-09 03:37:38','Done','Done','2020-04-09 03:05:13','2020.04.09.03.05.13.189063','2020-04-09 03:05:13','2020-04-09 03:06:21','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':4}','{}','{}','',0,0,3750286),(3807544,'2020-04-09 03:45:36','Done','Done','2020-04-09 03:43:15','2020.04.09.03.43.15.360893','2020-04-09 03:43:15','2020-04-09 03:44:23','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':2}','{}','{}','',0,0,3750285),(3807541,'2020-04-09 03:59:25','Done','Done','2020-04-09 03:27:02','2020.04.09.03.27.02.487325','2020-04-09 03:27:02','2020-04-09 03:28:09','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':2}','{}','{}','',0,0,3750277),(3807543,'2020-04-09 04:03:05','Done','Done','2020-04-09 03:30:41','2020.04.09.03.30.41.751565','2020-04-09 03:30:41','2020-04-09 03:31:49','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':4}','{}','{}','',0,0,3750275),(3807545,'2020-04-09 04:21:06','Done','Done','2020-04-09 03:48:42','2020.04.09.03.48.42.882271','2020-04-09 03:48:42','2020-04-09 03:49:50','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':1}','{}','{}','',0,0,3750276),(3807557,'2020-04-09 11:12:34','Done','Done','2020-04-09 10:40:00','2020.04.09.10.40.00.476588','2020-04-09 10:40:00','2020-04-09 10:41:12','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105846),(3807561,'2020-04-09 11:22:49','Done','Done','2020-04-09 10:50:00','2020.04.09.10.50.01.016330','2020-04-09 10:50:01','2020-04-09 10:51:14','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105854),(3807569,'2020-04-09 12:22:42','Done','Done','2020-04-09 11:50:00','2020.04.09.11.50.00.928521','2020-04-09 11:50:00','2020-04-09 11:51:11','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105899),(3807568,'2020-04-09 12:22:49','Done','Done','2020-04-09 11:50:00','2020.04.09.11.50.00.999641','2020-04-09 11:50:00','2020-04-09 11:51:23','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3542580),(3807567,'2020-04-09 12:22:56','Done','Done','2020-04-09 11:20:00','2020.04.09.11.20.00.995719','2020-04-09 11:20:00','2020-04-09 11:21:17','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105879),(3807584,'2020-04-09 13:12:48','Done','Done','2020-04-09 12:40:00','2020.04.09.12.40.00.846803','2020-04-09 12:40:00','2020-04-09 12:41:20','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105806),(3807570,'2020-04-09 13:22:59','Done','Done','2020-04-09 11:50:00','2020.04.09.11.50.00.968115','2020-04-09 11:50:00','2020-04-09 11:51:19','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3807572,'2020-04-09 13:23:01','Done','Done','2020-04-09 11:50:00','2020.04.09.11.50.00.988662','2020-04-09 11:50:00','2020-04-09 11:51:19','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105896),(3807571,'2020-04-09 13:23:02','Done','Done','2020-04-09 11:50:00','2020.04.09.11.50.00.978344','2020-04-09 11:50:00','2020-04-09 11:51:19','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3807618,'2020-04-10 18:33:57','Done','Done','2020-04-10 16:31:22','2020.04.10.16.31.22.449389','2020-04-10 16:31:22','2020-04-10 16:32:30','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':4}','{}','{}','',0,0,3750278),(3807621,'2020-04-10 22:25:38','Done','Done','2020-04-10 21:53:11','2020.04.10.21.53.11.799647','2020-04-10 21:53:11','2020-04-10 21:54:19','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':1}','{}','{}','',0,0,3749221),(3807619,'2020-04-10 23:55:51','Done','Done','2020-04-10 21:53:11','2020.04.10.21.53.11.811169','2020-04-10 21:53:11','2020-04-10 21:54:19','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':2}','{}','{}','',0,0,3749222),(3807620,'2020-04-11 00:25:53','Done','Done','2020-04-10 21:53:11','2020.04.10.21.53.11.544583','2020-04-10 21:53:11','2020-04-10 21:54:19','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':4}','{}','{}','',0,0,3749223),(3807624,'2020-04-11 01:19:13','Done','Done','2020-04-11 00:46:50','2020.04.11.00.46.50.271818','2020-04-11 00:46:50','2020-04-11 00:47:58','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':1}','{}','{}','',0,0,3749425),(3807623,'2020-04-11 01:40:02','Done','Done','2020-04-11 00:37:34','2020.04.11.00.37.34.748014','2020-04-11 00:37:34','2020-04-11 00:38:42','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':2}','{}','{}','',0,0,3749427),(3807625,'2020-04-11 01:53:24','Done','Done','2020-04-11 01:21:01','2020.04.11.01.21.01.675086','2020-04-11 01:21:01','2020-04-11 01:22:08','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':2}','{}','{}','',0,0,3750289),(3807626,'2020-04-11 01:58:07','Done','Done','2020-04-11 01:25:44','2020.04.11.01.25.44.264118','2020-04-11 01:25:44','2020-04-11 01:26:52','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':1}','{}','{}','',0,0,3750281),(3807622,'2020-04-11 02:12:09','Done','Done','2020-04-11 00:09:30','2020.04.11.00.09.30.902644','2020-04-11 00:09:30','2020-04-11 00:10:44','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':8}','{}','{}','',0,0,3749429),(3807627,'2020-04-11 02:19:50','Done','Done','2020-04-11 01:47:26','2020.04.11.01.47.26.894630','2020-04-11 01:47:26','2020-04-11 01:48:34','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':2}','{}','{}','',0,0,3750274),(3807628,'2020-04-11 02:34:03','Done','Done','2020-04-11 02:01:40','2020.04.11.02.01.40.844452','2020-04-11 02:01:40','2020-04-11 02:02:48','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':8}','{}','{}','',0,0,3749455),(3807631,'2020-04-11 03:19:07','Done','Done','2020-04-11 02:46:43','2020.04.11.02.46.43.764947','2020-04-11 02:46:43','2020-04-11 02:47:51','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':4}','{}','{}','',0,0,3749454),(3807632,'2020-04-11 03:23:49','Done','Done','2020-04-11 02:51:26','2020.04.11.02.51.26.566443','2020-04-11 02:51:26','2020-04-11 02:52:34','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':1}','{}','{}','',0,0,3750273),(3807629,'2020-04-11 03:28:35','Done','Done','2020-04-11 02:26:09','2020.04.11.02.26.09.635597','2020-04-11 02:26:09','2020-04-11 02:27:16','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':4}','{}','{}','',0,0,3749428),(3807630,'2020-04-11 03:29:50','Done','Done','2020-04-11 02:27:24','2020.04.11.02.27.24.736020','2020-04-11 02:27:24','2020-04-11 02:28:31','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':4}','{}','{}','',0,0,3750290),(3807636,'2020-04-11 03:32:08','Done','Done','2020-04-11 03:29:47','2020.04.11.03.29.47.969168','2020-04-11 03:29:47','2020-04-11 03:30:54','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':1}','{}','{}','',0,0,3750288),(3807633,'2020-04-11 03:37:36','Done','Done','2020-04-11 03:05:13','2020.04.11.03.05.13.549799','2020-04-11 03:05:13','2020-04-11 03:06:21','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':4}','{}','{}','',0,0,3750286),(3807634,'2020-04-11 03:57:56','Done','Done','2020-04-11 03:25:33','2020.04.11.03.25.33.666345','2020-04-11 03:25:33','2020-04-11 03:26:40','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':2}','{}','{}','',0,0,3749453),(3807635,'2020-04-11 03:59:24','Done','Done','2020-04-11 03:27:02','2020.04.11.03.27.02.752949','2020-04-11 03:27:02','2020-04-11 03:28:09','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':2}','{}','{}','',0,0,3750277),(3807637,'2020-04-11 04:03:04','Done','Done','2020-04-11 03:30:41','2020.04.11.03.30.41.478405','2020-04-11 03:30:41','2020-04-11 03:31:48','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':4}','{}','{}','',0,0,3750275),(3807638,'2020-04-11 04:15:37','Done','Done','2020-04-11 03:43:15','2020.04.11.03.43.15.802149','2020-04-11 03:43:15','2020-04-11 03:44:22','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':2}','{}','{}','',0,0,3750285),(3807639,'2020-04-11 04:21:05','Done','Done','2020-04-11 03:48:42','2020.04.11.03.48.42.505506','2020-04-11 03:48:42','2020-04-11 03:49:50','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':1}','{}','{}','',0,0,3750276),(3807651,'2020-04-11 11:12:24','Done','Done','2020-04-11 10:40:00','2020.04.11.10.40.00.322051','2020-04-11 10:40:00','2020-04-11 10:41:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105846),(3807654,'2020-04-11 11:22:27','Done','Done','2020-04-11 10:50:00','2020.04.11.10.50.00.421984','2020-04-11 10:50:00','2020-04-11 10:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105854),(3807660,'2020-04-11 11:52:27','Done','Done','2020-04-11 11:20:00','2020.04.11.11.20.00.133312','2020-04-11 11:20:00','2020-04-11 11:21:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105879),(3807664,'2020-04-11 12:22:27','Done','Done','2020-04-11 11:50:00','2020.04.11.11.50.00.357460','2020-04-11 11:50:00','2020-04-11 11:51:09','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3807665,'2020-04-11 12:22:27','Done','Done','2020-04-11 11:50:00','2020.04.11.11.50.00.364667','2020-04-11 11:50:00','2020-04-11 11:51:09','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105896),(3807666,'2020-04-11 12:22:27','Done','Done','2020-04-11 11:50:00','2020.04.11.11.50.00.402412','2020-04-11 11:50:00','2020-04-11 11:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3542580),(3807662,'2020-04-11 12:22:28','Done','Done','2020-04-11 11:50:00','2020.04.11.11.50.00.431482','2020-04-11 11:50:00','2020-04-11 11:51:09','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105899),(3807663,'2020-04-11 12:22:35','Done','Done','2020-04-11 11:50:00','2020.04.11.11.50.00.296144','2020-04-11 11:50:00','2020-04-11 11:51:16','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3807678,'2020-04-11 13:12:26','Done','Done','2020-04-11 12:40:00','2020.04.11.12.40.00.729675','2020-04-11 12:40:00','2020-04-11 12:41:07','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105806),(3807712,'2020-04-12 17:03:44','Done','Done','2020-04-12 16:31:22','2020.04.12.16.31.22.035799','2020-04-12 16:31:22','2020-04-12 16:32:29','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':4}','{}','{}','',0,0,3750278),(3807715,'2020-04-12 21:55:31','Done','Done','2020-04-12 21:53:11','2020.04.12.21.53.12.350709','2020-04-12 21:53:12','2020-04-12 21:54:20','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':2}','{}','{}','',0,0,3749222),(3807713,'2020-04-12 21:55:31','Done','Done','2020-04-12 21:53:11','2020.04.12.21.53.12.361797','2020-04-12 21:53:12','2020-04-12 21:54:19','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':4}','{}','{}','',0,0,3749223),(3807714,'2020-04-12 22:25:36','Done','Done','2020-04-12 21:53:11','2020.04.12.21.53.11.930007','2020-04-12 21:53:11','2020-04-12 21:54:19','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':1}','{}','{}','',0,0,3749221),(3807717,'2020-04-13 01:09:59','Done','Done','2020-04-13 00:37:34','2020.04.13.00.37.34.899195','2020-04-13 00:37:34','2020-04-13 00:38:42','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':2}','{}','{}','',0,0,3749427),(3807718,'2020-04-13 01:19:14','Done','Done','2020-04-13 00:46:50','2020.04.13.00.46.50.527002','2020-04-13 00:46:50','2020-04-13 00:47:58','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':1}','{}','{}','',0,0,3749425),(3807719,'2020-04-13 01:53:24','Done','Done','2020-04-13 01:21:01','2020.04.13.01.21.01.301153','2020-04-13 01:21:01','2020-04-13 01:22:09','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':2}','{}','{}','',0,0,3750289),(3807720,'2020-04-13 01:58:06','Done','Done','2020-04-13 01:25:44','2020.04.13.01.25.44.617516','2020-04-13 01:25:44','2020-04-13 01:26:51','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':1}','{}','{}','',0,0,3750281),(3807721,'2020-04-13 02:19:49','Done','Done','2020-04-13 01:47:26','2020.04.13.01.47.26.438437','2020-04-13 01:47:26','2020-04-13 01:48:34','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':2}','{}','{}','',0,0,3750274),(3807725,'2020-04-13 02:49:02','Done','Done','2020-04-13 02:46:43','2020.04.13.02.46.43.688729','2020-04-13 02:46:43','2020-04-13 02:47:50','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':4}','{}','{}','',0,0,3749454),(3807723,'2020-04-13 02:58:32','Done','Done','2020-04-13 02:26:09','2020.04.13.02.26.09.848764','2020-04-13 02:26:09','2020-04-13 02:27:16','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':4}','{}','{}','',0,0,3749428),(3807724,'2020-04-13 02:59:47','Done','Done','2020-04-13 02:27:24','2020.04.13.02.27.24.046932','2020-04-13 02:27:24','2020-04-13 02:28:32','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':4}','{}','{}','',0,0,3750290),(3807726,'2020-04-13 03:23:49','Done','Done','2020-04-13 02:51:26','2020.04.13.02.51.26.683133','2020-04-13 02:51:26','2020-04-13 02:52:33','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':1}','{}','{}','',0,0,3750273),(3807727,'2020-04-13 03:37:35','Done','Done','2020-04-13 03:05:13','2020.04.13.03.05.13.008458','2020-04-13 03:05:13','2020-04-13 03:06:20','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':4}','{}','{}','',0,0,3750286),(3807728,'2020-04-13 03:57:57','Done','Done','2020-04-13 03:25:33','2020.04.13.03.25.33.534951','2020-04-13 03:25:33','2020-04-13 03:26:41','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':2}','{}','{}','',0,0,3749453),(3807729,'2020-04-13 03:59:25','Done','Done','2020-04-13 03:27:02','2020.04.13.03.27.02.615619','2020-04-13 03:27:02','2020-04-13 03:28:08','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':2}','{}','{}','',0,0,3750277),(3807730,'2020-04-13 04:02:10','Done','Done','2020-04-13 03:29:47','2020.04.13.03.29.47.175262','2020-04-13 03:29:47','2020-04-13 03:30:54','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':1}','{}','{}','',0,0,3750288),(3807731,'2020-04-13 04:03:05','Done','Done','2020-04-13 03:30:41','2020.04.13.03.30.41.516001','2020-04-13 03:30:41','2020-04-13 03:31:48','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':4}','{}','{}','',0,0,3750275),(3807732,'2020-04-13 04:15:37','Done','Done','2020-04-13 03:43:15','2020.04.13.03.43.15.584103','2020-04-13 03:43:15','2020-04-13 03:44:23','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':2}','{}','{}','',0,0,3750285),(3807733,'2020-04-13 04:21:06','Done','Done','2020-04-13 03:48:42','2020.04.13.03.48.42.078702','2020-04-13 03:48:42','2020-04-13 03:49:49','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':1}','{}','{}','',0,0,3750276),(3807716,'2020-04-13 04:42:22','Done','Done','2020-04-13 00:09:30','2020.04.13.00.09.30.429705','2020-04-13 00:09:30','2020-04-13 00:10:42','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':8}','{}','{}','',0,0,3749429),(3807722,'2020-04-13 05:04:18','Done','Done','2020-04-13 02:01:40','2020.04.13.02.01.40.771585','2020-04-13 02:01:40','2020-04-13 02:02:47','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':8}','{}','{}','',0,0,3749455),(3807745,'2020-04-13 11:12:24','Done','Done','2020-04-13 10:40:00','2020.04.13.10.40.00.183940','2020-04-13 10:40:00','2020-04-13 10:41:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105846),(3807747,'2020-04-13 11:22:26','Done','Done','2020-04-13 10:50:00','2020.04.13.10.50.00.824566','2020-04-13 10:50:00','2020-04-13 10:51:07','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105854),(3807755,'2020-04-13 11:52:26','Done','Done','2020-04-13 11:20:00','2020.04.13.11.20.00.730114','2020-04-13 11:20:00','2020-04-13 11:21:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105879),(3807759,'2020-04-13 12:22:30','Done','Done','2020-04-13 11:50:00','2020.04.13.11.50.00.748224','2020-04-13 11:50:00','2020-04-13 11:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3542580),(3807760,'2020-04-13 12:22:30','Done','Done','2020-04-13 11:50:00','2020.04.13.11.50.00.759015','2020-04-13 11:50:00','2020-04-13 11:51:09','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105899),(3807758,'2020-04-13 12:22:31','Done','Done','2020-04-13 11:50:00','2020.04.13.11.50.00.737340','2020-04-13 11:50:00','2020-04-13 11:51:09','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105896),(3807757,'2020-04-13 12:22:32','Done','Done','2020-04-13 11:50:00','2020.04.13.11.50.00.703402','2020-04-13 11:50:00','2020-04-13 11:51:09','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3807756,'2020-04-13 12:22:36','Done','Done','2020-04-13 11:50:00','2020.04.13.11.50.00.769684','2020-04-13 11:50:00','2020-04-13 11:51:16','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3807775,'2020-04-13 13:12:34','Done','Done','2020-04-13 12:40:00','2020.04.13.12.40.00.126094','2020-04-13 12:40:00','2020-04-13 12:41:17','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105806),(3807806,'2020-04-14 17:03:53','Done','Done','2020-04-14 16:31:22','2020.04.14.16.31.22.813384','2020-04-14 16:31:22','2020-04-14 16:32:36','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':4}','{}','{}','',0,0,3750278),(3807808,'2020-04-14 21:55:40','Done','Done','2020-04-14 21:53:11','2020.04.14.21.53.11.299728','2020-04-14 21:53:11','2020-04-14 21:54:27','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':2}','{}','{}','',0,0,3749222),(3807809,'2020-04-14 21:55:40','Done','Done','2020-04-14 21:53:11','2020.04.14.21.53.11.868560','2020-04-14 21:53:11','2020-04-14 21:54:26','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':4}','{}','{}','',0,0,3749223),(3807807,'2020-04-14 22:25:43','Done','Done','2020-04-14 21:53:11','2020.04.14.21.53.12.069914','2020-04-14 21:53:12','2020-04-14 21:54:26','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':1}','{}','{}','',0,0,3749221),(3807810,'2020-04-15 00:41:57','Done','Done','2020-04-15 00:09:30','2020.04.15.00.09.30.134209','2020-04-15 00:09:30','2020-04-15 00:10:41','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':8}','{}','{}','',0,0,3749429),(3807811,'2020-04-15 01:40:00','Done','Done','2020-04-15 00:37:34','2020.04.15.00.37.34.029758','2020-04-15 00:37:34','2020-04-15 00:38:42','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':2}','{}','{}','',0,0,3749427),(3807812,'2020-04-15 01:49:16','Done','Done','2020-04-15 00:46:50','2020.04.15.00.46.50.662101','2020-04-15 00:46:50','2020-04-15 00:47:57','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':1}','{}','{}','',0,0,3749425),(3807813,'2020-04-15 01:53:26','Done','Done','2020-04-15 01:21:01','2020.04.15.01.21.01.216795','2020-04-15 01:21:01','2020-04-15 01:22:09','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':2}','{}','{}','',0,0,3750289),(3807814,'2020-04-15 01:58:08','Done','Done','2020-04-15 01:25:44','2020.04.15.01.25.44.144170','2020-04-15 01:25:44','2020-04-15 01:26:52','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':1}','{}','{}','',0,0,3750281),(3807819,'2020-04-15 03:19:06','Done','Done','2020-04-15 02:46:43','2020.04.15.02.46.43.211730','2020-04-15 02:46:43','2020-04-15 02:47:51','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':4}','{}','{}','',0,0,3749454),(3807815,'2020-04-15 03:19:58','Done','Done','2020-04-15 01:47:26','2020.04.15.01.47.26.226432','2020-04-15 01:47:26','2020-04-15 01:48:34','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':2}','{}','{}','',0,0,3750274),(3807820,'2020-04-15 03:23:49','Done','Done','2020-04-15 02:51:26','2020.04.15.02.51.26.915887','2020-04-15 02:51:26','2020-04-15 02:52:33','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':1}','{}','{}','',0,0,3750273),(3807817,'2020-04-15 03:28:35','Done','Done','2020-04-15 02:26:09','2020.04.15.02.26.09.184531','2020-04-15 02:26:09','2020-04-15 02:27:17','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':4}','{}','{}','',0,0,3749428),(3807818,'2020-04-15 03:29:50','Done','Done','2020-04-15 02:27:24','2020.04.15.02.27.24.623882','2020-04-15 02:27:24','2020-04-15 02:28:32','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':4}','{}','{}','',0,0,3750290),(3807816,'2020-04-15 03:34:10','Done','Done','2020-04-15 02:01:40','2020.04.15.02.01.40.039523','2020-04-15 02:01:40','2020-04-15 02:02:48','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':8}','{}','{}','',0,0,3749455),(3807821,'2020-04-15 03:37:36','Done','Done','2020-04-15 03:05:13','2020.04.15.03.05.13.637543','2020-04-15 03:05:13','2020-04-15 03:06:21','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':4}','{}','{}','',0,0,3750286),(3807822,'2020-04-15 03:57:58','Done','Done','2020-04-15 03:25:33','2020.04.15.03.25.33.759452','2020-04-15 03:25:33','2020-04-15 03:26:41','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':2}','{}','{}','',0,0,3749453),(3807823,'2020-04-15 03:59:26','Done','Done','2020-04-15 03:27:02','2020.04.15.03.27.02.375087','2020-04-15 03:27:02','2020-04-15 03:28:10','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':2}','{}','{}','',0,0,3750277),(3807824,'2020-04-15 04:02:09','Done','Done','2020-04-15 03:29:47','2020.04.15.03.29.47.273209','2020-04-15 03:29:47','2020-04-15 03:30:54','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':1}','{}','{}','',0,0,3750288),(3807826,'2020-04-15 04:15:39','Done','Done','2020-04-15 03:43:15','2020.04.15.03.43.15.219479','2020-04-15 03:43:15','2020-04-15 03:44:23','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':2}','{}','{}','',0,0,3750285),(3807827,'2020-04-15 04:21:05','Done','Done','2020-04-15 03:48:42','2020.04.15.03.48.42.232200','2020-04-15 03:48:42','2020-04-15 03:49:50','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':1}','{}','{}','',0,0,3750276),(3807825,'2020-04-15 10:03:46','Done','Done','2020-04-15 03:30:41','2020.04.15.03.30.41.960387','2020-04-15 03:30:41','2020-04-15 03:31:49','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':4}','{}','{}','',0,0,3750275),(3807839,'2020-04-15 11:12:21','Done','Done','2020-04-15 10:40:00','2020.04.15.10.40.00.668818','2020-04-15 10:40:00','2020-04-15 10:41:07','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105846),(3807844,'2020-04-15 11:22:25','Done','Done','2020-04-15 10:50:00','2020.04.15.10.50.00.923583','2020-04-15 10:50:00','2020-04-15 10:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105854),(3807848,'2020-04-15 11:52:27','Done','Done','2020-04-15 11:20:00','2020.04.15.11.20.00.743875','2020-04-15 11:20:00','2020-04-15 11:21:07','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105879),(3807851,'2020-04-15 12:22:27','Done','Done','2020-04-15 11:50:00','2020.04.15.11.50.00.632757','2020-04-15 11:50:00','2020-04-15 11:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105896),(3807852,'2020-04-15 12:22:27','Done','Done','2020-04-15 11:50:00','2020.04.15.11.50.00.665433','2020-04-15 11:50:00','2020-04-15 11:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3542580),(3807853,'2020-04-15 12:22:29','Done','Done','2020-04-15 11:50:00','2020.04.15.11.50.00.675994','2020-04-15 11:50:00','2020-04-15 11:51:07','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105899),(3807854,'2020-04-15 12:22:29','Done','Done','2020-04-15 11:50:00','2020.04.15.11.50.00.686191','2020-04-15 11:50:00','2020-04-15 11:51:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3807850,'2020-04-15 12:22:33','Done','Done','2020-04-15 11:50:00','2020.04.15.11.50.00.696280','2020-04-15 11:50:00','2020-04-15 11:51:16','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3807869,'2020-04-15 13:12:25','Done','Done','2020-04-15 12:40:00','2020.04.15.12.40.00.378195','2020-04-15 12:40:00','2020-04-15 12:41:07','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105806),(3807900,'2020-04-16 18:03:53','Done','Done','2020-04-16 16:31:22','2020.04.16.16.31.22.256135','2020-04-16 16:31:22','2020-04-16 16:32:30','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':4}','{}','{}','',0,0,3750278),(3807902,'2020-04-16 21:55:33','Done','Done','2020-04-16 21:53:11','2020.04.16.21.53.11.421506','2020-04-16 21:53:11','2020-04-16 21:54:20','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':4}','{}','{}','',0,0,3749223),(3807903,'2020-04-16 22:25:37','Done','Done','2020-04-16 21:53:11','2020.04.16.21.53.11.813253','2020-04-16 21:53:11','2020-04-16 21:54:20','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':1}','{}','{}','',0,0,3749221),(3807901,'2020-04-16 22:25:37','Done','Done','2020-04-16 21:53:11','2020.04.16.21.53.11.823890','2020-04-16 21:53:11','2020-04-16 21:54:20','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':2}','{}','{}','',0,0,3749222),(3807904,'2020-04-17 00:42:01','Done','Done','2020-04-17 00:09:30','2020.04.17.00.09.30.592961','2020-04-17 00:09:30','2020-04-17 00:10:45','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':8}','{}','{}','',0,0,3749429),(3807905,'2020-04-17 01:09:58','Done','Done','2020-04-17 00:37:34','2020.04.17.00.37.34.225791','2020-04-17 00:37:34','2020-04-17 00:38:42','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':2}','{}','{}','',0,0,3749427),(3807906,'2020-04-17 01:19:14','Done','Done','2020-04-17 00:46:50','2020.04.17.00.46.50.856971','2020-04-17 00:46:50','2020-04-17 00:47:58','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':1}','{}','{}','',0,0,3749425),(3807907,'2020-04-17 01:53:23','Done','Done','2020-04-17 01:21:01','2020.04.17.01.21.01.709816','2020-04-17 01:21:01','2020-04-17 01:22:08','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':2}','{}','{}','',0,0,3750289),(3807908,'2020-04-17 01:58:06','Done','Done','2020-04-17 01:25:44','2020.04.17.01.25.44.720498','2020-04-17 01:25:44','2020-04-17 01:26:51','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':1}','{}','{}','',0,0,3750281),(3807909,'2020-04-17 02:19:48','Done','Done','2020-04-17 01:47:26','2020.04.17.01.47.26.736543','2020-04-17 01:47:26','2020-04-17 01:48:33','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':2}','{}','{}','',0,0,3750274),(3807913,'2020-04-17 02:49:02','Done','Done','2020-04-17 02:46:43','2020.04.17.02.46.43.827130','2020-04-17 02:46:43','2020-04-17 02:47:50','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':4}','{}','{}','',0,0,3749454),(3807911,'2020-04-17 02:58:34','Done','Done','2020-04-17 02:26:09','2020.04.17.02.26.09.014302','2020-04-17 02:26:09','2020-04-17 02:27:17','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':4}','{}','{}','',0,0,3749428),(3807912,'2020-04-17 02:59:48','Done','Done','2020-04-17 02:27:24','2020.04.17.02.27.24.538080','2020-04-17 02:27:24','2020-04-17 02:28:32','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':4}','{}','{}','',0,0,3750290),(3807914,'2020-04-17 03:23:50','Done','Done','2020-04-17 02:51:26','2020.04.17.02.51.26.622402','2020-04-17 02:51:26','2020-04-17 02:52:34','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':1}','{}','{}','',0,0,3750273),(3807915,'2020-04-17 03:37:42','Done','Done','2020-04-17 03:05:13','2020.04.17.03.05.13.934998','2020-04-17 03:05:13','2020-04-17 03:06:24','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':4}','{}','{}','',0,0,3750286),(3807916,'2020-04-17 03:57:56','Done','Done','2020-04-17 03:25:33','2020.04.17.03.25.33.346060','2020-04-17 03:25:33','2020-04-17 03:26:41','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':2}','{}','{}','',0,0,3749453),(3807917,'2020-04-17 03:59:26','Done','Done','2020-04-17 03:27:02','2020.04.17.03.27.02.421137','2020-04-17 03:27:02','2020-04-17 03:28:10','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':2}','{}','{}','',0,0,3750277),(3807918,'2020-04-17 04:02:10','Done','Done','2020-04-17 03:29:47','2020.04.17.03.29.47.980397','2020-04-17 03:29:47','2020-04-17 03:30:55','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':1}','{}','{}','',0,0,3750288),(3807919,'2020-04-17 04:03:04','Done','Done','2020-04-17 03:30:41','2020.04.17.03.30.41.312823','2020-04-17 03:30:41','2020-04-17 03:31:48','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':4}','{}','{}','',0,0,3750275),(3807920,'2020-04-17 04:15:39','Done','Done','2020-04-17 03:43:15','2020.04.17.03.43.15.577667','2020-04-17 03:43:15','2020-04-17 03:44:23','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':2}','{}','{}','',0,0,3750285),(3807921,'2020-04-17 04:21:06','Done','Done','2020-04-17 03:48:42','2020.04.17.03.48.42.244684','2020-04-17 03:48:42','2020-04-17 03:49:49','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':1}','{}','{}','',0,0,3750276),(3807910,'2020-04-17 09:34:47','Done','Done','2020-04-17 02:01:40','2020.04.17.02.01.40.682538','2020-04-17 02:01:40','2020-04-17 02:02:47','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':8}','{}','{}','',0,0,3749455),(3807933,'2020-04-17 11:12:24','Done','Done','2020-04-17 10:40:00','2020.04.17.10.40.00.600470','2020-04-17 10:40:00','2020-04-17 10:41:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105846),(3807937,'2020-04-17 11:22:24','Done','Done','2020-04-17 10:50:00','2020.04.17.10.50.00.744768','2020-04-17 10:50:00','2020-04-17 10:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105854),(3807943,'2020-04-17 11:52:26','Done','Done','2020-04-17 11:20:00','2020.04.17.11.20.00.979418','2020-04-17 11:20:00','2020-04-17 11:21:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105879),(3807947,'2020-04-17 12:22:26','Done','Done','2020-04-17 11:50:00','2020.04.17.11.50.00.399350','2020-04-17 11:50:00','2020-04-17 11:51:09','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3807945,'2020-04-17 12:22:26','Done','Done','2020-04-17 11:50:00','2020.04.17.11.50.00.339630','2020-04-17 11:50:00','2020-04-17 11:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3542580),(3807946,'2020-04-17 12:22:28','Done','Done','2020-04-17 11:50:00','2020.04.17.11.50.00.386779','2020-04-17 11:50:00','2020-04-17 11:51:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105899),(3807948,'2020-04-17 12:22:28','Done','Done','2020-04-17 11:50:00','2020.04.17.11.50.00.413826','2020-04-17 11:50:00','2020-04-17 11:51:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3807944,'2020-04-17 12:22:33','Done','Done','2020-04-17 11:50:00','2020.04.17.11.50.00.430362','2020-04-17 11:50:00','2020-04-17 11:51:17','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105896),(3807963,'2020-04-17 13:12:30','Done','Done','2020-04-17 12:40:00','2020.04.17.12.40.00.485601','2020-04-17 12:40:00','2020-04-17 12:41:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105806),(3807994,'2020-04-18 17:03:47','Done','Done','2020-04-18 16:31:22','2020.04.18.16.31.22.035770','2020-04-18 16:31:22','2020-04-18 16:32:31','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':4}','{}','{}','',0,0,3750278),(3807995,'2020-04-18 21:55:34','Done','Done','2020-04-18 21:53:11','2020.04.18.21.53.12.411688','2020-04-18 21:53:12','2020-04-18 21:54:21','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':4}','{}','{}','',0,0,3749223),(3807997,'2020-04-18 21:55:37','Done','Done','2020-04-18 21:53:11','2020.04.18.21.53.12.382660','2020-04-18 21:53:12','2020-04-18 21:54:24','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':2}','{}','{}','',0,0,3749222),(3807996,'2020-04-18 22:25:38','Done','Done','2020-04-18 21:53:11','2020.04.18.21.53.11.967774','2020-04-18 21:53:11','2020-04-18 21:54:21','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':1}','{}','{}','',0,0,3749221),(3807998,'2020-04-19 00:41:55','Done','Done','2020-04-19 00:09:30','2020.04.19.00.09.31.013023','2020-04-19 00:09:31','2020-04-19 00:10:40','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':8}','{}','{}','',0,0,3749429),(3807999,'2020-04-19 01:09:58','Done','Done','2020-04-19 00:37:34','2020.04.19.00.37.34.513384','2020-04-19 00:37:34','2020-04-19 00:38:42','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':2}','{}','{}','',0,0,3749427),(3808000,'2020-04-19 01:19:15','Done','Done','2020-04-19 00:46:50','2020.04.19.00.46.50.170132','2020-04-19 00:46:50','2020-04-19 00:47:58','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':1}','{}','{}','',0,0,3749425),(3808001,'2020-04-19 01:23:25','Done','Done','2020-04-19 01:21:01','2020.04.19.01.21.01.106377','2020-04-19 01:21:01','2020-04-19 01:22:11','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':2}','{}','{}','',0,0,3750289),(3808002,'2020-04-19 01:58:08','Done','Done','2020-04-19 01:25:44','2020.04.19.01.25.44.345876','2020-04-19 01:25:44','2020-04-19 01:26:53','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':1}','{}','{}','',0,0,3750281),(3808004,'2020-04-19 02:04:01','Done','Done','2020-04-19 02:01:40','2020.04.19.02.01.40.242667','2020-04-19 02:01:40','2020-04-19 02:02:48','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':8}','{}','{}','',0,0,3749455),(3808003,'2020-04-19 02:19:50','Done','Done','2020-04-19 01:47:26','2020.04.19.01.47.26.551121','2020-04-19 01:47:26','2020-04-19 01:48:34','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':2}','{}','{}','',0,0,3750274),(3808007,'2020-04-19 02:49:04','Done','Done','2020-04-19 02:46:43','2020.04.19.02.46.43.166886','2020-04-19 02:46:43','2020-04-19 02:47:51','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':4}','{}','{}','',0,0,3749454),(3808005,'2020-04-19 02:58:34','Done','Done','2020-04-19 02:26:09','2020.04.19.02.26.09.689052','2020-04-19 02:26:09','2020-04-19 02:27:18','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':4}','{}','{}','',0,0,3749428),(3808006,'2020-04-19 02:59:51','Done','Done','2020-04-19 02:27:24','2020.04.19.02.27.24.586610','2020-04-19 02:27:24','2020-04-19 02:28:34','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':4}','{}','{}','',0,0,3750290),(3808008,'2020-04-19 03:23:50','Done','Done','2020-04-19 02:51:26','2020.04.19.02.51.26.092204','2020-04-19 02:51:26','2020-04-19 02:52:35','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':1}','{}','{}','',0,0,3750273),(3808010,'2020-04-19 03:27:54','Done','Done','2020-04-19 03:25:33','2020.04.19.03.25.33.394702','2020-04-19 03:25:33','2020-04-19 03:26:41','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':2}','{}','{}','',0,0,3749453),(3808012,'2020-04-19 03:32:08','Done','Done','2020-04-19 03:29:47','2020.04.19.03.29.47.418941','2020-04-19 03:29:47','2020-04-19 03:30:55','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':1}','{}','{}','',0,0,3750288),(3808009,'2020-04-19 03:37:38','Done','Done','2020-04-19 03:05:13','2020.04.19.03.05.13.920543','2020-04-19 03:05:13','2020-04-19 03:06:22','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':4}','{}','{}','',0,0,3750286),(3808011,'2020-04-19 03:59:25','Done','Done','2020-04-19 03:27:02','2020.04.19.03.27.02.492400','2020-04-19 03:27:02','2020-04-19 03:28:09','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':2}','{}','{}','',0,0,3750277),(3808013,'2020-04-19 04:03:06','Done','Done','2020-04-19 03:30:41','2020.04.19.03.30.41.756783','2020-04-19 03:30:41','2020-04-19 03:31:50','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':4}','{}','{}','',0,0,3750275),(3808014,'2020-04-19 04:15:38','Done','Done','2020-04-19 03:43:15','2020.04.19.03.43.15.288509','2020-04-19 03:43:15','2020-04-19 03:44:23','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':2}','{}','{}','',0,0,3750285),(3808015,'2020-04-19 04:21:10','Done','Done','2020-04-19 03:48:42','2020.04.19.03.48.42.106765','2020-04-19 03:48:42','2020-04-19 03:49:53','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':1}','{}','{}','',0,0,3750276),(3808027,'2020-04-19 11:12:24','Done','Done','2020-04-19 10:40:00','2020.04.19.10.40.00.999645','2020-04-19 10:40:00','2020-04-19 10:41:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105846),(3808030,'2020-04-19 11:22:25','Done','Done','2020-04-19 10:50:00','2020.04.19.10.50.00.029760','2020-04-19 10:50:00','2020-04-19 10:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105854),(3808036,'2020-04-19 11:52:27','Done','Done','2020-04-19 11:20:00','2020.04.19.11.20.00.500584','2020-04-19 11:20:00','2020-04-19 11:21:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105879),(3808039,'2020-04-19 12:22:26','Done','Done','2020-04-19 11:50:00','2020.04.19.11.50.00.242648','2020-04-19 11:50:00','2020-04-19 11:51:09','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105899),(3808041,'2020-04-19 12:22:26','Done','Done','2020-04-19 11:50:00','2020.04.19.11.50.00.289893','2020-04-19 11:50:00','2020-04-19 11:51:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3808042,'2020-04-19 12:22:28','Done','Done','2020-04-19 11:50:00','2020.04.19.11.50.00.301239','2020-04-19 11:50:00','2020-04-19 11:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105896),(3808038,'2020-04-19 12:22:28','Done','Done','2020-04-19 11:50:00','2020.04.19.11.50.00.312351','2020-04-19 11:50:00','2020-04-19 11:51:09','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3542580),(3808040,'2020-04-19 12:22:34','Done','Done','2020-04-19 11:50:00','2020.04.19.11.50.00.278278','2020-04-19 11:50:00','2020-04-19 11:51:17','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3808054,'2020-04-19 13:12:25','Done','Done','2020-04-19 12:40:00','2020.04.19.12.40.00.160692','2020-04-19 12:40:00','2020-04-19 12:41:09','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105806),(3808088,'2020-04-20 17:03:46','Done','Done','2020-04-20 16:31:22','2020.04.20.16.31.22.655077','2020-04-20 16:31:22','2020-04-20 16:32:30','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':4}','{}','{}','',0,0,3750278),(3808090,'2020-04-20 21:55:39','Done','Done','2020-04-20 21:53:11','2020.04.20.21.53.11.393916','2020-04-20 21:53:11','2020-04-20 21:54:25','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':2}','{}','{}','',0,0,3749222),(3808091,'2020-04-20 21:55:39','Done','Done','2020-04-20 21:53:11','2020.04.20.21.53.12.247500','2020-04-20 21:53:12','2020-04-20 21:54:24','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':4}','{}','{}','',0,0,3749223),(3808089,'2020-04-20 22:25:42','Done','Done','2020-04-20 21:53:11','2020.04.20.21.53.12.258018','2020-04-20 21:53:12','2020-04-20 21:54:25','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':1}','{}','{}','',0,0,3749221),(3808093,'2020-04-21 01:10:01','Done','Done','2020-04-21 00:37:34','2020.04.21.00.37.34.174352','2020-04-21 00:37:34','2020-04-21 00:38:44','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':2}','{}','{}','',0,0,3749427),(3808092,'2020-04-21 01:12:00','Done','Done','2020-04-21 00:09:30','2020.04.21.00.09.30.514039','2020-04-21 00:09:30','2020-04-21 00:10:41','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':8}','{}','{}','',0,0,3749429),(3808094,'2020-04-21 01:19:14','Done','Done','2020-04-21 00:46:50','2020.04.21.00.46.50.219984','2020-04-21 00:46:50','2020-04-21 00:47:59','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':1}','{}','{}','',0,0,3749425),(3808095,'2020-04-21 01:23:22','Done','Done','2020-04-21 01:21:01','2020.04.21.01.21.01.791537','2020-04-21 01:21:01','2020-04-21 01:22:09','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':2}','{}','{}','',0,0,3750289),(3808096,'2020-04-21 01:28:07','Done','Done','2020-04-21 01:25:44','2020.04.21.01.25.44.385327','2020-04-21 01:25:44','2020-04-21 01:26:54','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':1}','{}','{}','',0,0,3750281),(3808098,'2020-04-21 02:04:02','Done','Done','2020-04-21 02:01:40','2020.04.21.02.01.40.894027','2020-04-21 02:01:40','2020-04-21 02:02:48','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':8}','{}','{}','',0,0,3749455),(3808097,'2020-04-21 02:19:50','Done','Done','2020-04-21 01:47:26','2020.04.21.01.47.26.536813','2020-04-21 01:47:26','2020-04-21 01:48:34','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':2}','{}','{}','',0,0,3750274),(3808101,'2020-04-21 02:49:05','Done','Done','2020-04-21 02:46:43','2020.04.21.02.46.43.960649','2020-04-21 02:46:43','2020-04-21 02:47:51','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':4}','{}','{}','',0,0,3749454),(3808099,'2020-04-21 02:58:32','Done','Done','2020-04-21 02:26:09','2020.04.21.02.26.09.934236','2020-04-21 02:26:09','2020-04-21 02:27:17','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':4}','{}','{}','',0,0,3749428),(3808100,'2020-04-21 02:59:47','Done','Done','2020-04-21 02:27:24','2020.04.21.02.27.24.156026','2020-04-21 02:27:24','2020-04-21 02:28:31','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':4}','{}','{}','',0,0,3750290),(3808102,'2020-04-21 03:23:49','Done','Done','2020-04-21 02:51:26','2020.04.21.02.51.26.084147','2020-04-21 02:51:26','2020-04-21 02:52:34','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':1}','{}','{}','',0,0,3750273),(3808104,'2020-04-21 03:27:52','Done','Done','2020-04-21 03:25:33','2020.04.21.03.25.33.779685','2020-04-21 03:25:33','2020-04-21 03:26:40','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':2}','{}','{}','',0,0,3749453),(3808106,'2020-04-21 03:32:07','Done','Done','2020-04-21 03:29:47','2020.04.21.03.29.47.909651','2020-04-21 03:29:47','2020-04-21 03:30:54','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':1}','{}','{}','',0,0,3750288),(3808103,'2020-04-21 03:37:36','Done','Done','2020-04-21 03:05:13','2020.04.21.03.05.13.475743','2020-04-21 03:05:13','2020-04-21 03:06:21','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':4}','{}','{}','',0,0,3750286),(3808105,'2020-04-21 03:59:25','Done','Done','2020-04-21 03:27:02','2020.04.21.03.27.02.885470','2020-04-21 03:27:02','2020-04-21 03:28:09','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':2}','{}','{}','',0,0,3750277),(3808107,'2020-04-21 04:03:03','Done','Done','2020-04-21 03:30:41','2020.04.21.03.30.41.250988','2020-04-21 03:30:41','2020-04-21 03:31:48','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':4}','{}','{}','',0,0,3750275),(3808108,'2020-04-21 04:15:39','Done','Done','2020-04-21 03:43:15','2020.04.21.03.43.15.710587','2020-04-21 03:43:15','2020-04-21 03:44:23','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':2}','{}','{}','',0,0,3750285),(3808109,'2020-04-21 04:21:04','Done','Done','2020-04-21 03:48:42','2020.04.21.03.48.42.780498','2020-04-21 03:48:42','2020-04-21 03:49:49','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':1}','{}','{}','',0,0,3750276),(3808121,'2020-04-21 11:12:22','Done','Done','2020-04-21 10:40:00','2020.04.21.10.40.00.904786','2020-04-21 10:40:00','2020-04-21 10:41:07','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105846),(3808123,'2020-04-21 11:22:30','Done','Done','2020-04-21 10:50:00','2020.04.21.10.50.00.160960','2020-04-21 10:50:00','2020-04-21 10:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105854),(3808131,'2020-04-21 11:52:28','Done','Done','2020-04-21 11:20:00','2020.04.21.11.20.00.038013','2020-04-21 11:20:00','2020-04-21 11:21:09','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105879),(3808132,'2020-04-21 12:22:28','Done','Done','2020-04-21 11:50:00','2020.04.21.11.50.00.292176','2020-04-21 11:50:00','2020-04-21 11:51:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105899),(3808134,'2020-04-21 12:22:30','Done','Done','2020-04-21 11:50:00','2020.04.21.11.50.00.259806','2020-04-21 11:50:00','2020-04-21 11:51:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3808135,'2020-04-21 12:22:30','Done','Done','2020-04-21 11:50:00','2020.04.21.11.50.00.270147','2020-04-21 11:50:00','2020-04-21 11:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105896),(3808136,'2020-04-21 12:22:32','Done','Done','2020-04-21 11:50:00','2020.04.21.11.50.00.281271','2020-04-21 11:50:00','2020-04-21 11:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3542580),(3808133,'2020-04-21 12:22:35','Done','Done','2020-04-21 11:50:00','2020.04.21.11.50.00.210668','2020-04-21 11:50:00','2020-04-21 11:51:16','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3808148,'2020-04-21 13:12:36','Done','Done','2020-04-21 12:40:00','2020.04.21.12.40.00.168012','2020-04-21 12:40:00','2020-04-21 12:41:17','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105806),(3808185,'2020-04-22 22:25:38','Done','Done','2020-04-22 21:53:11','2020.04.22.21.53.11.377804','2020-04-22 21:53:11','2020-04-22 21:54:20','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':1}','{}','{}','',0,0,3749221),(3808183,'2020-04-22 22:25:38','Done','Done','2020-04-22 21:53:11','2020.04.22.21.53.11.388422','2020-04-22 21:53:11','2020-04-22 21:54:21','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':2}','{}','{}','',0,0,3749222),(3808182,'2020-04-22 23:04:31','Done','Done','2020-04-22 16:31:22','2020.04.22.16.31.22.446895','2020-04-22 16:31:22','2020-04-22 16:32:37','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':4}','{}','{}','',0,0,3750278),(3808184,'2020-04-22 23:25:46','Done','Done','2020-04-22 21:53:11','2020.04.22.21.53.11.148027','2020-04-22 21:53:11','2020-04-22 21:54:21','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':4}','{}','{}','',0,0,3749223),(3808186,'2020-04-23 00:41:54','Done','Done','2020-04-23 00:09:30','2020.04.23.00.09.30.511644','2020-04-23 00:09:30','2020-04-23 00:10:39','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':8}','{}','{}','',0,0,3749429),(3808188,'2020-04-23 01:49:17','Done','Done','2020-04-23 00:46:50','2020.04.23.00.46.50.100561','2020-04-23 00:46:50','2020-04-23 00:47:58','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':1}','{}','{}','',0,0,3749425),(3808189,'2020-04-23 01:53:24','Done','Done','2020-04-23 01:21:01','2020.04.23.01.21.01.144593','2020-04-23 01:21:01','2020-04-23 01:22:09','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':2}','{}','{}','',0,0,3750289),(3808190,'2020-04-23 01:58:08','Done','Done','2020-04-23 01:25:44','2020.04.23.01.25.44.875672','2020-04-23 01:25:44','2020-04-23 01:26:53','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':1}','{}','{}','',0,0,3750281),(3808187,'2020-04-23 02:10:04','Done','Done','2020-04-23 00:37:34','2020.04.23.00.37.34.344184','2020-04-23 00:37:34','2020-04-23 00:38:43','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':2}','{}','{}','',0,0,3749427),(3808191,'2020-04-23 02:19:50','Done','Done','2020-04-23 01:47:26','2020.04.23.01.47.26.583251','2020-04-23 01:47:26','2020-04-23 01:48:33','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':2}','{}','{}','',0,0,3750274),(3808192,'2020-04-23 02:34:05','Done','Done','2020-04-23 02:01:40','2020.04.23.02.01.40.321314','2020-04-23 02:01:40','2020-04-23 02:02:48','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':8}','{}','{}','',0,0,3749455),(3808193,'2020-04-23 02:58:32','Done','Done','2020-04-23 02:26:09','2020.04.23.02.26.09.480722','2020-04-23 02:26:09','2020-04-23 02:27:17','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':4}','{}','{}','',0,0,3749428),(3808194,'2020-04-23 02:59:46','Done','Done','2020-04-23 02:27:24','2020.04.23.02.27.24.609570','2020-04-23 02:27:24','2020-04-23 02:28:31','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':4}','{}','{}','',0,0,3750290),(3808195,'2020-04-23 03:19:05','Done','Done','2020-04-23 02:46:43','2020.04.23.02.46.43.882667','2020-04-23 02:46:43','2020-04-23 02:47:50','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':4}','{}','{}','',0,0,3749454),(3808196,'2020-04-23 03:23:49','Done','Done','2020-04-23 02:51:26','2020.04.23.02.51.26.195303','2020-04-23 02:51:26','2020-04-23 02:52:34','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':1}','{}','{}','',0,0,3750273),(3808198,'2020-04-23 03:27:52','Done','Done','2020-04-23 03:25:33','2020.04.23.03.25.33.842466','2020-04-23 03:25:33','2020-04-23 03:26:40','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':2}','{}','{}','',0,0,3749453),(3808197,'2020-04-23 03:37:36','Done','Done','2020-04-23 03:05:13','2020.04.23.03.05.13.628033','2020-04-23 03:05:13','2020-04-23 03:06:20','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':4}','{}','{}','',0,0,3750286),(3808199,'2020-04-23 03:59:25','Done','Done','2020-04-23 03:27:02','2020.04.23.03.27.02.957255','2020-04-23 03:27:02','2020-04-23 03:28:09','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':2}','{}','{}','',0,0,3750277),(3808200,'2020-04-23 04:02:09','Done','Done','2020-04-23 03:29:47','2020.04.23.03.29.47.855340','2020-04-23 03:29:47','2020-04-23 03:30:54','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':1}','{}','{}','',0,0,3750288),(3808201,'2020-04-23 04:03:04','Done','Done','2020-04-23 03:30:41','2020.04.23.03.30.41.204129','2020-04-23 03:30:41','2020-04-23 03:31:48','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':4}','{}','{}','',0,0,3750275),(3808202,'2020-04-23 04:15:38','Done','Done','2020-04-23 03:43:15','2020.04.23.03.43.15.481989','2020-04-23 03:43:15','2020-04-23 03:44:23','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':2}','{}','{}','',0,0,3750285),(3808203,'2020-04-23 04:21:05','Done','Done','2020-04-23 03:48:42','2020.04.23.03.48.42.054158','2020-04-23 03:48:42','2020-04-23 03:49:49','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':1}','{}','{}','',0,0,3750276),(3808215,'2020-04-23 11:12:26','Done','Done','2020-04-23 10:40:00','2020.04.23.10.40.00.569335','2020-04-23 10:40:00','2020-04-23 10:41:09','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105846),(3808220,'2020-04-23 11:22:26','Done','Done','2020-04-23 10:50:00','2020.04.23.10.50.00.344369','2020-04-23 10:50:00','2020-04-23 10:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105854),(3808224,'2020-04-23 11:52:27','Done','Done','2020-04-23 11:20:00','2020.04.23.11.20.00.181417','2020-04-23 11:20:00','2020-04-23 11:21:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105879),(3808229,'2020-04-23 12:22:28','Done','Done','2020-04-23 11:50:00','2020.04.23.11.50.00.904296','2020-04-23 11:50:00','2020-04-23 11:51:07','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3542580),(3808226,'2020-04-23 12:22:28','Done','Done','2020-04-23 11:50:00','2020.04.23.11.50.00.925073','2020-04-23 11:50:00','2020-04-23 11:51:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3808228,'2020-04-23 12:22:30','Done','Done','2020-04-23 11:50:00','2020.04.23.11.50.00.893680','2020-04-23 11:50:00','2020-04-23 11:51:07','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105896),(3808230,'2020-04-23 12:22:30','Done','Done','2020-04-23 11:50:00','2020.04.23.11.50.00.914672','2020-04-23 11:50:00','2020-04-23 11:51:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105899),(3808227,'2020-04-23 12:22:35','Done','Done','2020-04-23 11:50:00','2020.04.23.11.50.00.860574','2020-04-23 11:50:00','2020-04-23 11:51:15','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3808245,'2020-04-23 13:12:30','Done','Done','2020-04-23 12:40:00','2020.04.23.12.40.00.167470','2020-04-23 12:40:00','2020-04-23 12:41:15','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105806),(3808278,'2020-04-24 22:25:38','Done','Done','2020-04-24 21:53:11','2020.04.24.21.53.11.908647','2020-04-24 21:53:11','2020-04-24 21:54:20','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':1}','{}','{}','',0,0,3749221),(3808279,'2020-04-24 22:25:38','Done','Done','2020-04-24 21:53:11','2020.04.24.21.53.12.114193','2020-04-24 21:53:12','2020-04-24 21:54:21','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':2}','{}','{}','',0,0,3749222),(3808281,'2020-04-25 01:10:03','Done','Done','2020-04-25 00:37:34','2020.04.25.00.37.34.643649','2020-04-25 00:37:34','2020-04-25 00:38:45','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':2}','{}','{}','',0,0,3749427),(3808280,'2020-04-25 01:11:59','Done','Done','2020-04-25 00:09:30','2020.04.25.00.09.30.870914','2020-04-25 00:09:30','2020-04-25 00:10:39','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':8}','{}','{}','',0,0,3749429),(3808282,'2020-04-25 02:19:21','Done','Done','2020-04-25 00:46:50','2020.04.25.00.46.50.257507','2020-04-25 00:46:50','2020-04-25 00:47:58','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':1}','{}','{}','',0,0,3749425),(3808284,'2020-04-25 02:28:11','Done','Done','2020-04-25 01:25:44','2020.04.25.01.25.44.240055','2020-04-25 01:25:44','2020-04-25 01:26:52','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':1}','{}','{}','',0,0,3750281),(3808283,'2020-04-25 03:23:32','Done','Done','2020-04-25 01:21:01','2020.04.25.01.21.01.679645','2020-04-25 01:21:01','2020-04-25 01:22:08','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':2}','{}','{}','',0,0,3750289),(3808276,'2020-04-25 03:34:52','Done','Done','2020-04-24 16:31:22','2020.04.24.16.31.22.959713','2020-04-24 16:31:22','2020-04-24 16:32:32','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':4}','{}','{}','',0,0,3750278),(3808289,'2020-04-25 03:49:10','Done','Done','2020-04-25 02:46:43','2020.04.25.02.46.43.190706','2020-04-25 02:46:43','2020-04-25 02:47:51','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':4}','{}','{}','',0,0,3749454),(3808285,'2020-04-25 03:50:00','Done','Done','2020-04-25 01:47:26','2020.04.25.01.47.26.584327','2020-04-25 01:47:26','2020-04-25 01:48:34','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':2}','{}','{}','',0,0,3750274),(3808290,'2020-04-25 03:53:53','Done','Done','2020-04-25 02:51:26','2020.04.25.02.51.26.640542','2020-04-25 02:51:26','2020-04-25 02:52:33','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':1}','{}','{}','',0,0,3750273),(3808277,'2020-04-25 03:56:17','Done','Done','2020-04-24 21:53:11','2020.04.24.21.53.12.124929','2020-04-24 21:53:12','2020-04-24 21:54:21','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':4}','{}','{}','',0,0,3749223),(3808292,'2020-04-25 03:57:56','Done','Done','2020-04-25 03:25:33','2020.04.25.03.25.33.776166','2020-04-25 03:25:33','2020-04-25 03:26:40','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':2}','{}','{}','',0,0,3749453),(3808287,'2020-04-25 03:58:41','Done','Done','2020-04-25 02:26:09','2020.04.25.02.26.09.420645','2020-04-25 02:26:09','2020-04-25 02:27:20','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':4}','{}','{}','',0,0,3749428),(3808293,'2020-04-25 03:59:24','Done','Done','2020-04-25 03:27:02','2020.04.25.03.27.02.031446','2020-04-25 03:27:02','2020-04-25 03:28:09','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':2}','{}','{}','',0,0,3750277),(3808288,'2020-04-25 03:59:54','Done','Done','2020-04-25 02:27:24','2020.04.25.02.27.24.503445','2020-04-25 02:27:24','2020-04-25 02:28:32','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':4}','{}','{}','',0,0,3750290),(3808294,'2020-04-25 04:02:10','Done','Done','2020-04-25 03:29:47','2020.04.25.03.29.47.621814','2020-04-25 03:29:47','2020-04-25 03:30:54','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':1}','{}','{}','',0,0,3750288),(3808291,'2020-04-25 04:07:41','Done','Done','2020-04-25 03:05:13','2020.04.25.03.05.13.577444','2020-04-25 03:05:13','2020-04-25 03:06:22','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':4}','{}','{}','',0,0,3750286),(3808296,'2020-04-25 04:15:39','Done','Done','2020-04-25 03:43:15','2020.04.25.03.43.15.363752','2020-04-25 03:43:15','2020-04-25 03:44:23','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':2}','{}','{}','',0,0,3750285),(3808297,'2020-04-25 04:21:08','Done','Done','2020-04-25 03:48:42','2020.04.25.03.48.42.999457','2020-04-25 03:48:42','2020-04-25 03:49:51','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':1}','{}','{}','',0,0,3750276),(3808295,'2020-04-25 04:33:08','Done','Done','2020-04-25 03:30:41','2020.04.25.03.30.41.967382','2020-04-25 03:30:41','2020-04-25 03:31:49','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':4}','{}','{}','',0,0,3750275),(3808286,'2020-04-25 05:04:20','Done','Done','2020-04-25 02:01:40','2020.04.25.02.01.40.631468','2020-04-25 02:01:40','2020-04-25 02:02:48','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':8}','{}','{}','',0,0,3749455),(3808309,'2020-04-25 11:12:22','Done','Done','2020-04-25 10:40:00','2020.04.25.10.40.00.636323','2020-04-25 10:40:00','2020-04-25 10:41:07','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105846),(3808313,'2020-04-25 11:22:24','Done','Done','2020-04-25 10:50:00','2020.04.25.10.50.00.165089','2020-04-25 10:50:00','2020-04-25 10:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105854),(3808319,'2020-04-25 11:52:25','Done','Done','2020-04-25 11:20:00','2020.04.25.11.20.00.438473','2020-04-25 11:20:00','2020-04-25 11:21:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105879),(3808323,'2020-04-25 12:22:27','Done','Done','2020-04-25 11:50:00','2020.04.25.11.50.00.747497','2020-04-25 11:50:00','2020-04-25 11:51:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105899),(3808324,'2020-04-25 12:22:27','Done','Done','2020-04-25 11:50:00','2020.04.25.11.50.00.758493','2020-04-25 11:50:00','2020-04-25 11:51:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3808320,'2020-04-25 12:22:29','Done','Done','2020-04-25 11:50:00','2020.04.25.11.50.00.769818','2020-04-25 11:50:00','2020-04-25 11:51:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3808321,'2020-04-25 12:22:29','Done','Done','2020-04-25 11:50:00','2020.04.25.11.50.00.703046','2020-04-25 11:50:00','2020-04-25 11:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105896),(3808322,'2020-04-25 12:22:33','Done','Done','2020-04-25 11:50:00','2020.04.25.11.50.00.735916','2020-04-25 11:50:00','2020-04-25 11:51:17','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3542580),(3808336,'2020-04-25 13:12:26','Done','Done','2020-04-25 12:40:00','2020.04.25.12.40.00.807710','2020-04-25 12:40:00','2020-04-25 12:41:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105806),(3808370,'2020-04-26 17:03:46','Done','Done','2020-04-26 16:31:22','2020.04.26.16.31.22.303034','2020-04-26 16:31:22','2020-04-26 16:32:31','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':4}','{}','{}','',0,0,3750278),(3808373,'2020-04-26 21:55:32','Done','Done','2020-04-26 21:53:11','2020.04.26.21.53.12.628508','2020-04-26 21:53:12','2020-04-26 21:54:20','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':4}','{}','{}','',0,0,3749223),(3808372,'2020-04-26 21:55:33','Done','Done','2020-04-26 21:53:11','2020.04.26.21.53.11.940904','2020-04-26 21:53:11','2020-04-26 21:54:19','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':2}','{}','{}','',0,0,3749222),(3808371,'2020-04-26 22:25:38','Done','Done','2020-04-26 21:53:11','2020.04.26.21.53.12.644736','2020-04-26 21:53:12','2020-04-26 21:54:20','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':1}','{}','{}','',0,0,3749221),(3808374,'2020-04-27 00:41:55','Done','Done','2020-04-27 00:09:30','2020.04.27.00.09.30.751137','2020-04-27 00:09:30','2020-04-27 00:10:39','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':8}','{}','{}','',0,0,3749429),(3808375,'2020-04-27 01:09:59','Done','Done','2020-04-27 00:37:34','2020.04.27.00.37.34.524709','2020-04-27 00:37:34','2020-04-27 00:38:43','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':2}','{}','{}','',0,0,3749427),(3808376,'2020-04-27 01:19:15','Done','Done','2020-04-27 00:46:50','2020.04.27.00.46.50.285638','2020-04-27 00:46:50','2020-04-27 00:47:58','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':1}','{}','{}','',0,0,3749425),(3808377,'2020-04-27 01:23:22','Done','Done','2020-04-27 01:21:01','2020.04.27.01.21.01.306351','2020-04-27 01:21:01','2020-04-27 01:22:09','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':2}','{}','{}','',0,0,3750289),(3808378,'2020-04-27 01:28:02','Done','Done','2020-04-27 01:25:44','2020.04.27.01.25.44.589295','2020-04-27 01:25:44','2020-04-27 01:26:51','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':1}','{}','{}','',0,0,3750281),(3808380,'2020-04-27 02:04:02','Done','Done','2020-04-27 02:01:40','2020.04.27.02.01.40.131376','2020-04-27 02:01:40','2020-04-27 02:02:48','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':8}','{}','{}','',0,0,3749455),(3808379,'2020-04-27 02:19:50','Done','Done','2020-04-27 01:47:26','2020.04.27.01.47.26.750572','2020-04-27 01:47:26','2020-04-27 01:48:34','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':2}','{}','{}','',0,0,3750274),(3808383,'2020-04-27 02:49:04','Done','Done','2020-04-27 02:46:43','2020.04.27.02.46.43.258739','2020-04-27 02:46:43','2020-04-27 02:47:51','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':4}','{}','{}','',0,0,3749454),(3808381,'2020-04-27 02:58:32','Done','Done','2020-04-27 02:26:09','2020.04.27.02.26.09.327700','2020-04-27 02:26:09','2020-04-27 02:27:17','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':4}','{}','{}','',0,0,3749428),(3808382,'2020-04-27 02:59:46','Done','Done','2020-04-27 02:27:24','2020.04.27.02.27.24.694977','2020-04-27 02:27:24','2020-04-27 02:28:31','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':4}','{}','{}','',0,0,3750290),(3808384,'2020-04-27 03:23:50','Done','Done','2020-04-27 02:51:26','2020.04.27.02.51.26.346994','2020-04-27 02:51:26','2020-04-27 02:52:34','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':1}','{}','{}','',0,0,3750273),(3808386,'2020-04-27 03:27:55','Done','Done','2020-04-27 03:25:33','2020.04.27.03.25.33.465068','2020-04-27 03:25:33','2020-04-27 03:26:41','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':2}','{}','{}','',0,0,3749453),(3808388,'2020-04-27 03:32:08','Done','Done','2020-04-27 03:29:47','2020.04.27.03.29.47.102617','2020-04-27 03:29:47','2020-04-27 03:30:54','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':1}','{}','{}','',0,0,3750288),(3808385,'2020-04-27 03:37:36','Done','Done','2020-04-27 03:05:13','2020.04.27.03.05.13.397177','2020-04-27 03:05:13','2020-04-27 03:06:21','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':4}','{}','{}','',0,0,3750286),(3808390,'2020-04-27 03:45:35','Done','Done','2020-04-27 03:43:15','2020.04.27.03.43.15.915204','2020-04-27 03:43:15','2020-04-27 03:44:23','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':2}','{}','{}','',0,0,3750285),(3808387,'2020-04-27 03:59:25','Done','Done','2020-04-27 03:27:02','2020.04.27.03.27.02.767558','2020-04-27 03:27:02','2020-04-27 03:28:10','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':2}','{}','{}','',0,0,3750277),(3808389,'2020-04-27 04:03:03','Done','Done','2020-04-27 03:30:41','2020.04.27.03.30.41.433178','2020-04-27 03:30:41','2020-04-27 03:31:48','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':4}','{}','{}','',0,0,3750275),(3808391,'2020-04-27 04:21:05','Done','Done','2020-04-27 03:48:42','2020.04.27.03.48.42.083801','2020-04-27 03:48:42','2020-04-27 03:49:49','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':1}','{}','{}','',0,0,3750276),(3808403,'2020-04-27 11:12:24','Done','Done','2020-04-27 10:40:00','2020.04.27.10.40.00.039055','2020-04-27 10:40:00','2020-04-27 10:41:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105846),(3808406,'2020-04-27 11:22:25','Done','Done','2020-04-27 10:50:00','2020.04.27.10.50.00.289811','2020-04-27 10:50:00','2020-04-27 10:51:09','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105854),(3808412,'2020-04-27 11:52:24','Done','Done','2020-04-27 11:20:00','2020.04.27.11.20.00.162822','2020-04-27 11:20:00','2020-04-27 11:21:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105879),(3808415,'2020-04-27 12:22:27','Done','Done','2020-04-27 11:50:00','2020.04.27.11.50.00.062492','2020-04-27 11:50:00','2020-04-27 11:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3542580),(3808417,'2020-04-27 12:22:27','Done','Done','2020-04-27 11:50:00','2020.04.27.11.50.00.106879','2020-04-27 11:50:00','2020-04-27 11:51:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3808418,'2020-04-27 12:22:29','Done','Done','2020-04-27 11:50:00','2020.04.27.11.50.00.117817','2020-04-27 11:50:00','2020-04-27 11:51:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3808414,'2020-04-27 12:22:29','Done','Done','2020-04-27 11:50:00','2020.04.27.11.50.00.128723','2020-04-27 11:50:00','2020-04-27 11:51:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105896),(3808416,'2020-04-27 12:22:33','Done','Done','2020-04-27 11:50:00','2020.04.27.11.50.00.096144','2020-04-27 11:50:00','2020-04-27 11:51:16','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105899),(3808429,'2020-04-27 13:12:26','Done','Done','2020-04-27 12:40:00','2020.04.27.12.40.00.963972','2020-04-27 12:40:00','2020-04-27 12:41:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105806),(3808465,'2020-04-29 16:27:43','Done','Done','2020-04-28 21:53:11','2020.04.28.21.53.11.337971','2020-04-28 21:53:11','2020-04-28 21:54:19','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':2}','{}','{}','',0,0,3749222),(3808467,'2020-04-29 16:27:51','Done','Done','2020-04-28 21:53:11','2020.04.28.21.53.11.326546','2020-04-28 21:53:11','2020-04-28 21:54:18','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':1}','{}','{}','',0,0,3749221),(3808469,'2020-05-01 10:16:01','Done','Done','2020-04-29 00:37:34','2020.04.29.00.37.34.076635','2020-04-29 00:37:34','2020-04-29 00:38:41','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':2}','{}','{}','',0,0,3749427),(3808497,'2020-05-01 10:18:26','Done','Done','2020-04-29 10:40:00','2020.04.29.10.40.00.334375','2020-04-29 10:40:00','2020-04-29 10:41:08','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105846),(3808470,'2020-05-01 10:25:29','Done','Done','2020-04-29 00:46:50','2020.04.29.00.46.50.131036','2020-04-29 00:46:50','2020-04-29 00:47:58','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':1}','{}','{}','',0,0,3749425),(3808477,'2020-05-01 10:25:29','Done','Done','2020-04-29 02:46:43','2020.04.29.02.46.43.594123','2020-04-29 02:46:43','2020-04-29 02:47:51','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':4}','{}','{}','',0,0,3749454),(3808473,'2020-05-01 10:26:01','Done','Done','2020-04-29 01:47:26','2020.04.29.01.47.26.683667','2020-04-29 01:47:26','2020-04-29 01:48:33','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':2}','{}','{}','',0,0,3750274),(3808507,'2020-05-01 10:28:52','Done','Done','2020-04-29 11:20:00','2020.04.29.11.20.00.266099','2020-04-29 11:20:00','2020-04-29 11:21:08','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105879),(3808511,'2020-05-01 10:28:54','Done','Done','2020-04-29 11:50:00','2020.04.29.11.50.00.721734','2020-04-29 11:50:00','2020-04-29 11:51:14','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3808509,'2020-05-01 10:28:59','Done','Done','2020-04-29 11:50:00','2020.04.29.11.50.00.678453','2020-04-29 11:50:00','2020-04-29 11:51:14','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105899),(3808510,'2020-05-01 10:29:02','Done','Done','2020-04-29 11:50:00','2020.04.29.11.50.00.710894','2020-04-29 11:50:00','2020-04-29 11:51:14','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105898),(3808499,'2020-05-01 10:29:04','Done','Done','2020-04-29 10:50:00','2020.04.29.10.50.01.059030','2020-04-29 10:50:01','2020-04-29 10:51:09','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105854),(3808512,'2020-05-01 10:29:04','Done','Done','2020-04-29 11:50:00','2020.04.29.11.50.00.732818','2020-04-29 11:50:00','2020-04-29 11:51:14','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105896),(3808478,'2020-05-01 10:30:45','Done','Done','2020-04-29 02:51:26','2020.04.29.02.51.26.847190','2020-04-29 02:51:26','2020-04-29 02:52:33','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':1}','{}','{}','',0,0,3750273),(3808471,'2020-05-01 10:30:48','Done','Done','2020-04-29 01:21:01','2020.04.29.01.21.01.020802','2020-04-29 01:21:01','2020-04-29 01:22:08','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':2}','{}','{}','',0,0,3750289),(3808466,'2020-05-01 10:34:40','Done','Done','2020-04-28 21:53:11','2020.04.28.21.53.11.132191','2020-04-28 21:53:11','2020-04-28 21:54:20','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':4}','{}','{}','',0,0,3749223),(3808480,'2020-05-01 10:34:55','Done','Done','2020-04-29 03:25:33','2020.04.29.03.25.33.268450','2020-04-29 03:25:33','2020-04-29 03:26:40','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':2}','{}','{}','',0,0,3749453),(3808472,'2020-05-01 10:35:02','Done','Done','2020-04-29 01:25:44','2020.04.29.01.25.44.284943','2020-04-29 01:25:44','2020-04-29 01:26:51','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':1}','{}','{}','',0,0,3750281),(3808476,'2020-05-01 10:37:20','Done','Done','2020-04-29 02:27:24','2020.04.29.02.27.24.380784','2020-04-29 02:27:24','2020-04-29 02:28:30','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':4}','{}','{}','',0,0,3750290),(3808481,'2020-05-01 10:38:17','Done','Done','2020-04-29 03:27:02','2020.04.29.03.27.02.167541','2020-04-29 03:27:02','2020-04-29 03:28:09','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':2}','{}','{}','',0,0,3750277),(3808475,'2020-05-01 10:38:18','Done','Done','2020-04-29 02:26:09','2020.04.29.02.26.09.181473','2020-04-29 02:26:09','2020-04-29 02:27:17','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':4}','{}','{}','',0,0,3749428),(3808482,'2020-05-01 10:38:48','Done','Done','2020-04-29 03:29:47','2020.04.29.03.29.47.807093','2020-04-29 03:29:47','2020-04-29 03:30:53','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':1}','{}','{}','',0,0,3750288),(3808464,'2020-05-01 10:40:52','Done','Done','2020-04-28 16:31:22','2020.04.28.16.31.22.358682','2020-04-28 16:31:22','2020-04-28 16:32:32','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':4}','{}','{}','',0,0,3750278),(3808479,'2020-05-01 10:44:00','Done','Done','2020-04-29 03:05:13','2020.04.29.03.05.13.601532','2020-04-29 03:05:13','2020-04-29 03:06:21','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':4}','{}','{}','',0,0,3750286),(3808526,'2020-05-01 10:48:17','Done','Done','2020-04-29 12:40:00','2020.04.29.12.40.00.596052','2020-04-29 12:40:00','2020-04-29 12:41:07','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',0,0,3105806),(3808559,'2020-05-01 10:57:05','Done','Done','2020-04-30 21:53:11','2020.04.30.21.53.11.302502','2020-04-30 21:53:11','2020-04-30 21:54:21','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':4}','{}','{}','',0,0,3749223),(3808561,'2020-05-01 10:57:11','Done','Done','2020-04-30 21:53:11','2020.04.30.21.53.11.281338','2020-04-30 21:53:11','2020-04-30 21:54:21','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':2}','{}','{}','',0,0,3749222),(3808485,'2020-05-01 10:57:13','Done','Done','2020-04-29 03:48:42','2020.04.29.03.48.42.803022','2020-04-29 03:48:42','2020-04-29 03:49:49','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':1}','{}','{}','',0,0,3750276),(3808508,'2020-05-01 10:59:09','Done','Done','2020-04-29 11:50:00','2020.04.29.11.50.00.743790','2020-04-29 11:50:00','2020-04-29 11:51:23','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',0,0,3542580),(3808558,'2020-05-01 11:05:51','Done','Done','2020-04-30 16:31:22','2020.04.30.16.31.22.035913','2020-04-30 16:31:22','2020-04-30 16:32:39','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':4}','{}','{}','',0,0,3750278),(3808483,'2020-05-01 11:09:17','Done','Done','2020-04-29 03:30:41','2020.04.29.03.30.41.144285','2020-04-29 03:30:41','2020-04-29 03:31:48','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':4}','{}','{}','',0,0,3750275),(3808484,'2020-05-01 11:21:54','Done','Done','2020-04-29 03:43:15','2020.04.29.03.43.15.243266','2020-04-29 03:43:15','2020-04-29 03:44:23','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':2}','{}','{}','',0,0,3750285),(3808560,'2020-05-01 11:57:18','Done','Done','2020-04-30 21:53:11','2020.04.30.21.53.11.120424','2020-04-30 21:53:11','2020-04-30 21:54:21','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':1}','{}','{}','',0,0,3749221),(3808474,'2020-05-01 16:40:45','Done','Done','2020-04-29 02:01:40','2020.04.29.02.01.40.364408','2020-04-29 02:01:40','2020-04-29 02:02:48','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':8}','{}','{}','',0,0,3749455),(3808468,'2020-05-01 16:49:21','Done','Done','2020-04-29 00:09:30','2020.04.29.00.09.30.595093','2020-04-29 00:09:30','2020-04-29 00:10:40','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':8}','{}','{}','',0,0,3749429); +/*!40000 ALTER TABLE `completed_tasks` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `nodes` +-- + +DROP TABLE IF EXISTS `nodes`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `nodes` ( + `node_id` int(11) NOT NULL AUTO_INCREMENT, + `resource_id` int(11) NOT NULL, + `name` varchar(128) NOT NULL, + PRIMARY KEY (`node_id`) +) ENGINE=MyISAM AUTO_INCREMENT=1704 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `nodes` +-- + +LOCK TABLES `nodes` WRITE; +/*!40000 ALTER TABLE `nodes` DISABLE KEYS */; +INSERT INTO `nodes` VALUES (1,1,'d07n15a'),(2,1,'d14n21'),(3,1,'d09n24a'),(4,1,'d16n06'),(5,1,'d14n24'),(6,1,'d16n07'),(7,1,'d15n10'),(8,1,'d16n13'),(9,1,'d15n04'),(10,1,'d15n03'),(11,1,'d09n18a'),(12,1,'d07n38b'),(13,1,'d15n35'),(14,1,'d15n30'),(15,1,'d15n29'),(16,1,'d09n38a'),(17,1,'d16n27'),(18,1,'d09n15b'),(19,1,'d16n37'),(20,1,'d07n36a'),(21,1,'d09n04a'),(22,1,'d07n20a'),(23,1,'d16n18'),(24,1,'d16n09'),(25,1,'d09n36a'),(26,1,'d09n13b'),(27,1,'d09n34a'),(28,1,'d07n37b'),(29,1,'d07n08b'),(30,1,'d07n08a'),(31,1,'d07n07a'),(32,1,'d16n24'),(33,1,'d07n14a'),(34,1,'d07n13a'),(35,1,'d07n10a'),(36,1,'d07n09b'),(37,1,'d07n09a'),(38,1,'d15n05'),(39,1,'d16n38'),(40,1,'d09n09a'),(41,1,'d09n07a'),(42,1,'d09n25a'),(43,1,'d09n05b'),(44,1,'d07n39b'),(45,1,'d07n39a'),(46,1,'d07n36b'),(47,1,'d07n33b'),(48,1,'d09n15a'),(49,1,'d14n02'),(50,1,'d14n18'),(51,1,'d07n28b'),(52,1,'d13n17'),(53,1,'d15n25'),(54,1,'d07n18b'),(55,1,'d15n27'),(56,1,'d13n08'),(57,1,'d07n29b'),(58,1,'d07n17a'),(59,1,'d16n17'),(60,1,'d15n02'),(61,1,'d14n25'),(62,1,'d16n40'),(63,1,'d16n31'),(64,1,'d15n21'),(65,1,'d15n20'),(66,1,'d14n10'),(67,1,'d14n05'),(68,1,'d13n22'),(69,1,'d13n18'),(70,1,'d13n09'),(71,1,'d07n40a'),(72,1,'d07n16a'),(73,1,'d16n20'),(74,1,'d16n12'),(75,1,'d15n28'),(76,1,'d15n15'),(77,1,'d14n07'),(78,1,'d13n14'),(79,1,'d09n09b'),(80,1,'d16n08'),(81,1,'d13n19'),(82,1,'d09n19b'),(83,1,'d16n32'),(84,1,'d16n16'),(85,1,'d16n28'),(86,1,'d16n15'),(87,1,'d16n11'),(88,1,'d09n36b'),(89,1,'d09n20a'),(90,1,'d13n10'),(91,1,'d13n01'),(92,1,'d13n07'),(93,1,'d15n40'),(94,1,'d09n39b'),(95,1,'d09n37a'),(96,1,'d09n31b'),(97,1,'d09n24b'),(98,1,'d07n31a'),(99,1,'d07n26a'),(100,1,'d07n11a'),(101,1,'d15n39'),(102,1,'d15n08'),(103,1,'d15n07'),(104,1,'d14n04'),(105,1,'d13n12'),(106,1,'d16n36'),(107,1,'d15n31'),(108,1,'d15n13'),(109,1,'d07n14b'),(110,1,'d15n18'),(111,1,'d07n27a'),(112,1,'d15n26'),(113,1,'d09n34b'),(114,1,'d16n23'),(115,1,'d16n14'),(116,1,'d15n37'),(117,1,'d15n33'),(118,1,'d09n28a'),(119,1,'d09n27a'),(120,1,'d09n19a'),(121,1,'d09n18b'),(122,1,'d09n17b'),(123,1,'d09n17a'),(124,1,'d09n16a'),(125,1,'d09n35b'),(126,1,'d09n10a'),(127,1,'d07n40b'),(128,1,'d16n39'),(129,1,'d15n36'),(130,1,'d15n24'),(131,1,'d14n17'),(132,1,'d15n09'),(133,1,'d09n38b'),(134,1,'d09n30a'),(135,1,'d09n29b'),(136,1,'d09n26b'),(137,1,'d09n26a'),(138,1,'d09n25b'),(139,1,'d09n20b'),(140,1,'d09n33a'),(141,1,'d09n27b'),(142,1,'d15n12'),(143,1,'d07n30a'),(144,1,'d16n21'),(145,1,'d07n06a'),(146,1,'d09n07b'),(147,1,'d09n05a'),(148,1,'d07n15b'),(149,1,'d09n28b'),(150,1,'d09n16b'),(151,1,'d09n13a'),(152,1,'d09n06b'),(153,1,'d09n04b'),(154,1,'d07n38a'),(155,1,'d07n34b'),(156,1,'d15n23'),(157,1,'d07n20b'),(158,1,'d07n31b'),(159,1,'d16n25'),(160,1,'d09n39a'),(161,1,'d07n24b'),(162,1,'d07n37a'),(163,1,'d07n18a'),(164,1,'d09n11b'),(165,1,'d07n19b'),(166,1,'d15n32'),(167,1,'d07n35b'),(168,1,'d15n22'),(169,1,'d16n33'),(170,1,'d09n08b'),(171,1,'d16n41'),(172,1,'d16n34'),(173,1,'d16n10'),(174,1,'d15n34'),(175,1,'d07n19a'),(176,1,'d07n17b'),(177,1,'d07n16b'),(178,1,'d07n13b'),(179,1,'d07n26b'),(180,1,'d07n25b'),(181,1,'d07n10b'),(182,1,'d07n11b'),(183,1,'d09n35a'),(184,1,'d09n33b'),(185,1,'d15n14'),(186,1,'d07n35a'),(187,1,'d09n11a'),(188,1,'d16n19'),(189,1,'d16n30'),(190,1,'d16n29'),(191,1,'d16n26'),(192,1,'d16n22'),(193,1,'d16n35'),(194,1,'d07n27b'),(195,1,'d07n25a'),(196,1,'d07n24a'),(197,1,'d09n10b'),(198,1,'d14n13'),(199,1,'d14n12'),(200,1,'d14n11'),(201,1,'d14n09'),(202,1,'d15n17'),(203,1,'d15n16'),(204,1,'d15n06'),(205,1,'d14n08'),(206,1,'d14n03'),(207,1,'d13n24'),(208,1,'d13n16'),(209,1,'d13n15'),(210,1,'d13n11'),(211,1,'d13n23'),(212,1,'d13n21'),(213,1,'d13n20'),(214,1,'d13n13'),(215,1,'d15n01'),(216,1,'d14n19'),(217,1,'d14n16'),(218,1,'d14n15'),(219,1,'d14n14'),(220,1,'d09n14a'),(221,1,'d13n05'),(222,1,'d13n04'),(223,1,'d13n03'),(224,1,'d13n06'),(225,1,'d09n08a'),(226,1,'d15n38'),(227,1,'d09n31a'),(228,1,'d13n02'),(229,1,'d14n22'),(230,1,'d14n20'),(231,1,'d14n23'),(232,1,'d07n34a'),(233,1,'d07n30b'),(234,1,'d07n29a'),(235,1,'d07n28a'),(236,1,'d07n06b'),(237,1,'d09n30b'),(238,1,'d07n33a'),(239,1,'d09n06a'),(240,1,'d15n11'),(241,1,'d14n06'),(242,1,'d15n19'),(243,1,'d07n07b'),(244,1,'d09n37b'),(245,1,'d09n14b'),(246,1,'d09n29a'),(247,1,'d09n40b'),(248,1,'d07n05b'),(249,1,'d09n40a'),(250,1,'d16n04'),(251,1,'d07n05a'),(252,1,'d16n05'); +/*!40000 ALTER TABLE `nodes` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `resource_app_kernels` +-- + +DROP TABLE IF EXISTS `resource_app_kernels`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `resource_app_kernels` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `resource_id` int(11) NOT NULL, + `app_kernel_id` int(11) NOT NULL, + `enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`id`), + KEY `resource_app_kernels_ibfk_1` (`resource_id`), + KEY `resource_app_kernels_ibfk_2` (`app_kernel_id`), + CONSTRAINT `resource_app_kernels_ibfk_1` FOREIGN KEY (`resource_id`) REFERENCES `resources` (`id`) ON DELETE CASCADE, + CONSTRAINT `resource_app_kernels_ibfk_2` FOREIGN KEY (`app_kernel_id`) REFERENCES `app_kernels` (`id`) ON DELETE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=90 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `resource_app_kernels` +-- + +LOCK TABLES `resource_app_kernels` WRITE; +/*!40000 ALTER TABLE `resource_app_kernels` DISABLE KEYS */; +INSERT INTO `resource_app_kernels` VALUES (2,1,23,1),(5,1,7,1),(6,1,25,1),(7,1,27,1),(8,1,28,1),(9,1,22,1),(10,1,24,1),(18,1,29,1),(83,28,23,1),(84,28,25,1),(85,28,7,1),(86,28,28,1),(87,28,29,1),(88,28,22,1),(89,28,24,1); +/*!40000 ALTER TABLE `resource_app_kernels` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `resources` +-- + +DROP TABLE IF EXISTS `resources`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `resources` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `xdmod_resource_id` int(11) DEFAULT NULL, + `name` varchar(256) NOT NULL, + `enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `resources` +-- + +LOCK TABLES `resources` WRITE; +/*!40000 ALTER TABLE `resources` DISABLE KEYS */; +INSERT INTO `resources` VALUES (1,1000000,'UBHPC_8core',1),(28,NULL,'UBHPC_32core',1); +/*!40000 ALTER TABLE `resources` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `scheduled_tasks` +-- + +DROP TABLE IF EXISTS `scheduled_tasks`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `scheduled_tasks` ( + `task_id` int(11) NOT NULL AUTO_INCREMENT, + `time_to_start` datetime DEFAULT NULL, + `repeat_in` char(20) DEFAULT NULL, + `resource` text, + `app` text, + `resource_param` text, + `app_param` text, + `task_param` text, + `group_id` text, + `parent_task_id` int(16) DEFAULT NULL, + PRIMARY KEY (`task_id`) +) ENGINE=MyISAM AUTO_INCREMENT=3809216 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `scheduled_tasks` +-- + +LOCK TABLES `scheduled_tasks` WRITE; +/*!40000 ALTER TABLE `scheduled_tasks` DISABLE KEYS */; +INSERT INTO `scheduled_tasks` VALUES (3809167,'2120-05-13 11:50:00','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',3105898),(3809124,'2120-05-12 21:53:11','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':1}','{}','{}','',3749221),(3809158,'2120-05-13 10:50:00','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',3105854),(3809125,'2120-05-12 21:53:11','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':2}','{}','{}','',3749222),(3809168,'2120-05-13 11:50:00','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',3105896),(3809169,'2120-05-13 11:50:00','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',3542580),(3809170,'2120-05-13 11:50:00','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':1}','{}','{}','edge, Daily Initial Testing schedule',3105899),(3809139,'2120-05-13 03:27:02','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':2}','{}','{}','',3750277),(3809137,'2120-05-13 03:05:13','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':4}','{}','{}','',3750286),(3809123,'2120-05-12 21:53:11','0-00-002 00:00:00','UBHPC_32core','namd','{\'nnodes\':4}','{}','{}','',3749223),(3809164,'2120-05-13 11:20:00','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',3105879),(3809185,'2120-05-13 12:40:00','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':2}','{}','{}','edge, Daily Initial Testing schedule',3105806),(3809127,'2120-05-13 00:37:34','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':2}','{}','{}','',3749427),(3809126,'2120-05-13 00:09:30','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':8}','{}','{}','',3749429),(3809138,'2120-05-13 03:25:33','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':2}','{}','{}','',3749453),(3809129,'2120-05-13 01:21:01','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':2}','{}','{}','',3750289),(3809134,'2120-05-13 02:27:24','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':4}','{}','{}','',3750290),(3809140,'2120-05-13 03:29:47','0-00-002 00:00:00','UBHPC_32core','nwchem','{\'nnodes\':1}','{}','{}','',3750288),(3809132,'2120-05-13 02:01:40','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':8}','{}','{}','',3749455),(3809155,'2120-05-13 10:40:00','0-00-002 00:00:00','UBHPC_8core','namd','{\'nnodes\':4}','{}','{}','edge, Daily Initial Testing schedule',3105846),(3809122,'2120-05-12 16:31:22','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':4}','{}','{}','',3750278),(3809128,'2120-05-13 00:46:50','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':1}','{}','{}','',3749425),(3809131,'2120-05-13 01:47:26','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':2}','{}','{}','',3750274),(3809136,'2120-05-13 02:51:26','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':1}','{}','{}','',3750273),(3809130,'2120-05-13 01:25:44','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':1}','{}','{}','',3750281),(3809166,'2120-05-13 11:50:00','0-00-002 00:00:00','UBHPC_8core','nwchem','{\'nnodes\':8}','{}','{}','edge, Daily Initial Testing schedule',3105898),(3809142,'2120-05-13 03:43:15','0-00-002 00:00:00','UBHPC_32core','gamess','{\'nnodes\':2}','{}','{}','',3750285),(3809143,'2120-05-13 03:48:42','0-00-002 00:00:00','UBHPC_32core','enzo','{\'nnodes\':1}','{}','{}','',3750276),(3809141,'2120-05-13 03:30:41','0-00-002 00:00:00','UBHPC_32core','graph500','{\'nnodes\':4}','{}','{}','',3750275),(3809135,'2120-05-13 02:46:43','0-00-002 00:00:00','UBHPC_32core','imb','{\'nnodes\':4}','{}','{}','',3749454),(3809133,'2120-05-13 02:26:09','0-00-002 00:00:00','UBHPC_32core','hpcc','{\'nnodes\':4}','{}','{}','',3749428); +/*!40000 ALTER TABLE `scheduled_tasks` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Final view structure for view `akrr_err_distribution_alltime` +-- + +/*!50001 DROP VIEW IF EXISTS `akrr_err_distribution_alltime`*/; +/*!50001 SET @saved_cs_client = @@character_set_client */; +/*!50001 SET @saved_cs_results = @@character_set_results */; +/*!50001 SET @saved_col_connection = @@collation_connection */; +/*!50001 SET character_set_client = utf8 */; +/*!50001 SET character_set_results = utf8 */; +/*!50001 SET collation_connection = utf8_general_ci */; +/*!50001 CREATE ALGORITHM=UNDEFINED */ +/*!50013 DEFINER=`akrruser`@`localhost` SQL SECURITY DEFINER */ +/*!50001 VIEW `akrr_err_distribution_alltime` AS select count(0) AS `Rows`,`akrr_erran2`.`err_regexp_id` AS `err_regexp_id`,`akrr_erran2`.`err_msg` AS `err_msg` from `akrr_erran2` group by `akrr_erran2`.`err_regexp_id` order by `akrr_erran2`.`err_regexp_id` */; +/*!50001 SET character_set_client = @saved_cs_client */; +/*!50001 SET character_set_results = @saved_cs_results */; +/*!50001 SET collation_connection = @saved_col_connection */; + +-- +-- Final view structure for view `akrr_erran` +-- + +/*!50001 DROP VIEW IF EXISTS `akrr_erran`*/; +/*!50001 SET @saved_cs_client = @@character_set_client */; +/*!50001 SET @saved_cs_results = @@character_set_results */; +/*!50001 SET @saved_col_connection = @@collation_connection */; +/*!50001 SET character_set_client = utf8 */; +/*!50001 SET character_set_results = utf8 */; +/*!50001 SET collation_connection = utf8_general_ci */; +/*!50001 CREATE ALGORITHM=UNDEFINED */ +/*!50013 DEFINER=`akrruser`@`localhost` SQL SECURITY DEFINER */ +/*!50001 VIEW `akrr_erran` AS select `c`.`task_id` AS `task_id`,`c`.`time_finished` AS `time_finished`,`c`.`resource` AS `resource`,`c`.`app` AS `app`,`c`.`resource_param` AS `resource_param`,`ii`.`status` AS `status`,`ii`.`walltime` AS `walltime`,`ii`.`body` AS `body`,`em`.`appstdout` AS `appstdout`,`em`.`stderr` AS `stderr`,`em`.`stdout` AS `stdout` from ((`completed_tasks` `c` join `akrr_xdmod_instanceinfo` `ii`) join `akrr_errmsg` `em`) where ((`c`.`task_id` = `ii`.`instance_id`) and (`c`.`task_id` = `em`.`task_id`)) */; +/*!50001 SET character_set_client = @saved_cs_client */; +/*!50001 SET character_set_results = @saved_cs_results */; +/*!50001 SET collation_connection = @saved_col_connection */; + +-- +-- Final view structure for view `akrr_erran2` +-- + +/*!50001 DROP VIEW IF EXISTS `akrr_erran2`*/; +/*!50001 SET @saved_cs_client = @@character_set_client */; +/*!50001 SET @saved_cs_results = @@character_set_results */; +/*!50001 SET @saved_col_connection = @@collation_connection */; +/*!50001 SET character_set_client = utf8 */; +/*!50001 SET character_set_results = utf8 */; +/*!50001 SET collation_connection = utf8_general_ci */; +/*!50001 CREATE ALGORITHM=UNDEFINED */ +/*!50013 DEFINER=`akrruser`@`localhost` SQL SECURITY DEFINER */ +/*!50001 VIEW `akrr_erran2` AS select `ct`.`task_id` AS `task_id`,`ct`.`time_finished` AS `time_finished`,`ct`.`resource` AS `resource`,`ct`.`app` AS `app`,`ct`.`resource_param` AS `resource_param`,`ii`.`status` AS `status`,`em`.`err_regexp_id` AS `err_regexp_id`,`re`.`err_msg` AS `err_msg`,`ii`.`walltime` AS `walltime`,`ct`.`status` AS `akrr_status`,`ct`.`status` AS `akrr_status_info`,`em`.`appstdout` AS `appstdout`,`em`.`stderr` AS `stderr`,`em`.`stdout` AS `stdout`,`ii`.`body` AS `ii_body`,`ii`.`message` AS `ii_msg` from (((`completed_tasks` `ct` join `akrr_xdmod_instanceinfo` `ii`) join `akrr_errmsg` `em`) join `akrr_err_regexp` `re`) where ((`ct`.`task_id` = `ii`.`instance_id`) and (`ct`.`task_id` = `em`.`task_id`) and (`re`.`id` = `em`.`err_regexp_id`)) */; +/*!50001 SET character_set_client = @saved_cs_client */; +/*!50001 SET character_set_results = @saved_cs_results */; +/*!50001 SET collation_connection = @saved_col_connection */; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2020-06-04 14:59:23 diff --git a/tests/artifacts/mod_appkernel_xdmod_dev_test.sql b/tests/artifacts/mod_appkernel_xdmod_dev_test.sql new file mode 100644 index 0000000..fb0b2f0 --- /dev/null +++ b/tests/artifacts/mod_appkernel_xdmod_dev_test.sql @@ -0,0 +1,914 @@ +-- MySQL dump 10.13 Distrib 5.7.30, for Linux (x86_64) +-- +-- Host: localhost Database: mod_appkernel_xdmod_dev +-- ------------------------------------------------------ +-- Server version 5.7.30-0ubuntu0.18.04.1 + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `a_data` +-- + +DROP TABLE IF EXISTS `a_data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `a_data` ( + `ak_name` varchar(64) NOT NULL COMMENT ' ', + `resource` varchar(128) NOT NULL, + `metric` varchar(128) NOT NULL, + `num_units` int(10) unsigned NOT NULL DEFAULT '1', + `processor_unit` enum('node','core') DEFAULT NULL, + `collected` int(10) NOT NULL DEFAULT '0', + `env_version` varchar(64) DEFAULT NULL, + `unit` varchar(32) DEFAULT NULL, + `metric_value` varchar(255) DEFAULT NULL, + `ak_def_id` int(10) unsigned NOT NULL DEFAULT '0', + `resource_id` int(10) unsigned NOT NULL DEFAULT '0', + `metric_id` int(10) unsigned NOT NULL DEFAULT '0', + `status` enum('success','failure','error','queued') DEFAULT NULL, + KEY `ak_def_id` (`ak_def_id`,`resource_id`,`metric_id`,`num_units`), + KEY `ak_name` (`ak_name`,`resource`,`metric`,`num_units`), + KEY `resource_id` (`resource_id`), + KEY `metric_id` (`metric_id`), + KEY `num_units` (`num_units`), + KEY `env_version` (`env_version`), + KEY `collected` (`collected`), + KEY `status` (`status`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `a_data` +-- + +LOCK TABLES `a_data` WRITE; +/*!40000 ALTER TABLE `a_data` DISABLE KEYS */; +/*!40000 ALTER TABLE `a_data` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `a_data2` +-- + +DROP TABLE IF EXISTS `a_data2`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `a_data2` ( + `ak_name` varchar(64) NOT NULL COMMENT ' ', + `resource` varchar(128) NOT NULL, + `metric` varchar(128) NOT NULL, + `num_units` int(10) unsigned NOT NULL DEFAULT '1', + `processor_unit` enum('node','core') DEFAULT NULL, + `collected` int(10) NOT NULL DEFAULT '0', + `env_version` varchar(64) DEFAULT NULL, + `unit` varchar(32) DEFAULT NULL, + `metric_value` varchar(255) DEFAULT NULL, + `running_average` double DEFAULT NULL, + `control` double DEFAULT NULL, + `controlStart` double DEFAULT NULL, + `controlEnd` double DEFAULT NULL, + `controlMin` double DEFAULT NULL, + `controlMax` double DEFAULT NULL, + `ak_def_id` int(10) unsigned NOT NULL DEFAULT '0', + `resource_id` int(10) unsigned NOT NULL DEFAULT '0', + `metric_id` int(10) unsigned NOT NULL DEFAULT '0', + `status` enum('success','failure','error','queued') DEFAULT NULL, + `controlStatus` enum('undefined','control_region_time_interval','in_contol','under_performing','over_performing','failed') DEFAULT NULL, + KEY `ak_def_id` (`ak_def_id`,`resource_id`,`metric_id`,`num_units`), + KEY `ak_name` (`ak_name`,`resource`,`metric`,`num_units`), + KEY `ak_collected` (`ak_def_id`,`collected`,`status`), + KEY `resource_id` (`resource_id`), + KEY `metric_id` (`metric_id`), + KEY `num_units` (`num_units`), + KEY `env_version` (`env_version`), + KEY `collected` (`collected`), + KEY `status` (`status`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `a_data2` +-- + +LOCK TABLES `a_data2` WRITE; +/*!40000 ALTER TABLE `a_data2` DISABLE KEYS */; +/*!40000 ALTER TABLE `a_data2` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `a_tree` +-- + +DROP TABLE IF EXISTS `a_tree`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `a_tree` ( + `ak_name` varchar(64) NOT NULL COMMENT ' ', + `resource` varchar(128) NOT NULL, + `metric` varchar(128) NOT NULL, + `unit` varchar(32) DEFAULT NULL, + `processor_unit` enum('node','core') DEFAULT NULL, + `num_units` int(10) unsigned NOT NULL DEFAULT '1', + `ak_def_id` int(10) unsigned NOT NULL DEFAULT '0', + `resource_id` int(10) unsigned NOT NULL, + `metric_id` int(10) unsigned NOT NULL DEFAULT '0', + `start_time` datetime DEFAULT NULL, + `end_time` datetime DEFAULT NULL, + `status` enum('success','failure','error','queued') DEFAULT NULL, + KEY `ak_def_id` (`ak_def_id`,`resource_id`,`metric_id`,`num_units`), + KEY `resource_id` (`resource_id`), + KEY `start_time` (`start_time`), + KEY `end_time` (`end_time`), + KEY `status` (`status`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `a_tree` +-- + +LOCK TABLES `a_tree` WRITE; +/*!40000 ALTER TABLE `a_tree` DISABLE KEYS */; +/*!40000 ALTER TABLE `a_tree` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `a_tree2` +-- + +DROP TABLE IF EXISTS `a_tree2`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `a_tree2` ( + `ak_name` varchar(64) NOT NULL COMMENT ' ', + `resource` varchar(128) NOT NULL, + `metric` varchar(128) NOT NULL, + `unit` varchar(32) DEFAULT NULL, + `processor_unit` enum('node','core') DEFAULT NULL, + `num_units` int(10) unsigned NOT NULL DEFAULT '1', + `ak_def_id` int(10) unsigned NOT NULL DEFAULT '0', + `resource_id` int(10) unsigned NOT NULL, + `metric_id` int(10) unsigned NOT NULL DEFAULT '0', + `start_time` datetime DEFAULT NULL, + `end_time` datetime DEFAULT NULL, + `status` enum('success','failure','error','queued') DEFAULT NULL, + KEY `ak_def_id` (`ak_def_id`,`resource_id`,`metric_id`,`num_units`), + KEY `resource_id` (`resource_id`), + KEY `start_time` (`start_time`), + KEY `end_time` (`end_time`), + KEY `status` (`status`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `a_tree2` +-- + +LOCK TABLES `a_tree2` WRITE; +/*!40000 ALTER TABLE `a_tree2` DISABLE KEYS */; +/*!40000 ALTER TABLE `a_tree2` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ak_has_metric` +-- + +DROP TABLE IF EXISTS `ak_has_metric`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ak_has_metric` ( + `ak_id` int(10) unsigned NOT NULL, + `metric_id` int(10) unsigned NOT NULL, + `num_units` int(10) unsigned NOT NULL, + PRIMARY KEY (`ak_id`,`metric_id`,`num_units`), + KEY `fk_reporter_has_metric_metric` (`metric_id`), + KEY `fk_reporter_has_metric_reporter` (`ak_id`,`num_units`), + CONSTRAINT `ak_has_metric_ibfk_1` FOREIGN KEY (`ak_id`) REFERENCES `app_kernel` (`ak_id`), + CONSTRAINT `fk_reporter_has_metric_metric` FOREIGN KEY (`metric_id`) REFERENCES `metric` (`metric_id`) ON DELETE CASCADE ON UPDATE NO ACTION, + CONSTRAINT `fk_reporter_has_metric_reporter` FOREIGN KEY (`ak_id`, `num_units`) REFERENCES `app_kernel` (`ak_id`, `num_units`) ON DELETE CASCADE ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Association between app kernels and metrics'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ak_has_metric` +-- + +LOCK TABLES `ak_has_metric` WRITE; +/*!40000 ALTER TABLE `ak_has_metric` DISABLE KEYS */; +/*!40000 ALTER TABLE `ak_has_metric` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ak_has_parameter` +-- + +DROP TABLE IF EXISTS `ak_has_parameter`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ak_has_parameter` ( + `ak_id` int(10) unsigned NOT NULL, + `parameter_id` int(10) unsigned NOT NULL, + PRIMARY KEY (`ak_id`,`parameter_id`), + KEY `fk_reporter_has_parameter_parameter` (`parameter_id`), + KEY `fk_reporter_has_parameter_reporter` (`ak_id`), + CONSTRAINT `fk_reporter_has_parameter_parameter` FOREIGN KEY (`parameter_id`) REFERENCES `parameter` (`parameter_id`) ON DELETE CASCADE ON UPDATE NO ACTION, + CONSTRAINT `fk_reporter_has_parameter_reporter` FOREIGN KEY (`ak_id`) REFERENCES `app_kernel` (`ak_id`) ON DELETE CASCADE ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Association between app kernels and parameters'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ak_has_parameter` +-- + +LOCK TABLES `ak_has_parameter` WRITE; +/*!40000 ALTER TABLE `ak_has_parameter` DISABLE KEYS */; +/*!40000 ALTER TABLE `ak_has_parameter` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ak_instance` +-- + +DROP TABLE IF EXISTS `ak_instance`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ak_instance` ( + `ak_id` int(10) unsigned NOT NULL COMMENT ' ', + `collected` datetime NOT NULL, + `resource_id` int(10) unsigned NOT NULL, + `instance_id` int(11) DEFAULT NULL, + `job_id` varchar(32) DEFAULT NULL COMMENT 'resource mgr job id', + `status` enum('success','failure','error','queued') DEFAULT NULL, + `ak_def_id` int(10) unsigned NOT NULL, + `env_version` varchar(64) DEFAULT NULL, + `controlStatus` enum('undefined','control_region_time_interval','in_contol','under_performing','over_performing','failed') NOT NULL DEFAULT 'undefined', + PRIMARY KEY (`ak_id`,`collected`,`resource_id`), + KEY `fk_reporter_instance_reporter` (`ak_id`), + KEY `fk_reporter_instance_resource` (`resource_id`), + KEY `ak_def_id` (`ak_def_id`,`collected`,`resource_id`,`env_version`), + KEY `instance_id` (`instance_id`), + CONSTRAINT `fk_reporter_instance_reporter` FOREIGN KEY (`ak_id`) REFERENCES `app_kernel` (`ak_id`) ON DELETE CASCADE ON UPDATE NO ACTION, + CONSTRAINT `fk_reporter_instance_resource` FOREIGN KEY (`resource_id`) REFERENCES `resource` (`resource_id`) ON DELETE CASCADE ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Execution instance'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ak_instance` +-- + +LOCK TABLES `ak_instance` WRITE; +/*!40000 ALTER TABLE `ak_instance` DISABLE KEYS */; +/*!40000 ALTER TABLE `ak_instance` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ak_instance_debug` +-- + +DROP TABLE IF EXISTS `ak_instance_debug`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ak_instance_debug` ( + `ak_id` int(10) unsigned NOT NULL, + `collected` datetime NOT NULL, + `resource_id` int(10) unsigned NOT NULL, + `instance_id` int(11) DEFAULT NULL, + `message` blob, + `stderr` blob, + `walltime` float DEFAULT NULL, + `cputime` float DEFAULT NULL, + `memory` float DEFAULT NULL, + `ak_error_cause` blob, + `ak_error_message` blob, + `ak_queue_time` int(11) DEFAULT NULL, + PRIMARY KEY (`ak_id`,`collected`,`resource_id`), + KEY `instance_id` (`instance_id`), + CONSTRAINT `fk_ak_debug_ak_instance1` FOREIGN KEY (`ak_id`, `collected`, `resource_id`) REFERENCES `ak_instance` (`ak_id`, `collected`, `resource_id`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Debugging information for application kernels.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ak_instance_debug` +-- + +LOCK TABLES `ak_instance_debug` WRITE; +/*!40000 ALTER TABLE `ak_instance_debug` DISABLE KEYS */; +/*!40000 ALTER TABLE `ak_instance_debug` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ak_supremm_metrics` +-- + +DROP TABLE IF EXISTS `ak_supremm_metrics`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ak_supremm_metrics` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `ak_def_id` int(11) NOT NULL, + `supremm_metric_id` int(11) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ak_supremm_metrics` +-- + +LOCK TABLES `ak_supremm_metrics` WRITE; +/*!40000 ALTER TABLE `ak_supremm_metrics` DISABLE KEYS */; +/*!40000 ALTER TABLE `ak_supremm_metrics` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `app_kernel` +-- + +DROP TABLE IF EXISTS `app_kernel`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `app_kernel` ( + `ak_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `num_units` int(10) unsigned NOT NULL DEFAULT '1', + `ak_def_id` int(10) unsigned DEFAULT NULL, + `name` varchar(128) NOT NULL, + `type` varchar(64) DEFAULT NULL, + `parser` varchar(64) DEFAULT NULL, + PRIMARY KEY (`ak_id`,`num_units`), + UNIQUE KEY `index_unique` (`num_units`,`ak_def_id`), + KEY `fk_reporter_app_kernel` (`ak_def_id`), + CONSTRAINT `fk_reporter_app_kernel` FOREIGN KEY (`ak_def_id`) REFERENCES `app_kernel_def` (`ak_def_id`) ON DELETE CASCADE ON UPDATE NO ACTION +) ENGINE=InnoDB AUTO_INCREMENT=111 DEFAULT CHARSET=latin1 COMMENT='Application kernel info including num processing units'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `app_kernel` +-- + +LOCK TABLES `app_kernel` WRITE; +/*!40000 ALTER TABLE `app_kernel` DISABLE KEYS */; +/*!40000 ALTER TABLE `app_kernel` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `app_kernel_def` +-- + +DROP TABLE IF EXISTS `app_kernel_def`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `app_kernel_def` ( + `ak_def_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(64) NOT NULL COMMENT ' ', + `ak_base_name` varchar(128) NOT NULL, + `processor_unit` enum('node','core') DEFAULT NULL, + `enabled` tinyint(1) NOT NULL DEFAULT '1', + `description` text, + `visible` tinyint(1) NOT NULL, + `control_criteria` double DEFAULT NULL, + PRIMARY KEY (`ak_def_id`), + UNIQUE KEY `name_UNIQUE` (`name`), + UNIQUE KEY `reporter_base` (`ak_base_name`), + KEY `visible` (`visible`) +) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=latin1 COMMENT='App kernel definition.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `app_kernel_def` +-- + +LOCK TABLES `app_kernel_def` WRITE; +/*!40000 ALTER TABLE `app_kernel_def` DISABLE KEYS */; +INSERT INTO `app_kernel_def` VALUES (1,'Amber (cores)','amber.core','core',1,'Amber is a molecular dynamics simulation package originally developed by University of California, San Francisco. \r\n

\r\nThe input to the benchmark runs is the JAC (Joint Amber-Charmm) Benchmark Input, which consists of 23,558 atoms (protein: 159 residues, 2489 atoms, and water: 7,023 molecules TIP3P, 21,069 atoms), uses 2 fs step size, 10,000 steps, and uses the NPT ensemble.\r\n

\r\nThe program being benchmarked is the PMEMD component of Amber version 9. PMEMD is a feature-limited but faster implementation of the original main Amber component SANDER.',1,NULL),(2,'BLAS','densela.blas','node',0,'BLAS (Basic Linear Algebra Subroutine) measures the floating-point performance of a single SMP node using the DGEMM (Double-Precision General Matrix Multiplication) routine. The code is compiled to use Intel Math Kernel Library and runs in multi-threaded mode.',0,NULL),(3,'CHARMM (cores)','charmm.core','core',1,'CHARMM is a molecular dynamics simulation package developed by Professor Martin Karplus\'s research group at Harvard University.\r\n

\r\nThe input to the benchmark runs is the JAC (Joint Amber-Charmm) Benchmark Input, which consists of 23,558 atoms (protein: 159 residues, 2489 atoms, and water: 7,023 molecules TIP3P, 21,069 atoms), uses 1 fs step size, 1,000 steps, and uses the NVT ensemble.\r\n

\r\nThe version of CHARMM being benchmarked is 35b1.',1,NULL),(4,'CPMD (cores)','cpmd.core','core',1,'CPMD is an ab-initio quantum mechanical molecular dynamics \r\nbased on the Car-Parrinello method. CPMD is developed by IBM and MPI Stuttgart.\r\n

\r\nThe input to the benchmark runs is 32 water molecules molecular dynamics simulation with 0.4 fs step size and 50 steps.\r\n

\r\nThe version of CPMD being benchmarked is 3.11.1.',1,NULL),(5,'GAMESS (cores)','gamess.core','core',1,'GAMESS is an ab initio computational chemistry software package developed by Professor Mark Gordon\'s research group at Iowa State University.\r\n

\r\nThe input to the benchmark runs is restricted Hartree-Fock energy calculation of C8H10 with MP2 correction.\r\n

\r\nThe version of GAMESS being benchmarked is 12 JAN 2009 (R3).\r\n',1,NULL),(6,'HPCC (cores)','hpcc.core','core',1,'HPC Challenge Benchmark suite. It consists of a) High Performance LINPACK, which solves a linear system of equations and measures the floating-point performance, b) Parallel Matrix Transpose (PTRANS), which measures total communications capacity of the interconnect, c) MPI Random Access, which measures the rate of random updates of remote memory, d) Fast Fourier Transform, which measures the floating-point performance of double-precision complex one-dimensional Discrete Fourier Transform. ',1,NULL),(7,'IMB','imb','node',1,'Intel MPI Benchmark (formally Pallas MPI Benchmark) suite. The suite measures the interconnect\'s latency, bandwidth, bidirectional bandwidth, and various MPI collective operations\' latencies (Broadcast, AllToAll, AllGather, AllReduce, etc). It also measures the MPI-2 Remote Direct Memory Access (RDMA) performance.\r\n

\r\nThe benchmarks are run with one process (single-threaded mode) per node.',1,NULL),(8,'LAMMPS (cores)','lammps.core','core',1,'LAMMPS is a molecular dynamics simulation package developed at Sandia National Laboratories.\r\n

\r\nThe input to the benchmark runs is the rhodopsin protein benchmark input, which consists of 32,000 atoms, uses 2 fs step size, 4,000 steps, and uses the NPT ensemble.\r\n

\r\nThe version of LAMMPS being benchmarked is 1 May 2010',1,NULL),(9,'NAMD (cores)','namd.core','core',1,'NAMD is a molecular dynamics simulation package developed by the Theoretical and Computational Biophysics Group in the Beckman Institute for Advanced Science and Technology at the University of Illinois at Urbana-Champaign.\r\n

\r\nThe input to the benchmark runs is the Apolipoprotein A1 benchmark input, which consists of 92,224 atoms, uses 2 fs step size, 1,200 steps, and uses the NVE ensemble.\r\n

\r\nThe version of NAMD being benchmarked is 2.7b2',1,NULL),(10,'NPB (cores)','npb.core','core',1,'NAS Parallel Benchmark (NPB) suite. It consists of computation kernels derived from computational fluid dynamics (CFD) applications. The kernels are: a) Conjugate Gradient (CG), which calculates the smallest eigenvalue of a sparse symmetric matrix using the conjugate gradient method, b) Fast Fourier Transform (FT), which solves a 3D Poisson PDE using the fast Fourier transform, c) Block Tridiagonal (BT), Scalar Pentadiagonal (SP), Lower-Upper Solver (LU), which are three different algorithms to solve the 3D Navier-Stokes equation, d) Multi Grid, which uses V-cycle multigrid algorithm to solve a 3D discrete Poisson problem.

Certain kernels, such as BT and SP, will only run on square-numbered processors.',1,NULL),(11,'NWChem (cores)','nwchem.core','core',1,'NWChem is an ab initio computational chemistry software package developed by Pacific Northwest National Laboratory.\r\n

\r\nThe input to the benchmark runs is the Hartree-Fock energy calculation of Au+ with MP2 and Coupled Cluster corrections.\r\n

\r\nThe version of NWChem being benchmarked is 5.1.1.\r\n

\r\nThe metrics we show here contain NWChem\'s self-collected Global Arrays statistics. The Global Arrays toolkit is the communication library used by NWChem to manipulate large arrays distributed across compute nodes. The Global Arrays toolkit has three basic operations: Get (fetch values from remote memory), Put (store values to remote memory), and Accumulate (update values in remote memory). NWChem measures the numbers of these operations and the amount of data affected by them.',1,NULL),(12,'OMB','omb','node',1,'Ohio State University\'s MPI Benchmark (OMB) suite. The suite measures the interconnect\'s latency, bandwidth, bidirectional bandwidth, multiple bandwidth / message rate test, multi-pair latency and broadcast latency. \r\n

\r\nThe benchmarks are run with one process (single-threaded mode) per node.',1,NULL),(13,'QuantumESPRESSO (cores)','quantum_espresso.core','core',1,'Quantum ESPRESSO (formally PWSCF) is an electronic structure computation package developed by DEMOCRITOS National Simulation Center (Trieste) and its partners.\r\n

\r\nThe input to the benchmark runs is the single-point SCF energy calculation of ZnO, which consists of 564 electrons distributed in 9 cells.\r\n

\r\nThe version of Quantum ESPRESSO being benchmarked is 4.2.1',1,NULL),(14,'STREAM (cores)','stream.core','core',0,'STREAM benchmark measures sustainable memory bandwidth and the corresponding computation rate of simple vector operations. It consists of four microbenchmarks: a) Copy, which is a[i]=b[i], b) Scale, which is a[i]=b[i]*c, c) Add, which is c[i]=a[i]+b[i], and d) Triad, which is c[i]=a[i]+b[i]*d',0,NULL),(15,'Graph500 (cores)','graph500.core','core',1,'Graph 500 is a benchmark designed to measure the performance of graph algorithms, an increasingly important workload in the data-intensive analytics applications.\r\n

\r\nCurrently Graph 500 benchmark contains one computational kernel: the breadth-first search. The input is a pre-generated graph created with the following parameters: SCALE=16 and edgefactor=16. These translate to, on a per MPI process basis, 2^SCALE=65536 vertices and 65536*edgefactor=1.04 million edges.',1,NULL),(16,'OSJitter (cores)','osjitter.core','core',1,'OS Jitter is a microbenchmark designed to measure the runtime environment noise induced by background daemon processes and operating system\'s own overhead.\r\n

\r\nThis microbenchmark is adapted from the NetGauge benchmark suite. It reports the noise as a percentage of extra time spent in a tight loop of repeatedly reading the CPU timestamp counter. It also reports the number of involuntary context switches the microbenchmark experienced during the aforementioned loop.',1,NULL),(17,'MPI-Tile-IO (cores)','mpi-tile-io.core','core',1,'MPI-Tile-IO measures the performance of a storage system under a noncontiguous access workload. It uses the MPI IO library to read and write a 2D and 3D grid (which is distributed evenly among all MPI processes) against a single file, and it reports the aggregate I/O throughput.',1,NULL),(18,'IOR (cores)','ior.core','core',1,'IOR (Interleaved-Or-Random) measures the performance of a storage system under simple access patterns. It uses four different I/O interfaces: POSIX, MPI IO, HDF (Hierarchical Data Format), and Parallel NetCDF (Network Common Data Form) to read and write contiguous chunks of data against either a single file (N-to-1 mode) or N files (N-to-N mode), and it reports the aggregate I/O throughput.',1,NULL),(19,'CESM (cores)','cesm.core','core',1,'Community Earth System Model, formerly Community Climate System Model (CCSM4.0), is a fully-coupled, global climate model for simulating Earth\'s past, present, and future climate states. It brings together five separate models to simultaneously simulate the Earth\'s atmosphere, ocean, land, glacier (land-ice), and sea-ice.\r\n

\r\nThe atmosphere component is simulated by Community Atmophere Model (CAM), the land by Community Land Model (CLM), the ocean by Parallel Ocean Program (POP), the glacier by Glimmer ice sheet model (CISM), and the sea-ice by CICE. The results from separate models/components are coupled together by the Model Coupling Toolkit (MCT) developed at the Argonne National Laboratory.\r\n

\r\nCESM is an unstructured-grid, data-intensive code. The input dataset used is \"B_2000\" component set (all models active, present day scenario) with resolution 1.9x2.5_gx1v6 (1.9x2.5 for atmosphere and land components and gx1v6 for ocean and ice.) The number of simulated days is 5.',1,NULL),(20,'WRF (cores)','wrf.core','core',1,'Weather Research and Forecasting Model is a mesoscale numerical weather prediction system used by many meteorological services worldwide.\r\n

\r\nThe WRF model used here is ARW (Advanced Research WRF). The input dataset is the standard 2.5km Continental US (CONUS) benchmark.',1,NULL),(22,'GAMESS','gamess','node',1,'GAMESS is an ab initio computational chemistry software package developed by Professor Mark Gordon\'s research group at Iowa State University.\r\n

\r\nThe input to the benchmark runs is restricted Hartree-Fock energy calculation of C8H10 with MP2 correction.\r\n

\r\nThe version of GAMESS being benchmarked is 1 MAY 2012 (R1).\r\n',1,NULL),(23,'NAMD','namd','node',1,'NAMD is a molecular dynamics simulation package developed by the Theoretical and Computational Biophysics Group in the Beckman Institute for Advanced Science and Technology at the University of Illinois at Urbana-Champaign.\r\n

\r\nThe input to the benchmark runs is the Apolipoprotein A1 benchmark input, which consists of 92,224 atoms, uses 2 fs step size, 1,200 steps, and uses the NVE ensemble.\r\n

\r\nThe version of NAMD being benchmarked is 2.7b2',1,NULL),(24,'NWChem','nwchem','node',1,'NWChem is an ab initio computational chemistry software package developed by Pacific Northwest National Laboratory.\r\n

\r\nThe input to the benchmark runs is the Hartree-Fock energy calculation of Au+ with MP2 and Coupled Cluster corrections.\r\n

\r\nThe version of NWChem being benchmarked is 5.1.1.\r\n

\r\nThe metrics we show here contain NWChem\'s self-collected Global Arrays statistics. The Global Arrays toolkit is the communication library used by NWChem to manipulate large arrays distributed across compute nodes. The Global Arrays toolkit has three basic operations: Get (fetch values from remote memory), Put (store values to remote memory), and Accumulate (update values in remote memory). NWChem measures the numbers of these operations and the amount of data affected by them.',1,NULL),(25,'HPCC','hpcc','node',1,'HPC Challenge Benchmark suite. It consists of a) High Performance LINPACK, which solves a linear system of equations and measures the floating-point performance, b) Parallel Matrix Transpose (PTRANS), which measures total communications capacity of the interconnect, c) MPI Random Access, which measures the rate of random updates of remote memory, d) Fast Fourier Transform, which measures the floating-point performance of double-precision complex one-dimensional Discrete Fourier Transform. ',1,NULL),(26,'MPI-Tile-IO','mpi-tile-io','node',1,'MPI-Tile-IO measures the performance of a storage system under a noncontiguous access workload. It uses the MPI IO library to read and write a 2D and 3D grid (which is distributed evenly among all MPI processes) against a single file, and it reports the aggregate I/O throughput.',1,NULL),(27,'IOR','ior','node',1,'IOR (Interleaved-Or-Random) measures the performance of a storage system under simple access patterns. It uses four different I/O interfaces: POSIX, MPI IO, HDF (Hierarchical Data Format), and Parallel NetCDF (Network Common Data Form) to read and write contiguous chunks of data against either a single file (N-to-1 mode) or N files (N-to-N mode), and it reports the aggregate I/O throughput.',1,NULL),(28,'Graph500','graph500','node',1,'Graph 500 is a benchmark designed to measure the performance of graph algorithms, an increasingly important workload in the data-intensive analytics applications.\r\n

\r\nCurrently Graph 500 benchmark contains one computational kernel: the breadth-first search. The input is a pre-generated graph created with the following parameters: SCALE=16 and edgefactor=16. These translate to, on a per MPI process basis, 2^SCALE=65536 vertices and 65536*edgefactor=1.04 million edges.',1,NULL),(29,'Enzo','enzo','node',1,'Enzo: an Adaptive Mesh Refinement Code for Astrophysics\r\n

',1,NULL),(30,'xdmod.bundle','bundle','node',0,'xdmod.bundle',0,NULL),(31,'xdmod.app.md.namd2','namd2','node',0,'xdmod.app.md.namd2',0,NULL),(32,'mdtest','mdtest','node',1,'File system Metadata Benchmark',1,NULL),(33,'HPCG','hpcg','node',0,'The High Performance Conjugate Gradients (HPCG) Benchmark project is an effort to create a new metric for ranking HPC systems.',0,NULL),(34,'GROMACS-micro','gromacs_micro','node',0,'GROMACS: based micro-benchmark for testing purposes\r\n

',0,NULL); +/*!40000 ALTER TABLE `app_kernel_def` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `control_region_def` +-- + +DROP TABLE IF EXISTS `control_region_def`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `control_region_def` ( + `control_region_def_id` int(11) NOT NULL AUTO_INCREMENT, + `resource_id` int(10) unsigned NOT NULL, + `ak_def_id` int(10) unsigned NOT NULL, + `control_region_type` enum('date_range','data_points') DEFAULT 'data_points', + `control_region_starts` datetime NOT NULL COMMENT 'Beginning of control region', + `control_region_ends` datetime DEFAULT NULL COMMENT 'End of control region', + `control_region_points` int(10) unsigned DEFAULT NULL COMMENT 'Number of points for control region', + `comment` varchar(255) DEFAULT NULL, + PRIMARY KEY (`control_region_def_id`), + UNIQUE KEY `resource_id__ak_def_id__num_units__control_region_starts` (`resource_id`,`ak_def_id`,`control_region_starts`), + KEY `fk_ak_def_id` (`ak_def_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `control_region_def` +-- + +LOCK TABLES `control_region_def` WRITE; +/*!40000 ALTER TABLE `control_region_def` DISABLE KEYS */; +/*!40000 ALTER TABLE `control_region_def` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `control_regions` +-- + +DROP TABLE IF EXISTS `control_regions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `control_regions` ( + `control_region_id` int(11) NOT NULL AUTO_INCREMENT, + `control_region_def_id` int(10) unsigned NOT NULL, + `ak_id` int(10) unsigned DEFAULT NULL, + `metric_id` int(10) unsigned NOT NULL, + `completed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Is the control region already completed', + `controlStart` double DEFAULT NULL, + `controlEnd` double DEFAULT NULL, + `controlMin` double DEFAULT NULL, + `controlMax` double DEFAULT NULL, + PRIMARY KEY (`control_region_id`), + UNIQUE KEY `control_region_def_id__metric_id` (`control_region_def_id`,`ak_id`,`metric_id`), + KEY `fk_metric_id` (`metric_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `control_regions` +-- + +LOCK TABLES `control_regions` WRITE; +/*!40000 ALTER TABLE `control_regions` DISABLE KEYS */; +/*!40000 ALTER TABLE `control_regions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `control_set` +-- + +DROP TABLE IF EXISTS `control_set`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `control_set` ( + `metric_id` int(10) NOT NULL, + `ak_id` int(10) NOT NULL, + `resource_id` int(10) NOT NULL, + `min_collected` datetime NOT NULL, + `max_collected` datetime NOT NULL COMMENT 'This remembers the control region used for each dataset.', + PRIMARY KEY (`metric_id`,`ak_id`,`resource_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `control_set` +-- + +LOCK TABLES `control_set` WRITE; +/*!40000 ALTER TABLE `control_set` DISABLE KEYS */; +/*!40000 ALTER TABLE `control_set` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ingester_log` +-- + +DROP TABLE IF EXISTS `ingester_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ingester_log` ( + `source` varchar(64) NOT NULL, + `url` varchar(255) DEFAULT NULL, + `num` int(11) DEFAULT NULL, + `last_update` datetime NOT NULL, + `start_time` datetime DEFAULT NULL, + `end_time` datetime DEFAULT NULL, + `success` tinyint(1) DEFAULT NULL, + `message` varchar(2048) DEFAULT NULL, + `reportobj` blob COMMENT 'Compressed serialized php object with counters', + KEY `source` (`source`,`last_update`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ingester_log` +-- + +LOCK TABLES `ingester_log` WRITE; +/*!40000 ALTER TABLE `ingester_log` DISABLE KEYS */; +/*!40000 ALTER TABLE `ingester_log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `log_id_seq` +-- + +DROP TABLE IF EXISTS `log_id_seq`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `log_id_seq` ( + `sequence` int(11) NOT NULL AUTO_INCREMENT, + PRIMARY KEY (`sequence`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `log_id_seq` +-- + +LOCK TABLES `log_id_seq` WRITE; +/*!40000 ALTER TABLE `log_id_seq` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_id_seq` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `log_table` +-- + +DROP TABLE IF EXISTS `log_table`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `log_table` ( + `id` int(11) DEFAULT NULL, + `logtime` datetime DEFAULT NULL, + `ident` text, + `priority` text, + `message` longtext, + KEY `unique_id_idx` (`id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `log_table` +-- + +LOCK TABLES `log_table` WRITE; +/*!40000 ALTER TABLE `log_table` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_table` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `metric` +-- + +DROP TABLE IF EXISTS `metric`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `metric` ( + `metric_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `short_name` varchar(32) NOT NULL, + `name` varchar(128) NOT NULL, + `unit` varchar(32) DEFAULT NULL, + `guid` varchar(64) NOT NULL, + PRIMARY KEY (`metric_id`), + UNIQUE KEY `unique_guid` (`guid`) +) ENGINE=InnoDB AUTO_INCREMENT=325 DEFAULT CHARSET=latin1 COMMENT='Individual metric definitions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `metric` +-- + +LOCK TABLES `metric` WRITE; +/*!40000 ALTER TABLE `metric` DISABLE KEYS */; +/*!40000 ALTER TABLE `metric` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `metric_attribute` +-- + +DROP TABLE IF EXISTS `metric_attribute`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `metric_attribute` ( + `metric_id` int(10) NOT NULL, + `larger` tinyint(1) NOT NULL, + PRIMARY KEY (`metric_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `metric_attribute` +-- + +LOCK TABLES `metric_attribute` WRITE; +/*!40000 ALTER TABLE `metric_attribute` DISABLE KEYS */; +/*!40000 ALTER TABLE `metric_attribute` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `metric_data` +-- + +DROP TABLE IF EXISTS `metric_data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `metric_data` ( + `metric_id` int(10) unsigned NOT NULL, + `ak_id` int(10) unsigned NOT NULL, + `collected` datetime NOT NULL COMMENT ' ', + `resource_id` int(10) unsigned NOT NULL, + `value_string` varchar(255) DEFAULT NULL, + `running_average` double DEFAULT NULL, + `control` double DEFAULT NULL, + `controlStart` double DEFAULT NULL, + `controlEnd` double DEFAULT NULL, + `controlMin` double DEFAULT NULL, + `controlMax` double DEFAULT NULL, + `controlStatus` enum('undefined','control_region_time_interval','in_contol','under_performing','over_performing','failed') DEFAULT NULL, + PRIMARY KEY (`metric_id`,`ak_id`,`collected`,`resource_id`), + KEY `fk_metric_data_metric` (`metric_id`), + KEY `fk_metric_data_reporter_instance` (`ak_id`,`collected`,`resource_id`), + CONSTRAINT `fk_metric_data_metric` FOREIGN KEY (`metric_id`) REFERENCES `metric` (`metric_id`) ON DELETE CASCADE ON UPDATE NO ACTION, + CONSTRAINT `fk_metric_data_reporter_instance` FOREIGN KEY (`ak_id`, `collected`, `resource_id`) REFERENCES `ak_instance` (`ak_id`, `collected`, `resource_id`) ON DELETE CASCADE ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Collected application kernel data fact table'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `metric_data` +-- + +LOCK TABLES `metric_data` WRITE; +/*!40000 ALTER TABLE `metric_data` DISABLE KEYS */; +/*!40000 ALTER TABLE `metric_data` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `parameter` +-- + +DROP TABLE IF EXISTS `parameter`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `parameter` ( + `parameter_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `tag` varchar(64) DEFAULT NULL, + `name` varchar(128) NOT NULL, + `unit` varchar(64) DEFAULT NULL, + `guid` varchar(64) NOT NULL, + PRIMARY KEY (`parameter_id`), + UNIQUE KEY `unique_guid` (`guid`) +) ENGINE=InnoDB AUTO_INCREMENT=180 DEFAULT CHARSET=latin1 COMMENT='Individual parameter definitions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `parameter` +-- + +LOCK TABLES `parameter` WRITE; +/*!40000 ALTER TABLE `parameter` DISABLE KEYS */; +/*!40000 ALTER TABLE `parameter` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `parameter_data` +-- + +DROP TABLE IF EXISTS `parameter_data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `parameter_data` ( + `ak_id` int(10) unsigned NOT NULL, + `collected` datetime NOT NULL, + `resource_id` int(10) unsigned NOT NULL, + `parameter_id` int(10) unsigned NOT NULL, + `value_string` longblob, + `value_md5` varchar(32) NOT NULL, + PRIMARY KEY (`ak_id`,`collected`,`resource_id`,`parameter_id`), + KEY `fk_parameter_data_reporter_instance` (`ak_id`,`collected`,`resource_id`), + KEY `fk_parameter_data_parameter` (`parameter_id`), + KEY `md5sum` (`value_md5`), + CONSTRAINT `fk_parameter_data_parameter` FOREIGN KEY (`parameter_id`) REFERENCES `parameter` (`parameter_id`) ON DELETE CASCADE ON UPDATE NO ACTION, + CONSTRAINT `fk_parameter_data_reporter_instance` FOREIGN KEY (`ak_id`, `collected`, `resource_id`) REFERENCES `ak_instance` (`ak_id`, `collected`, `resource_id`) ON DELETE CASCADE ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Collected application kernel parameters fact table'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `parameter_data` +-- + +LOCK TABLES `parameter_data` WRITE; +/*!40000 ALTER TABLE `parameter_data` DISABLE KEYS */; +/*!40000 ALTER TABLE `parameter_data` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `report` +-- + +DROP TABLE IF EXISTS `report`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `report` ( + `user_id` int(11) NOT NULL, + `send_report_daily` int(11) NOT NULL DEFAULT '0', + `send_report_weekly` int(11) NOT NULL DEFAULT '0' COMMENT 'Negative-None, otherwise days of the week, i.e. 2 - Monday', + `send_report_monthly` int(11) NOT NULL DEFAULT '0' COMMENT 'negative is none, otherwise day of the month', + `settings` text NOT NULL, + PRIMARY KEY (`user_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `report` +-- + +LOCK TABLES `report` WRITE; +/*!40000 ALTER TABLE `report` DISABLE KEYS */; +/*!40000 ALTER TABLE `report` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `resource` +-- + +DROP TABLE IF EXISTS `resource`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `resource` ( + `resource_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `resource` varchar(128) NOT NULL, + `nickname` varchar(64) NOT NULL, + `description` text, + `enabled` tinyint(1) NOT NULL DEFAULT '1', + `visible` tinyint(1) NOT NULL, + `xdmod_resource_id` int(11) DEFAULT NULL, + `xdmod_cluster_id` int(11) DEFAULT NULL, + PRIMARY KEY (`resource_id`), + KEY `visible` (`visible`) +) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=latin1 COMMENT='Resource definitions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `resource` +-- + +LOCK TABLES `resource` WRITE; +/*!40000 ALTER TABLE `resource` DISABLE KEYS */; +INSERT INTO `resource` VALUES (1,'UBHPC_8core','UBHPC_8core','

    \r\n
  • 1024 total cores Gainestown @ 2.27GHz (8 cores, 24 GB per node)\r\n
  • 1024 total cores Gulftown @ 2.13GHz (8 cores, 24 GB per node)\r\n
',1,1,13,NULL),(28,'UBHPC_32core','UBHPC_32core','UBHPC',1,1,13,NULL); +/*!40000 ALTER TABLE `resource` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `supremm_metrics` +-- + +DROP TABLE IF EXISTS `supremm_metrics`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `supremm_metrics` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(256) NOT NULL, + `formula` text NOT NULL, + `label` text NOT NULL, + `units` text, + `info` text NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`), + UNIQUE KEY `id` (`id`), + UNIQUE KEY `id_2` (`id`), + UNIQUE KEY `name_2` (`name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `supremm_metrics` +-- + +LOCK TABLES `supremm_metrics` WRITE; +/*!40000 ALTER TABLE `supremm_metrics` DISABLE KEYS */; +/*!40000 ALTER TABLE `supremm_metrics` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Temporary table structure for view `v_ak_metrics` +-- + +DROP TABLE IF EXISTS `v_ak_metrics`; +/*!50001 DROP VIEW IF EXISTS `v_ak_metrics`*/; +SET @saved_cs_client = @@character_set_client; +SET character_set_client = utf8; +/*!50001 CREATE VIEW `v_ak_metrics` AS SELECT + 1 AS `name`, + 1 AS `enabled`, + 1 AS `num_units`, + 1 AS `ak_id`, + 1 AS `metric_id`, + 1 AS `guid`*/; +SET character_set_client = @saved_cs_client; + +-- +-- Temporary table structure for view `v_ak_parameters` +-- + +DROP TABLE IF EXISTS `v_ak_parameters`; +/*!50001 DROP VIEW IF EXISTS `v_ak_parameters`*/; +SET @saved_cs_client = @@character_set_client; +SET character_set_client = utf8; +/*!50001 CREATE VIEW `v_ak_parameters` AS SELECT + 1 AS `name`, + 1 AS `enabled`, + 1 AS `num_units`, + 1 AS `ak_id`, + 1 AS `parameter_id`, + 1 AS `guid`*/; +SET character_set_client = @saved_cs_client; + +-- +-- Temporary table structure for view `v_tree_debug` +-- + +DROP TABLE IF EXISTS `v_tree_debug`; +/*!50001 DROP VIEW IF EXISTS `v_tree_debug`*/; +SET @saved_cs_client = @@character_set_client; +SET character_set_client = utf8; +/*!50001 CREATE VIEW `v_tree_debug` AS SELECT + 1 AS `ak_name`, + 1 AS `resource`, + 1 AS `processor_unit`, + 1 AS `num_units`, + 1 AS `ak_def_id`, + 1 AS `resource_id`, + 1 AS `collected`, + 1 AS `status`, + 1 AS `instance_id`*/; +SET character_set_client = @saved_cs_client; + +-- +-- Final view structure for view `v_ak_metrics` +-- + +/*!50001 DROP VIEW IF EXISTS `v_ak_metrics`*/; +/*!50001 SET @saved_cs_client = @@character_set_client */; +/*!50001 SET @saved_cs_results = @@character_set_results */; +/*!50001 SET @saved_col_connection = @@collation_connection */; +/*!50001 SET character_set_client = utf8 */; +/*!50001 SET character_set_results = utf8 */; +/*!50001 SET collation_connection = utf8_general_ci */; +/*!50001 CREATE ALGORITHM=UNDEFINED */ +/*!50013 DEFINER=`xdmod`@`localhost` SQL SECURITY DEFINER */ +/*!50001 VIEW `v_ak_metrics` AS select `app_kernel_def`.`ak_base_name` AS `name`,`app_kernel_def`.`enabled` AS `enabled`,`app_kernel`.`num_units` AS `num_units`,`app_kernel`.`ak_id` AS `ak_id`,`ak_has_metric`.`metric_id` AS `metric_id`,`metric`.`guid` AS `guid` from (((`app_kernel_def` join `app_kernel` on((`app_kernel_def`.`ak_def_id` = `app_kernel`.`ak_def_id`))) join `ak_has_metric` on(((`app_kernel`.`ak_id` = `ak_has_metric`.`ak_id`) and (`app_kernel`.`num_units` = `ak_has_metric`.`num_units`)))) join `metric` on((`ak_has_metric`.`metric_id` = `metric`.`metric_id`))) */; +/*!50001 SET character_set_client = @saved_cs_client */; +/*!50001 SET character_set_results = @saved_cs_results */; +/*!50001 SET collation_connection = @saved_col_connection */; + +-- +-- Final view structure for view `v_ak_parameters` +-- + +/*!50001 DROP VIEW IF EXISTS `v_ak_parameters`*/; +/*!50001 SET @saved_cs_client = @@character_set_client */; +/*!50001 SET @saved_cs_results = @@character_set_results */; +/*!50001 SET @saved_col_connection = @@collation_connection */; +/*!50001 SET character_set_client = utf8 */; +/*!50001 SET character_set_results = utf8 */; +/*!50001 SET collation_connection = utf8_general_ci */; +/*!50001 CREATE ALGORITHM=UNDEFINED */ +/*!50013 DEFINER=`xdmod`@`localhost` SQL SECURITY DEFINER */ +/*!50001 VIEW `v_ak_parameters` AS select `app_kernel_def`.`ak_base_name` AS `name`,`app_kernel_def`.`enabled` AS `enabled`,`app_kernel`.`num_units` AS `num_units`,`app_kernel`.`ak_id` AS `ak_id`,`ak_has_parameter`.`parameter_id` AS `parameter_id`,`parameter`.`guid` AS `guid` from (((`app_kernel_def` join `app_kernel` on((`app_kernel_def`.`ak_def_id` = `app_kernel`.`ak_def_id`))) join `ak_has_parameter` on((`app_kernel`.`ak_id` = `ak_has_parameter`.`ak_id`))) join `parameter` on((`ak_has_parameter`.`parameter_id` = `parameter`.`parameter_id`))) */; +/*!50001 SET character_set_client = @saved_cs_client */; +/*!50001 SET character_set_results = @saved_cs_results */; +/*!50001 SET collation_connection = @saved_col_connection */; + +-- +-- Final view structure for view `v_tree_debug` +-- + +/*!50001 DROP VIEW IF EXISTS `v_tree_debug`*/; +/*!50001 SET @saved_cs_client = @@character_set_client */; +/*!50001 SET @saved_cs_results = @@character_set_results */; +/*!50001 SET @saved_col_connection = @@collation_connection */; +/*!50001 SET character_set_client = utf8 */; +/*!50001 SET character_set_results = utf8 */; +/*!50001 SET collation_connection = utf8_general_ci */; +/*!50001 CREATE ALGORITHM=UNDEFINED */ +/*!50013 DEFINER=`xdmod`@`localhost` SQL SECURITY DEFINER */ +/*!50001 VIEW `v_tree_debug` AS select `def`.`name` AS `ak_name`,`r`.`resource` AS `resource`,`def`.`processor_unit` AS `processor_unit`,`ak`.`num_units` AS `num_units`,`def`.`ak_def_id` AS `ak_def_id`,`ai`.`resource_id` AS `resource_id`,unix_timestamp(`ai`.`collected`) AS `collected`,`ai`.`status` AS `status`,`ai`.`instance_id` AS `instance_id` from (((`app_kernel_def` `def` join `app_kernel` `ak` on((`def`.`ak_def_id` = `ak`.`ak_def_id`))) join `ak_instance` `ai` on((`ak`.`ak_id` = `ai`.`ak_id`))) join `resource` `r` on((`ai`.`resource_id` = `r`.`resource_id`))) where ((`def`.`visible` = 1) and (`r`.`visible` = 1)) order by `def`.`name`,`r`.`resource`,`ak`.`num_units`,`ai`.`collected` */; +/*!50001 SET character_set_client = @saved_cs_client */; +/*!50001 SET character_set_results = @saved_cs_results */; +/*!50001 SET collation_connection = @saved_col_connection */; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2020-06-04 14:59:37 diff --git a/tests/integration_tests/scripts/bootstrap.sh b/tests/integration_tests/scripts/bootstrap.sh new file mode 100755 index 0000000..e9992be --- /dev/null +++ b/tests/integration_tests/scripts/bootstrap.sh @@ -0,0 +1,39 @@ +#!/bin/bash +# Bootstrap script that configures the appkernel-specific services and +# data. + +BASEDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +XDMOD_BOOTSTRAP=$BASEDIR/../../../../xdmod/tests/ci/bootstrap.sh + +set -e +set -o pipefail + +if [ "$XDMOD_TEST_MODE" = "fresh_install" ]; +then + $XDMOD_BOOTSTRAP + + # Turn on novice user mod + sed -i 's@novice_user = "off"@novice_user = "on"@' /etc/xdmod/portal_settings.ini + +# Initiate database +mysql -u root << END +create database mod_akrr CHARACTER SET utf8; +create database mod_appkernel CHARACTER SET utf8; +CREATE USER 'akrruser'@'localhost' IDENTIFIED BY 'akrruser'; +GRANT ALL ON mod_akrr.* TO 'akrruser'@'localhost'; +GRANT ALL ON mod_appkernel.* TO 'akrruser'@'localhost'; +GRANT SELECT ON modw.* TO 'akrruser'@'localhost'; +GRANT ALL ON mod_akrr.* TO 'xdmod'@'localhost'; +GRANT ALL ON mod_appkernel.* TO 'xdmod'@'localhost'; +END + + expect $BASEDIR/xdmod-setup.tcl | col -b + aggregate_supremm.sh +fi + +if [ "$XDMOD_TEST_MODE" = "upgrade" ]; +then + $XDMOD_BOOTSTRAP + echo "Update test is not yet implemented" + exit 1 +fi diff --git a/tests/integration_tests/scripts/validate.sh b/tests/integration_tests/scripts/validate.sh new file mode 100755 index 0000000..e69de29 From 1b8cbdb5d07b7755cb7763e1d42914a491e13e5c Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Sat, 13 Jun 2020 21:41:25 -0400 Subject: [PATCH 37/63] working on automating tests --- .gitignore | 2 + Dockerfile | 2 +- Tests.Dockerfile | 16 ++ shippable.yml | 15 +- tests/README.md | 28 +++ tests/artifacts/akrr/etc/akrr.conf | 169 ++++++++++++++++ .../etc/resources/UBHPC_32core/enzo.app.conf | 25 +++ .../resources/UBHPC_32core/gamess.app.conf | 39 ++++ .../resources/UBHPC_32core/graph500.app.conf | 13 ++ .../etc/resources/UBHPC_32core/hpcc.app.conf | 15 ++ .../etc/resources/UBHPC_32core/imb.app.conf | 12 ++ .../etc/resources/UBHPC_32core/namd.app.conf | 16 ++ .../resources/UBHPC_32core/nwchem.app.conf | 25 +++ .../etc/resources/UBHPC_32core/resource.conf | 43 ++++ .../etc/resources/UBHPC_8core/namd.app.conf | 18 ++ .../etc/resources/UBHPC_8core/nwchem.app.conf | 41 ++++ .../etc/resources/UBHPC_8core/resource.conf | 36 ++++ tests/artifacts/akrr/etc/server.cert | 32 +++ tests/artifacts/create_akrr_db.sql | 8 + tests/ci/scripts/xdmod-appkernels-setup.tcl | 3 +- tests/runtests.sh | 121 +++++++++++ tests/utils/README.MD | 1 + tests/utils/cmd_setup | 168 ++++++++++++++++ tests/utils/cmd_start | 189 ++++++++++++++++++ tests/utils/cmd_stop | 64 ++++++ 25 files changed, 1086 insertions(+), 15 deletions(-) create mode 100644 Tests.Dockerfile create mode 100644 tests/README.md create mode 100644 tests/artifacts/akrr/etc/akrr.conf create mode 100644 tests/artifacts/akrr/etc/resources/UBHPC_32core/enzo.app.conf create mode 100644 tests/artifacts/akrr/etc/resources/UBHPC_32core/gamess.app.conf create mode 100644 tests/artifacts/akrr/etc/resources/UBHPC_32core/graph500.app.conf create mode 100644 tests/artifacts/akrr/etc/resources/UBHPC_32core/hpcc.app.conf create mode 100644 tests/artifacts/akrr/etc/resources/UBHPC_32core/imb.app.conf create mode 100644 tests/artifacts/akrr/etc/resources/UBHPC_32core/namd.app.conf create mode 100644 tests/artifacts/akrr/etc/resources/UBHPC_32core/nwchem.app.conf create mode 100644 tests/artifacts/akrr/etc/resources/UBHPC_32core/resource.conf create mode 100644 tests/artifacts/akrr/etc/resources/UBHPC_8core/namd.app.conf create mode 100644 tests/artifacts/akrr/etc/resources/UBHPC_8core/nwchem.app.conf create mode 100644 tests/artifacts/akrr/etc/resources/UBHPC_8core/resource.conf create mode 100644 tests/artifacts/akrr/etc/server.cert create mode 100644 tests/artifacts/create_akrr_db.sql create mode 100755 tests/runtests.sh create mode 100644 tests/utils/README.MD create mode 100755 tests/utils/cmd_setup create mode 100755 tests/utils/cmd_start create mode 100755 tests/utils/cmd_stop diff --git a/.gitignore b/.gitignore index 9efa9e1..56c0bc3 100644 --- a/.gitignore +++ b/.gitignore @@ -312,3 +312,5 @@ configuration/aggregation_meta/ # External QA assets /.qa/ /phpcs.xml + +/shippable diff --git a/Dockerfile b/Dockerfile index dff613f..d30e144 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1 +1 @@ -FROM tas-tools-ext-01.ccr.xdmod.org/centos7_6-open-job_performance-8.5.0:latest +FROM tas-tools-ext-01.ccr.xdmod.org/centos7_6-open8.5.1:latest diff --git a/Tests.Dockerfile b/Tests.Dockerfile new file mode 100644 index 0000000..5a57fff --- /dev/null +++ b/Tests.Dockerfile @@ -0,0 +1,16 @@ +# Perform shippable-like tests locally + +FROM tas-tools-ext-01.ccr.xdmod.org/centos7_6-open8.5.1:latest + +RUN yum -y install --setopt=tsflags=nodocs python3 && \ + yum clean all + +COPY . /root/src/ubccr/xdmod-appkernels +WORKDIR /root/src/ubccr/xdmod-appkernels + +COPY ./tests/utils/cmd_setup ./tests/utils/cmd_start ./tests/utils/cmd_stop /usr/local/sbin/ + +ENV COMPOSER_ALLOW_SUPERUSER=1 + +ENTRYPOINT ["/usr/local/sbin/cmd_start"] +CMD ["-set-no-exit-on-fail", "/root/src/ubccr/xdmod-appkernels/tests/runtests.sh", "bash"] diff --git a/shippable.yml b/shippable.yml index 7959403..649b0de 100644 --- a/shippable.yml +++ b/shippable.yml @@ -3,9 +3,8 @@ env: global: - COMPOSER_ALLOW_SUPERUSER=1 - XDMOD_REALMS='jobs,storage,cloud,supremm,jobefficiency' - matrix: - XDMOD_TEST_MODE=fresh_install - - XDMOD_TEST_MODE=upgrade + - XDMOD_BRANCH=xdmod9.0 build: cache: true cache_dir_list: @@ -18,21 +17,11 @@ build: pull: false options: "--user root -e HOME=/root --shm-size 2g" ci: - - pwd - - echo $SHIPPABLE_BUILD_DIR - - git clone --depth=1 --branch=$BRANCH https://github.com/ubccr/xdmod.git ../xdmod - - ln -s $SHIPPABLE_BUILD_DIR ../xdmod/open_xdmod/modules/supremm - - composer install -d ../xdmod --no-progress - - cd ../xdmod && ~/bin/buildrpm xdmod xdmod-appkernels && cd $SHIPPABLE_BUILD_DIR - - ./tests/integration_tests/scripts/bootstrap.sh - - ./tests/integration_tests/scripts/validate.sh - - composer install -d ../xdmod --no-progress - ./tests/unit/runtests.sh - - ./tests/integration_tests/runtests.sh on_failure: - cat /var/log/xdmod/* jobs: - - name: xdmod-supremm_runCI + - name: xdmod-appkernels_runCI type: runCI steps: - IN: nightly-trigger diff --git a/tests/README.md b/tests/README.md new file mode 100644 index 0000000..faf0c0e --- /dev/null +++ b/tests/README.md @@ -0,0 +1,28 @@ +# Running Tests of XDMoD-Appkernels with Docker + +Build image + +```shell script +docker build -t pseudo_repo/xdmod-appkernels-tests:latest -f Tests.Dockerfile . +``` + +Run Tests with specific XDMoD branch + +```shell script +docker run -it --rm -p 8010:8080 -e XDMOD_BRANCH=xdmod9.0 pseudo_repo/xdmod-appkernels-tests:latest +``` + +Docker container will install XDMoD, AKRR, xdmod-appkernels, perform tests and get to bash session. + +Browse to http://localhost:8010 to check installation. + + +Same without rebuilding image by attaching host directory + +```shell script +# in xdmod-appkernels directory +docker run -it --rm -p 8010:8080 \ + -e XDMOD_BRANCH=xdmod9.0 \ + -v `pwd`:/root/src/ubccr/xdmod-appkernels \ + pseudo_repo/xdmod-appkernels-tests:latest +``` diff --git a/tests/artifacts/akrr/etc/akrr.conf b/tests/artifacts/akrr/etc/akrr.conf new file mode 100644 index 0000000..9099d86 --- /dev/null +++ b/tests/artifacts/akrr/etc/akrr.conf @@ -0,0 +1,169 @@ +############################################################################### +# AKRR Database +############################################################################### + +# The host name of the database server that the 'mod_akrr' database is served from. +akrr_db_host = "localhost" + +# Port that the 'mod_akrr' database is being served from. +akrr_db_port = 3306 + +# Database user that will have full access to the 'mod_akrr' database. +akrr_db_user = "akrruser" + +# Password for the 'akrr_db_user' +akrr_db_passwd = "akrruser" + +# The name that has been chosen for the 'mod_akrr' database. Note: CHANGE THIS AT YOUR OWN RISK. +akrr_db_name = "mod_akrr" + +############################################################################### +# App Kernel Database +# NOTE: this database ( and the credentials required ) are usually the same as +# the 'mod_akrr' database. +############################################################################### + +# Hostname of the database serving the 'mod_appkernel' database. +ak_db_host = akrr_db_host + +# Port that the 'mod_appkernel' database is being served from. +ak_db_port = akrr_db_port + +# User with full access to the 'mod_appkernel' database. +ak_db_user = akrr_db_user + +# Password for the 'ak_db_user' +ak_db_passwd = akrr_db_passwd + +# The name that has been chosen to represent the 'mod_appkernel' database. Note: CHANGE THIS AT YOUR OWN RISK. +ak_db_name = "mod_appkernel" + +############################################################################### +# XDMoD Database +############################################################################### +# Hostname of the database currently sering the 'modw' database ( the main XDMoD database ). +xd_db_host = akrr_db_host + +# The port that the 'modw' database is currently being served from. +xd_db_port = akrr_db_port + +# The user that has read only access to the 'modw.resourcefact' table. +xd_db_user = akrr_db_user + +# The password for the 'xd_db_user' +xd_db_passwd = akrr_db_passwd + +# The name that has been chosen for the 'modw' database. Note: CHANGE THIS AT YOUR OWN RISK. +xd_db_name = "modw" + +############################################################################### +# REST API +############################################################################### + +# The hostname of the server that will be serving the RESTAPI. If you are testing and want to bind it to the loop-back +# address please note that 'localhost' produced more positive results than '127.0.0.1' did. Your mileage may vary. +restapi_host = 'localhost' + +# The port that the REST API will attempt to bind to on startup. Please change if you have a conflict. +# Please also ensure that this port is available for connection ( aka. please create a firewall rule if necessary. ). +restapi_port = 8091 + +# the root url fragment that will be pre-pended to all REST API routes [ ex. GET https://restapi/api/v1/scheduled_tasks +# hits the 'scheduled_tasks' route of the REST API ]. This fragment allows for versioning of the API. +restapi_apiroot = '/api/v1' + +# The name of the SSL cert file ( required for HTTPS connections ) +restapi_certfile = 'server.pem' + +# Token expiration time in seconds +restapi_token_expiration_time = 3600 + +# User defined as having 'read / write' permission to the REST API +restapi_rw_username = 'rw' + +# The password for the 'rw' user. +restapi_rw_password = 'rwuserpass' + +# User defined as having 'read-only' premissions to the REST API +restapi_ro_username = 'ro' + +# The password for the 'ro' user. +restapi_ro_password = 'rouserpass' + +############################################################################### +# Directories layout (relative paths are relative to location of this file) +############################################################################### + +# This location is used to store various bits of information about the AKRR +# process such as the .pid file ( to track when AKRR is running ) as well as +# logs. + +data_dir = '../log/data' + +# This location is used to +completed_tasks_dir = '../log/comptasks' + +############################################################################### +# +# PARAMETERS BELLOW THIS POINT DO NOT OFTEN NEED TO BE CHANGED. +# PROCEED AT YOUR OWN RISK! +# +############################################################################### + +############################################################################### +# AKRR parameters +############################################################################### +# Number of sub-processes (workers) to handle tasks +max_task_handlers = 4 + +# The 'id' of the pickling protocol to use. +task_pickling_protocol = 0 + +# The amount of time that the tasks loop should sleep in between loops. +scheduled_tasks_loop_sleep_time = 1.0 + +############################################################################### +# Error handling and repeat time +############################################################################### +# class datetime.timedelt format +# class datetime.timedelta([days[, seconds[, microseconds[, milliseconds[, minutes[, hours[, weeks]]]]]]]) +import datetime + +############################ +# Default error handking +############################ + +# Maximal number of regular fatal errors (regular in sense no special treatment) +max_fatal_errors_for_task = 10 +# Default repeat time +active_task_default_attempt_repeat = datetime.timedelta(minutes=30) + +############################ +# handler hangs +############################ + +# maximal time for task handler single execution +max_wall_time_for_task_handlers = datetime.timedelta(minutes=30) +# time to repeat after termination +repeat_after_forcible_termination = active_task_default_attempt_repeat + +# Failure to submit to the queue on remote machine hangs, usually an issue on machine with queue limits +max_fails_to_submit_to_the_queue = 48 + +# amount of time to wait to submit the task back to the queue if it fails. +repeat_after_fails_to_submit_to_the_queue = datetime.timedelta(hours=1) + +# Maximum amount of time a task is allowed to stay in the queue. +max_time_in_queue = datetime.timedelta(days=10) + +# The amount of time that should elapse between attempts to connect to the 'export' db. +export_db_repeat_attempt_in = datetime.timedelta(hours=1) + +# The maximum number of attempts that should be made to connect to the 'export' db. +export_db_max_repeat_attempts = 48 + +# The default parameters that should be made available to each task. +default_task_params = {'test_run': False} + +# AKRR version (used during updates). +akrr_version = '2.1.0' diff --git a/tests/artifacts/akrr/etc/resources/UBHPC_32core/enzo.app.conf b/tests/artifacts/akrr/etc/resources/UBHPC_32core/enzo.app.conf new file mode 100644 index 0000000..9d996fe --- /dev/null +++ b/tests/artifacts/akrr/etc/resources/UBHPC_32core/enzo.app.conf @@ -0,0 +1,25 @@ +executable="execs/enzo-stable/src/enzo/enzo.exe" +appkernel_run_env_template=""" +#Load application environment +module load intel/18.3 intel-mpi/2018.3 hdf5/1.8.15p1 +module list + +#set executable location +#source {appKerDir}/{executable}/../../bin/activate.csh +EXE={appKerDir}/execs/enzo-dev/src/enzo/enzo.exe +ring_bin={appKerDir}/execs/enzo-dev/src/ring/ring.exe +inits_bin={appKerDir}/execs/enzo-dev/src/inits/inits.exe +""" + +akrr_run_appkernel_template="""#Execute AppKer +mpiexec -np 1 $EXE -V >> $AKRR_APP_STDOUT_FILE 2>&1 +$inits_bin input.inits >> $AKRR_APP_STDOUT_FILE 2>&1 +srun --mpi=pmi2 $ring_bin pv ParticlePositions ParticleVelocities >> $AKRR_APP_STDOUT_FILE 2>&1 +srun --mpi=pmi2 $EXE input.enzo >> $AKRR_APP_STDOUT_FILE 2>&1 +echo performance.out >> $AKRR_APP_STDOUT_FILE 2>&1 +cat performance.out >> $AKRR_APP_STDOUT_FILE 2>&1 + +{run_script_post_run} +""" + + diff --git a/tests/artifacts/akrr/etc/resources/UBHPC_32core/gamess.app.conf b/tests/artifacts/akrr/etc/resources/UBHPC_32core/gamess.app.conf new file mode 100644 index 0000000..9b51ba9 --- /dev/null +++ b/tests/artifacts/akrr/etc/resources/UBHPC_32core/gamess.app.conf @@ -0,0 +1,39 @@ +walllimit=45 +appkernel_run_env_template=""" +#Load application enviroment +module load intel/18.3 intel-mpi/2018.3 +module list + +#set executable location +export GAMESS_DIR=/projects/ccrstaff/general/appker/UBHPC/gamess +VERNO=01 +EXE=$GAMESS_DIR/gamess.$VERNO.x + +export NNODES=$AKRR_NODES + +#create scratch directory if needed +mkdir -p /scratch/xdtas + +#prepare hostnames list +export GMX_NODELIST=`scontrol show hostname $SLURM_NODELIST| awk -v vv=$AKRR_CORES_PER_NODE '{{print $1 ":cpus=" vv}}'` + +echo AKRR_NODELIST +echo $AKRR_NODELIST +echo SLURM_NODELIST +echo $SLURM_NODELIST +echo "GMX_NODELIST" +echo $GMX_NODELIST + +for h in `srun hostname|sort|uniq` +do +echo $h +ssh $h "printf '250\t32000\t32\t512' > /proc/sys/kernel/sem" +ssh $h "cat /proc/sys/kernel/sem" +done + +#set how to run app kernel +RUN_APPKERNEL="$GAMESS_DIR/rungms $INPUT $VERNO $AKRR_CORES $AKRR_CORES_PER_NODE" +""" + + + diff --git a/tests/artifacts/akrr/etc/resources/UBHPC_32core/graph500.app.conf b/tests/artifacts/akrr/etc/resources/UBHPC_32core/graph500.app.conf new file mode 100644 index 0000000..60ed192 --- /dev/null +++ b/tests/artifacts/akrr/etc/resources/UBHPC_32core/graph500.app.conf @@ -0,0 +1,13 @@ +appkernel_run_env_template=""" +#Load application environment +module load intel/18.3 intel-mpi/2018.3 +module list + +export I_MPI_PMI_LIBRARY=/usr/lib64/libpmi.so +#export I_MPI_FABRICS_LIST="tcp" + +#set how to run app kernel +#only run one process per node +RUN_APPKERNEL="srun --ntasks-per-node=1 -c $AKRR_CORES_PER_NODE -n $AKRR_NODES -N $AKRR_NODES {appKerDir}/{executable} {appKerDir}/{input_param} $AKRR_CORES_PER_NODE" +""" + diff --git a/tests/artifacts/akrr/etc/resources/UBHPC_32core/hpcc.app.conf b/tests/artifacts/akrr/etc/resources/UBHPC_32core/hpcc.app.conf new file mode 100644 index 0000000..05a7db5 --- /dev/null +++ b/tests/artifacts/akrr/etc/resources/UBHPC_32core/hpcc.app.conf @@ -0,0 +1,15 @@ +appkernel_run_env_template=""" +#Load application enviroment +module load intel/18.3 intel-mpi/2018.3 +module list + + +MKLROOT=/projects/ccrstaff/general/appker/UBHPC/execs/mkl +source $MKLROOT/bin/mklvars.sh intel64 +export I_MPI_PMI_LIBRARY=/usr/lib64/libpmi.so + +ulimit -s unlimited + +#set how to run app kernel +RUN_APPKERNEL="srun {appKerDir}/{executable}" +""" diff --git a/tests/artifacts/akrr/etc/resources/UBHPC_32core/imb.app.conf b/tests/artifacts/akrr/etc/resources/UBHPC_32core/imb.app.conf new file mode 100644 index 0000000..4f45837 --- /dev/null +++ b/tests/artifacts/akrr/etc/resources/UBHPC_32core/imb.app.conf @@ -0,0 +1,12 @@ +appkernel_run_env_template=""" +#Load application enviroment +module load intel/18.3 intel-mpi/2018.3 +module list + +export I_MPI_PMI_LIBRARY=/usr/lib64/libpmi.so + +ulimit -s unlimited + +#set how to run mpi applications, one process per node +RUNMPI="srun --ntasks-per-node=1 -n {akrr_num_of_nodes}" +""" diff --git a/tests/artifacts/akrr/etc/resources/UBHPC_32core/namd.app.conf b/tests/artifacts/akrr/etc/resources/UBHPC_32core/namd.app.conf new file mode 100644 index 0000000..7b3b30d --- /dev/null +++ b/tests/artifacts/akrr/etc/resources/UBHPC_32core/namd.app.conf @@ -0,0 +1,16 @@ +appkernel_run_env_template=""" +#Load application environment +#module load namd/2.12-ibverbs-smp +module load intel/18.3 intel-mpi/2018.3 + +#set executable location +EXE=/projects/ccrstaff/general/appker/UBHPC/execs/NAMD_2.13b1_Source/Linux-x86_64-icc/namd2 +charmrun_bin=`which charmrun` + +#prepare nodelist for charmmrun +#for n in $AKRR_NODELIST; do echo host $n>>nodelist; done + +#set how to run app kernel +RUN_APPKERNEL="mpiexec $EXE ./input.namd" +""" + diff --git a/tests/artifacts/akrr/etc/resources/UBHPC_32core/nwchem.app.conf b/tests/artifacts/akrr/etc/resources/UBHPC_32core/nwchem.app.conf new file mode 100644 index 0000000..8b34863 --- /dev/null +++ b/tests/artifacts/akrr/etc/resources/UBHPC_32core/nwchem.app.conf @@ -0,0 +1,25 @@ +appkernel_run_env_template=""" +#Load application environment +module load intel/18.3 intel-mpi/2018.3 +module list +source /util/academic/intel/18.3/mkl/bin/mklvars.sh intel64 + +ulimit -s unlimited + +#export I_MPI_PMI_LIBRARY=/usr/lib64/libpmi.so + + +#set executable location +export NWCHEM_HOME=/projects/ccrstaff/general/appker/nwchem-6.8.1 +EXE=$NWCHEM_HOME/bin/LINUX64/nwchem + +cp aump2.nw nwchem.nw + +export I_MPI_FABRICS=tcp + +srun hostname|sort|uniq > mf +#set how to run app kernel +#RUN_APPKERNEL="srun $EXE $INPUT >> $AKRR_APP_STDOUT_FILE 2>&1" +RUN_APPKERNEL="mpirun -bootstrap ssh -n $AKRR_CORES -ppn $AKRR_CORES_PER_NODE -f mf $EXE $INPUT >> $AKRR_APP_STDOUT_FILE 2>&1" + +""" diff --git a/tests/artifacts/akrr/etc/resources/UBHPC_32core/resource.conf b/tests/artifacts/akrr/etc/resources/UBHPC_32core/resource.conf new file mode 100644 index 0000000..2e85ecc --- /dev/null +++ b/tests/artifacts/akrr/etc/resources/UBHPC_32core/resource.conf @@ -0,0 +1,43 @@ +#Resource parameters + +#Processors (cores) per node +ppn = 32 + +#head node for remote access +remoteAccessNode = "vortex.ccr.buffalo.edu" +#Remote access method to the resource (default ssh) +remote_access_method = "ssh" +#Remote copy method to the resource (default scp) +remote_copy_method = "scp" + +#Access authentication +ssh_username = "xdtas" +ssh_password = None +ssh_private_key_file = None +ssh_private_key_password = None + +#Scratch visible across all nodes (absolute path or/and shell environment variable) +networkScratch = "/gpfs/scratch/xdtas/ubhpc" +#Local scratch only locally visible (absolute path or/and shell environment variable) +local_scratch = "/scratch" +#Locations for app. kernels working directories (can or even should be on scratch space) +akrr_data = "/gpfs/scratch/xdtas/ubhpc/akrr_data/UBHPC" +#Location of executables and input for app. kernels +appKerDir = "/projects/ccrstaff/general/appker/UBHPC" + +#batch options +batchScheduler = "slurm" + +#job script header +batchJobHeaderTemplate="""#!/bin/bash +#SBATCH --partition=skylake +#SBATCH --qos=general-compute +#SBATCH --nodes={akrr_num_of_nodes} +#SBATCH --ntasks-per-node={akrr_ppn} +#SBATCH --time={akrr_walltime_limit} +#SBATCH --output={akrr_task_work_dir}/stdout +#SBATCH --error={akrr_task_work_dir}/stderr +#SBATCH --constraint=OPA,CPU-Gold-6130 +#SBATCH --exclusive +""" + diff --git a/tests/artifacts/akrr/etc/resources/UBHPC_8core/namd.app.conf b/tests/artifacts/akrr/etc/resources/UBHPC_8core/namd.app.conf new file mode 100644 index 0000000..bb810a6 --- /dev/null +++ b/tests/artifacts/akrr/etc/resources/UBHPC_8core/namd.app.conf @@ -0,0 +1,18 @@ +appkernel_run_env_template=""" +#Load application environment +module purge +module load namd/2.9-IBVERBS-SRC +module list + +#set executable location +EXE=$NAMDHOME/namd2 +charmrun_bin=$NAMDHOME/charmrun + +#prepare nodelist for charmmrun +export CONV_RSH=ssh +for n in $AKRR_NODELIST; do echo host $n>>nodelist; done + +#set how to run app kernel +RUN_APPKERNEL="$charmrun_bin +p$AKRR_CORES ++nodelist nodelist $EXE ./input.namd" +""" + diff --git a/tests/artifacts/akrr/etc/resources/UBHPC_8core/nwchem.app.conf b/tests/artifacts/akrr/etc/resources/UBHPC_8core/nwchem.app.conf new file mode 100644 index 0000000..1bac208 --- /dev/null +++ b/tests/artifacts/akrr/etc/resources/UBHPC_8core/nwchem.app.conf @@ -0,0 +1,41 @@ +appkernel_run_env_template=""" +#Load application environment +module load nwchem +source /util/academic/intel/18.3/compilers_and_libraries_2018.3.222/linux/mpi/intel64/bin/mpivars.sh +source $MKL/bin/mklvars.sh +module list +export I_MPI_PMI_LIBRARY=/usr/lib64/libpmi.so +ulimit -s unlimited +export I_MPI_FABRICS_LIST=tcp + +#set executable location +EXE=$NWCHEM_HOME/bin/LINUX64/nwchem + +export TMP_DIR=`mktemp -d /tmp/nwchem.XXXXXXXXX` +srun mkdir -p $TMP_DIR +if [ -e $INPUT ] +then + sed -i -e "s/scratch_dir/#/g" $INPUT + sed -i -e "s/permanent_dir/#/g" $INPUT + # then add our own + echo "scratch_dir $TMP_DIR" >> $INPUT + echo "permanent_dir $TMP_DIR" >> $INPUT +fi + +#set how to run app kernel +RUN_APPKERNEL="srun $EXE $INPUT" +""" + +run_script_post_run="""#clean-up +cd $AKRR_TASK_WORKDIR +srun rm -rf $TMP_DIR +if [ "${{AKRR_DEBUG=no}}" = "no" ] +then + echo "Deleting temporary files" + rm -rf $AKRR_TMP_WORKDIR +else + echo "Copying temporary files" + cp -r $AKRR_TMP_WORKDIR workdir + rm -rf $AKRR_TMP_WORKDIR +fi +""" diff --git a/tests/artifacts/akrr/etc/resources/UBHPC_8core/resource.conf b/tests/artifacts/akrr/etc/resources/UBHPC_8core/resource.conf new file mode 100644 index 0000000..14a5564 --- /dev/null +++ b/tests/artifacts/akrr/etc/resources/UBHPC_8core/resource.conf @@ -0,0 +1,36 @@ +#Resource parameters +info = """edge""" +ppn = 8 +#Scratch visible across all nodes +networkScratch='/gpfs/scratch/xdtas/edge' +#Local scratch only locally visible +localScratch='$SLURMTMPDIR' + +#Access Method To The Resource +remoteAccessMethod = """ssh""" +remoteAccessNode = """vortex.ccr.buffalo.edu""" +sshUserName = """xdtas""" + +#AppKer locations +akrrData=networkScratch +appKerDir="""/projects/ccrstaff/general/appker/edge""" + +#batch options +batchScheduler = """slurm""" + +#job script header +batchJobHeaderTemplate="""#!/bin/bash +#SBATCH --partition=general-compute +#SBATCH --qos=general-compute +#SBATCH --nodes={akrr_num_of_nodes} +#SBATCH --ntasks-per-node={akrr_ppn} +#SBATCH --time={akrr_walltime_limit} +#SBATCH --output={akrr_task_work_dir}/stdout +#SBATCH --error={akrr_task_work_dir}/stderr +#SBATCH --constraint="CPU-L5630,IB" +#SBATCH --exclusive +""" + +#SBATCH --constraint="CPU-L5520|CPU-L5630,IB" +#NOTES +# rsync -a -e 'ssh -i /home/xdtas/.ssh/id_rsa234' xdtas@k07n14.ccr.buffalo.edu:/home/xdmod/u2/edge_appker/* ./ diff --git a/tests/artifacts/akrr/etc/server.cert b/tests/artifacts/akrr/etc/server.cert new file mode 100644 index 0000000..cd98224 --- /dev/null +++ b/tests/artifacts/akrr/etc/server.cert @@ -0,0 +1,32 @@ +-----BEGIN CERTIFICATE----- +MIIFfzCCA2egAwIBAgIJAIpLkkU9WXHdMA0GCSqGSIb3DQEBCwUAMFYxCzAJBgNV +BAYTAlVTMQ8wDQYDVQQIDAZEZW5pYWwxFDASBgNVBAcMC1NwcmluZ2ZpZWxkMQww +CgYDVQQKDANEaXMxEjAQBgNVBAMMCWxvY2FsaG9zdDAeFw0yMDA2MTExNzM2NTRa +Fw0zMDA2MDkxNzM2NTRaMFYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQIDAZEZW5pYWwx +FDASBgNVBAcMC1NwcmluZ2ZpZWxkMQwwCgYDVQQKDANEaXMxEjAQBgNVBAMMCWxv +Y2FsaG9zdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAO3tl9ANtJy8 +sCvmHRkdV/v9Doit7nyg1uVexoj6vADCyH1XJPPUqKPD/m1qmMYZvNdnFgsNL/q2 +OadbOyAiu3bAqxw8BIa8QmNKccch/WOpQbz1ZpBFb0DP93QOzA3BGmnFWVvdoe1X +0lnl7kOaa54dSp+mxZhAWPghjagkACW2yS9djM50PtzuPvjCJkQCjHR2WHqeoYYQ +4G6N1QcLw6K34l1GNPIpsnRCZL0UTqg6buE1jlUNQ80MDZ9x1ZTM0vrZCUXU37PE +Cw5zKIQwlKUE8JMCqpnjWdKO7z/UndKFAudT5vCOHCct93lmWjcBwNnPE15xQMKl +9PcB4w+KEbKpEV2rFZVUk6jciTAojGmMsNlEKXL+mCiTyX18nG/7bmZYCP6hPdzu +627sT0shy/ojV34SZhZFsti2VfTNMXoISFuETzwnxlXBtjoqtSfxQiL8iInIt08/ +5F0QFWqivoCv23FgAHLrQlIjOpGY9xohefKTxNRvCRS6V9hiz9ELYR2AgHvNMWu/ +MA5915GA8X9cquXBOwY1XhW+K7a6a8IHVeGQoM60Nk7wOiRA6HkmyrxAxEWmu5+k +l+wMXgroQJ/Oh70J28MLWuWUJFBT8o8U4ek6iIwE0wj17nmCz13au6d/qQd+HASt +Kb5a85a0e9NeHcwy1clJPvl+QDNC7fWfAgMBAAGjUDBOMB0GA1UdDgQWBBTDfv0c +LsQDHIpZCeCYGBGK79iEZjAfBgNVHSMEGDAWgBTDfv0cLsQDHIpZCeCYGBGK79iE +ZjAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBCwUAA4ICAQBQEDNJOnrKxlcPZQlv +Ksxa1eWNZEue0BISOmnj+adC+tkRHuRaND6uQW6BxUzzl7/vHYKdeM24YIm/A6EF +F9dkLcGuWnEADmeXqDmEEp91Bm0WhfXSQgJJOCHdfLbNhxXI4/Sotj0ChzQi2VVi +XQQ1v5DvlGMDTa0dSZl4QqVKUAr8nmPM4/Ra61Q83/m7E4HsQpapkSIPfnK+3LjW +ywwO5o/K1BInE/R27YGFcQYfop770sGgq+CNnWWV8KOtnflCLpXdxRCA5YT9jaPU +yyyfBRNKgvfpVgfuHHGyFCEOT9tkK7VJa7BCARvlmbBNtutYA3lQvwhxj3cKXPpN +a+5Dr2lrWC8Aij6NaOgq0WjYlNlcNChqCGBnUXEYqykz0Ec4dNXQaFaWp+MHktPY +crvS9fMvMxDMHSPjBTFD50OHFsjIvdyDhqlU3wttokRJ2iKDKfTho8QMHzf7J3AV +See3EbohoDtHTKb2UXpk81fkx02AasdQDV8SBXb+WW2xSVUqQU+91k/wM8ZdmvpQ +ZM7YlG8ORT+oQKEjJ2zEICD4KtkXt+kFj7roLn02hDjFYbty0D5RrX8sZu1Hdg1f +vYkvadQDa/sEh+YnzwuHnJvz3PKflI5faaU/4UUR3BBDJqK4Q2NiZLWwx5pCGf+M +Enf67JhXMe+XJGxPzlVlN6utRA== +-----END CERTIFICATE----- diff --git a/tests/artifacts/create_akrr_db.sql b/tests/artifacts/create_akrr_db.sql new file mode 100644 index 0000000..b1f8b52 --- /dev/null +++ b/tests/artifacts/create_akrr_db.sql @@ -0,0 +1,8 @@ +create database mod_akrr CHARACTER SET utf8; +create database mod_appkernel CHARACTER SET utf8; +CREATE USER 'akrruser'@'localhost' IDENTIFIED BY 'akrruser'; +GRANT ALL ON mod_akrr.* TO 'akrruser'@'localhost'; +GRANT ALL ON mod_appkernel.* TO 'akrruser'@'localhost'; +GRANT SELECT ON modw.* TO 'akrruser'@'localhost'; +GRANT ALL ON mod_akrr.* TO 'xdmod'@'localhost'; +GRANT ALL ON mod_appkernel.* TO 'xdmod'@'localhost'; diff --git a/tests/ci/scripts/xdmod-appkernels-setup.tcl b/tests/ci/scripts/xdmod-appkernels-setup.tcl index 214cc8f..14f932d 100644 --- a/tests/ci/scripts/xdmod-appkernels-setup.tcl +++ b/tests/ci/scripts/xdmod-appkernels-setup.tcl @@ -22,7 +22,8 @@ selectMenuOption 9 # MySQL DB answerQuestion {DB Hostname or IP} {} answerQuestion {DB Port} {} -answerQuestion {DB Username} {} +answerQuestion {DB Username} akrruser +providePassword {DB Password:} akrruser provideInput {Try again (yes, skip, abort)? \[yes\]} skip # AKRR REST API diff --git a/tests/runtests.sh b/tests/runtests.sh new file mode 100755 index 0000000..ba37156 --- /dev/null +++ b/tests/runtests.sh @@ -0,0 +1,121 @@ +#!/usr/bin/env bash +BASEDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +XDMOD_APPKERNEL_DIR="$( dirname "${BASEDIR}" )" +XDMOD_WSP_DIR="$( dirname "${XDMOD_APPKERNEL_DIR}" )" +# This script is executed in docker +# either on shippable or in local docker run +# mimicing shippable directory layout + +# exit on first error +set -e +set -o pipefail + +cd $XDMOD_APPKERNEL_DIR + +export ORG_NAME=${ORG_NAME:-ubccr} +export REPO_NAME=${REPO_NAME:-xdmod-appkernel} +export REPO_FULL_NAME=${REPO_FULL_NAME:-$ORG_NAME/$REPO_NAME} +export SHIPPABLE_BUILD_DIR=${SHIPPABLE_BUILD_DIR:-$XDMOD_APPKERNEL_DIR} +export XDMOD_TEST_MODE=${XDMOD_TEST_MODE:-fresh_install} +export BRANCH=${BRANCH:-"$(git rev-parse --abbrev-ref HEAD)"} +export XDMOD_BRANCH=${XDMOD_BRANCH:-$BRANCH} +export AKRR_DIR=${AKRR_DIR:-$XDMOD_WSP_DIR/akrr} +export XDMOD_DIR=${XDMOD_DIR:-$XDMOD_WSP_DIR/xdmod} + +export AKRR_USER=akrruser + +echo XDMOD_APPKERNEL_DIR=$XDMOD_APPKERNEL_DIR +echo BRANCH=$BRANCH +echo XDMOD_BRANCH=$XDMOD_BRANCH +echo PWD="$(pwd)" +echo PATH=$PATH +echo USER=$USER +echo REPO_FULL_NAME=$REPO_FULL_NAME +echo SHIPPABLE_BUILD_DIR=$SHIPPABLE_BUILD_DIR +echo XDMOD_TEST_MODE=$XDMOD_TEST_MODE + + + +# get xdmod +if [ ! -d "$XDMOD_DIR" ]; then + git clone --depth=1 --branch=$XDMOD_BRANCH https://github.com/ubccr/xdmod.git ../xdmod +fi + +# create link in XDMoD to xdmod-appkernels module +cd $XDMOD_DIR/open_xdmod/modules +if [ ! -d "$XDMOD_DIR/open_xdmod/modules/xdmod-appkernels" ]; then + ln -s ../../../xdmod-appkernels . +fi +cd $XDMOD_APPKERNEL_DIR + +# check that open_xdmod/modules/xdmod-appkernels linked to right directory +if [ "$(realpath "$XDMOD_DIR/open_xdmod/modules/xdmod-appkernels")" != "$(realpath "$XDMOD_APPKERNEL_DIR")" ]; then + echo "$XDMOD_DIR/open_xdmod/modules/xdmod-appkernels do not point to $XDMOD_APPKERNEL_DIR" +fi + + +composer install -d ../xdmod --no-progress + +# build xdmod rpms +cd ../xdmod +~/bin/buildrpm xdmod xdmod-appkernels +cd $XDMOD_APPKERNEL_DIR + +# get akrr +git clone --depth=1 https://github.com/ubccr/akrr.git ../akrr +cd $AKRR_DIR +./make_rpm.sh +cd $XDMOD_APPKERNEL_DIR + +XDMOD_BOOTSTRAP=$XDMOD_APPKERNEL_DIR/../xdmod/tests/ci/bootstrap.sh + +# get phpunit +if [ ! -f "/usr/local/bin/phpunit" ]; then + wget -O /usr/local/bin/phpunit https://phar.phpunit.de/phpunit-4.phar + chmod 755 /usr/local/bin/phpunit +fi + + +if [ "$XDMOD_TEST_MODE" = "fresh_install" ]; +then + $XDMOD_BOOTSTRAP + + # Turn on novice user mod + sed -i 's@novice_user = "off"@novice_user = "on"@' /etc/xdmod/portal_settings.ini + + # Load mod_akrr and mod_appkernel db (created by AKRR) + mysql -u root < $XDMOD_APPKERNEL_DIR/tests/artifacts/create_akrr_db.sql + mysql -u root mod_akrr < $XDMOD_APPKERNEL_DIR/tests/artifacts/mod_akrr_xdmod_dev_test.sql + mysql -u root mod_appkernel < $XDMOD_APPKERNEL_DIR/tests/artifacts/mod_appkernel_xdmod_dev_test.sql + + # install akrr + yum install -y $AKRR_DIR/dist/akrr-*.noarch.rpm + + # copy akrr config + cp -r ~/src/ubccr/xdmod-appkernels/tests/artifacts/akrr ~/ + mkdir -p ~/akrr/log/akrrd ~/akrr/log/comptasks ~/akrr/log/data + + # start akrr + akrr daemon start + + # Configure xdmod appkernels + expect $XDMOD_APPKERNEL_DIR/tests/ci/scripts/xdmod-appkernels-setup.tcl | col -b + + # Ingest AK runs + xdmod-akrr-ingestor -q -l load -c -r + # Test report + appkernel_reports_manager -m centerdirector -v -d -e 2019-02-28 + + # Do tests + cd $XDMOD_APPKERNEL_DIR/tests/unit + phpunit --log-junit $XDMOD_APPKERNEL_DIR/shippable/testresults/results.xml \ + --coverage-xml $XDMOD_APPKERNEL_DIR/shippable/codecoverage/coverage.xml . + +fi + +if [ "$XDMOD_TEST_MODE" = "upgrade" ]; +then + $XDMOD_BOOTSTRAP + echo "Update test is not yet implemented" + exit 1 +fi diff --git a/tests/utils/README.MD b/tests/utils/README.MD new file mode 100644 index 0000000..defc667 --- /dev/null +++ b/tests/utils/README.MD @@ -0,0 +1 @@ +Different utilities to reuse among containers. \ No newline at end of file diff --git a/tests/utils/cmd_setup b/tests/utils/cmd_setup new file mode 100755 index 0000000..abbe3b8 --- /dev/null +++ b/tests/utils/cmd_setup @@ -0,0 +1,168 @@ +#!/bin/bash + +# sometimes /usr/local/sbin is not in PATH +export PATH="/usr/local/sbin:$PATH" + +# Install xdebug for php debugging +# remote host is 127.0.0.1 and ssh tunnel: +# ssh -N -R 9000:localhost:9000 -p 2210 root@localhost +setup_xdebug(){ + echo "xdebug setup" + + cd + rpm -qa | grep php-pecl-xdebug > /dev/null 2>&1 + if [ $? != 0 ]; then + yum install php-pecl-xdebug -y + fi + + grep 'xdebug.remote_host' /etc/php.d/xdebug.ini > /dev/null 2>&1 + if [ $? != 0 ]; then + cat <> /etc/php.d/xdebug.ini +xdebug.remote_enable=1 +xdebug.remote_autostart=1 +xdebug.remote_host=127.0.0.1 +xdebug.remote_port=9000 +EOT + fi +} + +# Install SSHD, allow root to access +setup_sshd(){ + yum install -y openssh-server + + mkdir /var/run/sshd + + # Generate new key + ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N '' && \ + ssh-keygen -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key -N '' && \ + ssh-keygen -t ed25519 -f /etc/ssh/ssh_host_ed25519_key -N '' && \ + echo 'PermitRootLogin yes' >> /etc/ssh/sshd_config +} + +# Install XDMoD with appkernel +# source code of xdmod should be in /root/xdmod +# source code of xdmod-appkernels in /root/xdmod/open_xdmod/modules/xdmod-appkernels +setup_xdmod_install_xdmod_appkernels(){ + if mount | grep " /root/xdmod " + then + echo "Using source code mounted to /root/xdmod" + else + echo "Getting XDMoD from github" + if [ -d "/root/xdmod" ]; then + echo "Deleting previous source code" + rm -rf /root/xdmod + fi + ENV_XDMOD_REPO=${ENV_XDMOD_REPO:-https://github.com/ubccr/xdmod.git} + ENV_XDMOD_BRANCH=${ENV_XDMOD_BRANCH:-x} + ENV_XDMOD_APPKERNEL_REPO=${ENV_XDMOD_APPKERNEL_REPO:-https://github.com/nsimakov/xdmod-appkernels.git} + ENV_XDMOD_APPKERNEL_BRANCH=${ENV_XDMOD_BRANCH:-x} + cd + + if [ "$ENV_XDMOD_BRANCH" = "x" ]; then + git clone --single-branch "$XDMOD_REPO" + else + git clone --single-branch --branch "$ENV_XDMOD_BRANCH" "$ENV_XDMOD_REPO" + fi + + cd /root/xdmod/open_xdmod/modules/ + if [ "$ENV_XDMOD_APPKERNEL_BRANCH" = "x" ]; then + git clone --single-branch "$XDMOD_APPKERNEL_REPO" + else + git clone --single-branch --branch "$ENV_XDMOD_APPKERNEL_BRANCH" "$ENV_XDMOD_APPKERNEL_REPO" + fi + fi + + cd /root/xdmod + # Install dependencies + composer install --no-progress + + # Build RPMs + rm -rf open_xdmod/build/* + ~/bin/buildrpm xdmod xdmod-appkernels + + # Install RPMS + export XDMOD_TEST_MODE=fresh_install + ./tests/ci/bootstrap.sh + + # Turn on novice user mod + sed -i 's@novice_user = "off"@novice_user = "on"@' /etc/xdmod/portal_settings.ini +} + +# Setup AKRR 1.0 +setup_akrr_1_0_1month(){ + AKRRUSER_HOME=${AKRRUSER_HOME:-/root} + AKRRUSER=${AKRRUSER:-root} + + cd $AKRRUSER_HOME + runuser -l $AKRRUSER -c 'wget https://github.com/nsimakov/akrr-test-artifacts/raw/master/akrr-1.0_1month.tar.xz' + + runuser -l $AKRRUSER -c 'tar -xJf akrr-1.0_1month.tar.xz' + + # Initiate database + mysql -u root << END +create database mod_akrr; +create database mod_appkernel; +CREATE USER 'akrruser'@'localhost' IDENTIFIED BY 'akrruser'; +GRANT ALL ON mod_akrr.* TO 'akrruser'@'localhost'; +GRANT ALL ON mod_appkernel.* TO 'akrruser'@'localhost'; +GRANT SELECT ON modw.* TO 'akrruser'@'localhost'; +END + + # Load historic db + xz -cd akrr/mod_akrr.sql.xz | mysql -u root mod_akrr + xz -cd akrr/mod_appkernel.sql.xz | mysql -u root mod_appkernel + # @todo Probably it is good idea to cleanup mod_appkernel from old results + # because we will reingest + + # Add akkr to PATH + runuser -l $AKRRUSER -c "echo \"export PATH=/root/akrr/bin:\$PATH\" >> $AKRRUSER_HOME/.bashrc" + + # Install dependencies + yum install -y python MySQL-python openssl curl + # akrr.sh start +} + +# setup xdmod_appkernels module +setup_xdmod_appkernels(){ + # Configure xdmod appkernels and ingest + expect /root/xdmod/open_xdmod/modules/xdmod-appkernels/tests/ci/scripts/xdmod-appkernels-setup.tcl + echo + + # Ingest AK runs + xdmod-akrr-ingestor -v -s "2019-01-01 15:10:10" -c -y -m + # Test report + appkernel_reports_manager -m centerdirector -v -d -e 2019-02-28 + # cat /var/mail/root +} + +# loop over arguments +while (( "$#" )) +do + case "$1" in + xdebug) + setup_xdebug + ;; + sshd) + setup_sshd + ;; + xdmod_install_xdmod_appkernels) + setup_xdmod_install_xdmod_appkernels + ;; + akrr-1.0_1month) + setup_akrr_1_0_1month + ;; + xdmod_appkernels) + setup_xdmod_appkernels + ;; + -set-no-exit-on-fail) + set +e + ;; + -set-exit-on-fail) + set -e + ;; + *) + echo "Unknown argument: $1" + ;; + esac + shift +done diff --git a/tests/utils/cmd_start b/tests/utils/cmd_start new file mode 100755 index 0000000..1115689 --- /dev/null +++ b/tests/utils/cmd_start @@ -0,0 +1,189 @@ +#!/bin/bash +echo "Reach Entry Point" +if [ "$USER" = "root" ]; then + echo $$ > /var/run/enrypoint.pid +fi + +# sometimes /usr/local/sbin is not in PATH +export PATH="/usr/local/sbin:$PATH" + +set -e + +loop=0 + +run_bash=0 + +run_bash_akrruser=0 + +run_bash_admin=0 + +run_bash_user1=0 + +start_process(){ + name=$1 + command=$2 + pid_file=$3 + user=${4:-x} + + launch=false + + if [ ! -f "${pid_file}" ]; then + launch=true + elif [ ! -f "/proc/$(cat "${pid_file}")" ]; then + launch=true + fi + + if [ "$launch" = true ] ;then + if [ "$user" = "x" ]; then + echo "Launching ${name}" + ${command} + else + echo "Launching ${name} as ${user} user" + sudo -u "${user}" "${command}" + fi + else + echo "${name} already running" + fi +} + +# Start process and confirm it launches by looking for a +# confirm_sentence in log_file. +# Format: +# start_process_w_confirm name command pid_file log_file confirm_sentence user +start_process_w_confirm(){ + name=$1 + command=$2 + pid_file=$3 + log_file=$4 + confirm_sentence=$5 + user=${6:-x} + timeout_time=2 + + if [ -f "${pid_file}" ]; then + if [ -d "/proc/$(cat "${pid_file}")" ]; then + echo "${name} already running" + return 1 + fi + fi + + if [ -f "${log_file}" ]; then + cat "${log_file}" >> "${log_file}.old" + rm "${log_file}" + fi + + if [ "$user" = "x" ]; then + echo "Launching ${name}" + ${command} + else + echo "Launching ${name} as ${user} user" + sudo -u "${user}" "${command}" + fi + + for ((i=0; i < timeout_time; i++)) + { + if grep -q "${confirm_sentence}" "${log_file}" ; then + echo "${name} is up" + return 0 + fi + sleep 1 + } + + echo "Something wrong with ${name}, can not find key-phrase in log" + return 1 +} + + +while (( "$#" )) +do + case "$1" in + mysqld) + echo "Launching mysqld" + trap "/sbin/shutdown.sh mysqld; exit" SIGHUP SIGINT SIGTERM + mysqld_safe & + mysqladmin --silent --wait=30 ping + ;; + munged) + start_process munged munged /run/munge/munged.pid munge + ;; + sshd) + start_process sshd /usr/sbin/sshd /run/sshd.pid + ;; + slurmdbd) + start_process_w_confirm slurmdbd /usr/sbin/slurmdbd /run/slurmdbd.pid \ + /var/log/slurm/slurmdbd.log started + ;; + slurmctld) + start_process_w_confirm slurmctld /usr/sbin/slurmctld /run/slurmctld.pid \ + /var/log/slurm/slurmctld.log started + ;; + slurmd) + start_process_w_confirm slurmd /usr/sbin/slurmd /run/slurmd.pid \ + /var/log/slurm/slurmd.log started slurm + ;; + httpd) + echo "Launching httpd" + httpd + ;; + self_contained_slurm_wlm) + cmd_start munged sshd mysqld slurmdbd slurmctld slurmd + ;; + akrr_v1) + echo "Launching akrr v1.0" + AKRRUSER_HOME=${AKRRUSER_HOME:-/home/akrruser} + AKRRUSER=${AKRRUSER:-akrruser} + sudo -u $AKRRUSER /usr/bin/python2 $AKRRUSER_HOME/akrr/src/akrrscheduler.py start + ;; + bash) + echo "Will launching bash at the end" + run_bash=1 + ;; + bash_akrruser) + echo "Will launching bash at the end as akrruser" + run_bash_akrruser=1 + ;; + bash_admin) + echo "Will launching bash at the end as admin" + run_bash_admin=1 + ;; + bash_user1) + echo "Will launching bash at the end as user1" + run_bash_user1=1 + ;; + run_tests) + echo "Start Tests: $RUN_TESTS" + $RUN_TESTS + ;; + -c) + # from docker cmd skip to next + ;; + -loop) + loop=1 + ;; + -set-no-exit-on-fail) + set +e + ;; + -set-exit-on-fail) + set -e + ;; + *) + echo "Executing $1" + eval "$1" + ;; + esac + shift +done + +if [ $run_bash -eq 1 ]; then + /bin/bash +elif [ $run_bash_akrruser -eq 1 ]; then + su - akrruser +elif [ $run_bash_admin -eq 1 ]; then + su - admin +elif [ $run_bash_user1 -eq 1 ]; then + su - user1 +elif [ $loop -eq 1 ]; then + echo "All requested daemon launched" + while true; do + sleep 60 + done +fi diff --git a/tests/utils/cmd_stop b/tests/utils/cmd_stop new file mode 100755 index 0000000..5715c0f --- /dev/null +++ b/tests/utils/cmd_stop @@ -0,0 +1,64 @@ +#!/bin/bash + +# sometimes /usr/local/sbin is not in PATH +export PATH="/usr/local/sbin:$PATH" + +kill_process(){ + kill -SIGTERM $1 + while [ -f /proc/$1 ];do sleep 1;done +} + +stop_process(){ + name=$1 + pid_file=$2 + + if [ -f "${pid_file}" ]; then + echo "Stopping ${name}" + kill_process `cat ${pid_file}` + else + echo "${name} is not running" + fi +} + + + +for var in "$@" +do + case "$var" in + mysqld) + echo "Stopping mysqld" + mysqladmin shutdown + ;; + munged) + stop_process munged /run/munge/munged.pid + ;; + sshd) + stop_process sshd /run/sshd.pid + ;; + slurmdbd) + stop_process slurmdbd /run/slurmdbd.pid + ;; + slurmctld) + stop_process slurmctld /run/slurmctld.pid + ;; + slurmd) + stop_process slurmd /run/slurmd.pid + ;; + httpd) + httpd -k graceful-stop + ;; + akrr_v1) + echo "Stopping akrr v1.0" + AKRRUSER_HOME=${AKRRUSER_HOME:-/home/akrruser} + AKRRUSER=${AKRRUSER:-akrruser} + sudo -u $AKRRUSER /usr/bin/python2 $AKRRUSER_HOME/akrr/src/akrrscheduler.py stop + ;; + self_contained_slurm_wlm) + cmd_stop slurmd slurmctld slurmdbd mysqld sshd munged + ;; + *) + echo "unknown command ${var}" + ;; + esac +done + From 50c2444d50ae730544930fd4b35c62152a978e2c Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Sat, 13 Jun 2020 21:56:05 -0400 Subject: [PATCH 38/63] corrected test script location for shippable --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 649b0de..24c028e 100644 --- a/shippable.yml +++ b/shippable.yml @@ -17,7 +17,7 @@ build: pull: false options: "--user root -e HOME=/root --shm-size 2g" ci: - - ./tests/unit/runtests.sh + - ./tests/runtests.sh on_failure: - cat /var/log/xdmod/* jobs: From ed614d576a77bdca8085eae01dd6f53343b43597 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Sat, 13 Jun 2020 22:10:57 -0400 Subject: [PATCH 39/63] added python3 installation in dockerfile for shippable --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index d30e144..ae35339 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1 +1,4 @@ FROM tas-tools-ext-01.ccr.xdmod.org/centos7_6-open8.5.1:latest + +RUN yum -y install --setopt=tsflags=nodocs python3 && \ + yum clean all From a7a32f8bdfb366e644c93c2bd8d2a61ff2258f04 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Sat, 13 Jun 2020 22:36:49 -0400 Subject: [PATCH 40/63] fixed dir location in test script --- tests/runtests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtests.sh b/tests/runtests.sh index ba37156..812cc8a 100755 --- a/tests/runtests.sh +++ b/tests/runtests.sh @@ -92,7 +92,7 @@ then yum install -y $AKRR_DIR/dist/akrr-*.noarch.rpm # copy akrr config - cp -r ~/src/ubccr/xdmod-appkernels/tests/artifacts/akrr ~/ + cp -r $XDMOD_APPKERNEL_DIR/tests/artifacts/akrr ~/ mkdir -p ~/akrr/log/akrrd ~/akrr/log/comptasks ~/akrr/log/data # start akrr From 1a532f5acfbefba8ce9e92765979ae7d97329111 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Sun, 14 Jun 2020 02:08:51 -0400 Subject: [PATCH 41/63] added forgotten key/pem for tests --- tests/artifacts/akrr/etc/server.key | 52 ++++++++++++++++++ tests/artifacts/akrr/etc/server.pem | 84 +++++++++++++++++++++++++++++ 2 files changed, 136 insertions(+) create mode 100644 tests/artifacts/akrr/etc/server.key create mode 100644 tests/artifacts/akrr/etc/server.pem diff --git a/tests/artifacts/akrr/etc/server.key b/tests/artifacts/akrr/etc/server.key new file mode 100644 index 0000000..16e24e2 --- /dev/null +++ b/tests/artifacts/akrr/etc/server.key @@ -0,0 +1,52 @@ +-----BEGIN PRIVATE KEY----- +MIIJRAIBADANBgkqhkiG9w0BAQEFAASCCS4wggkqAgEAAoICAQDt7ZfQDbScvLAr +5h0ZHVf7/Q6Ire58oNblXsaI+rwAwsh9VyTz1Kijw/5tapjGGbzXZxYLDS/6tjmn +WzsgIrt2wKscPASGvEJjSnHHIf1jqUG89WaQRW9Az/d0DswNwRppxVlb3aHtV9JZ +5e5DmmueHUqfpsWYQFj4IY2oJAAltskvXYzOdD7c7j74wiZEAox0dlh6nqGGEOBu +jdUHC8Oit+JdRjTyKbJ0QmS9FE6oOm7hNY5VDUPNDA2fcdWUzNL62QlF1N+zxAsO +cyiEMJSlBPCTAqqZ41nSju8/1J3ShQLnU+bwjhwnLfd5Zlo3AcDZzxNecUDCpfT3 +AeMPihGyqRFdqxWVVJOo3IkwKIxpjLDZRCly/pgok8l9fJxv+25mWAj+oT3c7utu +7E9LIcv6I1d+EmYWRbLYtlX0zTF6CEhbhE88J8ZVwbY6KrUn8UIi/IiJyLdPP+Rd +EBVqor6Ar9txYABy60JSIzqRmPcaIXnyk8TUbwkUulfYYs/RC2EdgIB7zTFrvzAO +fdeRgPF/XKrlwTsGNV4Vviu2umvCB1XhkKDOtDZO8DokQOh5Jsq8QMRFprufpJfs +DF4K6ECfzoe9CdvDC1rllCRQU/KPFOHpOoiMBNMI9e55gs9d2runf6kHfhwErSm+ +WvOWtHvTXh3MMtXJST75fkAzQu31nwIDAQABAoICAQCn6Gacsy9k9Vw2frzGPokb +Eikxl92YIkHFuS7O+HO47b1jhx5S3R7uA6EIQpPyKbO1J9DMl8/mVLc3PhDpytkV +Iz8eO9TN6QnI3H6TE4+ox4fW/DAXXIj46kstokuq4T3sqxM226AsyS9vte6B0vZj +rTQ+mwkTO0YORk+b+1wHQYmVXaXDBRJgA9p43zr1//5zKhmi31QKMtrP6lQOFuVH +bhHX1XYD+B0yIrDJJw2jdylM0ejSaPwSNpFelo0t56Z01LnQiDwetxk+Z1KOh2I/ +Ws8UUGtpEqMPD0QUfc2rBadY7UMrPH7tv2jISc0cyKX6kEKRAce8FjZcIv7EtqFp +YaSfsRRHMUKzs1lUDQX2olxvRazN6ytVa2OJHGE4ogH4XmFuf3VVyuC7h7ooKLcV +ZB4z5Htk8qUovd/M9YZGmEuyJWyrIylceMAC7nw7mS7+JxLx2tG1BitElaPM/5Cj +dFpkpbcBbunRmDSPE0vK3KsoQNdteIAqHjpMkM6d3XmHZvoKkL3kb0F7dIpLC5oJ +TfP9dm+X9voB9J2G7ACMiwhsG3cbKSsP+2RFGvrFX85ciW1Tkrx+6A7vmpXF0x/o +CUREIvSuqSFW9R9n3xrOCIAjDcVXc91Ret2DDFxlRdUmpQJj1nXtulEN0Cn3V3ah +KNq4m0xuJp7WRvG/zs32cQKCAQEA/WkpMQN0hR7aTgH0Aj8u46a8AhvutaGUBEwg +Q3QYxlrzP+kiduABWPCW6l/oDmpHiu/ABgJ4IyWqvNOM9GbggdA/Dqus9szcVsom +EXitBtKgbF5nZTtSgUcWosWzHcMqO2UM8mGisdQ/lenxL6WgOFa8mOBnGEp/J+jw +n9kGheSUukmeYGkIpx+hKa0saHT0kOFpwaMZqs/5PaHt3sZhl+Dt5NCCq7O8ebwA +LPjBWglYrJH5D6UIpttrV+245QdefXZAgVQHpAWm+Qqhl8WMLO2bA9OwxmTKGTXt +PRwmG6X3yLKIQMILgTW1/QS2wP8Fee5VJwn+d9AGd2fa19b3CwKCAQEA8FvvO+On +Vr8jbqa43YaQYChy6HjEjE7LyTzusrq9R4yF5pM1FoprdDOZSrwks3NrqVV8yQ14 +1sk0u5zNuvM/w6zTSjd/06Nnq+E+EwT2V2h2QKyJdxeaWktAVVTAFI3bsPOGbKXq +BL1YB2WkV5cHpAxB0G2yXMTKkC8Dr40h+d8fChEsVy6gJri/IHrbHctTA1SbkYbo +IdHHW3HR7Vms2D4gJBuJxUdwfyuhpvBvgf0AH+/wPdyKDtoSxMVWeAy5XgTTS5sh +GJ+UuAwMr4TNqXNcigTmFgftOp/fbs6bjgIDCiwgt4vghyVT79n/v4NEDurVE6wf +jiG6riZi+e5IPQKCAQEAqIt6JyxaInQ71Gh+J8RoZmeuYmS7pziZnyYWy2Z7V+qE +IXzpPFGO893JMoepa3UKsoD1ocmgqBfUcJTwClomdpDQb+yFNP1ai6sWGMa/pmsO +4iUD9hO3s15Z0tdVY7U78JcsPkXsFQTLaeVYUk2BvBcMh02xpDlgS2YmLNsG+KTo +uuJeIVeatrVV1sdkYvFu/LHASlc1qiN7bZ+2+1XM8VxcPbTlRFheQkVlhIPK7hyL +SvQnyF0G3RvRUIE/Wa1GDoJJMvt1vYU44ilNAwoUSomacbgpujqtJIl2ig+f1QHV +RTphX1jwl/bmXSv2dXTo6ok3P6jpBD1rH54Gs0o5swKCAQBASrcRM/G82F+n51yn +lKjlr6wc1sDsLt9/spa+pAihLMtcQ5/9qYTYjjzAqta+UW9I2h8IwFvESAmc7XJy +QUKbGo1h2rqMZ7cBWLx75eXmt4B6CCy0+FFHOb25lXPTi6ZqDJm2UiLopaT4RY3S +CAn5LXYlRFJjUhhEvO6ldIDUD4SD8tgDcetQsDYff/1AWPSZfXYnVQiekzhaE3Xt +oQEEzolWXy9Y36UNvyP8PW/2OzBfWpTOV0Fue5Jto8NfVTf4GB5UqOgPaBAlssNp +54IDg2ILYQgSeIhSGBVx1D3znEIn5GnT7sxeGfP7wjoQhhIcU2AvZOkD4a3Hi2kK +JVyZAoIBAQD573f07XsBX4R/+yrBSrPGQvyCKHfo/bWGYo3liMbedWWXcmnPaPnP +tYNcWHmZ5LPna23ic8qbpf7hGdyIoaeJd5Txq3Sjfk1ZvnqplAyoK4JzoA4MB1oh +e15GfKUjJnPoVcpthwO/bUxLZbgzySBf3toX3SY958ZaI+YWecwu2coT+ly+n8Bn +fJs+JsQVYk9S3VTrewAnrIpp53Uf7l1ymJUS28QgnH9emEfY671x2mxPHneRDdmX +5eeZPgmdLhQ9hz9c476AdtjErzge/szmS4+tgHIO8EWvQszFJW9YhUKeb+WX71Rl +y4wsYYRigx3VfEXs4HP7W97NVBkeg0ra +-----END PRIVATE KEY----- diff --git a/tests/artifacts/akrr/etc/server.pem b/tests/artifacts/akrr/etc/server.pem new file mode 100644 index 0000000..890e319 --- /dev/null +++ b/tests/artifacts/akrr/etc/server.pem @@ -0,0 +1,84 @@ +-----BEGIN PRIVATE KEY----- +MIIJRAIBADANBgkqhkiG9w0BAQEFAASCCS4wggkqAgEAAoICAQDt7ZfQDbScvLAr +5h0ZHVf7/Q6Ire58oNblXsaI+rwAwsh9VyTz1Kijw/5tapjGGbzXZxYLDS/6tjmn +WzsgIrt2wKscPASGvEJjSnHHIf1jqUG89WaQRW9Az/d0DswNwRppxVlb3aHtV9JZ +5e5DmmueHUqfpsWYQFj4IY2oJAAltskvXYzOdD7c7j74wiZEAox0dlh6nqGGEOBu +jdUHC8Oit+JdRjTyKbJ0QmS9FE6oOm7hNY5VDUPNDA2fcdWUzNL62QlF1N+zxAsO +cyiEMJSlBPCTAqqZ41nSju8/1J3ShQLnU+bwjhwnLfd5Zlo3AcDZzxNecUDCpfT3 +AeMPihGyqRFdqxWVVJOo3IkwKIxpjLDZRCly/pgok8l9fJxv+25mWAj+oT3c7utu +7E9LIcv6I1d+EmYWRbLYtlX0zTF6CEhbhE88J8ZVwbY6KrUn8UIi/IiJyLdPP+Rd +EBVqor6Ar9txYABy60JSIzqRmPcaIXnyk8TUbwkUulfYYs/RC2EdgIB7zTFrvzAO +fdeRgPF/XKrlwTsGNV4Vviu2umvCB1XhkKDOtDZO8DokQOh5Jsq8QMRFprufpJfs +DF4K6ECfzoe9CdvDC1rllCRQU/KPFOHpOoiMBNMI9e55gs9d2runf6kHfhwErSm+ +WvOWtHvTXh3MMtXJST75fkAzQu31nwIDAQABAoICAQCn6Gacsy9k9Vw2frzGPokb +Eikxl92YIkHFuS7O+HO47b1jhx5S3R7uA6EIQpPyKbO1J9DMl8/mVLc3PhDpytkV +Iz8eO9TN6QnI3H6TE4+ox4fW/DAXXIj46kstokuq4T3sqxM226AsyS9vte6B0vZj +rTQ+mwkTO0YORk+b+1wHQYmVXaXDBRJgA9p43zr1//5zKhmi31QKMtrP6lQOFuVH +bhHX1XYD+B0yIrDJJw2jdylM0ejSaPwSNpFelo0t56Z01LnQiDwetxk+Z1KOh2I/ +Ws8UUGtpEqMPD0QUfc2rBadY7UMrPH7tv2jISc0cyKX6kEKRAce8FjZcIv7EtqFp +YaSfsRRHMUKzs1lUDQX2olxvRazN6ytVa2OJHGE4ogH4XmFuf3VVyuC7h7ooKLcV +ZB4z5Htk8qUovd/M9YZGmEuyJWyrIylceMAC7nw7mS7+JxLx2tG1BitElaPM/5Cj +dFpkpbcBbunRmDSPE0vK3KsoQNdteIAqHjpMkM6d3XmHZvoKkL3kb0F7dIpLC5oJ +TfP9dm+X9voB9J2G7ACMiwhsG3cbKSsP+2RFGvrFX85ciW1Tkrx+6A7vmpXF0x/o +CUREIvSuqSFW9R9n3xrOCIAjDcVXc91Ret2DDFxlRdUmpQJj1nXtulEN0Cn3V3ah +KNq4m0xuJp7WRvG/zs32cQKCAQEA/WkpMQN0hR7aTgH0Aj8u46a8AhvutaGUBEwg +Q3QYxlrzP+kiduABWPCW6l/oDmpHiu/ABgJ4IyWqvNOM9GbggdA/Dqus9szcVsom +EXitBtKgbF5nZTtSgUcWosWzHcMqO2UM8mGisdQ/lenxL6WgOFa8mOBnGEp/J+jw +n9kGheSUukmeYGkIpx+hKa0saHT0kOFpwaMZqs/5PaHt3sZhl+Dt5NCCq7O8ebwA +LPjBWglYrJH5D6UIpttrV+245QdefXZAgVQHpAWm+Qqhl8WMLO2bA9OwxmTKGTXt +PRwmG6X3yLKIQMILgTW1/QS2wP8Fee5VJwn+d9AGd2fa19b3CwKCAQEA8FvvO+On +Vr8jbqa43YaQYChy6HjEjE7LyTzusrq9R4yF5pM1FoprdDOZSrwks3NrqVV8yQ14 +1sk0u5zNuvM/w6zTSjd/06Nnq+E+EwT2V2h2QKyJdxeaWktAVVTAFI3bsPOGbKXq +BL1YB2WkV5cHpAxB0G2yXMTKkC8Dr40h+d8fChEsVy6gJri/IHrbHctTA1SbkYbo +IdHHW3HR7Vms2D4gJBuJxUdwfyuhpvBvgf0AH+/wPdyKDtoSxMVWeAy5XgTTS5sh +GJ+UuAwMr4TNqXNcigTmFgftOp/fbs6bjgIDCiwgt4vghyVT79n/v4NEDurVE6wf +jiG6riZi+e5IPQKCAQEAqIt6JyxaInQ71Gh+J8RoZmeuYmS7pziZnyYWy2Z7V+qE +IXzpPFGO893JMoepa3UKsoD1ocmgqBfUcJTwClomdpDQb+yFNP1ai6sWGMa/pmsO +4iUD9hO3s15Z0tdVY7U78JcsPkXsFQTLaeVYUk2BvBcMh02xpDlgS2YmLNsG+KTo +uuJeIVeatrVV1sdkYvFu/LHASlc1qiN7bZ+2+1XM8VxcPbTlRFheQkVlhIPK7hyL +SvQnyF0G3RvRUIE/Wa1GDoJJMvt1vYU44ilNAwoUSomacbgpujqtJIl2ig+f1QHV +RTphX1jwl/bmXSv2dXTo6ok3P6jpBD1rH54Gs0o5swKCAQBASrcRM/G82F+n51yn +lKjlr6wc1sDsLt9/spa+pAihLMtcQ5/9qYTYjjzAqta+UW9I2h8IwFvESAmc7XJy +QUKbGo1h2rqMZ7cBWLx75eXmt4B6CCy0+FFHOb25lXPTi6ZqDJm2UiLopaT4RY3S +CAn5LXYlRFJjUhhEvO6ldIDUD4SD8tgDcetQsDYff/1AWPSZfXYnVQiekzhaE3Xt +oQEEzolWXy9Y36UNvyP8PW/2OzBfWpTOV0Fue5Jto8NfVTf4GB5UqOgPaBAlssNp +54IDg2ILYQgSeIhSGBVx1D3znEIn5GnT7sxeGfP7wjoQhhIcU2AvZOkD4a3Hi2kK +JVyZAoIBAQD573f07XsBX4R/+yrBSrPGQvyCKHfo/bWGYo3liMbedWWXcmnPaPnP +tYNcWHmZ5LPna23ic8qbpf7hGdyIoaeJd5Txq3Sjfk1ZvnqplAyoK4JzoA4MB1oh +e15GfKUjJnPoVcpthwO/bUxLZbgzySBf3toX3SY958ZaI+YWecwu2coT+ly+n8Bn +fJs+JsQVYk9S3VTrewAnrIpp53Uf7l1ymJUS28QgnH9emEfY671x2mxPHneRDdmX +5eeZPgmdLhQ9hz9c476AdtjErzge/szmS4+tgHIO8EWvQszFJW9YhUKeb+WX71Rl +y4wsYYRigx3VfEXs4HP7W97NVBkeg0ra +-----END PRIVATE KEY----- +-----BEGIN CERTIFICATE----- +MIIFfzCCA2egAwIBAgIJAIpLkkU9WXHdMA0GCSqGSIb3DQEBCwUAMFYxCzAJBgNV +BAYTAlVTMQ8wDQYDVQQIDAZEZW5pYWwxFDASBgNVBAcMC1NwcmluZ2ZpZWxkMQww +CgYDVQQKDANEaXMxEjAQBgNVBAMMCWxvY2FsaG9zdDAeFw0yMDA2MTExNzM2NTRa +Fw0zMDA2MDkxNzM2NTRaMFYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQIDAZEZW5pYWwx +FDASBgNVBAcMC1NwcmluZ2ZpZWxkMQwwCgYDVQQKDANEaXMxEjAQBgNVBAMMCWxv +Y2FsaG9zdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAO3tl9ANtJy8 +sCvmHRkdV/v9Doit7nyg1uVexoj6vADCyH1XJPPUqKPD/m1qmMYZvNdnFgsNL/q2 +OadbOyAiu3bAqxw8BIa8QmNKccch/WOpQbz1ZpBFb0DP93QOzA3BGmnFWVvdoe1X +0lnl7kOaa54dSp+mxZhAWPghjagkACW2yS9djM50PtzuPvjCJkQCjHR2WHqeoYYQ +4G6N1QcLw6K34l1GNPIpsnRCZL0UTqg6buE1jlUNQ80MDZ9x1ZTM0vrZCUXU37PE +Cw5zKIQwlKUE8JMCqpnjWdKO7z/UndKFAudT5vCOHCct93lmWjcBwNnPE15xQMKl +9PcB4w+KEbKpEV2rFZVUk6jciTAojGmMsNlEKXL+mCiTyX18nG/7bmZYCP6hPdzu +627sT0shy/ojV34SZhZFsti2VfTNMXoISFuETzwnxlXBtjoqtSfxQiL8iInIt08/ +5F0QFWqivoCv23FgAHLrQlIjOpGY9xohefKTxNRvCRS6V9hiz9ELYR2AgHvNMWu/ +MA5915GA8X9cquXBOwY1XhW+K7a6a8IHVeGQoM60Nk7wOiRA6HkmyrxAxEWmu5+k +l+wMXgroQJ/Oh70J28MLWuWUJFBT8o8U4ek6iIwE0wj17nmCz13au6d/qQd+HASt +Kb5a85a0e9NeHcwy1clJPvl+QDNC7fWfAgMBAAGjUDBOMB0GA1UdDgQWBBTDfv0c +LsQDHIpZCeCYGBGK79iEZjAfBgNVHSMEGDAWgBTDfv0cLsQDHIpZCeCYGBGK79iE +ZjAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBCwUAA4ICAQBQEDNJOnrKxlcPZQlv +Ksxa1eWNZEue0BISOmnj+adC+tkRHuRaND6uQW6BxUzzl7/vHYKdeM24YIm/A6EF +F9dkLcGuWnEADmeXqDmEEp91Bm0WhfXSQgJJOCHdfLbNhxXI4/Sotj0ChzQi2VVi +XQQ1v5DvlGMDTa0dSZl4QqVKUAr8nmPM4/Ra61Q83/m7E4HsQpapkSIPfnK+3LjW +ywwO5o/K1BInE/R27YGFcQYfop770sGgq+CNnWWV8KOtnflCLpXdxRCA5YT9jaPU +yyyfBRNKgvfpVgfuHHGyFCEOT9tkK7VJa7BCARvlmbBNtutYA3lQvwhxj3cKXPpN +a+5Dr2lrWC8Aij6NaOgq0WjYlNlcNChqCGBnUXEYqykz0Ec4dNXQaFaWp+MHktPY +crvS9fMvMxDMHSPjBTFD50OHFsjIvdyDhqlU3wttokRJ2iKDKfTho8QMHzf7J3AV +See3EbohoDtHTKb2UXpk81fkx02AasdQDV8SBXb+WW2xSVUqQU+91k/wM8ZdmvpQ +ZM7YlG8ORT+oQKEjJ2zEICD4KtkXt+kFj7roLn02hDjFYbty0D5RrX8sZu1Hdg1f +vYkvadQDa/sEh+YnzwuHnJvz3PKflI5faaU/4UUR3BBDJqK4Q2NiZLWwx5pCGf+M +Enf67JhXMe+XJGxPzlVlN6utRA== +-----END CERTIFICATE----- From 92ea4dca5400c710ce2afa01a65d397c3cb48b3f Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Sun, 14 Jun 2020 23:31:34 -0400 Subject: [PATCH 42/63] enabled xdebug in Tests.Dockerfile --- Tests.Dockerfile | 22 +++++++++++++-- tests/README.md | 24 ++++++++++++++--- tests/artifacts/sshd/ssh_host_ecdsa_key | 5 ++++ tests/artifacts/sshd/ssh_host_ecdsa_key.pub | 1 + tests/artifacts/sshd/ssh_host_ed25519_key | 7 +++++ tests/artifacts/sshd/ssh_host_ed25519_key.pub | 1 + tests/artifacts/sshd/ssh_host_rsa_key | 27 +++++++++++++++++++ tests/artifacts/sshd/ssh_host_rsa_key.pub | 1 + tests/runtests.sh | 2 ++ tests/utils/cmd_setup | 17 +++++++++--- 10 files changed, 99 insertions(+), 8 deletions(-) create mode 100644 tests/artifacts/sshd/ssh_host_ecdsa_key create mode 100644 tests/artifacts/sshd/ssh_host_ecdsa_key.pub create mode 100644 tests/artifacts/sshd/ssh_host_ed25519_key create mode 100644 tests/artifacts/sshd/ssh_host_ed25519_key.pub create mode 100644 tests/artifacts/sshd/ssh_host_rsa_key create mode 100644 tests/artifacts/sshd/ssh_host_rsa_key.pub diff --git a/Tests.Dockerfile b/Tests.Dockerfile index 5a57fff..53df7b8 100644 --- a/Tests.Dockerfile +++ b/Tests.Dockerfile @@ -1,8 +1,9 @@ # Perform shippable-like tests locally +# with xdebug on FROM tas-tools-ext-01.ccr.xdmod.org/centos7_6-open8.5.1:latest -RUN yum -y install --setopt=tsflags=nodocs python3 && \ +RUN yum -y install --setopt=tsflags=nodocs python3 openssh-server && \ yum clean all COPY . /root/src/ubccr/xdmod-appkernels @@ -10,7 +11,24 @@ WORKDIR /root/src/ubccr/xdmod-appkernels COPY ./tests/utils/cmd_setup ./tests/utils/cmd_start ./tests/utils/cmd_stop /usr/local/sbin/ + +COPY ./tests/artifacts/sshd/ssh_host_ecdsa_key \ + ./tests/artifacts/sshd/ssh_host_ecdsa_key.pub \ + ./tests/artifacts/sshd/ssh_host_ed25519_key \ + ./tests/artifacts/sshd/ssh_host_ed25519_key.pub \ + ./tests/artifacts/sshd/ssh_host_rsa_key \ + ./tests/artifacts/sshd/ssh_host_rsa_key.pub \ + /etc/ssh/ + + +RUN /usr/local/sbin/cmd_setup xdebug sshd && echo 'root:root' |chpasswd && \ + wget -O /usr/local/bin/phpunit https://phar.phpunit.de/phpunit-4.phar && \ + chmod 755 /usr/local/bin/phpunit && \ + cp /usr/local/bin/phpunit /usr/local/bin/phpunit.phar + +EXPOSE 22 + ENV COMPOSER_ALLOW_SUPERUSER=1 ENTRYPOINT ["/usr/local/sbin/cmd_start"] -CMD ["-set-no-exit-on-fail", "/root/src/ubccr/xdmod-appkernels/tests/runtests.sh", "bash"] +CMD ["-set-no-exit-on-fail", "sshd", "/root/src/ubccr/xdmod-appkernels/tests/runtests.sh", "bash"] diff --git a/tests/README.md b/tests/README.md index faf0c0e..b908aaf 100644 --- a/tests/README.md +++ b/tests/README.md @@ -9,20 +9,38 @@ docker build -t pseudo_repo/xdmod-appkernels-tests:latest -f Tests.Dockerfile . Run Tests with specific XDMoD branch ```shell script -docker run -it --rm -p 8010:8080 -e XDMOD_BRANCH=xdmod9.0 pseudo_repo/xdmod-appkernels-tests:latest +docker run -it --rm -p 20080:8080 \ + -e XDMOD_BRANCH=xdmod9.0 \ + pseudo_repo/xdmod-appkernels-tests:latest ``` Docker container will install XDMoD, AKRR, xdmod-appkernels, perform tests and get to bash session. -Browse to http://localhost:8010 to check installation. +Browse to http://localhost:20080 to check installation. Same without rebuilding image by attaching host directory ```shell script # in xdmod-appkernels directory -docker run -it --rm -p 8010:8080 \ +docker run -it --rm -p 20080:8080 \ + -e XDMOD_BRANCH=xdmod9.0 \ + -v `pwd`:/root/src/ubccr/xdmod-appkernels \ + pseudo_repo/xdmod-appkernels-tests:latest +``` + +Using local XDMoD and adding remote debugging capabilities with port forwarding for mysql, httpd and ssh +```shell script +# in xdmod-appkernels directory +docker run -it --rm \ + -p 20080:8080 -p 23306:3306 -p 20022:22 \ -e XDMOD_BRANCH=xdmod9.0 \ + -v `pwd`/../xdmod:/root/src/ubccr/xdmod \ -v `pwd`:/root/src/ubccr/xdmod-appkernels \ pseudo_repo/xdmod-appkernels-tests:latest ``` + +For xdebug create a tunnel: +```shell script +ssh -R 9000:localhost:9000 root@localhost -p 20022 +``` diff --git a/tests/artifacts/sshd/ssh_host_ecdsa_key b/tests/artifacts/sshd/ssh_host_ecdsa_key new file mode 100644 index 0000000..f17751f --- /dev/null +++ b/tests/artifacts/sshd/ssh_host_ecdsa_key @@ -0,0 +1,5 @@ +-----BEGIN EC PRIVATE KEY----- +MHcCAQEEIL2W4F1VXR5h1nKfSUrFHN2C7rSzbV8BQEjlU6cAy0/joAoGCCqGSM49 +AwEHoUQDQgAE8B5itQzWAMtzYtW41npBFWTwytRDw+sEq5H/BaXPVG8boEXYJmgA +eO0uhcRMbTChAcb5f8gJS4Qs9Hl5UD7jWA== +-----END EC PRIVATE KEY----- diff --git a/tests/artifacts/sshd/ssh_host_ecdsa_key.pub b/tests/artifacts/sshd/ssh_host_ecdsa_key.pub new file mode 100644 index 0000000..1bd9670 --- /dev/null +++ b/tests/artifacts/sshd/ssh_host_ecdsa_key.pub @@ -0,0 +1 @@ +ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPAeYrUM1gDLc2LVuNZ6QRVk8MrUQ8PrBKuR/wWlz1RvG6BF2CZoAHjtLoXETG0woQHG+X/ICUuELPR5eVA+41g= root@xdmod diff --git a/tests/artifacts/sshd/ssh_host_ed25519_key b/tests/artifacts/sshd/ssh_host_ed25519_key new file mode 100644 index 0000000..b13ec7c --- /dev/null +++ b/tests/artifacts/sshd/ssh_host_ed25519_key @@ -0,0 +1,7 @@ +-----BEGIN OPENSSH PRIVATE KEY----- +b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAMwAAAAtzc2gtZW +QyNTUxOQAAACAgY1NqC5sVG0fGe3lGpo9HknGK1kN4rNg5BhCXZglujQAAAJCOyTofjsk6 +HwAAAAtzc2gtZWQyNTUxOQAAACAgY1NqC5sVG0fGe3lGpo9HknGK1kN4rNg5BhCXZglujQ +AAAEDVpfrTy6eHTACbNTiY4RHn57gF5SBFhYPOoMuY9abC6CBjU2oLmxUbR8Z7eUamj0eS +cYrWQ3is2DkGEJdmCW6NAAAACnJvb3RAeGRtb2QBAgM= +-----END OPENSSH PRIVATE KEY----- diff --git a/tests/artifacts/sshd/ssh_host_ed25519_key.pub b/tests/artifacts/sshd/ssh_host_ed25519_key.pub new file mode 100644 index 0000000..37cf1b0 --- /dev/null +++ b/tests/artifacts/sshd/ssh_host_ed25519_key.pub @@ -0,0 +1 @@ +ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICBjU2oLmxUbR8Z7eUamj0eScYrWQ3is2DkGEJdmCW6N root@xdmod diff --git a/tests/artifacts/sshd/ssh_host_rsa_key b/tests/artifacts/sshd/ssh_host_rsa_key new file mode 100644 index 0000000..63594ad --- /dev/null +++ b/tests/artifacts/sshd/ssh_host_rsa_key @@ -0,0 +1,27 @@ +-----BEGIN RSA PRIVATE KEY----- +MIIEpAIBAAKCAQEAxE3vCKgUEEFBs1APtGzLJdAgyXkehsi2RXsmcN/cw4CfjbDv +t/UJcc1/YFeWaLilG52cw56GEK2tgk9Rl0CjqF7aaXj/sxGBRSq+q/a+ifHdQmiv +Q9OIyxBxRSxVH8uTELi7jzH3oIxgXbhyqB1T0i12p/2D4KfmpqZ9GGPgmHNiYxm+ +MOgrNi3fi6wT69+3ySo6mkvHgrzz7rLvJscO24nf2xIu3uMBr8O8A20L1rTSro7S +laPPbOehvC7qnPjJ58KLrSDgHq1wyuNaU6sx/GhPWRLFQBAP0aoQMRiZ6aJhr4ke +DQKBhXJtPHKbM5mGh0z7o2mQi23bkU82gMgB2QIDAQABAoIBAQClgzRMrzKjdfII +VzO2o5gxXKeYV+f2KtsMAEasGwQPTq64j/u+tfrtmh+QwqjNyQllHGIlyc4t19IY +sfoQNm8GslsjXOLzP4ooIF89rMCAnI46xPspi/ylgkqO0U9AjKuGCMwTc0TfeBx0 +SOVbe8bFypFmGOmNjON7lZqZ6vRedEjZN59RpWf1Av9RjNyJirjl74HFC5nGhXMK +cI4eXUKKBm2QKmNSgDhJ/g5O5+5yX4qRdUTas6BcMLHqzUNxbL85x+GCeYY9haXj +xZbE9Ywt8TxQqK8YcSY2dLfly8hYUJpv24Az+DBWzbAkURFCZHViyq7PBfrP5Bkr +INT5ZFSRAoGBAOWQIPBjOKQT7U5lAV4f90a+cgdu3CjsUwjcCc7TR63f07x/L17D +EMMg9eN6hNOVVdfGAvrwciStyt/hAEljl5urYamwVR2Rvu70v1CQmAdOj6x2ef+q +sYfVBn78k3fIJr4pd3oQXNebrn7a0bE2dzcxdsyVy43/e90eZLywvX9lAoGBANrp +Sn95THgWvosPlbySlE0uIatNgl6hPWJdqhxJYdg1pDEzA8mh5RGc9Luk688A+Btd +0J3EQo7ohoopbSK8/EXpgmLzqOKEbRqTl3R6bygpQWO3UPVaSherMpLnLhEO4KMX +OPWuZUr2Qpl3CBYCKqn+zFAdaphF8n+nmxmU61NlAoGAKxA8fZu/Vlg+ngQom4WX +l3fGYEqVlj+u2+ybEmdj/OQODkA1nKsvC8u1FLU5EY/kCJQmnvhYETVg51qH+Txr +hlJCAdkIPoHGtYDIGs7lFgnQveODw0g8AWUe0NeEumWbjvSsawOCxxd3Rmi6CWpU +NtBanspC4yJYFATNlO/6vFkCgYAKnYl5SP6GTEQNJkJSlKEQZQ5I6kdKI3OAk54u +JPjTrTY7FIg4fNtI0V2kw8iTjy541UHKhLvdhjUP+hZKuvNYyIwEFGC6K0XHJiUQ +BufhAK8lELyiSTCSmUCokwFO3nPSNMwUTdKnoe1016rStmQvPiXWNLb4j1vFCPGi +efA3aQKBgQDB1KMbGQitFd33p+yk9Dt5muE5F/u8q56nQ4REF9fluW5x+w+DwIXS +CWGC5NTz+ck8k0gu0TvAytRl1y6qggg4ludwFVW+/liYjGaW1FAlK0WBm5bDCoob +CZsengU+KH8Dpu4VEJTSXO2sjFEUCil5hvTmaT0WbPDgn/Vp6ZGjqw== +-----END RSA PRIVATE KEY----- diff --git a/tests/artifacts/sshd/ssh_host_rsa_key.pub b/tests/artifacts/sshd/ssh_host_rsa_key.pub new file mode 100644 index 0000000..cf73935 --- /dev/null +++ b/tests/artifacts/sshd/ssh_host_rsa_key.pub @@ -0,0 +1 @@ +ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDETe8IqBQQQUGzUA+0bMsl0CDJeR6GyLZFeyZw39zDgJ+NsO+39QlxzX9gV5ZouKUbnZzDnoYQra2CT1GXQKOoXtppeP+zEYFFKr6r9r6J8d1CaK9D04jLEHFFLFUfy5MQuLuPMfegjGBduHKoHVPSLXan/YPgp+ampn0YY+CYc2JjGb4w6Cs2Ld+LrBPr37fJKjqaS8eCvPPusu8mxw7bid/bEi7e4wGvw7wDbQvWtNKujtKVo89s56G8Luqc+MnnwoutIOAerXDK41pTqzH8aE9ZEsVAEA/RqhAxGJnpomGviR4NAoGFcm08cpszmYaHTPujaZCLbduRTzaAyAHZ root@xdmod diff --git a/tests/runtests.sh b/tests/runtests.sh index 812cc8a..4a0ed05 100755 --- a/tests/runtests.sh +++ b/tests/runtests.sh @@ -39,6 +39,8 @@ echo XDMOD_TEST_MODE=$XDMOD_TEST_MODE # get xdmod if [ ! -d "$XDMOD_DIR" ]; then git clone --depth=1 --branch=$XDMOD_BRANCH https://github.com/ubccr/xdmod.git ../xdmod +else + echo "XDMoD code is already here, will use it." fi # create link in XDMoD to xdmod-appkernels module diff --git a/tests/utils/cmd_setup b/tests/utils/cmd_setup index abbe3b8..2a7d526 100755 --- a/tests/utils/cmd_setup +++ b/tests/utils/cmd_setup @@ -33,9 +33,20 @@ setup_sshd(){ mkdir /var/run/sshd # Generate new key - ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N '' && \ - ssh-keygen -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key -N '' && \ - ssh-keygen -t ed25519 -f /etc/ssh/ssh_host_ed25519_key -N '' && \ + if [ ! -f "/etc/ssh/ssh_host_rsa_key" ]; then + ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N '' + fi + if [ ! -f "/etc/ssh/ssh_host_ecdsa_key" ]; then + ssh-keygen -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key -N '' + fi + if [ ! -f "/etc/ssh/ssh_host_ed25519_key" ]; then + ssh-keygen -t ed25519 -f /etc/ssh/ssh_host_ed25519_key -N '' + fi + + chown root:root /etc/ssh/ssh_host_* + chmod 600 /etc/ssh/ssh_host_* + chmod 644 /etc/ssh/ssh_host_*.pub + echo 'PermitRootLogin yes' >> /etc/ssh/sshd_config } From 0d5079b2e86f2bbe04ca8c3ee616fb8e28fa9f10 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Sun, 14 Jun 2020 23:41:29 -0400 Subject: [PATCH 43/63] fixed problem with updating control region (old API) --- classes/Rest/Controllers/AppKernelControllerProvider.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/Rest/Controllers/AppKernelControllerProvider.php b/classes/Rest/Controllers/AppKernelControllerProvider.php index ab422ea..8d67ff6 100644 --- a/classes/Rest/Controllers/AppKernelControllerProvider.php +++ b/classes/Rest/Controllers/AppKernelControllerProvider.php @@ -661,7 +661,7 @@ public function createOrUpdateControlRegions(Request $request, Application $app, if ($msg['success']) { $ak = $akList[$ak_def_id]; $res = $resourceList[$resource_id]; - $db->calculateControls(false, false, 20, 5, $res->nickname, $ak->basename); + $db->calculateControls(true, 20, 5, $res->nickname, $ak->basename); } // Return the message. @@ -711,7 +711,7 @@ public function deleteControlRegions(Request $request, Application $app) $ak = $akList[$ak_def_id]; $res = $resourceList[$resource_id]; - $db->calculateControls(false, false, 20, 5, $res->nickname, $ak->basename); + $db->calculateControls(false, 20, 5, $res->nickname, $ak->basename); return $app->json(array( 'success' => true, From 50c0468a8c59a266f45273d881581bb0a1847cc2 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Mon, 15 Jun 2020 00:28:58 -0400 Subject: [PATCH 44/63] fixed adding new control region --- classes/AppKernel/AppKernelDb.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/AppKernel/AppKernelDb.php b/classes/AppKernel/AppKernelDb.php index 3dc56d6..743e6bb 100644 --- a/classes/AppKernel/AppKernelDb.php +++ b/classes/AppKernel/AppKernelDb.php @@ -2420,7 +2420,7 @@ public function newControlRegions( $comment ]; $this->db->execute($sql, $params); - $this->db->execute($metric_data_update_sql); + $this->db->execute($metric_data_update_sql, $metric_data_update_params); return array( 'success' => true, 'message' => "Control region time interval was created" From 9032027d68de6a86198d8eae25784fead8991ca1 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 30 Jun 2020 13:19:24 -0400 Subject: [PATCH 45/63] styling fixes --- classes/AppKernel/AppKernelDb.php | 623 +++++++++++++----------- classes/AppKernel/AppKernelIngestor.php | 2 +- tests/README.md | 1 + 3 files changed, 351 insertions(+), 275 deletions(-) diff --git a/classes/AppKernel/AppKernelDb.php b/classes/AppKernel/AppKernelDb.php index 743e6bb..83bda10 100644 --- a/classes/AppKernel/AppKernelDb.php +++ b/classes/AppKernel/AppKernelDb.php @@ -59,7 +59,6 @@ class AppKernelDb private $logger = null; // List or application kernel definitions - // private $appKernelDefinitions = array(); private $appKernelDefinitions = null; // List of application kernel base names (with no processing units) @@ -254,13 +253,13 @@ public function loadAppKernelDefinitions(array $criteria = null) } $akDef = new AppKernelDefinition( - $id = $row['ak_def_id'], - $name = $row['name'], - $basename = $row['ak_base_name'], - $description = $row['description'], - $processor_unit = $row['processor_unit'], - $enabled = $row['enabled'], - $visible = $row['visible'] + $row['ak_def_id'], + $row['name'], + $row['ak_base_name'], + $row['description'], + $row['processor_unit'], + $row['enabled'], + $row['visible'] ); $this->appKernelDefinitions[$basename] = $akDef; @@ -418,8 +417,16 @@ public function getResources( ); // get resource_id for all associated resources - $rr = $this->getResourceListing(date_format(date_sub(date_create(), - date_interval_create_from_date_string("90 days")), 'Y-m-d'), date_format(date_create(), 'Y-m-d')); + $rr = $this->getResourceListing( + date_format( + date_sub( + date_create(), + date_interval_create_from_date_string("90 days") + ), + 'Y-m-d' + ), + date_format(date_create(), 'Y-m-d') + ); $organizations_resources_id = array(); foreach ($rr as $r) { @@ -634,15 +641,15 @@ public function getUniqueAppKernels( foreach ($result as $row) { $ak_def = new AppKernelDefinition( - $id = $row['ak_def_id'], - $name = $row['ak_name'], - $basename = $row['ak_base_name'], - $description = $row['description'], - $processor_unit = $row['processor_unit'], - $enabled = true, - $visible = true, - $start_ts = $row['start_ts'], - $end_ts = $row['end_ts'] + $row['ak_def_id'], + $row['ak_name'], + $row['ak_base_name'], + $row['description'], + $row['processor_unit'], + true, + true, + $row['start_ts'], + $row['end_ts'] ); $uniqueAppKernelList[$row['ak_def_id']] = $ak_def; } @@ -666,7 +673,7 @@ public function getMetrics( $end_date = null, array $resource_ids = array(), array $pu_counts = array(), - array $metric_names = array() + array $metric_names = array() ) { $processorCountWheres = $this->getProcessorCountWheres($pu_counts); @@ -1395,7 +1402,7 @@ public function loadAppKernelInstanceInfo(array $options, InstanceData &$ak, $lo || (!isset($options['ak_def_id']) || !isset($options['collected']) || !isset($options['resource_id'])) && !isset($options['instance_id']) ) { - $msg .= "'ak_def_id', 'collected', and 'resource_id' options are required"; + $msg = "'ak_def_id', 'collected', and 'resource_id' options are required"; throw new Exception($msg); } @@ -1700,7 +1707,7 @@ public function storeAppKernelInstance( // // See http://dev.mysql.com/doc/refman/5.5/en/error-messages-server.html - list ($sqlstate, $driverCode, $driverMsg) = $e->errorInfo; + list (, $driverCode,) = $e->errorInfo; if (1022 == $driverCode || 1062 == $driverCode || 1557 == $driverCode || 1586 == $driverCode) { $msg = "App kernel instance already exists: $ak, skipping. ($driverCode, '{$e->getMessage()}')"; throw new AppKernelException($msg, AppKernelException::DuplicateInstance); @@ -1776,7 +1783,7 @@ private function createInstance(InstanceData &$ak, $replace, $dryRunMode = false $controlStatus ); if (!$dryRunMode) { - $numRows = $this->db->execute($sql, $params); + $this->db->execute($sql, $params); } $this->log("-> Created new app kernel instance: $ak", PEAR_LOG_DEBUG); @@ -1800,7 +1807,6 @@ private function addDebugData(InstanceData $ak, $replace, $dryRunMode = false) if (false === ($resourceId = $this->getResourceId($ak))) { throw new Exception("Unknown resource '{$ak->deployment_hostname}'"); } - $appKernelId = $this->appKernelDefinitions[$ak->deployment_ak_base_name]->id; $sql = ($replace ? 'replace' : 'insert') . " INTO ak_instance_debug (ak_id, collected, resource_id, instance_id, " . "message, stderr, walltime, cputime, memory, ak_error_cause, ak_error_message, ak_queue_time) " . @@ -1820,7 +1826,7 @@ private function addDebugData(InstanceData $ak, $replace, $dryRunMode = false) $ak->ak_queue_time ); if (!$dryRunMode) { - $numRows = $this->db->execute($sql, $params); + $this->db->execute($sql, $params); } $this->log("-> Logged debug info for app kernel instance $ak", PEAR_LOG_DEBUG); @@ -1851,13 +1857,15 @@ private function addMetricData( $sql = ($replace ? 'replace' : 'insert') . " INTO ak_has_metric (ak_id, metric_id, num_units) VALUES (?,?,?)"; $params = array($ak->db_ak_id, $metric->id, $ak->deployment_num_proc_units); if (!$dryRunMode) { - $numRows = $this->db->execute($sql, $params); + $this->db->execute($sql, $params); } else { $this->log("$sql " . print_r($params, 1), PEAR_LOG_DEBUG); } $this->akMetrics[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units][$guid] = $this->akMetricGuids[$guid]; - $this->log("-> Associated metric '{$metric->name}' (id = {$metric->id}) with app kernel '{$ak->deployment_ak_name}' (ak_id = {$ak->db_ak_id})", - PEAR_LOG_DEBUG); + $this->log( + "-> Associated metric '{$metric->name}' (id = {$metric->id}) with app kernel '{$ak->deployment_ak_name}' (ak_id = {$ak->db_ak_id})", + PEAR_LOG_DEBUG + ); } //metric_data @@ -1865,7 +1873,7 @@ private function addMetricData( "resource_id, value_string) VALUES (?, ?, FROM_UNIXTIME(?), ?, ?)"; $params = array($metric->id, $ak->db_ak_id, $ak->deployment_time, $ak->db_resource_id, $metric->value); if (!$dryRunMode) { - $numRows = $this->db->execute($sql, $params); + $this->db->execute($sql, $params); } if ($add_to_a_data) { //a_data and a_tree @@ -1877,8 +1885,10 @@ private function addMetricData( $rows = $this->db->query($sql, $params); if (count($rows) > 1) { - $this->log("a_tree has more then one entries for ak_def_id, resource_id, metric_id, num_units", - PEAR_LOG_ERR); + $this->log( + "a_tree has more then one entries for ak_def_id, resource_id, metric_id, num_units", + PEAR_LOG_ERR + ); } $start_time = $ak->deployment_time; @@ -1927,7 +1937,7 @@ private function addMetricData( $status ); if (!$dryRunMode) { - $numRows = $this->db->execute($sql, $params); + $this->db->execute($sql, $params); } //a_data @@ -1955,7 +1965,7 @@ private function addMetricData( $ak->status ); if (!$dryRunMode) { - $numRows = $this->db->execute($sql, $params); + $this->db->execute($sql, $params); } } if ($ak->db_resource_visible && $ak->db_ak_def_visible && $ak->status !== 'queued') { @@ -1966,8 +1976,10 @@ private function addMetricData( $rows = $this->db->query($sql, $params); if (count($rows) > 1) { - $this->log("a_tree2 has more then one entries for ak_def_id, resource_id, metric_id, num_units", - PEAR_LOG_ERR); + $this->log( + "a_tree2 has more then one entries for ak_def_id, resource_id, metric_id, num_units", + PEAR_LOG_ERR + ); } $start_time = $ak->deployment_time; @@ -2018,7 +2030,7 @@ private function addMetricData( $status ); if (!$dryRunMode) { - $numRows = $this->db->execute($sql, $params); + $this->db->execute($sql, $params); } //a_data2 @@ -2046,7 +2058,7 @@ private function addMetricData( $ak->status ); if (!$dryRunMode) { - $numRows = $this->db->execute($sql, $params); + $this->db->execute($sql, $params); } } } @@ -2072,13 +2084,15 @@ private function addParameterData(InstanceData $ak, InstanceParameter $parameter "VALUES (?, ?)"; $params = array($ak->db_ak_id, $parameter->id); if (!$dryRunMode) { - $numRows = $this->db->execute($sql, $params); + $this->db->execute($sql, $params); } else { $this->log("$sql " . print_r($params, 1), PEAR_LOG_DEBUG); } $this->akParameters[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units][$guid] = $this->akParameterGuids[$guid]; - $this->log("-> Associated parameter '{$parameter->name}' (id = {$parameter->id}) with app kernel '{$ak->deployment_ak_name}' (ak_id = {$ak->db_ak_id})", - PEAR_LOG_DEBUG); + $this->log( + "-> Associated parameter '{$parameter->name}' (id = {$parameter->id}) with app kernel '{$ak->deployment_ak_name}' (ak_id = {$ak->db_ak_id})", + PEAR_LOG_DEBUG + ); } $sql = ($replace ? 'replace' : 'insert') . " INTO parameter_data (parameter_id, ak_id, collected, " . @@ -2092,7 +2106,7 @@ private function addParameterData(InstanceData $ak, InstanceParameter $parameter md5($parameter->value) ); if (!$dryRunMode) { - $numRows = $this->db->execute($sql, $params); + $this->db->execute($sql, $params); } $this->log("-> Stored parameter '{$parameter->name}' for app kernel $ak", PEAR_LOG_DEBUG); @@ -2121,7 +2135,7 @@ private function getAkId(InstanceData $ak) $appKernelDefId = $this->appKernelDefinitions[$ak->deployment_ak_base_name]->id; $sql = "INSERT INTO app_kernel (name, num_units, ak_def_id) VALUES (?,?,?)"; $params = array($ak->deployment_ak_base_name, $ak->deployment_num_proc_units, $appKernelDefId); - $numRows = $this->db->execute($sql, $params); + $this->db->execute($sql, $params); $id = $this->db->handle()->lastInsertId(); $this->akIdMap[$ak->deployment_ak_base_name][$ak->deployment_num_proc_units] = $id; $this->log("Added new app kernel {$ak->deployment_ak_name}", PEAR_LOG_DEBUG); @@ -2161,11 +2175,13 @@ private function getMetricId(InstanceData $ak, InstanceMetric $metric) $sql = "INSERT INTO ak_has_metric (ak_id, metric_id, num_units) VALUES (?,?,?)"; $params = array($ak->db_ak_id, $metricId, $ak->deployment_num_proc_units); $this->log("$sql " . print_r($params, 1), PEAR_LOG_DEBUG); - $numRows = $this->db->execute($sql, $params); + $this->db->execute($sql, $params); $this->akMetricGuids[$metric->guid()] = $metricId; - $this->log("Add metric to ak: name='{$metric->name}', unit='{$metric->unit}' ak='{$ak->deployment_ak_name}' (id = $metricId)", - PEAR_LOG_DEBUG); + $this->log( + "Add metric to ak: name='{$metric->name}', unit='{$metric->unit}' ak='{$ak->deployment_ak_name}' (id = $metricId)", + PEAR_LOG_DEBUG + ); return $metricId; } @@ -2175,11 +2191,13 @@ private function getMetricId(InstanceData $ak, InstanceMetric $metric) $sql = "INSERT INTO metric (name, unit, guid) VALUES (?,?,?)"; $params = array($metric->name, $metric->unit, $guid); $this->log("$sql " . print_r($params, 1), PEAR_LOG_DEBUG); - $numRows = $this->db->execute($sql, $params); + $this->db->execute($sql, $params); $metricId = $this->db->handle()->lastInsertId(); $this->akMetricGuids[$metric->guid()] = $metricId; - $this->log("Created new metric: name='{$metric->name}', unit='{$metric->unit}' (id = $metricId)", - PEAR_LOG_DEBUG); + $this->log( + "Created new metric: name='{$metric->name}', unit='{$metric->unit}' (id = $metricId)", + PEAR_LOG_DEBUG + ); return $metricId; } @@ -2211,11 +2229,13 @@ private function getParameterId(InstanceData $ak, InstanceParameter $parameter) $sql = "INSERT INTO parameter (tag, name, unit, guid) VALUES (?,?,?,?)"; $params = array($parameter->tag, $parameter->name, $parameter->unit, $guid); $this->log("$sql " . print_r($params, 1), PEAR_LOG_DEBUG); - $numRows = $this->db->execute($sql, $params); + $this->db->execute($sql, $params); $parameterId = $this->db->handle()->lastInsertId(); $this->akParameterGuids[$guid] = $parameterId; - $this->log("Created new parameter: name='{$parameter->name}' unit='{$parameter->unit}' tag='{$parameter->tag}' (id = $parameterId)", - PEAR_LOG_DEBUG); + $this->log( + "Created new parameter: name='{$parameter->name}' unit='{$parameter->unit}' tag='{$parameter->tag}' (id = $parameterId)", + PEAR_LOG_DEBUG + ); return $parameterId; } @@ -2271,7 +2291,7 @@ public function getControlRegions($resource_id, $ak_def_id) ":resource_id" => $resource_id, ":ak_def_id" => $ak_def_id, ]; - return $this->db->query($sql, $params);; + return $this->db->query($sql, $params); } /** @@ -2343,10 +2363,13 @@ public function newControlRegions( "WHERE ak_id IN (" . $ak_ids_in_sql . ") AND resource_id=:resource_id " . " AND collected >= :start_date_time"; - $metric_data_update_params = array_merge([ - ":resource_id" => $resource_id, - ":start_date_time" => $startDateTime, - ], $ak_ids_in_sql_param); + $metric_data_update_params = array_merge( + [ + ":resource_id" => $resource_id, + ":start_date_time" => $startDateTime, + ], + $ak_ids_in_sql_param + ); if (count($controlRegionDef) > 0) { $new_region_end_collected = $controlRegionDef[0]['control_region_starts']; @@ -2456,7 +2479,9 @@ public function deleteControlRegion($control_region_def_id) //get all ak_ids for this ak_def_id $sqlAKcond = array(); - $response = $this->db->query("SELECT ak_id FROM mod_appkernel.app_kernel WHERE ak_def_id='{$controlRegionDefToDelete['ak_def_id']}'"); + $response = $this->db->query( + "SELECT ak_id FROM mod_appkernel.app_kernel WHERE ak_def_id='{$controlRegionDefToDelete['ak_def_id']}'" + ); foreach ($response as $v) { $sqlAKcond[] = "ak_id='" . $v['ak_id'] . "'"; } @@ -2526,11 +2551,15 @@ public function setInitialControlRegions($initial = true, $envbased = false, $co ORDER BY ak_def_id,resource_id" ); foreach ($initial_regions_start as $first_run) { - $this->log("Adding initial control region for app kernel: {$first_run['ak_name']} on resource: {$resourceIdMap[$first_run['resource_id']]['name']}", - PEAR_LOG_INFO); + $this->log( + "Adding initial control region for app kernel: {$first_run['ak_name']} on resource: {$resourceIdMap[$first_run['resource_id']]['name']}", + PEAR_LOG_INFO + ); $t = date_format(date_create($first_run['collected']), "Y-m-d") . " 00:00:00"; - $t = date_format(date_sub(date_create($t), date_interval_create_from_date_string('5 days')), - "Y-m-d H:i:s"); + $t = date_format( + date_sub(date_create($t), date_interval_create_from_date_string('5 days')), + "Y-m-d H:i:s" + ); $sql = "INSERT INTO control_region_def (resource_id,ak_def_id,control_region_type,control_region_starts,control_region_points,comment) VALUES({$first_run['resource_id']},{$first_run['ak_def_id']},'data_points','{$t}',{$controlIntervalSize}, @@ -2561,10 +2590,11 @@ public function setInitialControlRegions($initial = true, $envbased = false, $co $ak_def_id = $newenv_regions_start[$i]['ak_def_id']; $resource_id = $newenv_regions_start[$i]['resource_id']; $collected = $newenv_regions_start[$i]['collected']; - $ak_name = $newenv_regions_start[$i]['ak_name']; $t = $collected; - $this->log("Adding control region due enviroment change, app kernel: {$newenv_regions_start[$i]['ak_name']} on resource: {$resourceIdMap[$newenv_regions_start[$i]['resource_id']]['name']}", - PEAR_LOG_INFO); + $this->log( + "Adding control region due enviroment change, app kernel: {$newenv_regions_start[$i]['ak_name']} on resource: {$resourceIdMap[$newenv_regions_start[$i]['resource_id']]['name']}", + PEAR_LOG_INFO + ); $sql = "INSERT INTO control_region_def (resource_id,ak_def_id,control_region_type,control_region_starts,control_region_points,comment) @@ -2632,7 +2662,7 @@ public function calculateControls( ); } - // Conditions for $restrictToResource + // Conditions for restrictToResource $resource_id = null; if ($restrictToResource !== null) { if (!isset($this->resourceList)) { @@ -2640,7 +2670,7 @@ public function calculateControls( } $resource_id = $this->resourceList[$restrictToResource]->id; } - // Conditions for $restrictToAppKernel + // Conditions for restrictToAppKernel $ak_ids = null; $ak_ids_in_sql_param = []; $ak_ids_in_sql = ''; @@ -2681,7 +2711,6 @@ public function calculateControls( $largerAttributeMap = array(); $metricIdToLargerMap = array(); - $akName = null; $metricsPath = xd_utilities\getConfiguration('appkernel', 'ak_metrics_path'); $metricAttributes = explode("\n", file_get_contents($metricsPath)); foreach ($metricAttributes as $metricAttribute) { @@ -2689,9 +2718,6 @@ public function calculateControls( $larger = true; $attr = explode(',', $metricAttribute); - if (isset($attr[0]) && $attr[0] !== '') { - $akName = $attr[0]; - } if (isset($attr[2]) && count($attr[2]) > 0) { $larger = substr($attr[2], 0, 1) != 'S'; } @@ -2739,8 +2765,10 @@ public function calculateControls( $this->db->execute($sql, $params); $time_end = microtime(true); - $this->log("Timing(update metric_data set control = null, running_average = null)=" . ($time_end - $time_start), - PEAR_LOG_DEBUG); + $this->log( + "Timing(update metric_data set control = null, running_average = null)=" . ($time_end - $time_start), + PEAR_LOG_DEBUG + ); } // Get a list of possible unique datasets (datasetsQuery). @@ -2774,7 +2802,8 @@ public function calculateControls( $this->log( "Timing(Get a list of possible unique datasets (datasetsQuery))=" . ($time_end - $time_start), - PEAR_LOG_DEBUG); + PEAR_LOG_DEBUG + ); $time_start_bigcycle = microtime(true); $progressVerbosity = 1; @@ -2812,7 +2841,8 @@ public function calculateControls( $this->log( "Skipping metric {$dataset['metric_id']} {$metricsLookupById[$dataset['metric_id']]['name']} " . "as there was no value in metric_attributes for its larger/smaller property", - PEAR_LOG_WARNING); + PEAR_LOG_WARNING + ); continue; } @@ -2857,10 +2887,13 @@ public function calculateControls( $this->log( "Adding initial control region for app kernel: {$akId2akDefIdMap[$dataset['ak_id']]['name']} " . "on resource: {$resourceIdMap[$dataset['resource_id']]['name']}", - PEAR_LOG_INFO); + PEAR_LOG_INFO + ); $t = date_format(date_create($data[0]['collected']), "Y-m-d") . " 00:00:00"; - $t = date_format(date_sub(date_create($t), date_interval_create_from_date_string('5 days')), - "Y-m-d H:i:s"); + $t = date_format( + date_sub(date_create($t), date_interval_create_from_date_string('5 days')), + "Y-m-d H:i:s" + ); $sql = "INSERT INTO control_region_def " . "(resource_id,ak_def_id,control_region_type,control_region_starts,control_region_points,comment) " . @@ -2879,10 +2912,13 @@ public function calculateControls( "Updating initial control region for app kernel: " . "{$akId2akDefIdMap[$dataset['ak_id']]['name']} on resource: " . "{$resourceIdMap[$dataset['resource_id']]['name']}", - PEAR_LOG_INFO); + PEAR_LOG_INFO + ); $t = date_format(date_create($data[0]['collected']), "Y-m-d") . " 00:00:00"; - $t = date_format(date_sub(date_create($t), date_interval_create_from_date_string('5 days')), - "Y-m-d H:i:s"); + $t = date_format( + date_sub(date_create($t), date_interval_create_from_date_string('5 days')), + "Y-m-d H:i:s" + ); $sql = "UPDATE control_region_def SET control_region_starts=? WHERE control_region_def_id=?"; $params = [$t, $controlRegionDef[0]['control_region_def_id']]; $this->db->execute($sql, $params); @@ -2966,13 +3002,17 @@ public function calculateControls( $controlIntervalDataParams[":control_region_starts"] = $controlRegion['control_region_starts']; if ($controlRegion['control_region_type'] == 'data_points') { - $controlIntervalDataQuery .= " LIMIT " . intval($controlRegion['control_region_points']); + $controlIntervalDataQuery .= " LIMIT " . intval( + $controlRegion['control_region_points'] + ); } else { $controlIntervalDataQuery .= " AND md.collected <= :control_region_ends"; $controlIntervalDataParams[":control_region_ends"] = $controlRegion['control_region_ends']; } - $controlIntervalData = $this->db->query($controlIntervalDataQuery, - $controlIntervalDataParams); + $controlIntervalData = $this->db->query( + $controlIntervalDataQuery, + $controlIntervalDataParams + ); if ($controlRegion['control_region_type'] == 'data_points') { if (count($controlIntervalData) == $controlRegion['control_region_points']) { $completed = 1; @@ -3004,21 +3044,18 @@ public function calculateControls( $controlStart = $controlMin; $controlEnd = $controlMax; + //use advanced technique to figure out (override) control start and end. + //divided the set into two regions based on median, find the + //average of each region and use as start and end. + if ($controlLength > 4) { + $middlePoint = $controlLength / 2; + sort($controlValues); - { - //use advanced technique to figure out (override) control start and end. - //divided the set into two regions based on median, find the - //average of each region and use as start and end. - if ($controlLength > 4) { - $middlePoint = $controlLength / 2; - sort($controlValues); + $startRegion = array_slice($controlValues, 0, $middlePoint); + $endRegion = array_slice($controlValues, $middlePoint, $controlLength); - $startRegion = array_slice($controlValues, 0, $middlePoint); - $endRegion = array_slice($controlValues, $middlePoint, $controlLength); - - $controlStart = array_sum($startRegion) / count($startRegion); - $controlEnd = array_sum($endRegion) / count($endRegion); - } + $controlStart = array_sum($startRegion) / count($startRegion); + $controlEnd = array_sum($endRegion) / count($endRegion); } } $controlSum = array_sum($controlValues); @@ -3064,8 +3101,10 @@ public function calculateControls( ":metric_id" => $data_point['metric_id'], ":collected" => $data_point['collected'], ]; - $this->db->execute($controlStatusUpdateStatement, - $controlStatusUpdateStatementParams); + $this->db->execute( + $controlStatusUpdateStatement, + $controlStatusUpdateStatementParams + ); for ($i = 0; $i < $length; $i++) { if ($data[$i]['collected'] === $data_point['collected']) { $data[$i]['controlStatus'] = 'control_region_time_interval'; @@ -3102,12 +3141,19 @@ public function calculateControls( $time_start_1 = microtime(true); //set last fake controlRegions for ease of controlRegion search $controlRegions[] = array( - 'control_region_starts' => date_format(date_add(date_create("now"), - date_interval_create_from_date_string('1 year')), "Y-m-d H:i:s") + 'control_region_starts' => date_format( + date_add( + date_create("now"), + date_interval_create_from_date_string('1 year') + ), + "Y-m-d H:i:s" + ) ); //Set $controlApplicationRegions for ($idControlRegion = 0; $idControlRegion < count($controlRegions); $idControlRegion++) { - $controlRegions[$idControlRegion]['control_region_starts_timestamp'] = date_timestamp_get(date_create($controlRegions[$idControlRegion]['control_region_starts'])); + $controlRegions[$idControlRegion]['control_region_starts_timestamp'] = date_timestamp_get( + date_create($controlRegions[$idControlRegion]['control_region_starts']) + ); } //Loop over data points @@ -3147,186 +3193,191 @@ public function calculateControls( } //calculate if the data point is in control or what - { - if ($i < $runningAverageSize) { - $offset = ($i - $runningAverageSize < 0) ? 0 : ($i - $runningAverageSize); - $l = $i - $offset + 1; - } else { - $offset = $i - $runningAverageSize + 1; - $l = $runningAverageSize; - } + if ($i < $runningAverageSize) { + $offset = ($i - $runningAverageSize < 0) ? 0 : ($i - $runningAverageSize); + $l = $i - $offset + 1; + } else { + $offset = $i - $runningAverageSize + 1; + $l = $runningAverageSize; + } - $ra_values = array(); - for ($j = $offset, $m = $offset + $l; $j < $m; $j++) { - $ra_values[] = floatval($data[$j]['value_string']); - } - $ra_count = count($ra_values); - if ($ra_count < $runningAverageSize) ///try to find the previous points and continue the running average - { - $dataQuery2 = $this->db->prepare( - "SELECT md.collected, md.value_string, aki.env_version - FROM `metric_data` md, - `ak_instance` aki - WHERE md.resource_id = :resource_id - and md.ak_id = :ak_id - and md.metric_id = :metric_id - and md.control is not NULL - and md.value_string is not NULL - and aki.ak_id = md.ak_id - and aki.collected = md.collected - and aki.resource_id = md.resource_id - ORDER BY collected DESC - LIMIT :running_average_size"); - $dataQuery2->bindValue(":resource_id", $dataset_params[":resource_id"]); - $dataQuery2->bindValue(":ak_id", $dataset_params[":ak_id"]); - $dataQuery2->bindValue(":metric_id", $dataset_params[":metric_id"]); - $dataQuery2->bindValue(":running_average_size", $runningAverageSize, PDO::PARAM_INT); - - $dataQuery2->execute(); - $data2 = $dataQuery2->fetchAll(); - $data2Count = count($data2); - for ($j = 0; $j < $data2Count && $j < $runningAverageSize - $ra_count; $j++) { - $ra_values[] = $data2[$j]['value_string']; - } + $ra_values = array(); + for ($j = $offset, $m = $offset + $l; $j < $m; $j++) { + $ra_values[] = floatval($data[$j]['value_string']); + } + $ra_count = count($ra_values); + if ($ra_count < $runningAverageSize) ///try to find the previous points and continue the running average + { + $dataQuery2 = $this->db->prepare( + "SELECT md.collected, md.value_string, aki.env_version + FROM `metric_data` md, + `ak_instance` aki + WHERE md.resource_id = :resource_id + and md.ak_id = :ak_id + and md.metric_id = :metric_id + and md.control is not NULL + and md.value_string is not NULL + and aki.ak_id = md.ak_id + and aki.collected = md.collected + and aki.resource_id = md.resource_id + ORDER BY collected DESC + LIMIT :running_average_size" + ); + $dataQuery2->bindValue(":resource_id", $dataset_params[":resource_id"]); + $dataQuery2->bindValue(":ak_id", $dataset_params[":ak_id"]); + $dataQuery2->bindValue(":metric_id", $dataset_params[":metric_id"]); + $dataQuery2->bindValue(":running_average_size", $runningAverageSize, PDO::PARAM_INT); + + $dataQuery2->execute(); + $data2 = $dataQuery2->fetchAll(); + $data2Count = count($data2); + for ($j = 0; $j < $data2Count && $j < $runningAverageSize - $ra_count; $j++) { + $ra_values[] = $data2[$j]['value_string']; } + } - $runningAverage = array_sum($ra_values) / count($ra_values); - $decision_value = floatval($data[$i]['value_string']); + $runningAverage = array_sum($ra_values) / count($ra_values); + $decision_value = floatval($data[$i]['value_string']); - $controlStatus = 'undefined'; - if ($controlStart !== null) { - //method 1: use running average to calcualte control - if ($decision_value < $controlStart) { - $control = ($larger ? -1.0 : 1.0) * abs($controlStart - $decision_value) / $controlDiff; - } elseif ($decision_value > $controlEnd) { - $control = ($larger ? 1.0 : -1.0) * abs($decision_value - $controlEnd) / $controlDiff; - } else { - $control = 0; - } - - //TODO: set $controlPivot globally - $controlPivot = 0.0;//-0.5; - if ($control > 0) { - $controlStatus = 'over_performing'; - } elseif ($control < $controlPivot) { - $controlStatus = 'under_performing'; - } else { - $controlStatus = 'in_contol'; - } + $controlStatus = 'undefined'; + if ($controlStart !== null) { + //method 1: use running average to calcualte control + if ($decision_value < $controlStart) { + $control = ($larger ? -1.0 : 1.0) * abs($controlStart - $decision_value) / $controlDiff; + } elseif ($decision_value > $controlEnd) { + $control = ($larger ? 1.0 : -1.0) * abs($decision_value - $controlEnd) / $controlDiff; } else { $control = 0; } - if ($data[$i]['controlStatus'] === 'control_region_time_interval') { - $controlStatus = 'control_region_time_interval'; + //TODO: set $controlPivot globally + $controlPivot = 0.0;//-0.5; + if ($control > 0) { + $controlStatus = 'over_performing'; + } elseif ($control < $controlPivot) { + $controlStatus = 'under_performing'; + } else { + $controlStatus = 'in_contol'; } + } else { + $control = 0; + } - $update_param[":collected" . $i] = $data[$i]['collected']; - $update_param[":runningAverage" . $i] = $runningAverage; - $update_param[":control" . $i] = $control; - $update_param[":controlStart" . $i] = $controlStart; - $update_param[":controlEnd" . $i] = $controlEnd; - $update_param[":controlMin" . $i] = $controlMin; - $update_param[":controlMax" . $i] = $controlMax; - $update_param[":controlStatus" . $i] = $controlStatus; - $controlStatusParam[":controlStatus" . $i] = $controlStatus; - - $update_running_average .= " WHEN :collected$i THEN :runningAverage$i \n"; - $update_control .= " WHEN :collected$i THEN :control$i \n"; - $update_controlStart .= " WHEN :collected$i THEN :controlStart$i \n"; - $update_controlEnd .= " WHEN :collected$i THEN :controlEnd$i \n"; - $update_controlMin .= " WHEN :collected$i THEN :controlMin$i \n"; - $update_controlMax .= " WHEN :collected$i THEN :controlMax$i \n"; - $update_controlStatus .= " WHEN :collected$i THEN :controlStatus$i \n"; - - $collected_array[":collected" . $i] = $data[$i]['collected']; - - $Nallupdate_metric_data += 1; - if ($Nallupdate_metric_data >= 500 || $i >= $length - 1) { - $time_start_sqlupdate = microtime(true); - - $allupdate_metric_data = "UPDATE metric_data SET - running_average = CASE collected {$update_running_average} ELSE running_average END, - control = CASE collected {$update_control} ELSE control END, - controlStart = CASE collected {$update_controlStart} ELSE controlStart END, - controlEnd = CASE collected {$update_controlEnd} ELSE controlEnd END, - controlMin = CASE collected {$update_controlMin} ELSE controlMin END, - controlMax = CASE collected {$update_controlMax} ELSE controlMax END, - controlStatus = CASE collected {$update_controlStatus} ELSE controlStatus END - WHERE resource_id = :resource_id AND ak_id = :ak_id AND metric_id = :metric_id - AND collected IN (" . implode(',', array_keys($collected_array)) . ")"; - - $allupdate_metric_data_params = array_merge( + if ($data[$i]['controlStatus'] === 'control_region_time_interval') { + $controlStatus = 'control_region_time_interval'; + } + + $update_param[":collected" . $i] = $data[$i]['collected']; + $update_param[":runningAverage" . $i] = $runningAverage; + $update_param[":control" . $i] = $control; + $update_param[":controlStart" . $i] = $controlStart; + $update_param[":controlEnd" . $i] = $controlEnd; + $update_param[":controlMin" . $i] = $controlMin; + $update_param[":controlMax" . $i] = $controlMax; + $update_param[":controlStatus" . $i] = $controlStatus; + $controlStatusParam[":controlStatus" . $i] = $controlStatus; + + $update_running_average .= " WHEN :collected$i THEN :runningAverage$i \n"; + $update_control .= " WHEN :collected$i THEN :control$i \n"; + $update_controlStart .= " WHEN :collected$i THEN :controlStart$i \n"; + $update_controlEnd .= " WHEN :collected$i THEN :controlEnd$i \n"; + $update_controlMin .= " WHEN :collected$i THEN :controlMin$i \n"; + $update_controlMax .= " WHEN :collected$i THEN :controlMax$i \n"; + $update_controlStatus .= " WHEN :collected$i THEN :controlStatus$i \n"; + + $collected_array[":collected" . $i] = $data[$i]['collected']; + + $Nallupdate_metric_data += 1; + if ($Nallupdate_metric_data >= 500 || $i >= $length - 1) { + $time_start_sqlupdate = microtime(true); + + $allupdate_metric_data = "UPDATE metric_data SET + running_average = CASE collected {$update_running_average} ELSE running_average END, + control = CASE collected {$update_control} ELSE control END, + controlStart = CASE collected {$update_controlStart} ELSE controlStart END, + controlEnd = CASE collected {$update_controlEnd} ELSE controlEnd END, + controlMin = CASE collected {$update_controlMin} ELSE controlMin END, + controlMax = CASE collected {$update_controlMax} ELSE controlMax END, + controlStatus = CASE collected {$update_controlStatus} ELSE controlStatus END + WHERE resource_id = :resource_id AND ak_id = :ak_id AND metric_id = :metric_id + AND collected IN (" . implode(',', array_keys($collected_array)) . ")"; + + $allupdate_metric_data_params = array_merge( + [ + ":resource_id" => $dataset_params[":resource_id"], + ":ak_id" => $dataset_params[":ak_id"], + ":metric_id" => $dataset_params[":metric_id"] + ], + $update_param, + $collected_array + ); + + $this->db->execute($allupdate_metric_data, $allupdate_metric_data_params); + $time_end_sqlupdate1 = microtime(true); + $timing['sqlupdate1'] += $time_end_sqlupdate1 - $time_start_sqlupdate; + + $allupdate_a_data2 = "UPDATE a_data2 SET + running_average = CASE FROM_UNIXTIME(collected) {$update_running_average} ELSE running_average END, + control = CASE FROM_UNIXTIME(collected) {$update_control} ELSE control END, + controlStart = CASE FROM_UNIXTIME(collected) {$update_controlStart} ELSE controlStart END, + controlEnd = CASE FROM_UNIXTIME(collected) {$update_controlEnd} ELSE controlEnd END, + controlMin = CASE FROM_UNIXTIME(collected) {$update_controlMin} ELSE controlMin END, + controlMax = CASE FROM_UNIXTIME(collected) {$update_controlMax} ELSE controlMax END, + controlStatus = CASE FROM_UNIXTIME(collected) {$update_controlStatus} ELSE controlStatus END + WHERE resource_id = :resource_id AND ak_def_id = :ak_def_id AND num_units = :num_units + AND metric_id = :metric_id + AND FROM_UNIXTIME(collected) IN (" . implode(', ', array_keys($collected_array)) . ")"; + + $allupdate_a_data2_params = array_merge( + [ + ":resource_id" => $dataset_params[":resource_id"], + ":ak_def_id" => $akId2akDefIdMap[$dataset['ak_id']]['ak_def_id'], + ":num_units" => $akId2akDefIdMap[$dataset['ak_id']]['num_units'], + ":metric_id" => $dataset_params[":metric_id"] + ], + $update_param, + $collected_array + ); + + $this->db->execute($allupdate_a_data2, $allupdate_a_data2_params); + $time_end_sqlupdate2 = microtime(true); + + // ak_instance + if ($metrics_walltime_id !== null && $dataset['metric_id'] === $metrics_walltime_id) { + $allupdate_ak_instance = + "UPDATE ak_instance SET + controlStatus = CASE collected {$update_controlStatus} ELSE controlStatus END + WHERE resource_id = :resource_id AND ak_id = :ak_id + and collected IN (" . implode(', ', array_keys($collected_array)) . ")"; + $allupdate_ak_instance_params = array_merge( [ ":resource_id" => $dataset_params[":resource_id"], ":ak_id" => $dataset_params[":ak_id"], - ":metric_id" => $dataset_params[":metric_id"] - ], - $update_param, $collected_array); - - $this->db->execute($allupdate_metric_data, $allupdate_metric_data_params); - $time_end_sqlupdate1 = microtime(true); - $timing['sqlupdate1'] += $time_end_sqlupdate1 - $time_start_sqlupdate; - - $allupdate_a_data2 = "UPDATE a_data2 SET - running_average = CASE FROM_UNIXTIME(collected) {$update_running_average} ELSE running_average END, - control = CASE FROM_UNIXTIME(collected) {$update_control} ELSE control END, - controlStart = CASE FROM_UNIXTIME(collected) {$update_controlStart} ELSE controlStart END, - controlEnd = CASE FROM_UNIXTIME(collected) {$update_controlEnd} ELSE controlEnd END, - controlMin = CASE FROM_UNIXTIME(collected) {$update_controlMin} ELSE controlMin END, - controlMax = CASE FROM_UNIXTIME(collected) {$update_controlMax} ELSE controlMax END, - controlStatus = CASE FROM_UNIXTIME(collected) {$update_controlStatus} ELSE controlStatus END - WHERE resource_id = :resource_id AND ak_def_id = :ak_def_id AND num_units = :num_units - AND metric_id = :metric_id - AND FROM_UNIXTIME(collected) IN (" . implode(', ', array_keys($collected_array)) . ")"; - - $allupdate_a_data2_params = array_merge( - [ - ":resource_id" => $dataset_params[":resource_id"], - ":ak_def_id" => $akId2akDefIdMap[$dataset['ak_id']]['ak_def_id'], - ":num_units" => $akId2akDefIdMap[$dataset['ak_id']]['num_units'], - ":metric_id" => $dataset_params[":metric_id"] ], - $update_param, $collected_array); - - $this->db->execute($allupdate_a_data2, $allupdate_a_data2_params); - $time_end_sqlupdate2 = microtime(true); - - // ak_instance - if ($metrics_walltime_id !== null && $dataset['metric_id'] === $metrics_walltime_id) { - $allupdate_ak_instance = - "UPDATE ak_instance SET - controlStatus = CASE collected {$update_controlStatus} ELSE controlStatus END - WHERE resource_id = :resource_id AND ak_id = :ak_id - and collected IN (" . implode(', ', array_keys($collected_array)) . ")"; - $allupdate_ak_instance_params = array_merge( - [ - ":resource_id" => $dataset_params[":resource_id"], - ":ak_id" => $dataset_params[":ak_id"], - ], - $controlStatusParam, $collected_array); - $this->db->execute($allupdate_ak_instance, $allupdate_ak_instance_params); - } + $controlStatusParam, + $collected_array + ); + $this->db->execute($allupdate_ak_instance, $allupdate_ak_instance_params); + } - $timing['sqlupdate1'] += $time_end_sqlupdate1 - $time_start_sqlupdate; - $timing['sqlupdate2'] += $time_end_sqlupdate2 - $time_end_sqlupdate1; + $timing['sqlupdate1'] += $time_end_sqlupdate1 - $time_start_sqlupdate; + $timing['sqlupdate2'] += $time_end_sqlupdate2 - $time_end_sqlupdate1; - $timing['N_sqlupdate1'] += $Nallupdate_metric_data; - $timing['N_sqlupdate2'] += $Nallupdate_metric_data; + $timing['N_sqlupdate1'] += $Nallupdate_metric_data; + $timing['N_sqlupdate2'] += $Nallupdate_metric_data; - $Nallupdate_metric_data = 0; + $Nallupdate_metric_data = 0; - $update_running_average = ""; - $update_control = ""; - $update_controlStart = ""; - $update_controlEnd = ""; - $update_controlMin = ""; - $update_controlMax = ""; - $update_controlStatus = ""; - $update_param = []; - $controlStatusParam = []; - $collected_array = []; - } + $update_running_average = ""; + $update_control = ""; + $update_controlStart = ""; + $update_controlEnd = ""; + $update_controlMin = ""; + $update_controlMax = ""; + $update_controlStatus = ""; + $update_param = []; + $controlStatusParam = []; + $collected_array = []; } } @@ -3340,17 +3391,41 @@ public function calculateControls( $t_bigcycle = $time_end_bigcycle - $time_start_bigcycle; $this->log("Timing(Cycle for calculating running average and control values)=" . ($t_bigcycle), PEAR_LOG_DEBUG); - $this->log(" Timing(data for control calc)=" . sprintf("%.4f", $timing['dataQuery']) . " (" . sprintf("%.2f", - 100.0 * $timing['dataQuery'] / $t_bigcycle) . "%)", PEAR_LOG_DEBUG); - $this->log(" Timing(Control region calculation)=" . sprintf("%.4f", - $timing['contRegCalc']) . " (" . sprintf("%.2f", 100.0 * $timing['contRegCalc'] / $t_bigcycle) . "%)", - PEAR_LOG_DEBUG); - $this->log(" Timing(data for control calc)=" . sprintf("%.4f", $timing['contCalc']) . " (" . sprintf("%.2f", - 100.0 * $timing['contCalc'] / $t_bigcycle) . "%)", PEAR_LOG_DEBUG); - $this->log(" Timing(sql update)=" . sprintf("%.4f", $timing['sqlupdate1']) . " (" . sprintf("%.2f", - 100.0 * $timing['sqlupdate1'] / $t_bigcycle) . "%)", PEAR_LOG_DEBUG); - $this->log(" Timing(sql update)=" . sprintf("%.4f", $timing['sqlupdate2']) . " (" . sprintf("%.2f", - 100.0 * $timing['sqlupdate2'] / $t_bigcycle) . "%)", PEAR_LOG_DEBUG); + $this->log( + " Timing(data for control calc)=" . sprintf("%.4f", $timing['dataQuery']) . " (" . sprintf( + "%.2f", + 100.0 * $timing['dataQuery'] / $t_bigcycle + ) . "%)", + PEAR_LOG_DEBUG + ); + $this->log( + " Timing(Control region calculation)=" . sprintf( + "%.4f", + $timing['contRegCalc'] + ) . " (" . sprintf("%.2f", 100.0 * $timing['contRegCalc'] / $t_bigcycle) . "%)", + PEAR_LOG_DEBUG + ); + $this->log( + " Timing(data for control calc)=" . sprintf("%.4f", $timing['contCalc']) . " (" . sprintf( + "%.2f", + 100.0 * $timing['contCalc'] / $t_bigcycle + ) . "%)", + PEAR_LOG_DEBUG + ); + $this->log( + " Timing(sql update)=" . sprintf("%.4f", $timing['sqlupdate1']) . " (" . sprintf( + "%.2f", + 100.0 * $timing['sqlupdate1'] / $t_bigcycle + ) . "%)", + PEAR_LOG_DEBUG + ); + $this->log( + " Timing(sql update)=" . sprintf("%.4f", $timing['sqlupdate2']) . " (" . sprintf( + "%.2f", + 100.0 * $timing['sqlupdate2'] / $t_bigcycle + ) . "%)", + PEAR_LOG_DEBUG + ); } // -------------------------------------------------------------------------------- diff --git a/classes/AppKernel/AppKernelIngestor.php b/classes/AppKernel/AppKernelIngestor.php index a086e91..4db45d8 100644 --- a/classes/AppKernel/AppKernelIngestor.php +++ b/classes/AppKernel/AppKernelIngestor.php @@ -501,7 +501,7 @@ public function ingestAppKernelInstances($resourceNickname) $ak_def_visible = $this->dbAKList[$ak_basename]->visible; foreach ($instanceListGroupedByNumUnits as $num_units => $instanceList) { - if (!isset($dbAKIdMap[$ak_basename])) { + if (!isset($this->dbAKIdMap[$ak_basename])) { $this->logger->warning("$ak_basename not in AK id map"); #continue; } diff --git a/tests/README.md b/tests/README.md index b908aaf..2571c86 100644 --- a/tests/README.md +++ b/tests/README.md @@ -36,6 +36,7 @@ docker run -it --rm \ -p 20080:8080 -p 23306:3306 -p 20022:22 \ -e XDMOD_BRANCH=xdmod9.0 \ -v `pwd`/../xdmod:/root/src/ubccr/xdmod \ + -v `pwd`/../xdmod-qa:/root/src/ubccr/xdmod-qa \ -v `pwd`:/root/src/ubccr/xdmod-appkernels \ pseudo_repo/xdmod-appkernels-tests:latest ``` From b1e02bdc3b5f2f62cbb2f11174202e81441a7047 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 30 Jun 2020 13:31:47 -0400 Subject: [PATCH 46/63] styling fixes --- classes/AppKernel/InstanceData.php | 52 +++++++++++++++++++----------- 1 file changed, 33 insertions(+), 19 deletions(-) diff --git a/classes/AppKernel/InstanceData.php b/classes/AppKernel/InstanceData.php index 7ed4783..94ea51c 100644 --- a/classes/AppKernel/InstanceData.php +++ b/classes/AppKernel/InstanceData.php @@ -235,8 +235,9 @@ public function toHtml() public function environmentVersion() { - - if (0 == count($this->ak_parameters)) return null; + if (0 == count($this->ak_parameters)) { + return null; + } $versionStr = ""; // For the time being only use App:ExeBinSignature to calculate the @@ -245,7 +246,9 @@ public function environmentVersion() foreach ($this->ak_parameters as $parameter) { if (!(0 === strpos($parameter->tag, "App") && - 0 === strpos($parameter->name, "ExeBinSignature"))) continue; + 0 === strpos($parameter->name, "ExeBinSignature"))) { + continue; + } // Sort the value of the parameter in case the order of the data returned // changes over time. @@ -334,13 +337,17 @@ public static function decode(&$str) // made up of characters from the base64 alphabet will return true but // maynot acutally encoded. - if (false === ($decodedStr = base64_decode($str, true))) return false; + if (false === ($decodedStr = base64_decode($str, true))) { + return false; + } // Test to see if the string has a mime type of "application/x-gzip" $f = finfo_open(FILEINFO_MIME_TYPE); $mt = finfo_buffer($f, $decodedStr); - if ($mt != "application/x-gzip") return false; + if ($mt != "application/x-gzip") { + return false; + } // I had problems unzipping the decoded string directly but writing it to a // temporary file seems to work. -smg 20110608 @@ -348,8 +355,9 @@ public static function decode(&$str) $tmpFile = tempnam(sys_get_temp_dir(), "akexplorer_"); @file_put_contents($tmpFile, $decodedStr); $fp = gzopen($tmpFile, "r"); - while (!gzeof($fp)) + while (!gzeof($fp)) { $unzippedStr .= gzread($fp, 1024); + } gzclose($fp); unlink($tmpFile); @@ -387,14 +395,14 @@ class InstanceMetric // -------------------------------------------------------------------------------- - static function sort_cmp(InstanceMetric $a, InstanceMetric $b) + static public function sort_cmp(InstanceMetric $a, InstanceMetric $b) { return strcmp($a->name, $b->name); } // -------------------------------------------------------------------------------- - public function __construct($name, $value, $unit = null, $id=null) + public function __construct($name, $value, $unit = null, $id = null) { if($id!==null) { $this->id = intval($id); @@ -402,7 +410,7 @@ public function __construct($name, $value, $unit = null, $id=null) $this->name = $name; $this->value = $value; $this->unit = $unit; - } // __construct() + } // -------------------------------------------------------------------------------- @@ -443,7 +451,7 @@ public function __construct($name, $value, $unit = null, $tag = null) if (null !== $tag) { $this->name = $name; $this->tag = $tag; - } else if (false !== strpos($name, ":")) { + } elseif (false !== strpos($name, ":")) { $parts = explode(":", $name); $this->tag = array_shift($parts); $this->name = implode(":", $parts); @@ -454,7 +462,7 @@ public function __construct($name, $value, $unit = null, $tag = null) InstanceData::decode($value); $this->value = $value; $this->unit = $unit; - } // __construct() + } // -------------------------------------------------------------------------------- // Generate the metric guid to uniquely identify this metric. @@ -466,8 +474,7 @@ public function guid() { return md5((null === $this->tag ? "" : $this->tag) . $this->name . $this->unit); } - -} // class InstanceParameter +} /** @@ -521,17 +528,24 @@ class AppKernelDefinition */ public $end_ts = null; - public function __construct($id = null, $name = null, $basename = null, $description = null, - $processor_unit = null, $enabled = false, $visible = false, - $start_ts = null, $end_ts = null) - { + public function __construct( + $id = null, + $name = null, + $basename = null, + $description = null, + $processor_unit = null, + $enabled = false, + $visible = false, + $start_ts = null, + $end_ts = null + ) { $this->id = intval($id); $this->name = $name; $this->basename = $basename; $this->description = $description; $this->processor_unit = $processor_unit; - $this->enabled = ( 1 == $enabled ? true : false ); - $this->visible = ( 1 == $visible ? true : false ); + $this->enabled = (1 == $enabled ? true : false); + $this->visible = (1 == $visible ? true : false); $this->start_ts = intval($start_ts); $this->end_ts = intval($end_ts); } From 3e9e19c3ca3b448ce8cc0bb33296f223ac32f5d2 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 30 Jun 2020 13:35:55 -0400 Subject: [PATCH 47/63] styling fixes --- classes/AppKernel/InstanceData.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/AppKernel/InstanceData.php b/classes/AppKernel/InstanceData.php index 94ea51c..a38b104 100644 --- a/classes/AppKernel/InstanceData.php +++ b/classes/AppKernel/InstanceData.php @@ -395,7 +395,7 @@ class InstanceMetric // -------------------------------------------------------------------------------- - static public function sort_cmp(InstanceMetric $a, InstanceMetric $b) + public static function sort_cmp(InstanceMetric $a, InstanceMetric $b) { return strcmp($a->name, $b->name); } From 8ce7be6dd02377cb00088377be05b80dda7a8f04 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 30 Jun 2020 14:04:02 -0400 Subject: [PATCH 48/63] styling fixes --- tests/unit/AppKernelDbTest.php | 309 ++++++++++++++++++++++----------- 1 file changed, 209 insertions(+), 100 deletions(-) diff --git a/tests/unit/AppKernelDbTest.php b/tests/unit/AppKernelDbTest.php index 73cdd19..8775ab9 100644 --- a/tests/unit/AppKernelDbTest.php +++ b/tests/unit/AppKernelDbTest.php @@ -1,5 +1,6 @@ getDB(); - $db_ak_id = $db->query("SELECT ak_id FROM mod_appkernel.app_kernel WHERE name=\"$ak_name\" AND num_units=$deployment_num_proc_units;")[0]['ak_id']; + $db_ak_id = $db->query( + "SELECT ak_id FROM mod_appkernel.app_kernel WHERE name=\"$ak_name\" AND num_units=$deployment_num_proc_units;" + )[0]['ak_id']; $ak = new InstanceData; $ak->db_ak_id = intval($db_ak_id); $ak->deployment_num_proc_units = intval($deployment_num_proc_units); @@ -39,13 +42,13 @@ public function processingUnitProvider() $proc_unit_node_1to8 = array_slice($proc_unit_node_1to32, 0, 4); $proc_unit_node_1to4 = array_slice($proc_unit_node_1to32, 0, 3); $proc_unit_node_2to8 = array_slice($proc_unit_node_1to32, 1, 3); - $proc_unit_node_2to4 = array_slice($proc_unit_node_1to32, 1, 2); - $proc_unit_node_1to16 = array_slice($proc_unit_node_1to32, 0, 5); - $proc_unit_node_2to16 = array_slice($proc_unit_node_1to32, 1, 4); $ak_db = new \AppKernel\AppKernelDb(); - $metrics_id = intval($ak_db->getDB()->query( - 'SELECT metric_id FROM mod_appkernel.metric WHERE name="Wall Clock Time"')[0]['metric_id']); + $metrics_id = intval( + $ak_db->getDB()->query( + 'SELECT metric_id FROM mod_appkernel.metric WHERE name="Wall Clock Time"' + )[0]['metric_id'] + ); return [ [null, null, [], [], $proc_unit_node_1to8], @@ -56,7 +59,13 @@ public function processingUnitProvider() ["2020-04-01", "2020-05-01", [28], ["ak_23_metric_$metrics_id"], $proc_unit_node_1to4], ["2020-04-01", "2020-05-01", [28], ["ak_7_metric_$metrics_id"], $proc_unit_node_2to8], ["2020-04-01", "2020-05-01", [28, 0], ["ak_23_metric_$metrics_id"], $proc_unit_node_1to4], - ["2020-04-01", "2020-05-01", [28], ["ak_7_metric_$metrics_id", "ak_7_metric_$metrics_id"], $proc_unit_node_2to8], + [ + "2020-04-01", + "2020-05-01", + [28], + ["ak_7_metric_$metrics_id", "ak_7_metric_$metrics_id"], + $proc_unit_node_2to8 + ], ]; } @@ -85,45 +94,144 @@ public function testProcessingUnit($start_date, $end_date, array $resource_ids, public function getUniqueAppKernelsProvider() { - $akd_list = [ - 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1585713559, 1588331144), - 22 => new AppKernelDefinition(22, "GAMESS", "gamess", null, "node", true, true, 1585704478, 1588329295), - 28 => new AppKernelDefinition(28, "Graph500", "graph500", null, "node", true, true, 1585707582, 1588331351), - 25 => new AppKernelDefinition(25, "HPCC", "hpcc", null, "node", true, true, 1585701706, 1588351754), - 7 => new AppKernelDefinition(7, "IMB", "imb", null, "node", true, true, 1585706634, 1588351238), - 23 => new AppKernelDefinition(23, "NAMD", "namd", null, "node", true, true, 1585868136, 1588334231), - 24 => new AppKernelDefinition(24, "NWChem", "nwchem", null, "node", true, true, 1585704196, 1588329513), - ]; return [ [[], [], [], 7, null], [[28, 1], [], [], 7, null], - [[28], [], [], null, [ - 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1585713559, 1588331144), - 22 => new AppKernelDefinition(22, "GAMESS", "gamess", null, "node", true, true, 1585704478, 1588329295), - 28 => new AppKernelDefinition(28, "Graph500", "graph500", null, "node", true, true, 1585707582, 1588331351), - 25 => new AppKernelDefinition(25, "HPCC", "hpcc", null, "node", true, true, 1585701706, 1588351754), - 7 => new AppKernelDefinition(7, "IMB", "imb", null, "node", true, true, 1585706634, 1588351238), - 23 => new AppKernelDefinition(23, "NAMD", "namd", null, "node", true, true, 1585868136, 1588334231), - 24 => new AppKernelDefinition(24, "NWChem", "nwchem", null, "node", true, true, 1585704196, 1588329513), - - ]], - [[28], [1], [], null, [ - 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1585714858, 1588330625), - 22 => new AppKernelDefinition(22, "GAMESS", "gamess", null, "node", true, true, 1585704478, 1588329295), - 28 => new AppKernelDefinition(28, "Graph500", "graph500", null, "node", true, true, 1585711421, 1588329038), - 25 => new AppKernelDefinition(25, "HPCC", "hpcc", null, "node", true, true, 1585703946, 1588328720), - 23 => new AppKernelDefinition(23, "NAMD", "namd", null, "node", true, true, 1585868136, 1588334231), - 24 => new AppKernelDefinition(24, "NWChem", "nwchem", null, "node", true, true, 1585711919, 1588329513), - ]], - [[28], [1, 2], [], null, [ - 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1585713559, 1588330625), - 22 => new AppKernelDefinition(22, "GAMESS", "gamess", null, "node", true, true, 1585704478, 1588329295), - 28 => new AppKernelDefinition(28, "Graph500", "graph500", null, "node", true, true, 1585707582, 1588329038), - 25 => new AppKernelDefinition(25, "HPCC", "hpcc", null, "node", true, true, 1585703391, 1588328720), - 7 => new AppKernelDefinition(7, "IMB", "imb", null, "node", true, true, 1585711665, 1588329286), - 23 => new AppKernelDefinition(23, "NAMD", "namd", null, "node", true, true, 1585868136, 1588334231), - 24 => new AppKernelDefinition(24, "NWChem", "nwchem", null, "node", true, true, 1585704196, 1588329513), - ]] + [ + [28], + [], + [], + null, + [ + 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1585713559, 1588331144), + 22 => new AppKernelDefinition( + 22, + "GAMESS", + "gamess", + null, + "node", + true, + true, + 1585704478, + 1588329295 + ), + 28 => new AppKernelDefinition( + 28, + "Graph500", + "graph500", + null, + "node", + true, + true, + 1585707582, + 1588331351 + ), + 25 => new AppKernelDefinition(25, "HPCC", "hpcc", null, "node", true, true, 1585701706, 1588351754), + 7 => new AppKernelDefinition(7, "IMB", "imb", null, "node", true, true, 1585706634, 1588351238), + 23 => new AppKernelDefinition(23, "NAMD", "namd", null, "node", true, true, 1585868136, 1588334231), + 24 => new AppKernelDefinition( + 24, + "NWChem", + "nwchem", + null, + "node", + true, + true, + 1585704196, + 1588329513 + ), + + ] + ], + [ + [28], + [1], + [], + null, + [ + 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1585714858, 1588330625), + 22 => new AppKernelDefinition( + 22, + "GAMESS", + "gamess", + null, + "node", + true, + true, + 1585704478, + 1588329295 + ), + 28 => new AppKernelDefinition( + 28, + "Graph500", + "graph500", + null, + "node", + true, + true, + 1585711421, + 1588329038 + ), + 25 => new AppKernelDefinition(25, "HPCC", "hpcc", null, "node", true, true, 1585703946, 1588328720), + 23 => new AppKernelDefinition(23, "NAMD", "namd", null, "node", true, true, 1585868136, 1588334231), + 24 => new AppKernelDefinition( + 24, + "NWChem", + "nwchem", + null, + "node", + true, + true, + 1585711919, + 1588329513 + ), + ] + ], + [ + [28], + [1, 2], + [], + null, + [ + 29 => new AppKernelDefinition(29, "Enzo", "enzo", null, "node", true, true, 1585713559, 1588330625), + 22 => new AppKernelDefinition( + 22, + "GAMESS", + "gamess", + null, + "node", + true, + true, + 1585704478, + 1588329295 + ), + 28 => new AppKernelDefinition( + 28, + "Graph500", + "graph500", + null, + "node", + true, + true, + 1585707582, + 1588329038 + ), + 25 => new AppKernelDefinition(25, "HPCC", "hpcc", null, "node", true, true, 1585703391, 1588328720), + 7 => new AppKernelDefinition(7, "IMB", "imb", null, "node", true, true, 1585711665, 1588329286), + 23 => new AppKernelDefinition(23, "NAMD", "namd", null, "node", true, true, 1585868136, 1588334231), + 24 => new AppKernelDefinition( + 24, + "NWChem", + "nwchem", + null, + "node", + true, + true, + 1585704196, + 1588329513 + ), + ] + ] ]; } @@ -140,8 +248,7 @@ public function testGetUniqueAppKernels( $ak_db = new \AppKernel\AppKernelDb(); $actual = $ak_db->getUniqueAppKernels($resource_ids, $node_counts, $core_counts); - if ($expected === null && $n_expected === null) - { + if ($expected === null && $n_expected === null) { print(count($actual) . ", [\n"); foreach (array_slice($actual, 0, min(10, count($actual))) as $val) { print("$val->id => new AppKernelDefinition($val->id, \"$val->name\", \"$val->basename\"," . @@ -180,21 +287,42 @@ public function getMetricsProvider() $ak_db = new \AppKernel\AppKernelDb(); $db = $ak_db->getDB(); # Get metric id - $ak_exec_exists_id = intval($db->query( - 'SELECT metric_id FROM mod_appkernel.metric WHERE name="App kernel executable exists"')[0]['metric_id']); - $ak_input_exists_id = intval($db->query( - 'SELECT metric_id FROM mod_appkernel.metric WHERE name="App kernel input exists"')[0]['metric_id']); - $ak_dgemm_flops_id = intval($db->query( - 'SELECT metric_id FROM mod_appkernel.metric WHERE name="Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance"')[0]['metric_id']); - $ak_stream_band_id = intval($db->query( - 'SELECT metric_id FROM mod_appkernel.metric WHERE name="Average STREAM \'Add\' Memory Bandwidth"')[0]['metric_id']); + $ak_exec_exists_id = intval( + $db->query( + 'SELECT metric_id FROM mod_appkernel.metric WHERE name="App kernel executable exists"' + )[0]['metric_id'] + ); + $ak_input_exists_id = intval( + $db->query( + 'SELECT metric_id FROM mod_appkernel.metric WHERE name="App kernel input exists"' + )[0]['metric_id'] + ); + $ak_dgemm_flops_id = intval( + $db->query( + 'SELECT metric_id FROM mod_appkernel.metric WHERE name="Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance"' + )[0]['metric_id'] + ); + $ak_stream_band_id = intval( + $db->query( + 'SELECT metric_id FROM mod_appkernel.metric WHERE name="Average STREAM \'Add\' Memory Bandwidth"' + )[0]['metric_id'] + ); $inst1 = [ $ak_exec_exists_id => new InstanceMetric("App kernel executable exists", null, "", $ak_exec_exists_id), $ak_input_exists_id => new InstanceMetric("App kernel input exists", null, "", $ak_input_exists_id), - $ak_dgemm_flops_id => new InstanceMetric("Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance", - null, "MFLOP per Second", $ak_dgemm_flops_id), - $ak_stream_band_id => new InstanceMetric("Average STREAM 'Add' Memory Bandwidth", null, "MByte per Second", $ak_stream_band_id), + $ak_dgemm_flops_id => new InstanceMetric( + "Average Double-Precision General Matrix Multiplication (DGEMM) Floating-Point Performance", + null, + "MFLOP per Second", + $ak_dgemm_flops_id + ), + $ak_stream_band_id => new InstanceMetric( + "Average STREAM 'Add' Memory Bandwidth", + null, + "MByte per Second", + $ak_stream_band_id + ), ]; return [ [25, null, null, [], [], 20, $inst1], @@ -257,10 +385,6 @@ public function testGetMetrics( public function loadAppKernelInstancesProvider() { - $ak_db = new \AppKernel\AppKernelDb(); - $db = $ak_db->getDB(); - $ak_exec_exists_id = intval($db->query( - 'SELECT metric_id FROM mod_appkernel.metric WHERE name="App kernel executable exists"')[0]['metric_id']); return [ [ null, @@ -318,7 +442,8 @@ public function testLoadAppKernelInstances($ak_def_id, $resource_id, $n_expected print(count($actual) . ", [\n"); foreach (array_slice($actual, 0, min(10, count($actual))) as $val) { $ak_name = $db->query( - "SELECT name FROM mod_appkernel.app_kernel WHERE ak_id=$val->db_ak_id;")[0]['name']; + "SELECT name FROM mod_appkernel.app_kernel WHERE ak_id=$val->db_ak_id;" + )[0]['name']; print("create_instance_data(\"$ak_name\", $val->deployment_num_proc_units, \"$val->deployment_time\", \"$val->status\"),\n"); } print("]\n"); @@ -351,49 +476,33 @@ public function testNewControlRegions() // update initial control for 5 points $ak_db->newControlRegions( - $resource_id = 28, - $ak_def_id = 23, - $control_region_type = 'data_points', - $startDateTime = "2020-03-28", - $endDateTime = null, - $n_points = 5, - $comment = "short initial control region", - $update = true, - $control_region_def_id = null + 28, + 23, + 'data_points', + "2020-03-28", + null, + 5, + "short initial control region", + true, + null ); $ak_db->calculateControls(false, 5, 5, "UBHPC_32core", "namd"); - $control_regions = $ak_db->getControlRegions($resource_id = 28, $ak_def_id = 23); + $control_regions = $ak_db->getControlRegions(28, 23); $this->assertSame(1, count($control_regions)); - $this->assertEquals([ - 'control_region_def_id' => $control_regions[0]['control_region_def_id'], - 'resource_id' => "28", - 'ak_def_id' => "23", - 'control_region_type' => "data_points", - 'control_region_starts' => "2020-03-28 00:00:00", - 'control_region_ends' => null, - 'control_region_points' => "5", - 'comment' => "short initial control region" - ], $control_regions[0]); - -// $actual = $ak_db->newControlRegions( -// $resource_id=28, -// $ak_def_id=23, -// $control_region_type='data_points', -// $startDateTime="2020-04-01", -// $endDateTime=null, -// $n_points=5, -// $comment="test", -// $update = true, -// $control_region_def_id = null -// ); -// $ak_db->calculateControls(false, false, 20, 5, "UBHPC_32core", "namd"); -// -// var_dump($control_regions); - - #print_r($actual); + $this->assertEquals( + [ + 'control_region_def_id' => $control_regions[0]['control_region_def_id'], + 'resource_id' => "28", + 'ak_def_id' => "23", + 'control_region_type' => "data_points", + 'control_region_starts' => "2020-03-28 00:00:00", + 'control_region_ends' => null, + 'control_region_points' => "5", + 'comment' => "short initial control region" + ], + $control_regions[0] + ); } - - } From 691d395cdc31d799e0b48d87b9ce6eb09d2a2788 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 30 Jun 2020 14:18:12 -0400 Subject: [PATCH 49/63] styling fixes --- classes/AppKernel/AppKernelIngestor.php | 36 +++++++++++-------------- 1 file changed, 16 insertions(+), 20 deletions(-) diff --git a/classes/AppKernel/AppKernelIngestor.php b/classes/AppKernel/AppKernelIngestor.php index 4db45d8..42913b3 100644 --- a/classes/AppKernel/AppKernelIngestor.php +++ b/classes/AppKernel/AppKernelIngestor.php @@ -5,9 +5,6 @@ use CCR\Log; use AppKernel; -//use AppKernel\AppKernelDb; -//use AppKernel\IngestionLogEntry; -//use AppKernel\InstanceData; use Exception; use PDOException; @@ -265,8 +262,7 @@ public function __construct(\Log $logger = null, $config = []) $sinceLastLoadTime = null; if (array_key_exists('sinceLastLoadTime', $config)) { $sinceLastLoadTime = $config['sinceLastLoadTime']; - if ($sinceLastLoadTime !== null && !array_key_exists($sinceLastLoadTime, - AppKernelIngestor::$validTimeframes)) { + if ($sinceLastLoadTime !== null && !array_key_exists($sinceLastLoadTime, AppKernelIngestor::$validTimeframes)) { throw new Exception("sinceLastLoadTime should be [hour,day,week,month,load]"); } unset($config['sinceLastLoadTime']); @@ -405,8 +401,10 @@ public function removeIngestedData() $sqlAKDefcond .= " AND ak_def_id = :ak_def_id"; $sqlAKDefcondParam[':ak_def_id'] = $this->dbAKList[$this->restrictToAppKernel]->id; - $response = $akdb->query("SELECT ak_id, num_units FROM mod_appkernel.app_kernel WHERE ak_def_id=?", - [$this->dbAKList[$this->restrictToAppKernel]->id]); + $response = $akdb->query( + "SELECT ak_id, num_units FROM mod_appkernel.app_kernel WHERE ak_def_id=?", + [$this->dbAKList[$this->restrictToAppKernel]->id] + ); foreach ($response as $i => $v) { $sqlAKcondParam[':ak_id_' . $i] = $v['ak_id']; @@ -490,9 +488,8 @@ public function ingestAppKernelInstances($resourceNickname) foreach ($instanceListGroupedByAK as $ak_basename => $instanceListGroupedByNumUnits) { $this->logger->debug("Current AK: $ak_basename"); - if (!isset($dbAKList[$ak_basename])) { + if (!isset($this->dbAKList[$ak_basename])) { $this->logger->warning("$ak_basename not in AK list"); - #continue; } $ak_def_id = $this->dbAKList[$ak_basename]->id; @@ -503,7 +500,6 @@ public function ingestAppKernelInstances($resourceNickname) foreach ($instanceListGroupedByNumUnits as $num_units => $instanceList) { if (!isset($this->dbAKIdMap[$ak_basename])) { $this->logger->warning("$ak_basename not in AK id map"); - #continue; } $ak_id = $this->dbAKIdMap[$ak_basename][$num_units]; @@ -532,7 +528,7 @@ public function ingestAppKernelInstances($resourceNickname) try { try { // The parser should throw 4 types of exception: general, inca error, queued job, invalid xml - $success = $this->parser->parse($akInstance, $parsedInstanceData); + $this->parser->parse($akInstance, $parsedInstanceData); // Set some data that will be needed for adding metrics and parameters // TODO These should be preset during InstanceData &$ak query @@ -648,8 +644,6 @@ public function ingestAppKernelInstances($resourceNickname) } } - $appKernelReport[$resourceNickname] = $resourceReport; - $this->logger->info("End resource: $resourceNickname"); unset($parsedInstanceData); @@ -663,7 +657,7 @@ public function ingestAppKernelInstances($resourceNickname) * * @return string */ - public function format_summary_report(array $reportData) + public function formatSummaryReport(array $reportData) { $reportString = ""; @@ -781,8 +775,13 @@ public function run() if (!$this->dryRunMode) { try { $this->logger->info("Caculate running average and control values"); - $this->db->calculateControls($this->recalculateControls, $this->controlIntervalSize, 5, - $this->restrictToResource, $this->restrictToAppKernel); + $this->db->calculateControls( + $this->recalculateControls, + $this->controlIntervalSize, + 5, + $this->restrictToResource, + $this->restrictToAppKernel + ); } catch (\PDOException $e) { $msg = formatPdoExceptionMessage($e); $this->logger->err(array( @@ -810,7 +809,6 @@ public function run() . "error = {$this->appKernelSummaryReport['error']}, " . "duplicate = {$this->appKernelSummaryReport['duplicate']}, " . "exception = {$this->appKernelSummaryReport['exception']}\n"; - //. $this->format_summary_report($this->appKernelReport); $this->logger->info($summaryReport); @@ -839,8 +837,6 @@ public function run() $this->ingestionLog->setStatus(false, "SQL errors present"); } - //$this->ingestionLog->reportObj = serialize($this->appKernelReport); - // NOTE: "process_end_time" is needed for the log summary. $this->logger->notice(array( 'message' => 'Ingestion End', @@ -868,7 +864,7 @@ function formatPdoExceptionMessage(PDOException $e) if (3 == count($e->errorInfo)) { // MySQL error - list ($sqlstate, $driverCode, $driverMsg) = $e->errorInfo; + list (, $driverCode, $driverMsg) = $e->errorInfo; $msg = "Database Error ($driverCode): '$driverMsg'"; $trace = $e->getTrace(); From 565e2c7f808d13c180aa61c19d4c7df4675cd1fa Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 30 Jun 2020 14:24:37 -0400 Subject: [PATCH 50/63] styling fixes --- tests/utils/README.MD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils/README.MD b/tests/utils/README.MD index defc667..8022afe 100644 --- a/tests/utils/README.MD +++ b/tests/utils/README.MD @@ -1 +1 @@ -Different utilities to reuse among containers. \ No newline at end of file +Different utilities to reuse among containers. From 2218a929b66b9038a686925147ac89baa527fde7 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 30 Jun 2020 14:40:23 -0400 Subject: [PATCH 51/63] styling fixes --- .../artifacts/akrr/etc/resources/UBHPC_32core/enzo.app.conf | 2 -- .../akrr/etc/resources/UBHPC_32core/gamess.app.conf | 3 --- .../akrr/etc/resources/UBHPC_32core/graph500.app.conf | 1 - .../artifacts/akrr/etc/resources/UBHPC_32core/namd.app.conf | 1 - .../artifacts/akrr/etc/resources/UBHPC_32core/resource.conf | 1 - .../artifacts/akrr/etc/resources/UBHPC_8core/namd.app.conf | 1 - .../artifacts/akrr/etc/resources/UBHPC_8core/resource.conf | 6 +----- tests/artifacts/mod_akrr_xdmod_dev_test.sql | 4 ++-- tests/utils/cmd_start | 2 +- tests/utils/cmd_stop | 1 - 10 files changed, 4 insertions(+), 18 deletions(-) diff --git a/tests/artifacts/akrr/etc/resources/UBHPC_32core/enzo.app.conf b/tests/artifacts/akrr/etc/resources/UBHPC_32core/enzo.app.conf index 9d996fe..dfc5578 100644 --- a/tests/artifacts/akrr/etc/resources/UBHPC_32core/enzo.app.conf +++ b/tests/artifacts/akrr/etc/resources/UBHPC_32core/enzo.app.conf @@ -21,5 +21,3 @@ cat performance.out >> $AKRR_APP_STDOUT_FILE 2>&1 {run_script_post_run} """ - - diff --git a/tests/artifacts/akrr/etc/resources/UBHPC_32core/gamess.app.conf b/tests/artifacts/akrr/etc/resources/UBHPC_32core/gamess.app.conf index 9b51ba9..6ff156f 100644 --- a/tests/artifacts/akrr/etc/resources/UBHPC_32core/gamess.app.conf +++ b/tests/artifacts/akrr/etc/resources/UBHPC_32core/gamess.app.conf @@ -34,6 +34,3 @@ done #set how to run app kernel RUN_APPKERNEL="$GAMESS_DIR/rungms $INPUT $VERNO $AKRR_CORES $AKRR_CORES_PER_NODE" """ - - - diff --git a/tests/artifacts/akrr/etc/resources/UBHPC_32core/graph500.app.conf b/tests/artifacts/akrr/etc/resources/UBHPC_32core/graph500.app.conf index 60ed192..965c2ab 100644 --- a/tests/artifacts/akrr/etc/resources/UBHPC_32core/graph500.app.conf +++ b/tests/artifacts/akrr/etc/resources/UBHPC_32core/graph500.app.conf @@ -10,4 +10,3 @@ export I_MPI_PMI_LIBRARY=/usr/lib64/libpmi.so #only run one process per node RUN_APPKERNEL="srun --ntasks-per-node=1 -c $AKRR_CORES_PER_NODE -n $AKRR_NODES -N $AKRR_NODES {appKerDir}/{executable} {appKerDir}/{input_param} $AKRR_CORES_PER_NODE" """ - diff --git a/tests/artifacts/akrr/etc/resources/UBHPC_32core/namd.app.conf b/tests/artifacts/akrr/etc/resources/UBHPC_32core/namd.app.conf index 7b3b30d..78d9a40 100644 --- a/tests/artifacts/akrr/etc/resources/UBHPC_32core/namd.app.conf +++ b/tests/artifacts/akrr/etc/resources/UBHPC_32core/namd.app.conf @@ -13,4 +13,3 @@ charmrun_bin=`which charmrun` #set how to run app kernel RUN_APPKERNEL="mpiexec $EXE ./input.namd" """ - diff --git a/tests/artifacts/akrr/etc/resources/UBHPC_32core/resource.conf b/tests/artifacts/akrr/etc/resources/UBHPC_32core/resource.conf index 2e85ecc..1df7ac1 100644 --- a/tests/artifacts/akrr/etc/resources/UBHPC_32core/resource.conf +++ b/tests/artifacts/akrr/etc/resources/UBHPC_32core/resource.conf @@ -40,4 +40,3 @@ batchJobHeaderTemplate="""#!/bin/bash #SBATCH --constraint=OPA,CPU-Gold-6130 #SBATCH --exclusive """ - diff --git a/tests/artifacts/akrr/etc/resources/UBHPC_8core/namd.app.conf b/tests/artifacts/akrr/etc/resources/UBHPC_8core/namd.app.conf index bb810a6..dd0f866 100644 --- a/tests/artifacts/akrr/etc/resources/UBHPC_8core/namd.app.conf +++ b/tests/artifacts/akrr/etc/resources/UBHPC_8core/namd.app.conf @@ -15,4 +15,3 @@ for n in $AKRR_NODELIST; do echo host $n>>nodelist; done #set how to run app kernel RUN_APPKERNEL="$charmrun_bin +p$AKRR_CORES ++nodelist nodelist $EXE ./input.namd" """ - diff --git a/tests/artifacts/akrr/etc/resources/UBHPC_8core/resource.conf b/tests/artifacts/akrr/etc/resources/UBHPC_8core/resource.conf index 14a5564..3cd2c15 100644 --- a/tests/artifacts/akrr/etc/resources/UBHPC_8core/resource.conf +++ b/tests/artifacts/akrr/etc/resources/UBHPC_8core/resource.conf @@ -20,7 +20,7 @@ batchScheduler = """slurm""" #job script header batchJobHeaderTemplate="""#!/bin/bash -#SBATCH --partition=general-compute +#SBATCH --partition=general-compute #SBATCH --qos=general-compute #SBATCH --nodes={akrr_num_of_nodes} #SBATCH --ntasks-per-node={akrr_ppn} @@ -30,7 +30,3 @@ batchJobHeaderTemplate="""#!/bin/bash #SBATCH --constraint="CPU-L5630,IB" #SBATCH --exclusive """ - -#SBATCH --constraint="CPU-L5520|CPU-L5630,IB" -#NOTES -# rsync -a -e 'ssh -i /home/xdtas/.ssh/id_rsa234' xdtas@k07n14.ccr.buffalo.edu:/home/xdmod/u2/edge_appker/* ./ diff --git a/tests/artifacts/mod_akrr_xdmod_dev_test.sql b/tests/artifacts/mod_akrr_xdmod_dev_test.sql index baf8c98..2fbaf52 100644 --- a/tests/artifacts/mod_akrr_xdmod_dev_test.sql +++ b/tests/artifacts/mod_akrr_xdmod_dev_test.sql @@ -168,7 +168,7 @@ DROP TABLE IF EXISTS `akrr_erran`; /*!50001 DROP VIEW IF EXISTS `akrr_erran`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; -/*!50001 CREATE VIEW `akrr_erran` AS SELECT +/*!50001 CREATE VIEW `akrr_erran` AS SELECT 1 AS `task_id`, 1 AS `time_finished`, 1 AS `resource`, @@ -190,7 +190,7 @@ DROP TABLE IF EXISTS `akrr_erran2`; /*!50001 DROP VIEW IF EXISTS `akrr_erran2`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; -/*!50001 CREATE VIEW `akrr_erran2` AS SELECT +/*!50001 CREATE VIEW `akrr_erran2` AS SELECT 1 AS `task_id`, 1 AS `time_finished`, 1 AS `resource`, diff --git a/tests/utils/cmd_start b/tests/utils/cmd_start index 1115689..c155246 100755 --- a/tests/utils/cmd_start +++ b/tests/utils/cmd_start @@ -70,7 +70,7 @@ start_process_w_confirm(){ cat "${log_file}" >> "${log_file}.old" rm "${log_file}" fi - + if [ "$user" = "x" ]; then echo "Launching ${name}" ${command} diff --git a/tests/utils/cmd_stop b/tests/utils/cmd_stop index 5715c0f..59980d3 100755 --- a/tests/utils/cmd_stop +++ b/tests/utils/cmd_stop @@ -61,4 +61,3 @@ do ;; esac done - From 3b39aecbf13a39a1ee622cf3c0423c7d2c91a701 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 30 Jun 2020 15:00:38 -0400 Subject: [PATCH 52/63] styling fixes --- bin/xdmod-akrr-ingestor | 1 - 1 file changed, 1 deletion(-) diff --git a/bin/xdmod-akrr-ingestor b/bin/xdmod-akrr-ingestor index b348fbb..1c634e3 100755 --- a/bin/xdmod-akrr-ingestor +++ b/bin/xdmod-akrr-ingestor @@ -334,4 +334,3 @@ function cleanup_and_exit($exitCode = 0) exit($exitCode); } - From cb200217d115ba0212e6f5fddfc7b45515e47589 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 30 Jun 2020 15:24:43 -0400 Subject: [PATCH 53/63] trying to update httpd in dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ae35339..10658a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ FROM tas-tools-ext-01.ccr.xdmod.org/centos7_6-open8.5.1:latest -RUN yum -y install --setopt=tsflags=nodocs python3 && \ +RUN yum update && + yum -y install --setopt=tsflags=nodocs httpd httpd-tools && \ yum clean all From 58a9ce1129136ce6fdc0634c2dc12abf4e8f754b Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 30 Jun 2020 15:25:22 -0400 Subject: [PATCH 54/63] trying to update httpd in dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 10658a5..1fe781c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM tas-tools-ext-01.ccr.xdmod.org/centos7_6-open8.5.1:latest -RUN yum update && +RUN yum update && \ yum -y install --setopt=tsflags=nodocs httpd httpd-tools && \ yum clean all From 38f3895116391309cf5a9269a22433469a19e2fd Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 30 Jun 2020 15:27:20 -0400 Subject: [PATCH 55/63] trying to update httpd in dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1fe781c..5ffb652 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM tas-tools-ext-01.ccr.xdmod.org/centos7_6-open8.5.1:latest RUN yum update && \ - yum -y install --setopt=tsflags=nodocs httpd httpd-tools && \ + yum install -y --setopt=tsflags=nodocs httpd httpd-tools && \ yum clean all From d63db52cbf9436900e5f778efa210bfe2691fa50 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 30 Jun 2020 15:28:26 -0400 Subject: [PATCH 56/63] trying to update httpd in dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5ffb652..229f2ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM tas-tools-ext-01.ccr.xdmod.org/centos7_6-open8.5.1:latest RUN yum update && \ - yum install -y --setopt=tsflags=nodocs httpd httpd-tools && \ + yum install -y httpd httpd-tools && \ yum clean all From cceca2d86a18ac35f4654b91fd69cfc11d022317 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Tue, 30 Jun 2020 15:29:38 -0400 Subject: [PATCH 57/63] trying to update httpd in dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 229f2ba..08e14b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM tas-tools-ext-01.ccr.xdmod.org/centos7_6-open8.5.1:latest -RUN yum update && \ - yum install -y httpd httpd-tools && \ +RUN yum -y update && \ + yum -y install httpd httpd-tools && \ yum clean all From 3213588fbeb34b1c50fe65421771b6a663e5dda4 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Fri, 3 Jul 2020 11:03:50 -0400 Subject: [PATCH 58/63] removed httpd from dockerfile --- Dockerfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 08e14b5..d30e144 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1 @@ FROM tas-tools-ext-01.ccr.xdmod.org/centos7_6-open8.5.1:latest - -RUN yum -y update && \ - yum -y install httpd httpd-tools && \ - yum clean all From 370c05a191b342026f4563b593803555851b1368 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Mon, 6 Jul 2020 10:17:09 -0400 Subject: [PATCH 59/63] added python3 dockerfile --- shippable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shippable.yml b/shippable.yml index 24c028e..56f24bd 100644 --- a/shippable.yml +++ b/shippable.yml @@ -2,7 +2,7 @@ language: none env: global: - COMPOSER_ALLOW_SUPERUSER=1 - - XDMOD_REALMS='jobs,storage,cloud,supremm,jobefficiency' + - XDMOD_REALMS='jobs,storage' - XDMOD_TEST_MODE=fresh_install - XDMOD_BRANCH=xdmod9.0 build: @@ -10,9 +10,9 @@ build: cache_dir_list: - /root/.composer pre_ci: - - docker build -t pseudo_repo/xdmod-open-supremm:latest . + - docker build -t pseudo_repo/xdmod-open-appkernels:latest . pre_ci_boot: - image_name: pseudo_repo/xdmod-open-supremm + image_name: pseudo_repo/xdmod-open-appkernels image_tag: latest pull: false options: "--user root -e HOME=/root --shm-size 2g" From ad7c7418a9433c3f5b7898f6149d22a9030dcab7 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Mon, 6 Jul 2020 10:21:03 -0400 Subject: [PATCH 60/63] added python3 dockerfile --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index d30e144..1c76c53 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1 +1,5 @@ FROM tas-tools-ext-01.ccr.xdmod.org/centos7_6-open8.5.1:latest + +RUN yum update && + yum -y install --setopt=tsflags=nodocs python3 && \ + yum clean all From 2f87fa64d7d0d9f91ce6411c03995912a297b380 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Mon, 6 Jul 2020 10:21:51 -0400 Subject: [PATCH 61/63] added python3 dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1c76c53..0c2c7ff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM tas-tools-ext-01.ccr.xdmod.org/centos7_6-open8.5.1:latest -RUN yum update && +RUN yum update && \ yum -y install --setopt=tsflags=nodocs python3 && \ yum clean all From 1765e4e19f835dbc981474f6773c925f0d75f933 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Mon, 6 Jul 2020 10:22:46 -0400 Subject: [PATCH 62/63] added python3 dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0c2c7ff..58f0109 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM tas-tools-ext-01.ccr.xdmod.org/centos7_6-open8.5.1:latest -RUN yum update && \ +RUN yum -y update && \ yum -y install --setopt=tsflags=nodocs python3 && \ - yum clean all + yum -y clean all From d3bb41c118b66ddbe22ad8f111c48e4568a8e5ec Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Mon, 6 Jul 2020 10:50:17 -0400 Subject: [PATCH 63/63] added comment to dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 58f0109..f54ed54 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ FROM tas-tools-ext-01.ccr.xdmod.org/centos7_6-open8.5.1:latest +# install python3 for akrr build RUN yum -y update && \ yum -y install --setopt=tsflags=nodocs python3 && \ yum -y clean all