Merge branch 'wip-MDL-17327-master' of git://github.com/abgreeve/moodle
This commit is contained in:
@@ -3457,3 +3457,147 @@ function data_page_type_list($pagetype, $parentcontext, $currentcontext) {
|
||||
$module_pagetype = array('mod-data-*'=>get_string('page-mod-data-x', 'data'));
|
||||
return $module_pagetype;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get all of the record ids from a database activity.
|
||||
*
|
||||
* @param int $dataid The dataid of the database module.
|
||||
* @return array $idarray An array of record ids
|
||||
*/
|
||||
function data_get_all_recordids($dataid) {
|
||||
global $DB;
|
||||
$initsql = 'SELECT c.recordid
|
||||
FROM {data_fields} f,
|
||||
{data_content} c
|
||||
WHERE f.dataid = :dataid
|
||||
AND f.id = c.fieldid
|
||||
GROUP BY c.recordid';
|
||||
$initrecord = $DB->get_recordset_sql($initsql, array('dataid' => $dataid));
|
||||
$idarray = array();
|
||||
foreach ($initrecord as $data) {
|
||||
$idarray[] = $data->recordid;
|
||||
}
|
||||
// Close the record set and free up resources.
|
||||
$initrecord->close();
|
||||
return $idarray;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the ids of all the records that match that advanced search criteria
|
||||
* This goes and loops through each criterion one at a time until it either
|
||||
* runs out of records or returns a subset of records.
|
||||
*
|
||||
* @param array $recordids An array of record ids.
|
||||
* @param array $searcharray Contains information for the advanced search criteria
|
||||
* @param int $dataid The data id of the database.
|
||||
* @return array $recordids An array of record ids.
|
||||
*/
|
||||
function data_get_advance_search_ids($recordids, $searcharray, $dataid) {
|
||||
$searchcriteria = array_keys($searcharray);
|
||||
// Loop through and reduce the IDs one search criteria at a time.
|
||||
foreach ($searchcriteria as $key) {
|
||||
$recordids = data_get_recordids($key, $searcharray, $dataid, $recordids);
|
||||
// If we don't have anymore IDs then stop.
|
||||
if (!$recordids) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return $recordids;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the record IDs given the search criteria
|
||||
*
|
||||
* @param string $alias record alias.
|
||||
* @param array $searcharray criteria for the search.
|
||||
* @param int $dataid Data ID for the database
|
||||
* @param array $recordids An array of record IDs.
|
||||
* @return array $nestarray An arry of record IDs
|
||||
*/
|
||||
function data_get_recordids($alias, $searcharray, $dataid, $recordids) {
|
||||
global $DB;
|
||||
|
||||
$nestsearch = $searcharray[$alias];
|
||||
// searching for content outside of mdl_data_content
|
||||
if ($alias < 0) {
|
||||
$alias = '';
|
||||
}
|
||||
list($insql, $params) = $DB->get_in_or_equal($recordids, SQL_PARAMS_NAMED);
|
||||
$nestselect = 'SELECT c' . $alias . '.recordid
|
||||
FROM {data_content} c' . $alias . ',
|
||||
{data_fields} f,
|
||||
{data_records} r,
|
||||
{user} u ';
|
||||
$nestwhere = 'WHERE u.id = r.userid
|
||||
AND f.id = c' . $alias . '.fieldid
|
||||
AND r.id = c' . $alias . '.recordid
|
||||
AND r.dataid = :dataid
|
||||
AND c' . $alias .'.recordid ' . $insql . '
|
||||
AND ';
|
||||
|
||||
$params['dataid'] = $dataid;
|
||||
if (count($nestsearch->params) != 0) {
|
||||
$params = array_merge($params, $nestsearch->params);
|
||||
$nestsql = $nestselect . $nestwhere . $nestsearch->sql;
|
||||
} else {
|
||||
$thing = $DB->sql_like($nestsearch->field, ':search1', false);
|
||||
$nestsql = $nestselect . $nestwhere . $thing . ' GROUP BY c' . $alias . '.recordid';
|
||||
$params['search1'] = "%$nestsearch->data%";
|
||||
}
|
||||
$nestrecords = $DB->get_recordset_sql($nestsql, $params);
|
||||
$nestarray = array();
|
||||
foreach ($nestrecords as $data) {
|
||||
$nestarray[] = $data->recordid;
|
||||
}
|
||||
// Close the record set and free up resources.
|
||||
$nestrecords->close();
|
||||
return $nestarray;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an array with an sql string for advanced searches and the parameters that go with them.
|
||||
*
|
||||
* @param int $sort DATA_*
|
||||
* @param stdClass $data data module object
|
||||
* @param array $recordids An array of record IDs.
|
||||
* @param string $selectdata information for the select part of the sql statement.
|
||||
* @param string $sortorder Additional sort parameters
|
||||
* @return array sqlselect sqlselect['sql] has the sql string, sqlselect['params'] contains an array of parameters.
|
||||
*/
|
||||
function data_get_advanced_search_sql($sort, $data, $recordids, $selectdata, $sortorder) {
|
||||
global $DB;
|
||||
if ($sort == 0) {
|
||||
$nestselectsql = 'SELECT r.id, r.approved, r.timecreated, r.timemodified, r.userid, u.firstname, u.lastname
|
||||
FROM {data_content} c,
|
||||
{data_records} r,
|
||||
{user} u ';
|
||||
$groupsql = ' GROUP BY r.id, r.approved, r.timecreated, r.timemodified, r.userid, u.firstname, u.lastname ';
|
||||
} else {
|
||||
$nestselectsql = 'SELECT r.id, r.approved, r.timecreated, r.timemodified, r.userid, u.firstname, u.lastname, c.content
|
||||
AS _order
|
||||
FROM {data_content} c,
|
||||
{data_records} r,
|
||||
{user} u ';
|
||||
$groupsql = ' GROUP BY r.id, r.approved, r.timecreated, r.timemodified, r.userid, u.firstname, u.lastname, c.content ';
|
||||
}
|
||||
$nestfromsql = 'WHERE c.recordid = r.id
|
||||
AND r.dataid = :dataid
|
||||
AND r.userid = u.id';
|
||||
|
||||
// Find the field we are sorting on
|
||||
if ($sort > 0 or data_get_field_from_id($sort, $data)) {
|
||||
$nestfromsql .= ' AND c.fieldid = :sort';
|
||||
}
|
||||
|
||||
// If there are no record IDs then return an sql statment that will return no rows.
|
||||
if (count($recordids) != 0) {
|
||||
list($insql, $inparam) = $DB->get_in_or_equal($recordids, SQL_PARAMS_NAMED);
|
||||
} else {
|
||||
list($insql, $inparam) = $DB->get_in_or_equal(array('-1'), SQL_PARAMS_NAMED);
|
||||
}
|
||||
$nestfromsql .= ' AND c.recordid ' . $insql . $groupsql;
|
||||
$nestfromsql = "$nestfromsql $selectdata";
|
||||
$sqlselect['sql'] = "$nestselectsql $nestfromsql $sortorder";
|
||||
$sqlselect['params'] = $inparam;
|
||||
return $sqlselect;
|
||||
}
|
||||
@@ -0,0 +1,244 @@
|
||||
<?php
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Unit tests for data_get_all_recordsids(), data_get_advance_search_ids(), data_get_record_ids(),
|
||||
* and data_get_advanced_search_sql()
|
||||
*
|
||||
* @package mod_data
|
||||
* @copyright 2012 Adrian Greeve
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
|
||||
require_once($CFG->dirroot . '/mod/data/lib.php');
|
||||
require_once($CFG->dirroot . '/lib/csvlib.class.php');
|
||||
|
||||
/**
|
||||
* Unit tests for {@see data_get_all_recordids()}.
|
||||
* {@see data_get_advanced_search_ids()}
|
||||
* {@see data_get_record_ids()}
|
||||
* {@see data_get_advanced_search_sql()}
|
||||
*
|
||||
* @package mod_data
|
||||
* @copyright 2012 Adrian Greeve
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class data_advanced_search_sql_test extends UnitTestCaseUsingDatabase {
|
||||
/**
|
||||
* @var stdObject $recorddata An object that holds information from the table data.
|
||||
*/
|
||||
public $recorddata = null;
|
||||
/**
|
||||
* @var int $recordcontentid The content ID.
|
||||
*/
|
||||
public $recordcontentid = null;
|
||||
/**
|
||||
* @var int $recordrecordid The record ID.
|
||||
*/
|
||||
public $recordrecordid = null;
|
||||
/**
|
||||
* @var int $recordfieldid The field ID.
|
||||
*/
|
||||
public $recordfieldid = null;
|
||||
/**
|
||||
* @var array $recordsearcharray An array of stdClass which contains search criteria.
|
||||
*/
|
||||
public $recordsearcharray = null;
|
||||
|
||||
// CONSTANTS
|
||||
|
||||
/**
|
||||
* @var int $datarecordcount The number of records in the database.
|
||||
*/
|
||||
public $datarecordcount = 100;
|
||||
|
||||
/**
|
||||
* @var array $datarecordset Expected record IDs.
|
||||
*/
|
||||
public $datarecordset = array('0' => '6');
|
||||
|
||||
/**
|
||||
* @var array $finalrecord Final record for comparison with test four.
|
||||
*/
|
||||
public $finalrecord = array();
|
||||
|
||||
/**
|
||||
* Set up function. In this instance we are setting up database
|
||||
* records to be used in the unit tests.
|
||||
* @todo MDL-32271 use a class for creating safe core moodle tables. This isn't
|
||||
* possible at the moment.
|
||||
*/
|
||||
|
||||
public function setUp() {
|
||||
global $DB, $CFG;
|
||||
|
||||
// Set up test database and appropriate tables.
|
||||
parent::setUp();
|
||||
$this->create_test_tables(array('data', 'data_fields', 'data_records', 'data_content'), 'mod/data');
|
||||
$this->create_test_tables(array('user', 'modules', 'course_modules','context'), 'lib');
|
||||
$this->switch_to_test_db();
|
||||
|
||||
// Set up data for the test database.
|
||||
$tablename = array('0' => 'user',
|
||||
'1' => 'data_fields',
|
||||
'2' => 'data_records',
|
||||
'3' => 'data_content',
|
||||
'4' => 'modules',
|
||||
'5' => 'course_modules',
|
||||
'6' => 'context');
|
||||
|
||||
for ($i = 0; $i < 7; $i++) {
|
||||
$filename = $CFG->dirroot . '/mod/data/simpletest/test_' . $tablename[$i] . '.csv';
|
||||
if (file_exists($filename)) {
|
||||
$file = file_get_contents($filename);
|
||||
}
|
||||
$this->insert_data_from_csv($file, $tablename[$i]);
|
||||
}
|
||||
|
||||
// Set up a data record.
|
||||
$datarecord = new stdClass();
|
||||
$datarecord->course = '99999';
|
||||
$datarecord->name = 'test database';
|
||||
$datarecord->intro = 'Test Database for unit testing';
|
||||
$datarecord->introformat = '1';
|
||||
$DB->insert_record('data', $datarecord, false);
|
||||
$data = $DB->get_record('data', array('id'=> '1'));
|
||||
$this->recorddata = $data;
|
||||
|
||||
// Create the search array which contains our advanced search criteria.
|
||||
|
||||
$fieldinfo = array('0' => new stdClass(),
|
||||
'1' => new stdClass(),
|
||||
'2' => new stdClass(),
|
||||
'3' => new stdClass(),
|
||||
'4' => new stdClass());
|
||||
$fieldinfo['0']->id = 1;
|
||||
$fieldinfo['0']->data = '3.721,46.6126';
|
||||
$fieldinfo['1']->id = 2;
|
||||
$fieldinfo['1']->data = 'Hahn Premium';
|
||||
$fieldinfo['2']->id = 5;
|
||||
$fieldinfo['2']->data = 'Female';
|
||||
$fieldinfo['3']->id = 7;
|
||||
$fieldinfo['3']->data = 'kel';
|
||||
$fieldinfo['4']->id = 9;
|
||||
$fieldinfo['4']->data = 'VIC';
|
||||
|
||||
foreach($fieldinfo as $field) {
|
||||
$searchfield = data_get_field_from_id($field->id, $data);
|
||||
if ($field->id == 2) {
|
||||
$searchfield->field->param1 = 'Hahn Premium';
|
||||
$val = array();
|
||||
$val['selected'] = array('0' => 'Hahn Premium');
|
||||
$val['allrequired'] = 0;
|
||||
} else {
|
||||
$val = $field->data;
|
||||
}
|
||||
list($search_array[$field->id]->sql, $search_array[$field->id]->params) = $searchfield->generate_sql('c' . $field->id, $val);
|
||||
}
|
||||
|
||||
$this->recordsearcharray = $search_array;
|
||||
|
||||
// Setting up the comparison stdClass for the last test.
|
||||
$this->finalrecord[6] = new stdClass();
|
||||
$this->finalrecord[6]->id = 6;
|
||||
$this->finalrecord[6]->approved = 1;
|
||||
$this->finalrecord[6]->timecreated = 1234567891;
|
||||
$this->finalrecord[6]->timemodified = 1234567892;
|
||||
$this->finalrecord[6]->userid = 6;
|
||||
$this->finalrecord[6]->firstname = 'Benedict';
|
||||
$this->finalrecord[6]->lastname = 'Horn';
|
||||
}
|
||||
|
||||
/**
|
||||
* Tear Down function. Here we remove all the database entries that we created
|
||||
* for testing the unit tests.
|
||||
*/
|
||||
public function tearDown() {
|
||||
$this->revert_to_real_db();
|
||||
parent::tearDown();
|
||||
}
|
||||
|
||||
/**
|
||||
* Test 1: The function data_get_all_recordids.
|
||||
*
|
||||
* Test 2: This tests the data_get_advance_search_ids() function. The function takes a set
|
||||
* of all the record IDs in the database and then with the search details ($this->recordsearcharray)
|
||||
* returns a comma seperated string of record IDs that match the search criteria.
|
||||
*
|
||||
* Test 3: This function tests data_get_recordids(). This is the function that is nested in the last
|
||||
* function (@see data_get_advance_search_ids). This function takes a couple of
|
||||
* extra parameters. $alias is the field alias used in the sql query and $commaid
|
||||
* is a comma seperated string of record IDs.
|
||||
*
|
||||
* Test 4: data_get_advanced_search_sql provides an array which contains an sql string to be used for displaying records
|
||||
* to the user when they use the advanced search criteria and the parameters that go with the sql statement. This test
|
||||
* takes that information and does a search on the database, returning a record.
|
||||
*/
|
||||
function test_advanced_search_sql_section() {
|
||||
global $DB;
|
||||
|
||||
// Test 1
|
||||
$recordids = data_get_all_recordids($this->recorddata->id);
|
||||
$this->assertEqual(count($recordids), $this->datarecordcount);
|
||||
|
||||
// Test 2
|
||||
$key = array_keys($this->recordsearcharray);
|
||||
$alias = $key[0];
|
||||
$newrecordids = data_get_recordids($alias, $this->recordsearcharray, $this->recorddata->id, $recordids);
|
||||
$this->assertEqual($this->datarecordset, $newrecordids);
|
||||
|
||||
// Test 3
|
||||
$newrecordids = data_get_advance_search_ids($recordids, $this->recordsearcharray, $this->recorddata->id);
|
||||
$this->assertEqual($this->datarecordset, $newrecordids);
|
||||
|
||||
// Test 4
|
||||
$sortorder = 'ORDER BY r.timecreated ASC , r.id ASC';
|
||||
$html = data_get_advanced_search_sql('0', $this->recorddata, $newrecordids, '', $sortorder);
|
||||
$allparams = array_merge($html['params'], array('dataid' => $this->recorddata->id));
|
||||
$records = $DB->get_records_sql($html['sql'], $allparams);
|
||||
$this->assertEqual($records, $this->finalrecord);
|
||||
}
|
||||
|
||||
/**
|
||||
* Inserts data from a csv file into the data module table specified.
|
||||
*
|
||||
* @param string $file comma seperated value file
|
||||
* @param string $tablename name of the table for the data to be inserted into.
|
||||
*/
|
||||
function insert_data_from_csv($file, $tablename) {
|
||||
global $DB;
|
||||
$iid = csv_import_reader::get_new_iid('moddata');
|
||||
$csvdata = new csv_import_reader($iid, 'moddata');
|
||||
$fielddata = $csvdata->load_csv_content($file, 'utf8', 'comma');
|
||||
$columns = $csvdata->get_columns();
|
||||
$columncount = count($columns);
|
||||
$csvdata->init();
|
||||
$fieldinfo = array();
|
||||
for ($j = 0; $j < $fielddata; $j++) {
|
||||
$thing = $csvdata->next();
|
||||
$fieldinfo[$j] = new stdClass();
|
||||
for ($i = 0; $i < $columncount; $i++) {
|
||||
$fieldinfo[$j]->$columns[$i] = $thing[$i];
|
||||
}
|
||||
$DB->insert_record($tablename, $fieldinfo[$j], false);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,833 @@
|
||||
id,contextlevel,instanceid,path,depth
|
||||
1,10,0,/1,1
|
||||
2,50,1,/1/2,2
|
||||
3,40,1,/1/3,2
|
||||
4,30,1,/1/4,2
|
||||
5,30,2,/1/5,2
|
||||
6,80,1,/1/2/6,3
|
||||
7,80,2,/1/2/7,3
|
||||
8,80,3,/1/2/8,3
|
||||
9,80,4,/1/9,2
|
||||
10,80,5,/1/10,2
|
||||
11,80,6,/1/11,2
|
||||
12,80,7,/1/12,2
|
||||
13,80,8,/1/13,2
|
||||
14,80,9,/1/14,2
|
||||
15,50,2,/1/3/15,3
|
||||
16,70,1,/1/3/15/16,4
|
||||
17,70,2,/1/3/15/17,4
|
||||
18,70,3,/1/3/15/18,4
|
||||
19,70,4,/1/3/15/19,4
|
||||
20,70,5,/1/3/15/20,4
|
||||
21,70,6,/1/3/15/21,4
|
||||
22,70,7,/1/3/15/22,4
|
||||
23,70,8,/1/3/15/23,4
|
||||
24,70,9,/1/3/15/24,4
|
||||
25,70,10,/1/3/15/25,4
|
||||
26,70,11,/1/3/15/26,4
|
||||
27,70,12,/1/3/15/27,4
|
||||
28,70,13,/1/3/15/28,4
|
||||
29,70,14,/1/3/15/29,4
|
||||
30,70,15,/1/3/15/30,4
|
||||
31,30,3,/1/31,2
|
||||
32,30,4,/1/32,2
|
||||
33,30,5,/1/33,2
|
||||
34,30,6,/1/34,2
|
||||
35,30,7,/1/35,2
|
||||
36,30,8,/1/36,2
|
||||
37,30,9,/1/37,2
|
||||
38,30,10,/1/38,2
|
||||
39,30,11,/1/39,2
|
||||
40,30,12,/1/40,2
|
||||
42,50,3,/1/3/42,3
|
||||
43,80,10,/1/3/42/43,4
|
||||
44,80,11,/1/3/42/44,4
|
||||
45,80,12,/1/3/42/45,4
|
||||
46,80,13,/1/3/42/46,4
|
||||
48,70,18,/1/3/42/48,4
|
||||
49,70,19,/1/3/42/49,4
|
||||
50,70,20,/1/3/42/50,4
|
||||
51,70,21,/1/3/42/51,4
|
||||
52,70,22,/1/3/42/52,4
|
||||
53,70,23,/1/3/42/53,4
|
||||
54,70,24,/1/3/42/54,4
|
||||
55,70,25,/1/3/42/55,4
|
||||
57,50,5,/1/853/57,3
|
||||
58,80,14,/1/853/57/58,4
|
||||
59,80,15,/1/853/57/59,4
|
||||
60,80,16,/1/853/57/60,4
|
||||
61,80,17,/1/853/57/61,4
|
||||
63,30,13,/1/63,2
|
||||
64,30,14,/1/64,2
|
||||
65,30,15,/1/65,2
|
||||
66,30,16,/1/66,2
|
||||
67,30,17,/1/67,2
|
||||
68,30,18,/1/68,2
|
||||
69,30,19,/1/69,2
|
||||
70,30,20,/1/70,2
|
||||
71,30,21,/1/71,2
|
||||
72,30,22,/1/72,2
|
||||
73,30,23,/1/73,2
|
||||
74,30,24,/1/74,2
|
||||
75,30,25,/1/75,2
|
||||
76,30,26,/1/76,2
|
||||
77,30,27,/1/77,2
|
||||
78,30,28,/1/78,2
|
||||
79,30,29,/1/79,2
|
||||
80,30,30,/1/80,2
|
||||
81,30,31,/1/81,2
|
||||
82,30,32,/1/82,2
|
||||
83,30,33,/1/83,2
|
||||
84,30,34,/1/84,2
|
||||
85,30,35,/1/85,2
|
||||
86,30,36,/1/86,2
|
||||
87,30,37,/1/87,2
|
||||
88,30,38,/1/88,2
|
||||
89,30,39,/1/89,2
|
||||
90,30,40,/1/90,2
|
||||
91,30,41,/1/91,2
|
||||
92,30,42,/1/92,2
|
||||
93,30,43,/1/93,2
|
||||
94,30,44,/1/94,2
|
||||
95,30,45,/1/95,2
|
||||
96,30,46,/1/96,2
|
||||
103,70,28,/1/853/57/103,4
|
||||
104,80,22,/1/2/104,3
|
||||
105,50,7,/1/853/105,3
|
||||
106,30,47,/1/106,2
|
||||
107,30,48,/1/107,2
|
||||
108,30,49,/1/108,2
|
||||
109,80,23,/1/853/105/109,4
|
||||
110,80,24,/1/853/105/110,4
|
||||
111,80,25,/1/853/105/111,4
|
||||
112,80,26,/1/853/105/112,4
|
||||
113,80,27,/1/853/105/113,4
|
||||
114,80,28,/1/853/105/114,4
|
||||
115,80,29,/1/853/105/115,4
|
||||
116,80,30,/1/853/105/116,4
|
||||
117,80,31,/1/853/105/117,4
|
||||
118,80,32,/1/853/105/118,4
|
||||
119,70,29,/1/853/105/119,4
|
||||
120,80,33,/1/853/105/119/120,5
|
||||
121,70,30,/1/853/105/121,4
|
||||
122,70,31,/1/853/105/122,4
|
||||
123,70,32,/1/853/105/123,4
|
||||
124,70,33,/1/853/105/124,4
|
||||
125,70,34,/1/853/105/125,4
|
||||
126,70,35,/1/853/105/126,4
|
||||
127,70,36,/1/853/105/127,4
|
||||
128,70,37,/1/853/105/128,4
|
||||
129,70,38,/1/853/105/129,4
|
||||
130,70,39,/1/853/105/130,4
|
||||
131,70,40,/1/853/105/131,4
|
||||
132,80,34,/1/853/105/131/132,5
|
||||
133,70,41,/1/853/105/133,4
|
||||
134,70,42,/1/853/105/134,4
|
||||
135,70,43,/1/853/105/135,4
|
||||
136,80,35,/1/853/105/135/136,5
|
||||
137,70,44,/1/853/105/137,4
|
||||
138,70,45,/1/853/105/138,4
|
||||
139,70,46,/1/853/105/139,4
|
||||
140,70,47,/1/853/105/140,4
|
||||
141,70,48,/1/853/105/141,4
|
||||
142,70,49,/1/853/105/142,4
|
||||
143,70,50,/1/853/105/143,4
|
||||
144,70,51,/1/853/105/144,4
|
||||
145,70,52,/1/853/105/145,4
|
||||
146,70,53,/1/853/105/146,4
|
||||
147,70,54,/1/853/105/147,4
|
||||
148,70,55,/1/853/105/148,4
|
||||
149,70,56,/1/853/105/149,4
|
||||
150,70,57,/1/853/105/150,4
|
||||
151,70,58,/1/853/105/151,4
|
||||
152,70,59,/1/853/105/152,4
|
||||
153,70,60,/1/853/105/153,4
|
||||
154,70,61,/1/853/105/154,4
|
||||
155,70,62,/1/3/42/155,4
|
||||
156,70,63,/1/3/42/156,4
|
||||
157,70,64,/1/853/57/157,4
|
||||
158,30,50,/1/158,2
|
||||
159,70,65,/1/3/42/159,4
|
||||
160,70,66,/1/3/42/160,4
|
||||
161,70,67,/1/3/15/161,4
|
||||
164,80,38,/1/2/164,3
|
||||
165,70,68,/1/3/15/165,4
|
||||
180,50,10,/1/852/180,3
|
||||
181,80,47,/1/852/180/181,4
|
||||
182,80,48,/1/852/180/182,4
|
||||
183,80,49,/1/852/180/183,4
|
||||
184,80,50,/1/852/180/184,4
|
||||
185,70,72,/1/852/180/185,4
|
||||
186,70,73,/1/852/180/186,4
|
||||
192,50,12,/1/852/192,3
|
||||
193,80,55,/1/852/192/193,4
|
||||
194,80,56,/1/852/192/194,4
|
||||
195,80,57,/1/852/192/195,4
|
||||
196,80,58,/1/852/192/196,4
|
||||
197,70,74,/1/852/192/197,4
|
||||
198,70,75,/1/852/192/198,4
|
||||
199,50,13,/1/3/199,3
|
||||
200,80,59,/1/3/199/200,4
|
||||
201,80,60,/1/3/199/201,4
|
||||
202,80,61,/1/3/199/202,4
|
||||
203,80,62,/1/3/199/203,4
|
||||
204,80,63,/1/3/199/204,4
|
||||
205,70,76,/1/3/199/205,4
|
||||
206,70,77,/1/3/199/206,4
|
||||
207,70,78,/1/3/199/207,4
|
||||
208,70,79,/1/3/199/208,4
|
||||
215,50,15,/1/853/854/215,4
|
||||
216,80,67,/1/853/854/215/216,5
|
||||
217,80,68,/1/853/854/215/217,5
|
||||
218,80,69,/1/853/854/215/218,5
|
||||
219,80,70,/1/853/854/215/219,5
|
||||
220,70,82,/1/853/854/215/220,5
|
||||
221,70,83,/1/853/854/215/221,5
|
||||
222,70,84,/1/853/854/215/222,5
|
||||
223,50,16,/1/853/854/223,4
|
||||
224,80,71,/1/853/854/223/224,5
|
||||
225,80,72,/1/853/854/223/225,5
|
||||
226,80,73,/1/853/854/223/226,5
|
||||
227,80,74,/1/853/854/223/227,5
|
||||
228,30,51,/1/228,2
|
||||
229,30,52,/1/229,2
|
||||
230,30,53,/1/230,2
|
||||
231,30,54,/1/231,2
|
||||
232,30,55,/1/232,2
|
||||
233,30,56,/1/233,2
|
||||
234,30,57,/1/234,2
|
||||
235,30,58,/1/235,2
|
||||
236,30,59,/1/236,2
|
||||
237,30,60,/1/237,2
|
||||
238,30,61,/1/238,2
|
||||
239,30,62,/1/239,2
|
||||
240,30,63,/1/240,2
|
||||
241,30,64,/1/241,2
|
||||
242,30,65,/1/242,2
|
||||
243,30,66,/1/243,2
|
||||
244,30,67,/1/244,2
|
||||
245,30,68,/1/245,2
|
||||
246,30,69,/1/246,2
|
||||
247,30,70,/1/247,2
|
||||
248,30,71,/1/248,2
|
||||
249,30,72,/1/249,2
|
||||
250,30,73,/1/250,2
|
||||
251,30,74,/1/251,2
|
||||
252,30,75,/1/252,2
|
||||
253,30,76,/1/253,2
|
||||
254,30,77,/1/254,2
|
||||
255,30,78,/1/255,2
|
||||
256,30,79,/1/256,2
|
||||
257,30,80,/1/257,2
|
||||
258,30,81,/1/258,2
|
||||
259,30,82,/1/259,2
|
||||
260,30,83,/1/260,2
|
||||
261,30,84,/1/261,2
|
||||
262,30,85,/1/262,2
|
||||
263,30,86,/1/263,2
|
||||
264,30,87,/1/264,2
|
||||
265,30,88,/1/265,2
|
||||
266,30,89,/1/266,2
|
||||
267,30,90,/1/267,2
|
||||
268,30,91,/1/268,2
|
||||
269,30,92,/1/269,2
|
||||
270,30,93,/1/270,2
|
||||
271,30,94,/1/271,2
|
||||
272,30,95,/1/272,2
|
||||
273,30,96,/1/273,2
|
||||
274,30,97,/1/274,2
|
||||
275,30,98,/1/275,2
|
||||
276,30,99,/1/276,2
|
||||
277,30,100,/1/277,2
|
||||
278,30,101,/1/278,2
|
||||
279,30,102,/1/279,2
|
||||
280,30,103,/1/280,2
|
||||
281,30,104,/1/281,2
|
||||
282,30,105,/1/282,2
|
||||
283,30,106,/1/283,2
|
||||
284,30,107,/1/284,2
|
||||
285,30,108,/1/285,2
|
||||
286,30,109,/1/286,2
|
||||
287,30,110,/1/287,2
|
||||
288,30,111,/1/288,2
|
||||
289,30,112,/1/289,2
|
||||
290,30,113,/1/290,2
|
||||
291,30,114,/1/291,2
|
||||
292,30,115,/1/292,2
|
||||
293,30,116,/1/293,2
|
||||
294,30,117,/1/294,2
|
||||
295,30,118,/1/295,2
|
||||
296,30,119,/1/296,2
|
||||
297,30,120,/1/297,2
|
||||
298,30,121,/1/298,2
|
||||
299,30,122,/1/299,2
|
||||
300,30,123,/1/300,2
|
||||
301,30,124,/1/301,2
|
||||
302,30,125,/1/302,2
|
||||
303,30,126,/1/303,2
|
||||
304,30,127,/1/304,2
|
||||
305,30,128,/1/305,2
|
||||
306,30,129,/1/306,2
|
||||
307,30,130,/1/307,2
|
||||
308,30,131,/1/308,2
|
||||
309,30,132,/1/309,2
|
||||
310,30,133,/1/310,2
|
||||
311,30,134,/1/311,2
|
||||
312,30,135,/1/312,2
|
||||
313,30,136,/1/313,2
|
||||
314,30,137,/1/314,2
|
||||
315,30,138,/1/315,2
|
||||
316,30,139,/1/316,2
|
||||
317,30,140,/1/317,2
|
||||
318,30,141,/1/318,2
|
||||
319,30,142,/1/319,2
|
||||
320,30,143,/1/320,2
|
||||
321,30,144,/1/321,2
|
||||
322,30,145,/1/322,2
|
||||
323,30,146,/1/323,2
|
||||
324,30,147,/1/324,2
|
||||
325,30,148,/1/325,2
|
||||
326,30,149,/1/326,2
|
||||
327,30,150,/1/327,2
|
||||
328,30,151,/1/328,2
|
||||
329,30,152,/1/329,2
|
||||
330,30,153,/1/330,2
|
||||
331,30,154,/1/331,2
|
||||
332,30,155,/1/332,2
|
||||
333,30,156,/1/333,2
|
||||
334,30,157,/1/334,2
|
||||
335,30,158,/1/335,2
|
||||
336,30,159,/1/336,2
|
||||
337,30,160,/1/337,2
|
||||
338,30,161,/1/338,2
|
||||
339,30,162,/1/339,2
|
||||
340,30,163,/1/340,2
|
||||
341,30,164,/1/341,2
|
||||
342,30,165,/1/342,2
|
||||
343,30,166,/1/343,2
|
||||
344,30,167,/1/344,2
|
||||
345,30,168,/1/345,2
|
||||
346,30,169,/1/346,2
|
||||
347,30,170,/1/347,2
|
||||
348,30,171,/1/348,2
|
||||
349,30,172,/1/349,2
|
||||
350,30,173,/1/350,2
|
||||
351,30,174,/1/351,2
|
||||
352,30,175,/1/352,2
|
||||
353,30,176,/1/353,2
|
||||
354,30,177,/1/354,2
|
||||
355,30,178,/1/355,2
|
||||
356,30,179,/1/356,2
|
||||
357,30,180,/1/357,2
|
||||
358,30,181,/1/358,2
|
||||
359,30,182,/1/359,2
|
||||
360,30,183,/1/360,2
|
||||
361,30,184,/1/361,2
|
||||
362,30,185,/1/362,2
|
||||
363,30,186,/1/363,2
|
||||
364,30,187,/1/364,2
|
||||
365,30,188,/1/365,2
|
||||
366,30,189,/1/366,2
|
||||
367,30,190,/1/367,2
|
||||
368,30,191,/1/368,2
|
||||
369,30,192,/1/369,2
|
||||
370,30,193,/1/370,2
|
||||
371,30,194,/1/371,2
|
||||
372,30,195,/1/372,2
|
||||
373,30,196,/1/373,2
|
||||
374,30,197,/1/374,2
|
||||
375,30,198,/1/375,2
|
||||
376,30,199,/1/376,2
|
||||
377,30,200,/1/377,2
|
||||
378,30,201,/1/378,2
|
||||
379,30,202,/1/379,2
|
||||
380,30,203,/1/380,2
|
||||
381,30,204,/1/381,2
|
||||
382,30,205,/1/382,2
|
||||
383,30,206,/1/383,2
|
||||
384,30,207,/1/384,2
|
||||
385,30,208,/1/385,2
|
||||
386,30,209,/1/386,2
|
||||
387,30,210,/1/387,2
|
||||
388,30,211,/1/388,2
|
||||
389,30,212,/1/389,2
|
||||
390,30,213,/1/390,2
|
||||
391,30,214,/1/391,2
|
||||
392,30,215,/1/392,2
|
||||
393,30,216,/1/393,2
|
||||
394,30,217,/1/394,2
|
||||
395,30,218,/1/395,2
|
||||
396,30,219,/1/396,2
|
||||
397,30,220,/1/397,2
|
||||
398,30,221,/1/398,2
|
||||
399,30,222,/1/399,2
|
||||
400,30,223,/1/400,2
|
||||
401,30,224,/1/401,2
|
||||
402,30,225,/1/402,2
|
||||
403,30,226,/1/403,2
|
||||
404,30,227,/1/404,2
|
||||
405,30,228,/1/405,2
|
||||
406,30,229,/1/406,2
|
||||
407,30,230,/1/407,2
|
||||
408,30,231,/1/408,2
|
||||
409,30,232,/1/409,2
|
||||
410,30,233,/1/410,2
|
||||
411,30,234,/1/411,2
|
||||
412,30,235,/1/412,2
|
||||
413,30,236,/1/413,2
|
||||
414,30,237,/1/414,2
|
||||
415,30,238,/1/415,2
|
||||
416,30,239,/1/416,2
|
||||
417,30,240,/1/417,2
|
||||
418,30,241,/1/418,2
|
||||
419,30,242,/1/419,2
|
||||
420,30,243,/1/420,2
|
||||
421,30,244,/1/421,2
|
||||
422,30,245,/1/422,2
|
||||
423,30,246,/1/423,2
|
||||
424,30,247,/1/424,2
|
||||
425,30,248,/1/425,2
|
||||
426,30,249,/1/426,2
|
||||
427,30,250,/1/427,2
|
||||
428,30,251,/1/428,2
|
||||
429,30,252,/1/429,2
|
||||
430,30,253,/1/430,2
|
||||
431,30,254,/1/431,2
|
||||
432,30,255,/1/432,2
|
||||
433,30,256,/1/433,2
|
||||
434,30,257,/1/434,2
|
||||
435,30,258,/1/435,2
|
||||
436,30,259,/1/436,2
|
||||
437,30,260,/1/437,2
|
||||
438,30,261,/1/438,2
|
||||
439,30,262,/1/439,2
|
||||
440,30,263,/1/440,2
|
||||
441,30,264,/1/441,2
|
||||
442,30,265,/1/442,2
|
||||
443,30,266,/1/443,2
|
||||
444,30,267,/1/444,2
|
||||
445,30,268,/1/445,2
|
||||
446,30,269,/1/446,2
|
||||
447,30,270,/1/447,2
|
||||
448,30,271,/1/448,2
|
||||
449,30,272,/1/449,2
|
||||
450,30,273,/1/450,2
|
||||
451,30,274,/1/451,2
|
||||
452,30,275,/1/452,2
|
||||
453,30,276,/1/453,2
|
||||
454,30,277,/1/454,2
|
||||
455,30,278,/1/455,2
|
||||
456,30,279,/1/456,2
|
||||
457,30,280,/1/457,2
|
||||
458,30,281,/1/458,2
|
||||
459,30,282,/1/459,2
|
||||
460,30,283,/1/460,2
|
||||
461,30,284,/1/461,2
|
||||
462,30,285,/1/462,2
|
||||
463,30,286,/1/463,2
|
||||
464,30,287,/1/464,2
|
||||
465,30,288,/1/465,2
|
||||
466,30,289,/1/466,2
|
||||
467,30,290,/1/467,2
|
||||
468,30,291,/1/468,2
|
||||
469,30,292,/1/469,2
|
||||
470,30,293,/1/470,2
|
||||
471,30,294,/1/471,2
|
||||
472,30,295,/1/472,2
|
||||
473,30,296,/1/473,2
|
||||
474,30,297,/1/474,2
|
||||
475,30,298,/1/475,2
|
||||
476,30,299,/1/476,2
|
||||
477,30,300,/1/477,2
|
||||
478,30,301,/1/478,2
|
||||
479,30,302,/1/479,2
|
||||
480,30,303,/1/480,2
|
||||
481,30,304,/1/481,2
|
||||
482,30,305,/1/482,2
|
||||
483,30,306,/1/483,2
|
||||
484,30,307,/1/484,2
|
||||
485,30,308,/1/485,2
|
||||
486,30,309,/1/486,2
|
||||
487,30,310,/1/487,2
|
||||
488,30,311,/1/488,2
|
||||
489,30,312,/1/489,2
|
||||
490,30,313,/1/490,2
|
||||
491,30,314,/1/491,2
|
||||
492,30,315,/1/492,2
|
||||
493,30,316,/1/493,2
|
||||
494,30,317,/1/494,2
|
||||
495,30,318,/1/495,2
|
||||
496,30,319,/1/496,2
|
||||
497,30,320,/1/497,2
|
||||
498,30,321,/1/498,2
|
||||
499,30,322,/1/499,2
|
||||
500,30,323,/1/500,2
|
||||
501,30,324,/1/501,2
|
||||
502,30,325,/1/502,2
|
||||
503,30,326,/1/503,2
|
||||
504,30,327,/1/504,2
|
||||
505,30,328,/1/505,2
|
||||
506,30,329,/1/506,2
|
||||
507,30,330,/1/507,2
|
||||
508,30,331,/1/508,2
|
||||
509,30,332,/1/509,2
|
||||
510,30,333,/1/510,2
|
||||
511,30,334,/1/511,2
|
||||
512,30,335,/1/512,2
|
||||
513,30,336,/1/513,2
|
||||
514,30,337,/1/514,2
|
||||
515,30,338,/1/515,2
|
||||
516,30,339,/1/516,2
|
||||
517,30,340,/1/517,2
|
||||
518,30,341,/1/518,2
|
||||
519,30,342,/1/519,2
|
||||
520,30,343,/1/520,2
|
||||
521,30,344,/1/521,2
|
||||
522,30,345,/1/522,2
|
||||
523,30,346,/1/523,2
|
||||
524,30,347,/1/524,2
|
||||
525,30,348,/1/525,2
|
||||
526,30,349,/1/526,2
|
||||
527,30,350,/1/527,2
|
||||
528,30,351,/1/528,2
|
||||
529,30,352,/1/529,2
|
||||
530,30,353,/1/530,2
|
||||
531,30,354,/1/531,2
|
||||
532,30,355,/1/532,2
|
||||
533,30,356,/1/533,2
|
||||
534,30,357,/1/534,2
|
||||
535,30,358,/1/535,2
|
||||
536,30,359,/1/536,2
|
||||
537,30,360,/1/537,2
|
||||
538,30,361,/1/538,2
|
||||
539,30,362,/1/539,2
|
||||
540,30,363,/1/540,2
|
||||
541,30,364,/1/541,2
|
||||
542,30,365,/1/542,2
|
||||
543,30,366,/1/543,2
|
||||
544,30,367,/1/544,2
|
||||
545,30,368,/1/545,2
|
||||
546,30,369,/1/546,2
|
||||
547,30,370,/1/547,2
|
||||
548,30,371,/1/548,2
|
||||
549,30,372,/1/549,2
|
||||
550,30,373,/1/550,2
|
||||
551,30,374,/1/551,2
|
||||
552,30,375,/1/552,2
|
||||
553,30,376,/1/553,2
|
||||
554,30,377,/1/554,2
|
||||
555,30,378,/1/555,2
|
||||
556,30,379,/1/556,2
|
||||
557,30,380,/1/557,2
|
||||
558,30,381,/1/558,2
|
||||
559,30,382,/1/559,2
|
||||
560,30,383,/1/560,2
|
||||
561,30,384,/1/561,2
|
||||
562,30,385,/1/562,2
|
||||
563,30,386,/1/563,2
|
||||
564,30,387,/1/564,2
|
||||
565,30,388,/1/565,2
|
||||
566,30,389,/1/566,2
|
||||
567,30,390,/1/567,2
|
||||
568,30,391,/1/568,2
|
||||
569,30,392,/1/569,2
|
||||
570,30,393,/1/570,2
|
||||
571,30,394,/1/571,2
|
||||
572,30,395,/1/572,2
|
||||
573,30,396,/1/573,2
|
||||
574,30,397,/1/574,2
|
||||
575,30,398,/1/575,2
|
||||
576,30,399,/1/576,2
|
||||
577,30,400,/1/577,2
|
||||
578,30,401,/1/578,2
|
||||
579,30,402,/1/579,2
|
||||
580,30,403,/1/580,2
|
||||
581,30,404,/1/581,2
|
||||
582,30,405,/1/582,2
|
||||
583,30,406,/1/583,2
|
||||
584,30,407,/1/584,2
|
||||
585,30,408,/1/585,2
|
||||
586,30,409,/1/586,2
|
||||
587,30,410,/1/587,2
|
||||
588,30,411,/1/588,2
|
||||
589,30,412,/1/589,2
|
||||
590,30,413,/1/590,2
|
||||
591,30,414,/1/591,2
|
||||
592,30,415,/1/592,2
|
||||
593,30,416,/1/593,2
|
||||
594,30,417,/1/594,2
|
||||
595,30,418,/1/595,2
|
||||
596,30,419,/1/596,2
|
||||
597,30,420,/1/597,2
|
||||
598,30,421,/1/598,2
|
||||
599,30,422,/1/599,2
|
||||
600,30,423,/1/600,2
|
||||
601,30,424,/1/601,2
|
||||
602,30,425,/1/602,2
|
||||
603,30,426,/1/603,2
|
||||
604,30,427,/1/604,2
|
||||
605,30,428,/1/605,2
|
||||
606,30,429,/1/606,2
|
||||
607,30,430,/1/607,2
|
||||
608,30,431,/1/608,2
|
||||
609,30,432,/1/609,2
|
||||
610,30,433,/1/610,2
|
||||
611,30,434,/1/611,2
|
||||
612,30,435,/1/612,2
|
||||
613,30,436,/1/613,2
|
||||
614,30,437,/1/614,2
|
||||
615,30,438,/1/615,2
|
||||
616,30,439,/1/616,2
|
||||
617,30,440,/1/617,2
|
||||
618,30,441,/1/618,2
|
||||
619,30,442,/1/619,2
|
||||
620,30,443,/1/620,2
|
||||
621,30,444,/1/621,2
|
||||
622,30,445,/1/622,2
|
||||
623,30,446,/1/623,2
|
||||
624,30,447,/1/624,2
|
||||
625,30,448,/1/625,2
|
||||
626,30,449,/1/626,2
|
||||
627,30,450,/1/627,2
|
||||
628,30,451,/1/628,2
|
||||
629,30,452,/1/629,2
|
||||
630,30,453,/1/630,2
|
||||
631,30,454,/1/631,2
|
||||
632,30,455,/1/632,2
|
||||
633,30,456,/1/633,2
|
||||
634,30,457,/1/634,2
|
||||
635,30,458,/1/635,2
|
||||
636,30,459,/1/636,2
|
||||
637,30,460,/1/637,2
|
||||
638,30,461,/1/638,2
|
||||
639,30,462,/1/639,2
|
||||
640,30,463,/1/640,2
|
||||
641,30,464,/1/641,2
|
||||
642,30,465,/1/642,2
|
||||
643,30,466,/1/643,2
|
||||
644,30,467,/1/644,2
|
||||
645,30,468,/1/645,2
|
||||
646,30,469,/1/646,2
|
||||
647,30,470,/1/647,2
|
||||
648,30,471,/1/648,2
|
||||
649,30,472,/1/649,2
|
||||
650,30,473,/1/650,2
|
||||
651,30,474,/1/651,2
|
||||
652,30,475,/1/652,2
|
||||
653,30,476,/1/653,2
|
||||
654,30,477,/1/654,2
|
||||
655,30,478,/1/655,2
|
||||
656,30,479,/1/656,2
|
||||
657,30,480,/1/657,2
|
||||
658,30,481,/1/658,2
|
||||
659,30,482,/1/659,2
|
||||
660,30,483,/1/660,2
|
||||
661,30,484,/1/661,2
|
||||
662,30,485,/1/662,2
|
||||
663,30,486,/1/663,2
|
||||
664,30,487,/1/664,2
|
||||
665,30,488,/1/665,2
|
||||
666,30,489,/1/666,2
|
||||
667,30,490,/1/667,2
|
||||
668,30,491,/1/668,2
|
||||
669,30,492,/1/669,2
|
||||
670,30,493,/1/670,2
|
||||
671,30,494,/1/671,2
|
||||
672,30,495,/1/672,2
|
||||
673,30,496,/1/673,2
|
||||
674,30,497,/1/674,2
|
||||
675,30,498,/1/675,2
|
||||
676,30,499,/1/676,2
|
||||
677,30,500,/1/677,2
|
||||
678,30,501,/1/678,2
|
||||
679,30,502,/1/679,2
|
||||
680,30,503,/1/680,2
|
||||
681,30,504,/1/681,2
|
||||
682,30,505,/1/682,2
|
||||
683,30,506,/1/683,2
|
||||
684,30,507,/1/684,2
|
||||
685,30,508,/1/685,2
|
||||
686,30,509,/1/686,2
|
||||
687,30,510,/1/687,2
|
||||
688,30,511,/1/688,2
|
||||
689,30,512,/1/689,2
|
||||
690,30,513,/1/690,2
|
||||
691,30,514,/1/691,2
|
||||
692,30,515,/1/692,2
|
||||
693,30,516,/1/693,2
|
||||
694,30,517,/1/694,2
|
||||
695,30,518,/1/695,2
|
||||
696,30,519,/1/696,2
|
||||
697,30,520,/1/697,2
|
||||
698,30,521,/1/698,2
|
||||
699,30,522,/1/699,2
|
||||
700,30,523,/1/700,2
|
||||
701,30,524,/1/701,2
|
||||
702,30,525,/1/702,2
|
||||
703,30,526,/1/703,2
|
||||
704,30,527,/1/704,2
|
||||
705,30,528,/1/705,2
|
||||
706,30,529,/1/706,2
|
||||
707,30,530,/1/707,2
|
||||
708,30,531,/1/708,2
|
||||
709,30,532,/1/709,2
|
||||
710,30,533,/1/710,2
|
||||
711,30,534,/1/711,2
|
||||
712,30,535,/1/712,2
|
||||
713,30,536,/1/713,2
|
||||
714,30,537,/1/714,2
|
||||
715,30,538,/1/715,2
|
||||
716,30,539,/1/716,2
|
||||
717,30,540,/1/717,2
|
||||
718,30,541,/1/718,2
|
||||
719,30,542,/1/719,2
|
||||
720,30,543,/1/720,2
|
||||
721,30,544,/1/721,2
|
||||
722,30,545,/1/722,2
|
||||
723,30,546,/1/723,2
|
||||
724,30,547,/1/724,2
|
||||
725,30,548,/1/725,2
|
||||
726,30,549,/1/726,2
|
||||
727,30,550,/1/727,2
|
||||
728,30,551,/1/728,2
|
||||
729,30,552,/1/729,2
|
||||
730,30,553,/1/730,2
|
||||
731,30,554,/1/731,2
|
||||
732,30,555,/1/732,2
|
||||
733,30,556,/1/733,2
|
||||
734,30,557,/1/734,2
|
||||
735,30,558,/1/735,2
|
||||
736,30,559,/1/736,2
|
||||
737,30,560,/1/737,2
|
||||
738,30,561,/1/738,2
|
||||
739,30,562,/1/739,2
|
||||
740,30,563,/1/740,2
|
||||
741,30,564,/1/741,2
|
||||
742,30,565,/1/742,2
|
||||
743,30,566,/1/743,2
|
||||
744,30,567,/1/744,2
|
||||
745,30,568,/1/745,2
|
||||
746,30,569,/1/746,2
|
||||
747,30,570,/1/747,2
|
||||
748,30,571,/1/748,2
|
||||
749,30,572,/1/749,2
|
||||
750,30,573,/1/750,2
|
||||
751,30,574,/1/751,2
|
||||
752,30,575,/1/752,2
|
||||
753,30,576,/1/753,2
|
||||
754,30,577,/1/754,2
|
||||
755,30,578,/1/755,2
|
||||
756,30,579,/1/756,2
|
||||
757,30,580,/1/757,2
|
||||
758,30,581,/1/758,2
|
||||
759,30,582,/1/759,2
|
||||
760,30,583,/1/760,2
|
||||
761,30,584,/1/761,2
|
||||
762,30,585,/1/762,2
|
||||
763,30,586,/1/763,2
|
||||
764,30,587,/1/764,2
|
||||
765,30,588,/1/765,2
|
||||
766,30,589,/1/766,2
|
||||
767,30,590,/1/767,2
|
||||
768,30,591,/1/768,2
|
||||
769,30,592,/1/769,2
|
||||
770,30,593,/1/770,2
|
||||
771,30,594,/1/771,2
|
||||
772,30,595,/1/772,2
|
||||
773,30,596,/1/773,2
|
||||
774,30,597,/1/774,2
|
||||
775,30,598,/1/775,2
|
||||
776,30,599,/1/776,2
|
||||
777,30,600,/1/777,2
|
||||
778,30,601,/1/778,2
|
||||
779,30,602,/1/779,2
|
||||
780,30,603,/1/780,2
|
||||
781,30,604,/1/781,2
|
||||
782,30,605,/1/782,2
|
||||
783,30,606,/1/783,2
|
||||
784,30,607,/1/784,2
|
||||
785,30,608,/1/785,2
|
||||
786,30,609,/1/786,2
|
||||
787,30,610,/1/787,2
|
||||
788,30,611,/1/788,2
|
||||
789,30,612,/1/789,2
|
||||
790,30,613,/1/790,2
|
||||
791,30,614,/1/791,2
|
||||
792,30,615,/1/792,2
|
||||
793,30,616,/1/793,2
|
||||
794,30,617,/1/794,2
|
||||
795,30,618,/1/795,2
|
||||
796,30,619,/1/796,2
|
||||
797,30,620,/1/797,2
|
||||
798,30,621,/1/798,2
|
||||
799,30,622,/1/799,2
|
||||
800,30,623,/1/800,2
|
||||
801,30,624,/1/801,2
|
||||
802,30,625,/1/802,2
|
||||
803,30,626,/1/803,2
|
||||
804,30,627,/1/804,2
|
||||
805,30,628,/1/805,2
|
||||
806,30,629,/1/806,2
|
||||
807,30,630,/1/807,2
|
||||
808,30,631,/1/808,2
|
||||
809,30,632,/1/809,2
|
||||
810,30,633,/1/810,2
|
||||
811,30,634,/1/811,2
|
||||
812,30,635,/1/812,2
|
||||
813,30,636,/1/813,2
|
||||
814,30,637,/1/814,2
|
||||
815,30,638,/1/815,2
|
||||
816,30,639,/1/816,2
|
||||
817,30,640,/1/817,2
|
||||
818,30,641,/1/818,2
|
||||
819,30,642,/1/819,2
|
||||
820,30,643,/1/820,2
|
||||
821,30,644,/1/821,2
|
||||
822,30,645,/1/822,2
|
||||
823,30,646,/1/823,2
|
||||
824,30,647,/1/824,2
|
||||
825,30,648,/1/825,2
|
||||
826,30,649,/1/826,2
|
||||
827,30,650,/1/827,2
|
||||
828,70,85,/1/853/854/223/828,5
|
||||
829,70,86,/1/853/854/223/829,5
|
||||
831,50,17,/1/852/831,3
|
||||
835,80,78,/1/852/831/835,4
|
||||
836,70,88,/1/3/15/836,4
|
||||
837,70,89,/1/852/831/837,4
|
||||
838,70,90,/1/3/199/838,4
|
||||
840,70,92,/1/3/199/840,4
|
||||
848,80,83,/1/2/848,3
|
||||
849,70,95,/1/3/42/849,4
|
||||
850,70,96,/1/852/180/850,4
|
||||
851,70,97,/1/3/199/851,4
|
||||
852,40,2,/1/852,2
|
||||
853,40,3,/1/853,2
|
||||
854,40,4,/1/853/854,3
|
||||
855,70,98,/1/853/854/223/855,5
|
||||
856,70,99,/1/852/831/856,4
|
||||
857,70,100,/1/3/42/857,4
|
||||
858,70,101,/1/852/831/858,4
|
||||
859,80,84,/1/36/859,3
|
||||
860,80,85,/1/36/860,3
|
||||
861,80,86,/1/36/861,3
|
||||
862,80,87,/1/36/862,3
|
||||
863,80,88,/1/36/863,3
|
||||
864,80,89,/1/5/864,3
|
||||
865,80,90,/1/5/865,3
|
||||
866,80,91,/1/5/866,3
|
||||
867,80,92,/1/5/867,3
|
||||
871,80,96,/1/36/871,3
|
||||
872,80,97,/1/35/872,3
|
||||
873,80,98,/1/35/873,3
|
||||
874,80,99,/1/35/874,3
|
||||
875,80,100,/1/35/875,3
|
||||
876,80,101,/1/35/876,3
|
||||
877,80,102,/1/35/877,3
|
||||
878,70,102,/1/3/42/878,4
|
||||
881,70,105,/1/3/42/881,4
|
||||
882,70,106,/1/3/42/882,4
|
||||
883,80,103,/1/3/42/883,4
|
||||
884,70,107,/1/852/831/884,4
|
||||
885,80,104,/1/852/831/885,4
|
||||
886,70,108,/1/852/831/886,4
|
||||
|
@@ -0,0 +1,2 @@
|
||||
id,course,module,instance,section,idnumber,added,score,indent,visible,visibleold,groupmode,groupingid,groupmembersonly,completion,completiongradeitemnumber,completionview,completionexpected,availablefrom,availableuntil,showavailability,showdescription
|
||||
7,2,4,1,3,,1321846940,0,0,1,1,0,0,0,0,,0,0,0,0,0,0
|
||||
|
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,21 @@
|
||||
id,dataid,type,name,description,param1,param2,param3,param4,param5
|
||||
1,1,latlong,location,Your current location,,-1,,NULL,NULL
|
||||
2,1,multimenu,beer,Which beer is good?,,,,NULL,NULL
|
||||
3,1,checkbox,month,One month or Two,,,,NULL,NULL
|
||||
4,1,number,tfn,Tax file number,,,,NULL,NULL
|
||||
5,1,radiobutton,gender,Male or Female,,,,NULL,NULL
|
||||
6,1,url,webpage,Your webpage,,,,NULL,NULL
|
||||
7,1,text,firstname,Your first name,,,,NULL,NULL
|
||||
8,1,textarea,about,About you,,60,35,1,NULL
|
||||
9,1,menu,state,State,,,,NULL,NULL
|
||||
10,1,text,address,address of the participant,,,,NULL,NULL
|
||||
11,1,menu,Sport,Favourite sport,,,,NULL,NULL
|
||||
12,1,text,suburb,suburb,,,,NULL,NULL
|
||||
13,1,text,mobile,mobile number,,,,NULL,NULL
|
||||
14,1,text,phone,phone number,,,,NULL,NULL
|
||||
15,1,text,email,email address,,,,NULL,NULL
|
||||
16,1,text,license,Driver's license,,,,NULL,NULL
|
||||
17,1,text,passport,Passport number,,,,NULL,NULL
|
||||
18,1,menu,browser,prefered browser,,,,NULL,NULL
|
||||
19,1,menu,OS,Operating System,,,,NULL,NULL
|
||||
20,1,text,nickname,Nick name,,,,NULL,NULL
|
||||
|
@@ -0,0 +1,101 @@
|
||||
id,userid,groupid,dataid,timecreated,timemodified,approved
|
||||
1,1,0,1,1234567891,1234567892,1
|
||||
2,2,0,1,1234567891,1234567892,1
|
||||
3,3,0,1,1234567891,1234567892,1
|
||||
4,4,0,1,1234567891,1234567892,1
|
||||
5,5,0,1,1234567891,1234567892,1
|
||||
6,6,0,1,1234567891,1234567892,1
|
||||
7,7,0,1,1234567891,1234567892,1
|
||||
8,8,0,1,1234567891,1234567892,1
|
||||
9,9,0,1,1234567891,1234567892,1
|
||||
10,10,0,1,1234567891,1234567892,1
|
||||
11,11,0,1,1234567891,1234567892,1
|
||||
12,12,0,1,1234567891,1234567892,1
|
||||
13,13,0,1,1234567891,1234567892,1
|
||||
14,14,0,1,1234567891,1234567892,1
|
||||
15,15,0,1,1234567891,1234567892,1
|
||||
16,16,0,1,1234567891,1234567892,1
|
||||
17,17,0,1,1234567891,1234567892,1
|
||||
18,18,0,1,1234567891,1234567892,1
|
||||
19,19,0,1,1234567891,1234567892,1
|
||||
20,20,0,1,1234567891,1234567892,1
|
||||
21,21,0,1,1234567891,1234567892,1
|
||||
22,22,0,1,1234567891,1234567892,1
|
||||
23,23,0,1,1234567891,1234567892,1
|
||||
24,24,0,1,1234567891,1234567892,1
|
||||
25,25,0,1,1234567891,1234567892,1
|
||||
26,26,0,1,1234567891,1234567892,1
|
||||
27,27,0,1,1234567891,1234567892,1
|
||||
28,28,0,1,1234567891,1234567892,1
|
||||
29,29,0,1,1234567891,1234567892,1
|
||||
30,30,0,1,1234567891,1234567892,1
|
||||
31,31,0,1,1234567891,1234567892,1
|
||||
32,32,0,1,1234567891,1234567892,1
|
||||
33,33,0,1,1234567891,1234567892,1
|
||||
34,34,0,1,1234567891,1234567892,1
|
||||
35,35,0,1,1234567891,1234567892,1
|
||||
36,36,0,1,1234567891,1234567892,1
|
||||
37,37,0,1,1234567891,1234567892,1
|
||||
38,38,0,1,1234567891,1234567892,1
|
||||
39,39,0,1,1234567891,1234567892,1
|
||||
40,40,0,1,1234567891,1234567892,1
|
||||
41,41,0,1,1234567891,1234567892,1
|
||||
42,42,0,1,1234567891,1234567892,1
|
||||
43,43,0,1,1234567891,1234567892,1
|
||||
44,44,0,1,1234567891,1234567892,1
|
||||
45,45,0,1,1234567891,1234567892,1
|
||||
46,46,0,1,1234567891,1234567892,1
|
||||
47,47,0,1,1234567891,1234567892,1
|
||||
48,48,0,1,1234567891,1234567892,1
|
||||
49,49,0,1,1234567891,1234567892,1
|
||||
50,50,0,1,1234567891,1234567892,1
|
||||
51,51,0,1,1234567891,1234567892,1
|
||||
52,52,0,1,1234567891,1234567892,1
|
||||
53,53,0,1,1234567891,1234567892,1
|
||||
54,54,0,1,1234567891,1234567892,1
|
||||
55,55,0,1,1234567891,1234567892,1
|
||||
56,56,0,1,1234567891,1234567892,1
|
||||
57,57,0,1,1234567891,1234567892,1
|
||||
58,58,0,1,1234567891,1234567892,1
|
||||
59,59,0,1,1234567891,1234567892,1
|
||||
60,60,0,1,1234567891,1234567892,1
|
||||
61,61,0,1,1234567891,1234567892,1
|
||||
62,62,0,1,1234567891,1234567892,1
|
||||
63,63,0,1,1234567891,1234567892,1
|
||||
64,64,0,1,1234567891,1234567892,1
|
||||
65,65,0,1,1234567891,1234567892,1
|
||||
66,66,0,1,1234567891,1234567892,1
|
||||
67,67,0,1,1234567891,1234567892,1
|
||||
68,68,0,1,1234567891,1234567892,1
|
||||
69,69,0,1,1234567891,1234567892,1
|
||||
70,70,0,1,1234567891,1234567892,1
|
||||
71,71,0,1,1234567891,1234567892,1
|
||||
72,72,0,1,1234567891,1234567892,1
|
||||
73,73,0,1,1234567891,1234567892,1
|
||||
74,74,0,1,1234567891,1234567892,1
|
||||
75,75,0,1,1234567891,1234567892,1
|
||||
76,76,0,1,1234567891,1234567892,1
|
||||
77,77,0,1,1234567891,1234567892,1
|
||||
78,78,0,1,1234567891,1234567892,1
|
||||
79,79,0,1,1234567891,1234567892,1
|
||||
80,80,0,1,1234567891,1234567892,1
|
||||
81,81,0,1,1234567891,1234567892,1
|
||||
82,82,0,1,1234567891,1234567892,1
|
||||
83,83,0,1,1234567891,1234567892,1
|
||||
84,84,0,1,1234567891,1234567892,1
|
||||
85,85,0,1,1234567891,1234567892,1
|
||||
86,86,0,1,1234567891,1234567892,1
|
||||
87,87,0,1,1234567891,1234567892,1
|
||||
88,88,0,1,1234567891,1234567892,1
|
||||
89,89,0,1,1234567891,1234567892,1
|
||||
90,90,0,1,1234567891,1234567892,1
|
||||
91,91,0,1,1234567891,1234567892,1
|
||||
92,92,0,1,1234567891,1234567892,1
|
||||
93,93,0,1,1234567891,1234567892,1
|
||||
94,94,0,1,1234567891,1234567892,1
|
||||
95,95,0,1,1234567891,1234567892,1
|
||||
96,96,0,1,1234567891,1234567892,1
|
||||
97,97,0,1,1234567891,1234567892,1
|
||||
98,98,0,1,1234567891,1234567892,1
|
||||
99,99,0,1,1234567891,1234567892,1
|
||||
100,100,0,1,1234567891,1234567892,1
|
||||
|
@@ -0,0 +1,21 @@
|
||||
id,name,version,cron,lastcron,search,visible
|
||||
1,assignment,2011112900,60,0,,1
|
||||
2,chat,2011112900,300,0,,1
|
||||
3,choice,2011112900,0,0,,1
|
||||
4,data,2011112900,60,0,,1
|
||||
5,feedback,2011112900,0,0,,0
|
||||
6,folder,2011112900,0,0,,1
|
||||
7,forum,2011112900,60,0,,1
|
||||
8,glossary,2012022000,0,0,,1
|
||||
9,imscp,2011112900,0,0,,1
|
||||
10,label,2011112900,0,0,,1
|
||||
11,lesson,2011112900,0,0,,1
|
||||
12,lti,2011112900,0,0,,1
|
||||
13,page,2011112900,0,0,,1
|
||||
14,quiz,2011120703,60,0,,1
|
||||
15,resource,2011112900,0,0,,1
|
||||
16,scorm,2011112901,300,0,,1
|
||||
17,survey,2011112900,0,0,,1
|
||||
18,url,2011112900,0,0,,1
|
||||
19,wiki,2011112900,0,0,,1
|
||||
20,workshop,2011112900,0,0,,1
|
||||
|
@@ -0,0 +1,101 @@
|
||||
id,auth,confirmed,username,password,idnumber,firstname,lastname,email,icq,skype,yahoo,aim,msn,phone1,phone2,institution,department,address,city,country,lang,theme,lasttip,secret
|
||||
1,manual,1,IvySmith,test,,Drew,Sherman,[email protected],,,,,,(02) 5897 5042,(01) 3691 7729,,,P.O. Box 883 5044 Elit Rd.,Bandon,AU,en,,,
|
||||
2,manual,1,KimSmall,test,,Alma,Whitehead,[email protected],,,,,,(09) 4788 9110,(03) 4001 7143,,,P.O. Box 323 4354 Suspendisse Street,Brunswick,AU,en,,,
|
||||
3,manual,0,IolaStewart,test,,Kyra,Hansen,[email protected],,,,,,(08) 5408 5094,(00) 2738 9848,,,312-3019 Pede. Street,Malden,AU,en,,,
|
||||
4,manual,1,GretchenMorse,test,,Hamish,Randolph,[email protected],,,,,,(03) 2367 7727,(06) 3774 4779,,,P.O. Box 186 6931 Congue Ave,Kent,AU,en,,,
|
||||
5,manual,0,MaggieGarrett,test,,Roary,Knox,[email protected],,,,,,(09) 7976 6827,(02) 7649 3366,,,Ap #436-645 Arcu. St.,Jackson,AU,en,,,
|
||||
6,manual,0,JoleneClayton,test,,Benedict,Horn,[email protected],,,,,,(05) 3850 8485,(03) 2830 3758,,,Ap #435-9468 Pede Avenue,Edina,AU,en,,,
|
||||
7,manual,0,SybilMorris,test,,Vladimir,Landry,[email protected],,,,,,(01) 5505 2453,(00) 9481 9876,,,P.O. Box 709 1437 Scelerisque Street,Oxnard,AU,en,,,
|
||||
8,manual,1,FullerHines,test,,Kylynn,Clarke,[email protected],,,,,,(02) 4437 3176,(02) 9268 7721,,,Ap #946-7281 Per Av.,Oneida,AU,en,,,
|
||||
9,manual,0,AbrahamLewis,test,,Stephanie,Nieves,[email protected],,,,,,(01) 6923 6307,(06) 8413 4680,,,Ap #662-8586 Tristique Av.,Centennial,AU,en,,,
|
||||
10,manual,1,NicoleVega,test,,Yvette,Strong,[email protected],,,,,,(07) 5184 2930,(01) 4324 4631,,,Ap #659-5861 Duis Street,Sanford,AU,en,,,
|
||||
11,manual,0,NasimHenry,test,,Briar,Reynolds,[email protected],,,,,,(09) 7148 9918,(07) 7361 6202,,,P.O. Box 355 5406 Vitae Road,Hammond,AU,en,,,
|
||||
12,manual,1,ReubenBecker,test,,Summer,Walton,[email protected],,,,,,(00) 6038 5363,(03) 3882 3790,,,P.O. Box 382 5041 Nullam Rd.,Fairfield,AU,en,,,
|
||||
13,manual,1,NoelleMaynard,test,,Nash,Yang,[email protected],,,,,,(07) 4147 7419,(05) 3223 3586,,,1795 In Avenue,Norton,AU,en,,,
|
||||
14,manual,0,BreeHess,test,,James,Campos,[email protected],,,,,,(06) 5346 3252,(00) 6667 6176,,,5910 Aliquam Ave,Williamsport,AU,en,,,
|
||||
15,manual,1,AimeeLuna,test,,Preston,Oneill,[email protected],,,,,,(05) 1867 8735,(04) 4700 7952,,,P.O. Box 449 2405 Blandit St.,Durango,AU,en,,,
|
||||
16,manual,1,RinaHarris,test,,Melinda,Johnson,[email protected],,,,,,(00) 4117 9659,(02) 8359 2194,,,781-9145 Lacus. Rd.,Peoria,AU,en,,,
|
||||
17,manual,0,LilahOneal,test,,Aurora,Slater,Curae;[email protected],,,,,,(05) 6740 1704,(08) 5256 9815,,,Ap #449-7950 Phasellus St.,Loudon,AU,en,,,
|
||||
18,manual,0,ArethaMurray,test,,Channing,Livingston,[email protected],,,,,,(08) 9516 6244,(08) 3188 2982,,,192-4359 Ac Av.,Bozeman,AU,en,,,
|
||||
19,manual,1,JamesWoodard,test,,Whitney,Beck,[email protected],,,,,,(01) 1147 1337,(01) 8887 4132,,,Ap #366-8429 Lacus. St.,La Puente,AU,en,,,
|
||||
20,manual,0,SheilaHerring,test,,Tanek,Buckner,[email protected],,,,,,(06) 2987 5030,(02) 6449 6876,,,P.O. Box 975 6899 Egestas Avenue,New London,AU,en,,,
|
||||
21,manual,1,PenelopeRodriguez,test,,Shaine,Weber,[email protected],,,,,,(06) 6787 7986,(06) 6854 2994,,,P.O. Box 566 5021 Nullam St.,Jenks,AU,en,,,
|
||||
22,manual,1,BreeDixon,test,,Linda,Russo,[email protected],,,,,,(09) 5018 1758,(04) 6271 2268,,,317-6333 Diam Av.,Kent,AU,en,,,
|
||||
23,manual,0,DominiqueHale,test,,Honorato,Olson,[email protected],,,,,,(06) 7014 1238,(02) 3301 6159,,,287-3327 Eget Rd.,Rohnert Park,AU,en,,,
|
||||
24,manual,1,RafaelWhitaker,test,,Garth,Moss,[email protected],,,,,,(00) 3157 5733,(03) 8448 8786,,,687-9088 Pede Avenue,Concord,AU,en,,,
|
||||
25,manual,1,ArielGraham,test,,Christopher,Becker,[email protected],,,,,,(07) 5913 5794,(08) 5006 8839,,,829 Ac St.,Shawnee,AU,en,,,
|
||||
26,manual,0,AliceMacias,test,,Clementine,Osborn,[email protected],,,,,,(05) 9756 8754,(04) 2458 7143,,,2923 Molestie St.,Moline,AU,en,,,
|
||||
27,manual,0,MaiteHansen,test,,Nell,Maddox,[email protected],,,,,,(06) 5012 2556,(01) 8327 2071,,,P.O. Box 327 6655 Tellus Rd.,Covina,AU,en,,,
|
||||
28,manual,1,DemetriaHart,test,,Clarke,Malone,[email protected],,,,,,(00) 1156 2705,(03) 5166 2722,,,1419 Massa. Avenue,Medford,AU,en,,,
|
||||
29,manual,1,MedgeMalone,test,,Dustin,Sharpe,[email protected],,,,,,(02) 5878 5256,(03) 2729 1434,,,5925 Ac Ave,McKeesport,AU,en,,,
|
||||
30,manual,0,HerrodFlynn,test,,Illana,Osborn,[email protected],,,,,,(08) 2546 5592,(07) 9806 9153,,,437-6559 Semper Rd.,Elko,AU,en,,,
|
||||
31,manual,1,IrisPatel,test,,Vivian,Wade,[email protected],,,,,,(08) 7755 4957,(08) 4025 9527,,,4592 Quisque Road,Brunswick,AU,en,,,
|
||||
32,manual,1,ZacheryEnglish,test,,Georgia,Flowers,[email protected],,,,,,(02) 1381 3822,(06) 3072 5030,,,179-5643 Sed Av.,Grand Island,AU,en,,,
|
||||
33,manual,0,HilelVazquez,test,,Lester,Clark,[email protected],,,,,,(02) 8935 3794,(09) 6220 4053,,,918-1768 Turpis. Ave,North Charleston,AU,en,,,
|
||||
34,manual,0,ActonOwen,test,,Ima,Beck,[email protected],,,,,,(09) 1691 7961,(02) 5648 4433,,,P.O. Box 283 7606 Est Road,New Brunswick,AU,en,,,
|
||||
35,manual,1,JacksonNoel,test,,Brian,Rodgers,[email protected],,,,,,(04) 5434 5018,(00) 6881 8752,,,Ap #427-799 Sollicitudin St.,Decatur,AU,en,,,
|
||||
36,manual,1,UrielleMorrison,test,,Avye,Davidson,[email protected],,,,,,(04) 2392 1761,(02) 2146 2165,,,112-2355 Libero St.,Independence,AU,en,,,
|
||||
37,manual,0,GrahamCraig,test,,Xerxes,Mullins,[email protected],,,,,,(02) 2844 7812,(03) 3515 1387,,,245-1493 Mauris Rd.,Watertown,AU,en,,,
|
||||
38,manual,0,CraigBuck,test,,Savannah,Romero,[email protected],,,,,,(06) 6413 6736,(09) 2213 8035,,,P.O. Box 160 5531 Faucibus Road,Signal Hill,AU,en,,,
|
||||
39,manual,1,YeoCarson,test,,Keiko,Patton,[email protected],,,,,,(09) 3576 9809,(05) 3408 1245,,,Ap #624-3292 Vulputate St.,Pine Bluff,AU,en,,,
|
||||
40,manual,1,KaiRobles,test,,Aiko,Bradshaw,[email protected],,,,,,(01) 5038 7688,(05) 8452 1261,,,P.O. Box 978 7511 Posuere Av.,Belpre,AU,en,,,
|
||||
41,manual,0,NevadaFaulkner,test,,Perry,Duffy,[email protected],,,,,,(09) 2290 8488,(05) 4814 1502,,,P.O. Box 813 4025 Risus St.,Indianapolis,AU,en,,,
|
||||
42,manual,1,GretchenParrish,test,,Jasmine,Luna,[email protected],,,,,,(02) 8855 9204,(01) 6241 5620,,,Ap #293-3429 Magnis Street,Boise,AU,en,,,
|
||||
43,manual,0,OctaviusMcknight,test,,Cruz,Yates,[email protected],,,,,,(00) 8336 2884,(01) 5606 8900,,,969-1084 Amet St.,Everett,AU,en,,,
|
||||
44,manual,1,EvangelineWeeks,test,,Regan,Glenn,[email protected],,,,,,(09) 9479 4147,(02) 1718 7692,,,P.O. Box 586 829 Euismod Av.,Oswego,AU,en,,,
|
||||
45,manual,0,HolmesMclean,test,,Fatima,Kim,[email protected],,,,,,(00) 2583 2779,(07) 7276 1314,,,1717 Etiam Rd.,Valdosta,AU,en,,,
|
||||
46,manual,1,JonahMassey,test,,Kane,Roberson,[email protected],,,,,,(07) 4732 6592,(05) 7518 2288,,,8858 Morbi St.,Allentown,AU,en,,,
|
||||
47,manual,1,MannixHead,test,,Nicole,Becker,[email protected],,,,,,(05) 2113 6523,(02) 1075 9578,,,P.O. Box 203 7026 Convallis St.,Enid,AU,en,,,
|
||||
48,manual,1,ZenaMathis,test,,Phelan,Saunders,[email protected],,,,,,(02) 6102 2278,(07) 9890 3424,,,P.O. Box 624 7962 Erat Ave,Franklin,AU,en,,,
|
||||
49,manual,0,DrakeStrong,test,,Vaughan,Bryant,[email protected],,,,,,(09) 7787 6351,(05) 4728 3996,,,P.O. Box 748 3303 Erat. Ave,Sherrill,AU,en,,,
|
||||
50,manual,1,PatrickEaton,test,,Solomon,Church,[email protected],,,,,,(02) 2023 5044,(00) 7227 1679,,,545-1745 Sed St.,Marquette,AU,en,,,
|
||||
51,manual,0,YoshiJustice,test,,Brynne,Moses,[email protected],,,,,,(09) 6211 9234,(04) 8378 7422,,,2109 Nunc. Road,Manchester,AU,en,,,
|
||||
52,manual,1,ClarkeCantu,test,,Emerald,Cervantes,[email protected],,,,,,(02) 2349 1442,(04) 7635 6969,,,Ap #202-2439 Nullam Road,Athens,AU,en,,,
|
||||
53,manual,1,DaquanHorton,test,,Acton,Langley,[email protected],,,,,,(00) 8632 5915,(02) 6402 7954,,,Ap #896-3104 Dolor Road,Cumberland,AU,en,,,
|
||||
54,manual,1,TuckerBurgess,test,,Isabelle,Trevino,[email protected],,,,,,(07) 3962 5712,(08) 2860 1876,,,Ap #245-2486 Enim. St.,Dalton,AU,en,,,
|
||||
55,manual,1,FullerClayton,test,,Dai,Reed,[email protected],,,,,,(04) 2593 1040,(08) 9370 9193,,,332-2765 Molestie St.,Saint Paul,AU,en,,,
|
||||
56,manual,1,AxelMitchell,test,,Noel,Phillips,[email protected],,,,,,(00) 7168 4613,(01) 9635 4785,,,P.O. Box 637 6345 Risus Rd.,Compton,AU,en,,,
|
||||
57,manual,0,LucyGreer,test,,Ciaran,Wilcox,[email protected],,,,,,(04) 7661 9356,(04) 6622 7336,,,867-3078 Risus Rd.,Batavia,AU,en,,,
|
||||
58,manual,0,AliceRoman,test,,Russell,Mendoza,[email protected],,,,,,(09) 1319 9708,(02) 8744 5000,,,942-3942 Dolor. Rd.,Port Arthur,AU,en,,,
|
||||
59,manual,0,RinaBeach,test,,Nola,Jefferson,[email protected],,,,,,(05) 3531 1831,(08) 4627 7435,,,106 Non Ave,Aliquippa,AU,en,,,
|
||||
60,manual,0,AustinBlanchard,test,,Beatrice,Buck,[email protected],,,,,,(03) 1818 8493,(09) 9461 7392,,,Ap #955-8074 Sed St.,Pascagoula,AU,en,,,
|
||||
61,manual,0,VivianCallahan,test,,Risa,Lambert,[email protected],,,,,,(08) 6869 6444,(08) 6357 6741,,,9860 Mi Ave,Winnemucca,AU,en,,,
|
||||
62,manual,1,SteelGoodman,test,,Quentin,Carney,[email protected],,,,,,(04) 7540 8325,(02) 2122 2677,,,3450 Malesuada Rd.,Annapolis,AU,en,,,
|
||||
63,manual,0,EmeryRandall,test,,Rachel,Henry,[email protected],,,,,,(03) 4194 7641,(01) 7951 2387,,,665-1453 Accumsan Rd.,Yukon,AU,en,,,
|
||||
64,manual,1,UmaMurphy,test,,Nathaniel,Meyer,[email protected],,,,,,(04) 8469 7940,(02) 5507 8148,,,P.O. Box 420 6272 Cras Road,Johnson City,AU,en,,,
|
||||
65,manual,0,KellyRutledge,test,,Clementine,Fischer,[email protected],,,,,,(03) 5899 6068,(05) 6154 3005,,,P.O. Box 882 9530 Fames Street,Marshall,AU,en,,,
|
||||
66,manual,1,AltheaPope,test,,Amir,Solis,[email protected],,,,,,(06) 1249 9761,(01) 7511 3580,,,Ap #657-3808 Porttitor St.,Appleton,AU,en,,,
|
||||
67,manual,1,LeonardBuchanan,test,,Laura,Carpenter,[email protected],,,,,,(04) 8873 3925,(05) 4504 1266,,,P.O. Box 440 296 Eget Road,Clearwater,AU,en,,,
|
||||
68,manual,1,KarenRamos,test,,Nissim,Lane,[email protected],,,,,,(04) 6866 5273,(07) 7610 9546,,,P.O. Box 133 9115 Aliquam St.,Worland,AU,en,,,
|
||||
69,manual,1,LoisFields,test,,Glenna,Farmer,[email protected],,,,,,(02) 9287 3158,(06) 7442 3625,,,Ap #340-8064 Nam Rd.,Truth or Consequences,AU,en,,,
|
||||
70,manual,1,KylanJacobson,test,,Chadwick,Delaney,[email protected],,,,,,(02) 7424 9186,(03) 2040 9298,,,195-2623 Justo. Av.,Indianapolis,AU,en,,,
|
||||
71,manual,0,BreeBruce,test,,Martin,Paul,[email protected],,,,,,(01) 5063 4682,(08) 1253 4339,,,7698 Praesent Ave,Las Vegas,AU,en,,,
|
||||
72,manual,0,RonanPruitt,test,,Georgia,Palmer,[email protected],,,,,,(07) 7874 7429,(05) 1259 8932,,,3800 Gravida Ave,Narragansett,AU,en,,,
|
||||
73,manual,1,AmberYoung,test,,Cassidy,Welch,[email protected],,,,,,(05) 1362 5043,(07) 4202 1731,,,632-5186 Suspendisse Street,New London,AU,en,,,
|
||||
74,manual,1,CullenLeonard,test,,Alfreda,Horn,[email protected],,,,,,(03) 3642 1305,(09) 3421 6465,,,153-5390 Egestas. Street,Walla Walla,AU,en,,,
|
||||
75,manual,1,JaelNavarro,test,,Summer,Mcclure,[email protected],,,,,,(01) 9026 4298,(06) 4528 9934,,,9444 Faucibus Av.,Rutland,AU,en,,,
|
||||
76,manual,1,AlanaDorsey,test,,Fiona,Lawrence,[email protected],,,,,,(09) 4995 9847,(00) 2406 2705,,,P.O. Box 222 9741 Mauris Road,Miami Beach,AU,en,,,
|
||||
77,manual,1,DariusJoyner,test,,Belle,Oneal,[email protected],,,,,,(03) 1168 1699,(05) 2890 3738,,,3671 Lacus. Ave,Somersworth,AU,en,,,
|
||||
78,manual,1,IvoryMelton,test,,Warren,Willis,[email protected],,,,,,(02) 1989 2372,(06) 5895 7485,,,874-1689 A Avenue,Riverside,AU,en,,,
|
||||
79,manual,0,ArielJensen,test,,Rashad,Vincent,[email protected],,,,,,(06) 2286 6234,(04) 5323 9606,,,7131 Lobortis Street,Stanton,AU,en,,,
|
||||
80,manual,1,TamaraFoster,test,,Keegan,Haynes,[email protected],,,,,,(03) 2762 7021,(07) 5493 5738,,,9677 Phasellus St.,North Adams,AU,en,,,
|
||||
81,manual,0,KyleeFischer,test,,Byron,Dean,[email protected],,,,,,(05) 2339 7567,(09) 8432 8453,,,P.O. Box 499 9897 Et St.,Baldwin Park,AU,en,,,
|
||||
82,manual,0,KaseemReyes,test,,Naomi,Giles,[email protected],,,,,,(04) 6657 4255,(07) 1996 2463,,,437-7680 Cursus. Rd.,Beacon,AU,en,,,
|
||||
83,manual,1,MufutauKerr,test,,Emma,Blankenship,[email protected],,,,,,(01) 3114 8049,(05) 3052 7318,,,Ap #554-9210 Lorem St.,Auburn Hills,AU,en,,,
|
||||
84,manual,1,OctaviaLott,test,,Jenette,Britt,[email protected],,,,,,(06) 8017 5642,(08) 8533 6682,,,2368 Lacinia St.,Vancouver,AU,en,,,
|
||||
85,manual,1,JaelDorsey,test,,Violet,French,[email protected],,,,,,(00) 2561 1519,(01) 3109 9851,,,P.O. Box 695 177 Aliquet Ave,Cicero,AU,en,,,
|
||||
86,manual,1,ZoeSalazar,test,,Ginger,Dudley,[email protected],,,,,,(04) 9597 3899,(08) 8550 2069,,,P.O. Box 451 392 Etiam Street,Temple City,AU,en,,,
|
||||
87,manual,0,ChancellorRay,test,,Matthew,Glover,[email protected],,,,,,(04) 8626 6657,(00) 1078 7877,,,425-1352 Vel Ave,Daly City,AU,en,,,
|
||||
88,manual,0,PhoebeDillard,test,,Willa,Potts,[email protected],,,,,,(06) 3549 8028,(04) 9901 4559,,,P.O. Box 535 1355 Quam Rd.,New Bedford,AU,en,,,
|
||||
89,manual,1,IvorJohnson,test,,Gisela,Collins,[email protected],,,,,,(09) 9847 9225,(09) 2899 3827,,,P.O. Box 411 8361 Pellentesque. Road,Corinth,AU,en,,,
|
||||
90,manual,1,KatellPreston,test,,Ingrid,Holcomb,[email protected],,,,,,(08) 6549 2704,(07) 7884 6019,,,631-981 Netus St.,West Palm Beach,AU,en,,,
|
||||
91,manual,1,TuckerShepard,test,,Colorado,Oconnor,[email protected],,,,,,(07) 9191 3502,(03) 9563 1267,,,Ap #490-6519 Est St.,LaGrange,AU,en,,,
|
||||
92,manual,1,IndiraMann,test,,Olympia,Hansen,[email protected],,,,,,(04) 6551 2796,(04) 4165 5667,,,P.O. Box 324 3023 Eu Avenue,Dalton,AU,en,,,
|
||||
93,manual,0,DaceyKing,test,,Bevis,Witt,[email protected],,,,,,(09) 1133 2706,(01) 8513 5210,,,5999 Diam Ave,Duarte,AU,en,,,
|
||||
94,manual,1,DeniseSmith,test,,Halla,Beasley,[email protected],,,,,,(00) 8069 2515,(05) 2398 2095,,,312-2526 Aliquam St.,Ketchikan,AU,en,,,
|
||||
95,manual,1,KionaPark,test,,Ruby,Mcfarland,[email protected],,,,,,(06) 4966 1622,(07) 9386 4992,,,516-4865 Tincidunt Rd.,Fremont,AU,en,,,
|
||||
96,manual,0,GarrettGentry,test,,Blossom,Sherman,[email protected],,,,,,(00) 8236 3649,(02) 5369 1091,,,352-6296 Lectus Ave,El Paso,AU,en,,,
|
||||
97,manual,1,HopCruz,test,,Zeus,Osborn,[email protected],,,,,,(00) 2698 3154,(02) 3879 4419,,,Ap #133-748 A Ave,Lahaina,AU,en,,,
|
||||
98,manual,1,OrsonKane,test,,Josiah,Vazquez,[email protected],,,,,,(06) 1993 5621,(07) 9815 6079,,,442 Penatibus Street,Merced,AU,en,,,
|
||||
99,manual,1,EatonAlvarado,test,,Teegan,Curry,[email protected],,,,,,(04) 4824 6003,(06) 7029 8741,,,Ap #635-8275 Semper Road,Hammond,AU,en,,,
|
||||
100,manual,0,AidanHicks,test,,Bevis,Alston,[email protected],,,,,,(00) 1662 9400,(09) 5933 1946,,,Ap #950-1916 Arcu. Rd.,Kenosha,AU,en,,,
|
||||
|
+16
-12
@@ -559,7 +559,7 @@ if ($showactivity) {
|
||||
$where .= ' AND u.id = ' . $USER->id;
|
||||
$params['myid2'] = $USER->id;
|
||||
}
|
||||
|
||||
$i = 0;
|
||||
if (!empty($advanced)) { //If advanced box is checked.
|
||||
foreach($search_array as $key => $val) { //what does $search_array hold?
|
||||
if ($key == DATA_FIRSTNAME or $key == DATA_LASTNAME) {
|
||||
@@ -586,30 +586,34 @@ if ($showactivity) {
|
||||
/// To actually fetch the records
|
||||
|
||||
$fromsql = "FROM $tables $advtables $where $advwhere $groupselect $approveselect $searchselect $advsearchselect";
|
||||
$sqlselect = "SELECT $what $fromsql $sortorder";
|
||||
$sqlcount = "SELECT $count $fromsql"; // Total number of records when searching
|
||||
$sqlmax = "SELECT $count FROM $tables $where $groupselect $approveselect"; // number of all recoirds user may see
|
||||
$allparams = array_merge($params, $advparams);
|
||||
|
||||
/// Work out the paging numbers and counts
|
||||
$recordids = data_get_all_recordids($data->id);
|
||||
$newrecordids = data_get_advance_search_ids($recordids, $search_array, $data->id);
|
||||
$totalcount = (count($newrecordids));
|
||||
$selectdata = $groupselect . $approveselect;
|
||||
|
||||
$totalcount = $DB->count_records_sql($sqlcount, $allparams);
|
||||
if (!empty($advanced)) {
|
||||
$advancedsearchsql = data_get_advanced_search_sql($sort, $data, $newrecordids, $selectdata, $sortorder);
|
||||
$sqlselect = $advancedsearchsql['sql'];
|
||||
$allparams = array_merge($allparams, $advancedsearchsql['params']);
|
||||
} else {
|
||||
$sqlselect = "SELECT $what $fromsql $sortorder";
|
||||
}
|
||||
|
||||
/// Work out the paging numbers and counts
|
||||
if (empty($searchselect) && empty($advsearchselect)) {
|
||||
$maxcount = $totalcount;
|
||||
} else {
|
||||
$maxcount = $DB->count_records_sql($sqlmax, $params);
|
||||
$maxcount = count($recordids);
|
||||
}
|
||||
|
||||
if ($record) { // We need to just show one, so where is it in context?
|
||||
$nowperpage = 1;
|
||||
$mode = 'single';
|
||||
|
||||
$page = 0;
|
||||
// TODO: Improve this because we are executing $sqlselect twice (here and some lines below)!
|
||||
if ($allrecordids = $DB->get_fieldset_sql($sqlselect, $allparams)) {
|
||||
$page = (int)array_search($record->id, $allrecordids);
|
||||
unset($allrecordids);
|
||||
}
|
||||
$page = (int)array_search($record->id, $recordids);
|
||||
|
||||
} else if ($mode == 'single') { // We rely on ambient $page settings
|
||||
$nowperpage = 1;
|
||||
|
||||
Reference in New Issue
Block a user