-- MySQL dump 10.16  Distrib 10.2.12-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: ethanl6_omek296
-- ------------------------------------------------------
-- Server version	10.2.12-MariaDB-log

/*!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 utf8mb4 */;
/*!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 `omk_collection_trees`
--

DROP TABLE IF EXISTS `omk_collection_trees`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_collection_trees` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `parent_collection_id` int(10) unsigned NOT NULL,
  `collection_id` int(10) unsigned NOT NULL,
  `name` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `collection_id` (`collection_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_collection_trees`
--

LOCK TABLES `omk_collection_trees` WRITE;
/*!40000 ALTER TABLE `omk_collection_trees` DISABLE KEYS */;
INSERT INTO `omk_collection_trees` (`id`, `parent_collection_id`, `collection_id`, `name`) VALUES (1,0,2,'Henry Purcell'),(2,0,3,'Michael Wise'),(3,0,4,'John Wall Calcott'),(6,0,7,'Jean de La Fontaine');
/*!40000 ALTER TABLE `omk_collection_trees` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_collections`
--

DROP TABLE IF EXISTS `omk_collections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_collections` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `public` tinyint(4) NOT NULL,
  `featured` tinyint(4) NOT NULL,
  `added` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `public` (`public`),
  KEY `featured` (`featured`),
  KEY `owner_id` (`owner_id`)
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_collections`
--

LOCK TABLES `omk_collections` WRITE;
/*!40000 ALTER TABLE `omk_collections` DISABLE KEYS */;
INSERT INTO `omk_collections` (`id`, `public`, `featured`, `added`, `modified`, `owner_id`) VALUES (7,1,0,'2013-06-08 15:25:20','2013-07-03 16:05:21',1),(8,1,0,'2013-06-08 15:42:29','2013-06-08 15:42:34',1),(9,1,1,'2013-06-08 21:22:50','2013-07-03 16:04:18',1),(10,1,0,'2013-06-08 21:30:36','2013-07-03 16:04:01',1),(11,1,0,'2013-06-08 21:37:20','2013-07-03 16:03:44',1),(12,1,0,'2013-06-21 16:48:01','2013-07-03 16:03:06',1),(13,1,0,'2013-07-03 11:59:17','2013-07-03 16:02:32',1),(14,1,0,'2013-07-03 12:13:37','2013-07-03 16:02:03',1),(15,1,0,'2013-07-03 12:15:07','2013-07-03 16:06:31',1),(16,1,0,'2013-07-03 12:18:59','2013-07-03 16:01:37',1),(17,1,0,'2013-07-03 12:19:32','2013-07-03 16:01:18',1),(18,1,0,'2013-07-03 12:21:01','2013-07-03 16:01:03',1),(19,1,0,'2013-07-24 10:17:01','2013-07-24 10:17:01',1),(20,1,0,'2013-07-24 17:36:40','2013-07-24 17:36:40',1),(21,1,0,'2013-12-13 11:25:19','2013-12-13 11:25:57',1),(22,1,0,'2013-12-13 11:44:26','2013-12-13 11:44:26',1),(23,1,0,'2013-12-18 13:40:18','2013-12-18 13:40:18',1),(24,1,0,'2014-02-17 14:39:20','2014-02-17 14:39:20',1),(25,1,0,'2014-02-17 15:38:43','2014-02-17 15:38:43',1),(26,1,0,'2014-02-27 13:06:58','2014-02-27 13:06:58',1);
/*!40000 ALTER TABLE `omk_collections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_download`
--

DROP TABLE IF EXISTS `omk_download`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_download` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `item_id` int(10) unsigned NOT NULL,
  `guest_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `guest_ip` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `added` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_download`
--

LOCK TABLES `omk_download` WRITE;
/*!40000 ALTER TABLE `omk_download` DISABLE KEYS */;
/*!40000 ALTER TABLE `omk_download` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_element_sets`
--

DROP TABLE IF EXISTS `omk_element_sets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_element_sets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `record_type` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `description` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`),
  KEY `record_type` (`record_type`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_element_sets`
--

LOCK TABLES `omk_element_sets` WRITE;
/*!40000 ALTER TABLE `omk_element_sets` DISABLE KEYS */;
INSERT INTO `omk_element_sets` (`id`, `record_type`, `name`, `description`) VALUES (1,NULL,'Dublin Core','The Dublin Core metadata element set is common to all Omeka records, including items, files, and collections. For more information see, http://dublincore.org/documents/dces/.'),(3,'Item','Item Type Metadata','The item type metadata element set, consisting of all item type elements bundled with Omeka and all item type elements created by an administrator.');
/*!40000 ALTER TABLE `omk_element_sets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_element_texts`
--

DROP TABLE IF EXISTS `omk_element_texts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_element_texts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `record_id` int(10) unsigned NOT NULL,
  `record_type` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `element_id` int(10) unsigned NOT NULL,
  `html` tinyint(4) NOT NULL,
  `text` mediumtext COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `record_type_record_id` (`record_type`,`record_id`),
  KEY `element_id` (`element_id`),
  KEY `text` (`text`(20))
) ENGINE=InnoDB AUTO_INCREMENT=1013 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_element_texts`
--

LOCK TABLES `omk_element_texts` WRITE;
/*!40000 ALTER TABLE `omk_element_texts` DISABLE KEYS */;
INSERT INTO `omk_element_texts` (`id`, `record_id`, `record_type`, `element_id`, `html`, `text`) VALUES (237,8,'Collection',50,0,'Anon'),(500,18,'Collection',50,0,'Purcell, Henry'),(501,17,'Collection',50,0,'Porter, Samuel'),(502,16,'Collection',50,0,'Leach'),(503,14,'Collection',50,0,'Atterbury, Luffman'),(504,13,'Collection',50,0,'Alcock, John'),(505,12,'Collection',50,0,'Harington, Henry'),(506,11,'Collection',50,0,'Stevens, Richard John Samuel'),(507,10,'Collection',50,0,'Webbe, Samuel, the Elder'),(508,10,'Collection',41,0,'The Great Man of Glee Composition, with 27 prizes to his credit during the reign of George III...'),(509,9,'Collection',50,0,'Smith, John Stafford'),(510,7,'Collection',50,0,'Hutcheson, Francis'),(511,15,'Collection',50,0,'Dyne, John'),(680,22,'Item',50,0,'Retirement'),(681,22,'Item',51,0,'Glee'),(682,22,'Item',43,0,'TBarB'),(699,20,'Item',50,0,'Fill The Bowl With Rosy Wine'),(700,20,'Item',51,0,'Glee'),(701,20,'Item',43,0,'ATB'),(769,31,'Item',50,0,'Now We Are Met'),(770,31,'Item',51,0,'Catch'),(771,31,'Item',43,0,'3 voices'),(772,31,'Item',41,0,'One of the best-known \'welcome\' catches. Cantuar has often begun a concert with this attention-grabbing ditty.'),(777,29,'Item',50,0,'As Thomas Was Cudgell\'d One Day by His Wife'),(778,29,'Item',51,0,'Catch'),(779,29,'Item',43,0,'4 voices'),(780,29,'Item',41,0,'This salutary tale of the hapless Thomas - woefully abused by his wife, but \"too proud to take counsel\" - is a catch, and may be performed as such; what is offered here, in addition, however, is a gentle arrangement for TTBarB which allows the story to be heard before all the voices combine at the finish.'),(781,28,'Item',50,0,'Ye Spotted Snakes'),(782,28,'Item',51,0,'Glee'),(783,28,'Item',43,0,'SATB'),(784,28,'Item',41,0,'This song - from \"A Midsummer Night\'s Dream\", Act 2:2 - has been set many times.  This treatment, by the much-respected RJS Stevens, was one of his most popular pieces - not least, as Rubin remarks, for \"the sheer fun of singing the liquid \'lulla, lulla, lullaby\' that closes each half of its binary structure.'),(789,25,'Item',50,0,'A Kentish Catch'),(790,25,'Item',51,0,'Catch & Glee'),(791,25,'Item',43,0,'ATTB'),(792,25,'Item',41,0,'One of the few pieces in the collection with a local flavour, written by a local man (Samuel Porter was Organist at Canterbury Cathedral from 1757-1803) is a distinctive combination of a 3-part catch and a 4-part glee.'),(793,24,'Item',50,0,'Go, Gentle Breezes'),(794,24,'Item',51,0,'Glee'),(795,24,'Item',43,0,'ATTB'),(796,23,'Item',50,0,'The Arrival At Bath'),(797,23,'Item',51,0,'Catch'),(798,23,'Item',43,0,'3 (or 4) voices'),(799,21,'Item',50,0,'Groody Groaner'),(800,21,'Item',51,0,'Glee'),(801,21,'Item',43,0,'ATB'),(802,21,'Item',41,0,'This piece is another which blurs the diving line between the catch and its more sophisticated cousin, the glee. In telling the story of the hapless man, desperately seeking the midwife of the title to help his wife deliver their child, who mistakenly chooses to ask directions from two villagers whose dullness of wit is beautifully matched by their spectacular speech defects, the narrative which emerges is a carefully-controlled scena in which the entry of the voices build the story to its inescapable conclusion: frustration prevails.'),(803,19,'Item',50,0,'A Canvassing Squire'),(804,19,'Item',51,0,'Catch'),(805,19,'Item',43,0,'3 (or 4/5/6) voices'),(806,19,'Item',41,0,'The political figures of the late 18th and early 19th centuries  enjoyed no greater respect then than those of today; this catch lampoons the figure of the over-lubricated Squire seeking re-election. The story is too good to miss, so the arrangement presented here allows a larger group of singers to provide a gentle accompaniment to each voice in turn, if required.'),(810,17,'Item',50,0,'Here Lies A Woman'),(811,17,'Item',51,0,'Catch'),(812,17,'Item',43,0,'3 voices'),(813,17,'Item',41,0,'It has to be admitted that the world of the catch was essentially a male environment, so it surely comes as no surprise to find that the women portrayed in this repertoire tend to be stereotypically cast either as playful milkmaids or shrewish harpies. The woman in this catch appears to have shuffled off this mortal coil, but that doesn\'t stop the singers worrying about what would undoubtedly happen were she to be awoken from her slumber...'),(814,16,'Item',50,0,'As t\'Other Day Susan'),(815,16,'Item',51,0,'Catch'),(816,16,'Item',43,0,'3 voices'),(820,14,'Item',50,0,'Drinking is an English Diversion'),(821,14,'Item',51,0,'Glee'),(822,14,'Item',43,0,'ATTB'),(823,14,'Item',41,0,'Written long before political correctness exerted any restraint upon the sensibilities of the English drinking classes, this cheerfully disrespectful dismissal of the bibulous customs of other cultures is not for those of sensitive disposition. Cantuar has yet to perform this piece in public; we\'re still seeking the appropriate audience...'),(824,13,'Item',50,0,'I Cannot Sing This Catch'),(825,13,'Item',51,0,'Catch'),(826,13,'Item',43,0,'3 voices'),(827,13,'Item',41,0,'Harington is making a witty point here about the difficulties of singing a catch: since every singer, at some point, has to tackle every line of the thing, and since any interesting melody line may cover quite a wide range, there’s usually some part of it somewhere which is either too high or too low for one’s vocal comfort.  '),(828,12,'Item',50,0,'Mr Speaker, Tho \'Tis Late'),(829,12,'Item',51,0,'Catch'),(830,12,'Item',43,0,'3 voices'),(831,12,'Item',41,0,'The scene is, clearly, the Houses of Parliament; the characters, equally clearly, are our elected representatives.  Here we see them engaged in pursuit of their chosen calling - i.e., trying to ensure that they are heard...'),(832,11,'Item',50,0,'What Shall He Have'),(833,11,'Item',51,0,'Glee'),(834,11,'Item',43,0,'ATBarB'),(835,11,'Item',41,0,'A Hunting Glee!'),(836,10,'Item',50,0,'Discord'),(837,10,'Item',51,0,'Glee'),(838,10,'Item',43,0,'ATTB'),(839,10,'Item',41,0,'\"This gain\'d a prize medal 1772\", Webbe proudly notes at the top of the score in the printed copy bound into Volume 9 of the Canterbury Cathedral Library\'s collection. It should come as no surprise, given the seriousness with which such prizes were contested, to find that this piece is a miniature gem of the genre: to words by Webbe himself, a slow introduction in a foreboding F minor grimly depicts the \"dire sister of the slaught\'ring power\" (War itself, we would guess) and its inexorable growth.  A second, faster section vividly portrays the dread result: \"she stalks on earth and shakes the world around\". The antidote, of course, in a lilting, final, triple-time section in the tonic major, is the \"lovely peace\" with which the work ends; \"soft ease\" prevails, and the only reminder of what had preceded it is heard in the momentary darkness of a chromatic secondary dominant 7th just before the final cadence banishes such clouds for ever.'),(840,9,'Item',50,0,'Sleep, Poor Youth'),(841,9,'Item',51,0,'Glee'),(842,9,'Item',43,0,'ATTB'),(843,9,'Item',41,0,'The words of this piece first appeared in 1694 in a play by Thomas D\'Urfey called \"The Comical History of Don Quixote\". Purcell was amongst the distinguished musicians who contributed music; this song was set by John Eccles.  The sentiment is similar to the rather better-known \"Fear No More the Heat o\' the Sun\" from Shakespeare\'s \"Cymbeline\": tragic though the death of this youth is, so the sentiment goes, some consolation might be drawn from the fact that the trials and tribulations of this world (\"tyrant power\", \"scornful beauty\", or \"wars that do fatal storms disperse\") can trouble him no longer. \"Earthquakes that shake the universe / Can\'t rock thee into sounder sleep\" is the ironic comment, and the piece ends as only such songs can: with a reminder that all must come to this, when \"the folly of the farce is done\".'),(844,7,'Item',50,0,'Hark, The Hollow Woods Resounding'),(845,7,'Item',51,0,'Glee'),(846,7,'Item',43,0,'ATTB'),(853,6,'Item',50,0,'Hans Carvel\'s Ring'),(854,6,'Item',51,0,'Catch'),(855,6,'Item',43,0,'3 voices'),(856,26,'Item',50,0,'On A Scolding Wife'),(857,26,'Item',51,0,'Catch'),(858,26,'Item',43,0,'4 voices'),(859,26,'Item',41,0,'Here\'s another catch presenting a character much beloved of catch composers: the wife whose stentorian tones drown out even the industrial clangour of the technology of the day.'),(866,19,'Collection',50,0,'Benjamin Cooke'),(871,30,'Item',50,0,'My Pocket\'s Low and Taxes High'),(872,30,'Item',51,0,'Glee'),(873,30,'Item',43,0,'ATTB'),(874,30,'Item',41,0,'A song for our times, indeed: a mournful bass solo begins, quasi-recitativo, with a heartfelt lament bewailing the effects of national austerity.  The tenors and alto join in, with an ever-so-slightly desperate attempt to cheer the poor man with talk of brighter days to come, at which point the alto, almost unnoticed, begins to sing the National Anthem.  The result, as the other voices continue their miserable counterpoint, is the gloomiest treatment of a patriotic song you have ever heard - Webbe at his subversive best, we think - until all the singers are persuaded to join in the much more optimistic latter section, which ends in rousing homophony with a suitably rumbustious chorus of \'God save great George our King\'.'),(881,20,'Collection',50,0,'G. Berg'),(906,33,'Item',50,0,'Sirs! Sirs! The Serpentine River is Coming Upstairs!'),(907,33,'Item',51,0,'Catch'),(908,33,'Item',43,0,'3 vv'),(909,32,'Item',50,0,'Rise, My Joy'),(910,32,'Item',51,0,'Glee'),(911,32,'Item',43,0,'ATTB'),(912,32,'Item',41,0,'It begins innocuously enough, but this delightful, short glee by the great Samuel Webbe (the Elder) turns out to be another paean of praise to drinking - a popular theme...'),(917,21,'Collection',50,0,'Arne, Thomas'),(921,34,'Item',50,0,'The Emperor Adrian, Dying, to His Soul'),(922,34,'Item',51,0,'Glee'),(923,34,'Item',43,0,'ATBarB'),(924,35,'Item',50,0,'Hail, Ever-Pleasing Solitude!'),(925,35,'Item',51,0,'Glee'),(926,35,'Item',43,0,'ATBarB'),(927,22,'Collection',50,0,'Callcott, John Wall'),(935,18,'Item',50,0,'O, My Good Friends, Lord, What Do You Think'),(936,18,'Item',51,0,'Catch'),(937,18,'Item',43,0,'4 voices'),(938,36,'Item',50,0,'Aldiborotiphoscophornio'),(939,36,'Item',51,0,'Glee'),(940,36,'Item',43,0,'TTB'),(941,36,'Item',41,0,'Note the date, and the instruction at the foot of the page; it seems clear that this is intended as a trap for the unwary in the course of New Year\'s Eve revelries...'),(942,23,'Collection',50,0,'Goodban, Thomas'),(948,37,'Item',50,0,'The Charter Glee'),(949,37,'Item',51,0,'Glee'),(950,37,'Item',43,0,'SATB'),(951,37,'Item',41,0,'Perhaps the most remarkably local item in the collection, this was the piece written by the Club\'s first landlord - himself a violinist, his wife a singer - in praise of the Club.'),(952,37,'Item',39,0,'Goodban, Thomas'),(956,24,'Collection',50,0,'Baildon'),(968,38,'Item',50,0,'On His Deathbed Poor Lubin Lies'),(969,38,'Item',51,0,'Glee'),(970,38,'Item',43,0,'ATB'),(971,39,'Item',50,0,'When Is it Best?'),(972,39,'Item',51,0,'Catch'),(973,39,'Item',43,0,'4 voices'),(974,39,'Item',41,0,'There\'s really no doubting what it is they\'re asking about.  This is probably one of the more polite examples of the salacious humour which was so very, very popular...'),(975,40,'Item',50,0,'Epitaph On a Blacksmith'),(976,40,'Item',51,0,'Catch'),(977,40,'Item',43,0,'3 voices'),(978,40,'Item',41,0,'Delightful word-play is a feature of this fitting farewell to a man who has spent his life at the forge...'),(979,25,'Collection',50,0,'Horsley, William'),(980,41,'Item',50,0,'Lo! On Yon Long Resounding Shore'),(981,41,'Item',51,0,'Glee'),(982,41,'Item',43,0,'ATTBB'),(983,41,'Item',41,0,'Half a century before Camille Saint-Saens penned \"Danse Macabre\", William Horsley gave us this ghoulish depiction of a truly fiendish scene: on the very shores of Hell, devilish creatures \"dance on the bubbling tide\".'),(984,42,'Item',50,0,'No Joys On This Globe Can With Hunting Compare'),(985,42,'Item',51,0,'Catch and Glee'),(986,42,'Item',43,0,'ATB'),(987,42,'Item',41,0,'This is one of the fascinating little oddities which crop up in the Catch Club collection from time to time: it begins as a Glee, then is quite clearly intended to turn into a Catch, before the final Chorus (including a top, soprano line)  rounds the whole thing off.'),(991,27,'Item',50,0,'O Mistress Mine'),(992,27,'Item',51,0,'Glee'),(993,27,'Item',43,0,'SSATB'),(994,27,'Item',41,0,'1788 was the year in which Stevens wrote this delightful setting of the Shakespeare song, but he records with some disappointment the fact that it \"was so little admired at the Catch Club, that it had not votes enough in the Committee\" which decided the Prize-winning Glees that year. So we can understand his satisfaction when, the following year, it became clear that this was, in fact, a very popular piece.  No less a luminary than the Earl of Sandwich liked it, apparently, though he made himself the object of much merriment when he wondered aloud \"what fool could write such absurd poetry as \'Then come kiss me, sweet and twenty\'?\" It was Stevens\' fellow-composer, Knyvett, who told his Lordship the poet\'s name, to the delight of the assembled company.'),(998,15,'Item',50,0,'A Drunken Old Sot'),(999,15,'Item',51,0,'Catch'),(1000,15,'Item',43,0,'4 voices'),(1005,43,'Item',50,0,'Flora Now Calleth Forth Each Flow\'r'),(1006,43,'Item',51,0,'Glee'),(1007,43,'Item',43,0,'SSATB'),(1008,43,'Item',41,0,'This is the glee which - according to Smith himself - should have won the Prize Medal in 1782.  We know this, because his fellow-composer, R.J.S. Stevens, records with some surprise in his memoirs the fact that he won the medal that year, for \"See, What Horrid Tempests Rise\", and that this became the subject of a somewhat ungentlemanly spat when they met at a Catch Club evening; Smith accused Stevens of \'cheating\' him of a Gold Medal. Stevens had the grace at the time, and afterwards in his Journal, to remark that, actually, Smith was right: \"Flora\" was the better piece, and should have won.  Stevens kept the medal, however.\r\n\r\nPart of the problem, for Smith, may have been the fact that the Club used boys, rather than women sopranos, to perform the glees in order to help reach a decision.  This piece grows to a very effective - and quite taxing - climax, in a riotous 6/8 finale which the boys may not have executed very well.  Along the way, there is a nice little musical conceit, as Smith sets the words \"that now sleepeth in Lethe\'s lake\" in 2/2 against the 6/8 dance rhythms pirouetting around it, to represent the stillness of the subject. The whole is one of the most impressive examples of the genre; we hope to add a recording to this website in July.'),(1009,26,'Collection',50,0,'William Hayes'),(1010,44,'Item',50,0,'As Sir Toby Reel\'d Home'),(1011,44,'Item',51,0,'Catch'),(1012,44,'Item',43,0,'3 voices');
/*!40000 ALTER TABLE `omk_element_texts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_elements`
--

DROP TABLE IF EXISTS `omk_elements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_elements` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `element_set_id` int(10) unsigned NOT NULL,
  `order` int(10) unsigned DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `description` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `comment` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name_element_set_id` (`element_set_id`,`name`),
  UNIQUE KEY `order_element_set_id` (`element_set_id`,`order`),
  KEY `element_set_id` (`element_set_id`)
) ENGINE=InnoDB AUTO_INCREMENT=92 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_elements`
--

LOCK TABLES `omk_elements` WRITE;
/*!40000 ALTER TABLE `omk_elements` DISABLE KEYS */;
INSERT INTO `omk_elements` (`id`, `element_set_id`, `order`, `name`, `description`, `comment`) VALUES (1,3,NULL,'Text','Any textual data included in the document',NULL),(2,3,NULL,'Interviewer','The person(s) performing the interview',NULL),(3,3,NULL,'Interviewee','The person(s) being interviewed',NULL),(4,3,NULL,'Location','The location of the interview',NULL),(5,3,NULL,'Transcription','Any written text transcribed from a sound',NULL),(6,3,NULL,'Local URL','The URL of the local directory containing all assets of the website',NULL),(7,3,NULL,'Original Format','The type of object, such as painting, sculpture, paper, photo, and additional data',NULL),(10,3,NULL,'Physical Dimensions','The actual physical size of the original image',NULL),(11,3,NULL,'Duration','Length of time involved (seconds, minutes, hours, days, class periods, etc.)',NULL),(12,3,NULL,'Compression','Type/rate of compression for moving image file (i.e. MPEG-4)',NULL),(13,3,NULL,'Producer','Name (or names) of the person who produced the video',NULL),(14,3,NULL,'Director','Name (or names) of the person who produced the video',NULL),(15,3,NULL,'Bit Rate/Frequency','Rate at which bits are transferred (i.e. 96 kbit/s would be FM quality audio)',NULL),(16,3,NULL,'Time Summary','A summary of an interview given for different time stamps throughout the interview',NULL),(17,3,NULL,'Email Body','The main body of the email, including all replied and forwarded text and headers',NULL),(18,3,NULL,'Subject Line','The content of the subject line of the email',NULL),(19,3,NULL,'From','The name and email address of the person sending the email',NULL),(20,3,NULL,'To','The name(s) and email address(es) of the person to whom the email was sent',NULL),(21,3,NULL,'CC','The name(s) and email address(es) of the person to whom the email was carbon copied',NULL),(22,3,NULL,'BCC','The name(s) and email address(es) of the person to whom the email was blind carbon copied',NULL),(23,3,NULL,'Number of Attachments','The number of attachments to the email',NULL),(24,3,NULL,'Standards','',NULL),(25,3,NULL,'Objectives','',NULL),(26,3,NULL,'Materials','',NULL),(27,3,NULL,'Lesson Plan Text','',NULL),(28,3,NULL,'URL','',NULL),(29,3,NULL,'Event Type','',NULL),(30,3,NULL,'Participants','Names of individuals or groups participating in the event',NULL),(31,3,NULL,'Birth Date','',NULL),(32,3,NULL,'Birthplace','',NULL),(33,3,NULL,'Death Date','',NULL),(34,3,NULL,'Occupation','',NULL),(35,3,NULL,'Biographical Text','',NULL),(36,3,NULL,'Bibliography','',NULL),(37,1,10,'Contributor','An entity responsible for making contributions to the resource',''),(38,1,15,'Coverage','The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant',''),(39,1,6,'Creator','An entity primarily responsible for making the resource',''),(40,1,9,'Date','A point or period of time associated with an event in the lifecycle of the resource',''),(41,1,5,'Description','An account of the resource',''),(42,1,13,'Format','Item format',''),(43,1,3,'Voices','A reference to voice-type suitability for the item.',''),(44,1,14,'Language','A language of the resource',''),(45,1,8,'Publisher','An entity responsible for making the resource available',''),(46,1,12,'Relation','A related resource',''),(47,1,11,'Rights','Information about rights held in and over the resource',''),(48,1,7,'Source','A related resource from which the described resource is derived',''),(49,1,4,'Subject','The topic of the resource',''),(50,1,1,'Title','A name given to the resource',''),(51,1,2,'Genre','Genre of item, i.e. a glee or catch',''),(52,1,16,'Type','Type of item',''),(53,1,17,'Abstract','A summary of the resource.',''),(54,1,18,'Table Of Contents','A list of subunits of the resource.',''),(55,1,19,'Date Available','Date (often a range) that the resource became or will become available.',''),(56,1,20,'Date Created','Date of creation of the resource.',''),(57,1,21,'Date Accepted','Date of acceptance of the resource. Examples of resources to which a Date Accepted may be relevant are a thesis (accepted by a university department) or an article (accepted by a journal).',''),(58,1,22,'Date Copyrighted','Date of copyright.',''),(59,1,23,'Date Submitted','Date of submission of the resource. Examples of resources to which a Date Submitted may be relevant are a thesis (submitted to a university department) or an article (submitted to a journal).',''),(60,1,24,'Date Issued','Date of formal issuance (e.g., publication) of the resource.',''),(61,1,25,'Date Modified','Date on which the resource was changed.',''),(62,1,26,'Date Valid','Date (often a range) of validity of a resource.',''),(63,1,27,'Access Rights','Information about who can access the resource or an indication of its security status. Access Rights may include information regarding access or restrictions based on privacy, security, or other policies.',''),(64,1,28,'License','A legal document giving official permission to do something with the resource.',''),(65,1,29,'Conforms To','An established standard to which the described resource conforms.',''),(66,1,30,'Has Format','A related resource that is substantially the same as the pre-existing described resource, but in another format.',''),(67,1,31,'Has Part','A related resource that is included either physically or logically in the described resource.',''),(68,1,32,'Has Version','A related resource that is a version, edition, or adaptation of the described resource.',''),(69,1,33,'Is Format Of','A related resource that is substantially the same as the described resource, but in another format.',''),(70,1,34,'Is Part Of','A related resource in which the described resource is physically or logically included.',''),(71,1,35,'Is Referenced By','A related resource that references, cites, or otherwise points to the described resource.',''),(72,1,36,'Is Replaced By','A related resource that supplants, displaces, or supersedes the described resource.',''),(73,1,37,'Is Required By','A related resource that requires the described resource to support its function, delivery, or coherence.',''),(74,1,38,'Is Version Of','A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in content rather than differences in format.',''),(75,1,39,'References','A related resource that is referenced, cited, or otherwise pointed to by the described resource.',''),(76,1,40,'Replaces','A related resource that is supplanted, displaced, or superseded by the described resource.',''),(77,1,41,'Requires','A related resource that is required by the described resource to support its function, delivery, or coherence.',''),(78,1,42,'Extent','The size or duration of the resource.',''),(79,1,43,'Medium','The material or physical carrier of the resource.',''),(80,1,44,'Bibliographic Citation','A bibliographic reference for the resource. Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible.',''),(81,1,45,'Spatial Coverage','Spatial characteristics of the resource.',''),(82,1,46,'Temporal Coverage','Temporal characteristics of the resource.',''),(83,1,47,'Accrual Method','The method by which items are added to a collection.',''),(84,1,48,'Accrual Periodicity','The frequency with which items are added to a collection.',''),(85,1,49,'Accrual Policy','The policy governing the addition of items to a collection.',''),(86,1,50,'Audience','A class of entity for whom the resource is intended or useful.',''),(87,1,51,'Audience Education Level','A class of entity, defined in terms of progression through an educational or training context, for which the described resource is intended.',''),(88,1,52,'Mediator','An entity that mediates access to the resource and for whom the resource is intended or useful. In an educational context, a mediator might be a parent, teacher, teaching assistant, or care-giver.',''),(89,1,53,'Instructional Method','A process, used to engender knowledge, attitudes and skills, that the described resource is designed to support. Instructional Method will typically include ways of presenting instructional materials or conducting instructional activities, patterns of learner-to-learner and learner-to-instructor interactions, and mechanisms by which group and individual levels of learning are measured. Instructional methods include all aspects of the instruction and learning processes from planning and implementation through evaluation and feedback.',''),(90,1,54,'Provenance','A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. The statement may include a description of any changes successive custodians made to the resource.',''),(91,1,55,'Rights Holder','A person or organization owning or managing rights over the resource.','');
/*!40000 ALTER TABLE `omk_elements` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_exhibit_page_entries`
--

DROP TABLE IF EXISTS `omk_exhibit_page_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_exhibit_page_entries` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `item_id` int(10) unsigned DEFAULT NULL,
  `file_id` int(10) unsigned DEFAULT NULL,
  `page_id` int(10) unsigned NOT NULL,
  `text` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `caption` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `order` tinyint(3) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `page_id_order` (`page_id`,`order`)
) ENGINE=InnoDB AUTO_INCREMENT=81 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_exhibit_page_entries`
--

LOCK TABLES `omk_exhibit_page_entries` WRITE;
/*!40000 ALTER TABLE `omk_exhibit_page_entries` DISABLE KEYS */;
INSERT INTO `omk_exhibit_page_entries` (`id`, `item_id`, `file_id`, `page_id`, `text`, `caption`, `order`) VALUES (1,7,25,1,NULL,NULL,1),(2,22,NULL,1,NULL,NULL,2),(3,9,37,1,NULL,NULL,3),(4,10,43,1,NULL,NULL,4),(5,11,47,1,NULL,NULL,5),(6,21,NULL,1,NULL,NULL,6),(7,20,NULL,1,NULL,NULL,7),(8,19,NULL,1,NULL,NULL,8),(9,18,NULL,1,NULL,NULL,9),(10,17,NULL,1,NULL,NULL,10),(11,16,NULL,1,NULL,NULL,11),(12,15,NULL,1,NULL,NULL,12),(13,14,NULL,1,NULL,NULL,13),(14,NULL,NULL,1,NULL,NULL,14),(15,NULL,NULL,1,NULL,NULL,15),(16,NULL,NULL,1,NULL,NULL,16),(17,12,51,2,NULL,NULL,1),(18,32,NULL,2,NULL,NULL,2),(19,31,NULL,2,NULL,NULL,3),(20,30,NULL,2,NULL,NULL,4),(21,29,NULL,2,NULL,NULL,5),(22,28,NULL,2,NULL,NULL,6),(23,27,NULL,2,NULL,NULL,7),(24,26,NULL,2,NULL,NULL,8),(25,25,NULL,2,NULL,NULL,9),(26,24,NULL,2,NULL,NULL,10),(27,23,NULL,2,NULL,NULL,11),(28,13,NULL,2,NULL,NULL,12),(29,33,NULL,2,NULL,'<p style=\"text-align:left;\"><span>The inscription explains everything: \"On an Old Woman\'s alarm to a Society who were regaling themselves </span>when the Inundation happen\'d at Chelsea\".</p>',13),(30,NULL,NULL,2,NULL,NULL,14),(31,NULL,NULL,2,NULL,NULL,15),(32,NULL,NULL,2,NULL,NULL,16),(49,14,96,4,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'Drinking is an English Diversion\' by John Alcock</p>',1),(50,10,100,4,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'Discord\' by Samuel Webbe</p>',2),(51,7,102,4,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'Hark The Hollow Woods Resounding\' by J.S. Smith</p>',3),(52,32,82,4,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'Rise My Joy\' by Samuel Webbe</p>',4),(53,24,88,4,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'Go, Gentle Breezes\' by Leach</p>',5),(54,23,89,4,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'The Arrival At Bath\' by Henry Harington</p>',6),(55,17,93,4,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'Here Lies A Woman\' by Anon</p>',7),(56,21,90,4,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'Goody Groaner\' by Henry Harington</p>',8),(57,NULL,NULL,4,NULL,NULL,9),(58,NULL,NULL,4,NULL,NULL,10),(59,NULL,NULL,4,NULL,NULL,11),(60,NULL,NULL,4,NULL,NULL,12),(61,NULL,NULL,4,NULL,NULL,13),(62,NULL,NULL,4,NULL,NULL,14),(63,NULL,NULL,4,NULL,NULL,15),(64,NULL,NULL,4,NULL,NULL,16),(65,18,92,5,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'O, My Good Friends, Lord, What Do You Think\' by Anon</p>',1),(66,12,98,5,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'Mr. Speaker, Tho\' \'tis Late\' by Anon</p>',2),(67,16,94,5,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'As T\'other Day Susan\' by Anon</p>',3),(68,31,83,5,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'Now We Are Met\' by Samuel Webbe</p>',4),(69,25,87,5,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'A Kentish Catch\' by Samuel Porter</p>',5),(70,11,99,5,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'What Shall He Have That Kill\'d The Deer\' by Richard John Samuel Stevens</p>',6),(71,19,91,5,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'A Canvassing Squire\' by Luffman Atterbury</p>',7),(72,30,84,5,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'My Pockets Low and Taxes High\' by Samuel Webbe</p>',8),(73,9,101,6,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'Sleep, Poor Youth\' by J.S. Smith</p>',1),(74,13,97,6,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'I Cannot Sing This Catch\' by Henry Harington</p>',2),(75,26,86,6,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'On A Scolding Wife\' by Henry Purcell</p>',3),(76,29,85,6,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'As Thomas Was Cudgell\'d One Day By His Wife\' by Samuel Webbe</p>',4),(77,15,95,6,'<p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p>','<p>\'A Drunken Old Sot\' by Anon</p>',5),(78,NULL,NULL,6,NULL,NULL,6),(79,NULL,NULL,6,NULL,NULL,7),(80,NULL,NULL,6,NULL,NULL,8);
/*!40000 ALTER TABLE `omk_exhibit_page_entries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_exhibit_pages`
--

DROP TABLE IF EXISTS `omk_exhibit_pages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_exhibit_pages` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `exhibit_id` int(10) unsigned NOT NULL,
  `parent_id` int(10) unsigned DEFAULT NULL,
  `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `slug` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `layout` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `order` tinyint(3) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `exhibit_id_parent_id_slug` (`exhibit_id`,`parent_id`,`slug`),
  KEY `exhibit_id_order` (`exhibit_id`,`order`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_exhibit_pages`
--

LOCK TABLES `omk_exhibit_pages` WRITE;
/*!40000 ALTER TABLE `omk_exhibit_pages` DISABLE KEYS */;
INSERT INTO `omk_exhibit_pages` (`id`, `exhibit_id`, `parent_id`, `title`, `slug`, `layout`, `order`) VALUES (1,1,NULL,'Page 1','page-1','gallery-thumbnails',0),(2,2,NULL,'Page 1','page-1','gallery-thumbnails',0),(4,4,NULL,'Recordings Page 1','recordings','image-list-left',0),(5,4,NULL,'Recordings Page 2','recordings-page-2','image-list-left',1),(6,4,NULL,'Recordings Page 3','recordings-page-3','image-list-left',3);
/*!40000 ALTER TABLE `omk_exhibit_pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_exhibits`
--

DROP TABLE IF EXISTS `omk_exhibits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_exhibits` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `credits` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `featured` tinyint(1) DEFAULT 0,
  `public` tinyint(1) DEFAULT 0,
  `theme` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
  `theme_options` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `slug` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
  `added` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner_id` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `slug` (`slug`),
  KEY `public` (`public`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_exhibits`
--

LOCK TABLES `omk_exhibits` WRITE;
/*!40000 ALTER TABLE `omk_exhibits` DISABLE KEYS */;
INSERT INTO `omk_exhibits` (`id`, `title`, `description`, `credits`, `featured`, `public`, `theme`, `theme_options`, `slug`, `added`, `modified`, `owner_id`) VALUES (1,'Glees','<p>A collection of glees</p>','',1,1,'',NULL,'glees-exhibit','2013-05-05 18:24:00','2013-06-08 21:45:14',1),(2,'Catches','<p>A collection of Catches</p>','',1,1,'',NULL,'catches-exhibit','2013-06-08 14:19:37','2013-07-03 14:45:24',1),(4,'Recordings','','',0,1,'',NULL,'recordings','2013-07-03 13:28:44','2013-07-20 20:17:21',1);
/*!40000 ALTER TABLE `omk_exhibits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_files`
--

DROP TABLE IF EXISTS `omk_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_files` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `item_id` int(10) unsigned NOT NULL,
  `order` int(10) unsigned DEFAULT NULL,
  `size` int(10) unsigned NOT NULL,
  `has_derivative_image` tinyint(1) NOT NULL,
  `authentication` char(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `mime_type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `type_os` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `filename` text COLLATE utf8_unicode_ci NOT NULL,
  `original_filename` text COLLATE utf8_unicode_ci NOT NULL,
  `modified` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `added` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `stored` tinyint(1) NOT NULL DEFAULT 0,
  `metadata` text COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `item_id` (`item_id`)
) ENGINE=InnoDB AUTO_INCREMENT=159 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_files`
--

LOCK TABLES `omk_files` WRITE;
/*!40000 ALTER TABLE `omk_files` DISABLE KEYS */;
INSERT INTO `omk_files` (`id`, `item_id`, `order`, `size`, `has_derivative_image`, `authentication`, `mime_type`, `type_os`, `filename`, `original_filename`, `modified`, `added`, `stored`, `metadata`) VALUES (23,6,1,238390,1,'219b8289cb1d8454923be96374390235','image/jpeg','','6117a89c91ca15f0d4d44b8f8806e4a7.jpg','Hans_Carvels_Ring1.jpg','2013-07-20 21:21:06','2013-06-08 15:37:45',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":597,\"compression_ratio\":0.16638051368},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"6117a89c91ca15f0d4d44b8f8806e4a7.jpg\",\"FileDateTime\":1370716665,\"FileSize\":238390,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"597\\\"\",\"Height\":597,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1},\"IFD0\":{\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Exif_IFD_Pointer\":90},\"EXIF\":{\"ExifImageWidth\":800,\"ExifImageLength\":597}}}}'),(24,6,2,235150,1,'ec4cba8b411daa11f8403798a590a2d1','image/jpeg','','3314b9e5eb55526aec82ef34d242c9fe.jpg','Hans_Carvels_Ring2.jpg','2013-07-20 21:21:06','2013-06-08 15:39:14',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":597,\"compression_ratio\":0.164119207147},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"3314b9e5eb55526aec82ef34d242c9fe.jpg\",\"FileDateTime\":1370716754,\"FileSize\":235150,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"597\\\"\",\"Height\":597,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1},\"IFD0\":{\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Exif_IFD_Pointer\":90},\"EXIF\":{\"ExifImageWidth\":800,\"ExifImageLength\":597}}}}'),(25,7,1,190964,1,'f95c47466ead3fca1ee28bff2e058593','image/jpeg','','f40c25a0e8135f613fe1ca735f814efd.jpg','Hunting_Glee_Vol_1_1.jpg','2013-07-20 16:15:47','2013-06-08 15:47:32',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":597,\"compression_ratio\":0.133280290341},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"f40c25a0e8135f613fe1ca735f814efd.jpg\",\"FileDateTime\":1370717251,\"FileSize\":190964,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"597\\\"\",\"Height\":597,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1},\"IFD0\":{\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Exif_IFD_Pointer\":90},\"EXIF\":{\"ExifImageWidth\":800,\"ExifImageLength\":597}}}}'),(26,7,2,214915,1,'cb5bc6a3637371fd7708fe413d83864c','image/jpeg','','1b9ad721443e7986b4c85b09dc83cf0c.jpg','Hunting_Glee_Vol_1_2.jpg','2013-07-20 16:15:47','2013-06-08 15:47:32',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":597,\"compression_ratio\":0.149996510329},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"1b9ad721443e7986b4c85b09dc83cf0c.jpg\",\"FileDateTime\":1370717251,\"FileSize\":214915,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"597\\\"\",\"Height\":597,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1},\"IFD0\":{\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Exif_IFD_Pointer\":90},\"EXIF\":{\"ExifImageWidth\":800,\"ExifImageLength\":597}}}}'),(27,7,3,207057,1,'86a929a6952e0800fb0e8f4f89a1e0c7','image/jpeg','','cf06ed9228c4dc8d919f7bf522030fcd.jpg','Hunting_Glee_Vol_1_3.jpg','2013-07-20 16:15:47','2013-06-08 15:47:34',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":597,\"compression_ratio\":0.144512144054},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"cf06ed9228c4dc8d919f7bf522030fcd.jpg\",\"FileDateTime\":1370717251,\"FileSize\":207057,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"597\\\"\",\"Height\":597,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1},\"IFD0\":{\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Exif_IFD_Pointer\":90},\"EXIF\":{\"ExifImageWidth\":800,\"ExifImageLength\":597}}}}'),(28,7,4,209293,1,'e00b664c690ad77f68438a762d6e2aaf','image/jpeg','','6686075a968bdc1d769ab563a42c9d6b.jpg','Hunting_Glee_Vol_1_4.jpg','2013-07-20 16:15:47','2013-06-08 15:47:35',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":597,\"compression_ratio\":0.146072724735},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"6686075a968bdc1d769ab563a42c9d6b.jpg\",\"FileDateTime\":1370717251,\"FileSize\":209293,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"597\\\"\",\"Height\":597,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1},\"IFD0\":{\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Exif_IFD_Pointer\":90},\"EXIF\":{\"ExifImageWidth\":800,\"ExifImageLength\":597}}}}'),(29,7,5,191730,1,'c23c7cfbd93a64b003cac78ec51d9ce7','image/jpeg','','3182d27ab08d926ef41aa79662772f64.jpg','Hunting_Glee_Vol_1_5.jpg','2013-07-20 16:15:47','2013-06-08 15:47:36',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":597,\"compression_ratio\":0.133814907873},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"3182d27ab08d926ef41aa79662772f64.jpg\",\"FileDateTime\":1370717251,\"FileSize\":191730,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"597\\\"\",\"Height\":597,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1},\"IFD0\":{\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Exif_IFD_Pointer\":90},\"EXIF\":{\"ExifImageWidth\":800,\"ExifImageLength\":597}}}}'),(30,7,6,216126,1,'405426f19be6d047fb78416760614e6c','image/jpeg','','bf35b8a3420d0db83414d8222aaee598.jpg','Hunting_Glee_Vol_1_6.jpg','2013-07-20 16:15:47','2013-06-08 15:47:37',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":597,\"compression_ratio\":0.150841708543},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"bf35b8a3420d0db83414d8222aaee598.jpg\",\"FileDateTime\":1370717251,\"FileSize\":216126,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"597\\\"\",\"Height\":597,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1},\"IFD0\":{\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Exif_IFD_Pointer\":90},\"EXIF\":{\"ExifImageWidth\":800,\"ExifImageLength\":597}}}}'),(37,9,1,259114,1,'902ce7134512ef95ea5dc083aaac2e11','image/jpeg','','364b2566c9073fdb55da318836fc49bf.jpg','Sleep_Poor_Youth_1.jpg','2013-07-20 16:15:35','2013-06-09 04:24:31',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.180542084727},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"364b2566c9073fdb55da318836fc49bf.jpg\",\"FileDateTime\":1370737470,\"FileSize\":259114,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF, GPS\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6,\"DateTime\":\"2012:10:23 12:37:10\",\"Exif_IFD_Pointer\":186,\"GPS_IFD_Pointer\":564},\"EXIF\":{\"ExposureTime\":0.0166666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":100,\"ExifVersion\":221,\"DateTimeOriginal\":\"2012:10:23 12:37:10\",\"DateTimeDigitized\":\"2012:10:23 12:37:10\",\"ShutterSpeedValue\":5.90904226859,\"ApertureValue\":2.97085357391,\"BrightnessValue\":4.49808355692,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":0,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0},\"GPS\":{\"GPSLatitudeRef\":\"N\",\"GPSLatitude\":[\"51\\/1\",\"1681\\/100\",\"0\\/1\"],\"GPSLongitudeRef\":\"E\",\"GPSLongitude\":[\"1\\/1\",\"501\\/100\",\"0\\/1\"],\"GPSAltitudeRef\":\"\\u0000\",\"GPSAltitude\":\"32641\\/2040\",\"GPSTimeStamp\":[\"11\\/1\",\"37\\/1\",\"600\\/100\"],\"GPSImgDirectionRef\":\"T\",\"GPSImgDirection\":\"53627\\/197\",\"GPSDateStamp\":\"2012:10:23\",\"computed\":{\"timestamp\":943961826,\"latitude\":51.2801666667,\"longitude\":1.0835,\"altitude\":16.0004901961}}}}}'),(38,9,2,242507,1,'24dcc388b2705f6072756306bd09c6ee','image/jpeg','','4c0b398e22723063121887a1d1e23bc0.jpg','Sleep_Poor_Youth_2.jpg','2013-07-20 16:15:35','2013-06-09 04:24:32',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.168970875139},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"4c0b398e22723063121887a1d1e23bc0.jpg\",\"FileDateTime\":1370737470,\"FileSize\":242507,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF, GPS\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6,\"DateTime\":\"2012:10:23 12:37:14\",\"Exif_IFD_Pointer\":186,\"GPS_IFD_Pointer\":564},\"EXIF\":{\"ExposureTime\":0.025,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":100,\"ExifVersion\":221,\"DateTimeOriginal\":\"2012:10:23 12:37:14\",\"DateTimeDigitized\":\"2012:10:23 12:37:14\",\"ShutterSpeedValue\":5.3221655203,\"ApertureValue\":2.97085357391,\"BrightnessValue\":3.8190552442,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":0,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0},\"GPS\":{\"GPSLatitudeRef\":\"N\",\"GPSLatitude\":[\"51\\/1\",\"1681\\/100\",\"0\\/1\"],\"GPSLongitudeRef\":\"E\",\"GPSLongitude\":[\"1\\/1\",\"501\\/100\",\"0\\/1\"],\"GPSAltitudeRef\":\"\\u0000\",\"GPSAltitude\":\"11319\\/664\",\"GPSTimeStamp\":[\"11\\/1\",\"37\\/1\",\"1200\\/100\"],\"GPSImgDirectionRef\":\"T\",\"GPSImgDirection\":\"53627\\/197\",\"GPSDateStamp\":\"2012:10:23\",\"computed\":{\"timestamp\":943961832,\"latitude\":51.2801666667,\"longitude\":1.0835,\"altitude\":17.046686747}}}}}'),(39,9,3,218101,1,'e720ca5a8695782fd0c825d7fb19032f','image/jpeg','','996b768ee6a129c8c7b13eb07472b583.jpg','Sleep_Poor_Youth_3.jpg','2013-07-20 16:15:35','2013-06-09 04:24:32',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.15196557971},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"996b768ee6a129c8c7b13eb07472b583.jpg\",\"FileDateTime\":1370737470,\"FileSize\":218101,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF, GPS\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6,\"DateTime\":\"2012:10:23 12:37:39\",\"Exif_IFD_Pointer\":186,\"GPS_IFD_Pointer\":564},\"EXIF\":{\"ExposureTime\":0.0166666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":100,\"ExifVersion\":221,\"DateTimeOriginal\":\"2012:10:23 12:37:39\",\"DateTimeDigitized\":\"2012:10:23 12:37:39\",\"ShutterSpeedValue\":5.90904226859,\"ApertureValue\":2.97085357391,\"BrightnessValue\":4.51429275505,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":0,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0},\"GPS\":{\"GPSLatitudeRef\":\"N\",\"GPSLatitude\":[\"51\\/1\",\"1682\\/100\",\"0\\/1\"],\"GPSLongitudeRef\":\"E\",\"GPSLongitude\":[\"1\\/1\",\"501\\/100\",\"0\\/1\"],\"GPSAltitudeRef\":\"\\u0000\",\"GPSAltitude\":\"21114\\/497\",\"GPSTimeStamp\":[\"11\\/1\",\"37\\/1\",\"3900\\/100\"],\"GPSImgDirectionRef\":\"T\",\"GPSImgDirection\":\"32801\\/130\",\"GPSDateStamp\":\"2012:10:23\",\"computed\":{\"timestamp\":943961859,\"latitude\":51.2803333333,\"longitude\":1.0835,\"altitude\":42.4828973843}}}}}'),(40,9,4,214166,1,'681460f28b464f5c4fb1f769cff91d1e','image/jpeg','','66289c7378af7055ff543d48b11287ce.jpg','Sleep_Poor_Youth_4.jpg','2013-07-20 16:15:35','2013-06-09 04:24:33',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.149223801561},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"66289c7378af7055ff543d48b11287ce.jpg\",\"FileDateTime\":1370737470,\"FileSize\":214166,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF, GPS\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6,\"DateTime\":\"2012:10:23 12:37:44\",\"Exif_IFD_Pointer\":186,\"GPS_IFD_Pointer\":564},\"EXIF\":{\"ExposureTime\":0.025,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":80,\"ExifVersion\":221,\"DateTimeOriginal\":\"2012:10:23 12:37:44\",\"DateTimeDigitized\":\"2012:10:23 12:37:44\",\"ShutterSpeedValue\":5.3221655203,\"ApertureValue\":2.97085357391,\"BrightnessValue\":4.06925675676,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":0,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0},\"GPS\":{\"GPSLatitudeRef\":\"N\",\"GPSLatitude\":[\"51\\/1\",\"1682\\/100\",\"0\\/1\"],\"GPSLongitudeRef\":\"E\",\"GPSLongitude\":[\"1\\/1\",\"502\\/100\",\"0\\/1\"],\"GPSAltitudeRef\":\"\\u0000\",\"GPSAltitude\":\"18966\\/581\",\"GPSTimeStamp\":[\"11\\/1\",\"37\\/1\",\"4400\\/100\"],\"GPSImgDirectionRef\":\"T\",\"GPSImgDirection\":\"31241\\/130\",\"GPSDateStamp\":\"2012:10:23\",\"computed\":{\"timestamp\":943961864,\"latitude\":51.2803333333,\"longitude\":1.08366666667,\"altitude\":32.6437177281}}}}}'),(41,9,5,229017,1,'86e0a1f089a8ffc291ad8f6a2031ae9d','image/jpeg','','119f0e0360743f19e4b8a7fb5144be03.jpg','Sleep_Poor_Youth_5.jpg','2013-07-20 16:15:35','2013-06-09 04:24:34',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.159571488294},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"119f0e0360743f19e4b8a7fb5144be03.jpg\",\"FileDateTime\":1370737470,\"FileSize\":229017,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF, GPS\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6,\"DateTime\":\"2012:10:23 12:37:53\",\"Exif_IFD_Pointer\":186,\"GPS_IFD_Pointer\":564},\"EXIF\":{\"ExposureTime\":0.0166666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":100,\"ExifVersion\":221,\"DateTimeOriginal\":\"2012:10:23 12:37:53\",\"DateTimeDigitized\":\"2012:10:23 12:37:53\",\"ShutterSpeedValue\":5.90904226859,\"ApertureValue\":2.97085357391,\"BrightnessValue\":4.57814485388,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":0,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0},\"GPS\":{\"GPSLatitudeRef\":\"N\",\"GPSLatitude\":[\"51\\/1\",\"1682\\/100\",\"0\\/1\"],\"GPSLongitudeRef\":\"E\",\"GPSLongitude\":[\"1\\/1\",\"502\\/100\",\"0\\/1\"],\"GPSAltitudeRef\":\"\\u0000\",\"GPSAltitude\":\"18966\\/581\",\"GPSTimeStamp\":[\"11\\/1\",\"37\\/1\",\"5100\\/100\"],\"GPSImgDirectionRef\":\"T\",\"GPSImgDirection\":\"62325\\/242\",\"GPSDateStamp\":\"2012:10:23\",\"computed\":{\"timestamp\":943961871,\"latitude\":51.2803333333,\"longitude\":1.08366666667,\"altitude\":32.6437177281}}}}}'),(42,9,6,230058,1,'9da3ed44d95e19dd2fd4471c9de964d5','image/jpeg','','991833f69b2997bf3eb79cefcc96ecf7.jpg','Sleep_Poor_Youth_6.jpg','2013-07-20 16:15:35','2013-06-09 04:24:34',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.160296822742},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"991833f69b2997bf3eb79cefcc96ecf7.jpg\",\"FileDateTime\":1370737470,\"FileSize\":230058,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF, GPS\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6,\"DateTime\":\"2012:10:23 12:37:58\",\"Exif_IFD_Pointer\":186,\"GPS_IFD_Pointer\":564},\"EXIF\":{\"ExposureTime\":0.025,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":80,\"ExifVersion\":221,\"DateTimeOriginal\":\"2012:10:23 12:37:58\",\"DateTimeDigitized\":\"2012:10:23 12:37:58\",\"ShutterSpeedValue\":5.3221655203,\"ApertureValue\":2.97085357391,\"BrightnessValue\":4.0374862183,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":0,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0},\"GPS\":{\"GPSLatitudeRef\":\"N\",\"GPSLatitude\":[\"51\\/1\",\"1682\\/100\",\"0\\/1\"],\"GPSLongitudeRef\":\"E\",\"GPSLongitude\":[\"1\\/1\",\"501\\/100\",\"0\\/1\"],\"GPSAltitudeRef\":\"\\u0000\",\"GPSAltitude\":\"29674\\/731\",\"GPSTimeStamp\":[\"11\\/1\",\"37\\/1\",\"5700\\/100\"],\"GPSImgDirectionRef\":\"T\",\"GPSImgDirection\":\"35705\\/147\",\"GPSDateStamp\":\"2012:10:23\",\"computed\":{\"timestamp\":943961877,\"latitude\":51.2803333333,\"longitude\":1.0835,\"altitude\":40.5937072503}}}}}'),(43,10,1,399382,1,'9215018c65fe283eea2963e075ecfaa9','image/jpeg','','66d34db8c8db12e31103b1c6d6727d6e.jpg','Discord_1.jpg','2013-07-20 16:15:22','2013-06-09 04:33:00',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":1071,\"resolution_y\":800,\"compression_ratio\":0.155377373171},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"66d34db8c8db12e31103b1c6d6727d6e.jpg\",\"FileDateTime\":1370737980,\"FileSize\":399382,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF, GPS\"},\"COMPUTED\":{\"html\":\"width=\\\"1071\\\" height=\\\"800\\\"\",\"Height\":800,\"Width\":1071,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6,\"DateTime\":\"2012:10:23 12:13:32\",\"Exif_IFD_Pointer\":186,\"GPS_IFD_Pointer\":564},\"EXIF\":{\"ExposureTime\":0.0166666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":100,\"ExifVersion\":221,\"DateTimeOriginal\":\"2012:10:23 12:13:32\",\"DateTimeDigitized\":\"2012:10:23 12:13:32\",\"ShutterSpeedValue\":5.90904226859,\"ApertureValue\":2.97085357391,\"BrightnessValue\":4.51004702864,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":0,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":1071,\"ExifImageLength\":800,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0},\"GPS\":{\"GPSLatitudeRef\":\"N\",\"GPSLatitude\":[\"51\\/1\",\"1681\\/100\",\"0\\/1\"],\"GPSLongitudeRef\":\"E\",\"GPSLongitude\":[\"1\\/1\",\"499\\/100\",\"0\\/1\"],\"GPSAltitudeRef\":\"\\u0000\",\"GPSAltitude\":\"11962\\/519\",\"GPSTimeStamp\":[\"11\\/1\",\"13\\/1\",\"3100\\/100\"],\"GPSImgDirectionRef\":\"T\",\"GPSImgDirection\":\"28677\\/109\",\"GPSDateStamp\":\"2012:10:23\",\"computed\":{\"timestamp\":943960411,\"latitude\":51.2801666667,\"longitude\":1.08316666667,\"altitude\":23.0481695568}}}}}'),(44,10,2,362017,1,'eb01c5d3e99b77c0443e803dcbcea0dc','image/jpeg','','ab6e81f010ff846c0f5554c37b6e9931.jpg','Discord_2.jpg','2013-07-20 16:15:22','2013-06-09 04:33:01',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":1071,\"resolution_y\":800,\"compression_ratio\":0.140840725179},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"ab6e81f010ff846c0f5554c37b6e9931.jpg\",\"FileDateTime\":1370737980,\"FileSize\":362017,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF, GPS\"},\"COMPUTED\":{\"html\":\"width=\\\"1071\\\" height=\\\"800\\\"\",\"Height\":800,\"Width\":1071,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6,\"DateTime\":\"2012:10:23 12:13:38\",\"Exif_IFD_Pointer\":186,\"GPS_IFD_Pointer\":564},\"EXIF\":{\"ExposureTime\":0.025,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":100,\"ExifVersion\":221,\"DateTimeOriginal\":\"2012:10:23 12:13:38\",\"DateTimeDigitized\":\"2012:10:23 12:13:38\",\"ShutterSpeedValue\":5.3221655203,\"ApertureValue\":2.97085357391,\"BrightnessValue\":4.05247641509,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":0,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":1071,\"ExifImageLength\":800,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0},\"GPS\":{\"GPSLatitudeRef\":\"N\",\"GPSLatitude\":[\"51\\/1\",\"1681\\/100\",\"0\\/1\"],\"GPSLongitudeRef\":\"E\",\"GPSLongitude\":[\"1\\/1\",\"499\\/100\",\"0\\/1\"],\"GPSAltitudeRef\":\"\\u0000\",\"GPSAltitude\":\"11962\\/519\",\"GPSTimeStamp\":[\"11\\/1\",\"13\\/1\",\"3100\\/100\"],\"GPSImgDirectionRef\":\"T\",\"GPSImgDirection\":\"28132\\/109\",\"GPSDateStamp\":\"2012:10:23\",\"computed\":{\"timestamp\":943960411,\"latitude\":51.2801666667,\"longitude\":1.08316666667,\"altitude\":23.0481695568}}}}}'),(45,10,3,388752,1,'bfb00cc1c55f0cb4cb47e5aac911dea2','image/jpeg','','51a1f72e539bdea3d39d17b9cfb1a6e3.jpg','Discord_3.jpg','2013-07-20 16:15:22','2013-06-09 04:33:03',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":1071,\"resolution_y\":800,\"compression_ratio\":0.151241830065},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"51a1f72e539bdea3d39d17b9cfb1a6e3.jpg\",\"FileDateTime\":1370737980,\"FileSize\":388752,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF, GPS\"},\"COMPUTED\":{\"html\":\"width=\\\"1071\\\" height=\\\"800\\\"\",\"Height\":800,\"Width\":1071,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6,\"DateTime\":\"2012:10:23 12:13:49\",\"Exif_IFD_Pointer\":186,\"GPS_IFD_Pointer\":564},\"EXIF\":{\"ExposureTime\":0.0166666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":100,\"ExifVersion\":221,\"DateTimeOriginal\":\"2012:10:23 12:13:49\",\"DateTimeDigitized\":\"2012:10:23 12:13:49\",\"ShutterSpeedValue\":5.90904226859,\"ApertureValue\":2.97085357391,\"BrightnessValue\":4.6051879085,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":0,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":1071,\"ExifImageLength\":800,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0},\"GPS\":{\"GPSLatitudeRef\":\"N\",\"GPSLatitude\":[\"51\\/1\",\"1681\\/100\",\"0\\/1\"],\"GPSLongitudeRef\":\"E\",\"GPSLongitude\":[\"1\\/1\",\"501\\/100\",\"0\\/1\"],\"GPSAltitudeRef\":\"\\u0000\",\"GPSAltitude\":\"9425\\/409\",\"GPSTimeStamp\":[\"11\\/1\",\"13\\/1\",\"4800\\/100\"],\"GPSImgDirectionRef\":\"T\",\"GPSImgDirection\":\"14617\\/57\",\"GPSDateStamp\":\"2012:10:23\",\"computed\":{\"timestamp\":943960428,\"latitude\":51.2801666667,\"longitude\":1.0835,\"altitude\":23.04400978}}}}}'),(46,10,4,371093,1,'fd14c715768f1a5f0b916d335f926d35','image/jpeg','','98a1db2efc95d4863dbfeb8b8184ae40.jpg','Discord_4.jpg','2013-07-20 16:15:22','2013-06-09 04:33:04',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":1071,\"resolution_y\":800,\"compression_ratio\":0.144371693122},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"98a1db2efc95d4863dbfeb8b8184ae40.jpg\",\"FileDateTime\":1370737980,\"FileSize\":371093,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF, GPS\"},\"COMPUTED\":{\"html\":\"width=\\\"1071\\\" height=\\\"800\\\"\",\"Height\":800,\"Width\":1071,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6,\"DateTime\":\"2012:10:23 12:13:52\",\"Exif_IFD_Pointer\":186,\"GPS_IFD_Pointer\":564},\"EXIF\":{\"ExposureTime\":0.025,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":80,\"ExifVersion\":221,\"DateTimeOriginal\":\"2012:10:23 12:13:52\",\"DateTimeDigitized\":\"2012:10:23 12:13:52\",\"ShutterSpeedValue\":5.3221655203,\"ApertureValue\":2.97085357391,\"BrightnessValue\":4.1188034188,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":0,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":1071,\"ExifImageLength\":800,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0},\"GPS\":{\"GPSLatitudeRef\":\"N\",\"GPSLatitude\":[\"51\\/1\",\"1681\\/100\",\"0\\/1\"],\"GPSLongitudeRef\":\"E\",\"GPSLongitude\":[\"1\\/1\",\"501\\/100\",\"0\\/1\"],\"GPSAltitudeRef\":\"\\u0000\",\"GPSAltitude\":\"14217\\/617\",\"GPSTimeStamp\":[\"11\\/1\",\"13\\/1\",\"4900\\/100\"],\"GPSImgDirectionRef\":\"T\",\"GPSImgDirection\":\"14674\\/57\",\"GPSDateStamp\":\"2012:10:23\",\"computed\":{\"timestamp\":943960429,\"latitude\":51.2801666667,\"longitude\":1.0835,\"altitude\":23.0421393841}}}}}'),(47,11,1,357123,1,'ee55e1567f820c05bfd67911ff076788','image/jpeg','','7a5a860e47ee1dad823b49454ad7f811.jpg','What_Shall_He_Have_1.jpg','2013-07-20 16:15:08','2013-06-09 04:38:44',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":1071,\"resolution_y\":800,\"compression_ratio\":0.138936741363},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"7a5a860e47ee1dad823b49454ad7f811.jpg\",\"FileDateTime\":1370738324,\"FileSize\":357123,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF, GPS\"},\"COMPUTED\":{\"html\":\"width=\\\"1071\\\" height=\\\"800\\\"\",\"Height\":800,\"Width\":1071,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6,\"DateTime\":\"2012:11:26 12:11:25\",\"Exif_IFD_Pointer\":192,\"GPS_IFD_Pointer\":570},\"EXIF\":{\"ExposureTime\":0.030303030303,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":80,\"ExifVersion\":221,\"DateTimeOriginal\":\"2012:11:26 12:11:25\",\"DateTimeDigitized\":\"2012:11:26 12:11:25\",\"ShutterSpeedValue\":5.06040756914,\"ApertureValue\":2.97085357391,\"BrightnessValue\":3.92212341687,\"MeteringMode\":5,\"Flash\":16,\"FocalLength\":3.85,\"SubjectLocation\":0,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":1071,\"ExifImageLength\":800,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0},\"GPS\":{\"GPSLatitudeRef\":\"N\",\"GPSLatitude\":[\"51\\/1\",\"1682\\/100\",\"0\\/1\"],\"GPSLongitudeRef\":\"E\",\"GPSLongitude\":[\"1\\/1\",\"500\\/100\",\"0\\/1\"],\"GPSAltitudeRef\":\"\\u0000\",\"GPSAltitude\":\"17213\\/1313\",\"GPSTimeStamp\":[\"12\\/1\",\"11\\/1\",\"2400\\/100\"],\"GPSImgDirectionRef\":\"T\",\"GPSImgDirection\":\"153916\\/473\",\"GPSDateStamp\":\"2012:11:26\",\"computed\":{\"timestamp\":943963884,\"latitude\":51.2803333333,\"longitude\":1.08333333333,\"altitude\":13.1096725057}}}}}'),(48,11,2,376920,1,'242356b70a9eeb70636e012d4bb6f966','image/jpeg','','2586fa825cb44f8b6d7c4f48e9cd7118.jpg','What_Shall_He_Have_2.jpg','2013-07-20 16:15:08','2013-06-09 04:38:45',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":1071,\"resolution_y\":800,\"compression_ratio\":0.146638655462},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"2586fa825cb44f8b6d7c4f48e9cd7118.jpg\",\"FileDateTime\":1370738324,\"FileSize\":376920,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF, GPS\"},\"COMPUTED\":{\"html\":\"width=\\\"1071\\\" height=\\\"800\\\"\",\"Height\":800,\"Width\":1071,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6,\"DateTime\":\"2012:11:26 12:11:31\",\"Exif_IFD_Pointer\":192,\"GPS_IFD_Pointer\":570},\"EXIF\":{\"ExposureTime\":0.030303030303,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":100,\"ExifVersion\":221,\"DateTimeOriginal\":\"2012:11:26 12:11:31\",\"DateTimeDigitized\":\"2012:11:26 12:11:31\",\"ShutterSpeedValue\":5.06040756914,\"ApertureValue\":2.97085357391,\"BrightnessValue\":3.57350689127,\"MeteringMode\":5,\"Flash\":16,\"FocalLength\":3.85,\"SubjectLocation\":0,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":1071,\"ExifImageLength\":800,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0},\"GPS\":{\"GPSLatitudeRef\":\"N\",\"GPSLatitude\":[\"51\\/1\",\"1682\\/100\",\"0\\/1\"],\"GPSLongitudeRef\":\"E\",\"GPSLongitude\":[\"1\\/1\",\"500\\/100\",\"0\\/1\"],\"GPSAltitudeRef\":\"\\u0000\",\"GPSAltitude\":\"4643\\/186\",\"GPSTimeStamp\":[\"12\\/1\",\"11\\/1\",\"3100\\/100\"],\"GPSImgDirectionRef\":\"T\",\"GPSImgDirection\":\"161484\\/473\",\"GPSDateStamp\":\"2012:11:26\",\"computed\":{\"timestamp\":943963891,\"latitude\":51.2803333333,\"longitude\":1.08333333333,\"altitude\":24.9623655914}}}}}'),(49,11,3,352544,1,'e2932edfcd790e233cfb40a392945f56','image/jpeg','','db34fb96dd27b86548033fa830f5bfd5.jpg','What_Shall_He_Have_3.jpg','2013-07-20 16:15:08','2013-06-09 04:38:45',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":1071,\"resolution_y\":800,\"compression_ratio\":0.137155306567},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"db34fb96dd27b86548033fa830f5bfd5.jpg\",\"FileDateTime\":1370738324,\"FileSize\":352544,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF, GPS\"},\"COMPUTED\":{\"html\":\"width=\\\"1071\\\" height=\\\"800\\\"\",\"Height\":800,\"Width\":1071,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6,\"DateTime\":\"2012:11:26 12:11:44\",\"Exif_IFD_Pointer\":192,\"GPS_IFD_Pointer\":570},\"EXIF\":{\"ExposureTime\":0.030303030303,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":100,\"ExifVersion\":221,\"DateTimeOriginal\":\"2012:11:26 12:11:44\",\"DateTimeDigitized\":\"2012:11:26 12:11:44\",\"ShutterSpeedValue\":5.06040756914,\"ApertureValue\":2.97085357391,\"BrightnessValue\":3.85314091681,\"MeteringMode\":5,\"Flash\":16,\"FocalLength\":3.85,\"SubjectLocation\":0,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":1071,\"ExifImageLength\":800,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0},\"GPS\":{\"GPSLatitudeRef\":\"N\",\"GPSLatitude\":[\"51\\/1\",\"1682\\/100\",\"0\\/1\"],\"GPSLongitudeRef\":\"E\",\"GPSLongitude\":[\"1\\/1\",\"500\\/100\",\"0\\/1\"],\"GPSAltitudeRef\":\"\\u0000\",\"GPSAltitude\":\"43790\\/1907\",\"GPSTimeStamp\":[\"12\\/1\",\"11\\/1\",\"4400\\/100\"],\"GPSImgDirectionRef\":\"T\",\"GPSImgDirection\":\"150132\\/473\",\"GPSDateStamp\":\"2012:11:26\",\"computed\":{\"timestamp\":943963904,\"latitude\":51.2803333333,\"longitude\":1.08333333333,\"altitude\":22.9627687467}}}}}'),(50,11,4,364053,1,'d2c93597692c16bd5f0073c32b677eaa','image/jpeg','','ef6ea33d806cc0b7f43abba76343c61d.jpg','What_Shall_He_Have_4.jpg','2013-07-20 16:15:08','2013-06-09 04:38:46',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":1071,\"resolution_y\":800,\"compression_ratio\":0.141632819795},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"ef6ea33d806cc0b7f43abba76343c61d.jpg\",\"FileDateTime\":1370738324,\"FileSize\":364053,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF, GPS\"},\"COMPUTED\":{\"html\":\"width=\\\"1071\\\" height=\\\"800\\\"\",\"Height\":800,\"Width\":1071,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6,\"DateTime\":\"2012:11:26 12:11:50\",\"Exif_IFD_Pointer\":192,\"GPS_IFD_Pointer\":570},\"EXIF\":{\"ExposureTime\":0.030303030303,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":100,\"ExifVersion\":221,\"DateTimeOriginal\":\"2012:11:26 12:11:50\",\"DateTimeDigitized\":\"2012:11:26 12:11:50\",\"ShutterSpeedValue\":5.06040756914,\"ApertureValue\":2.97085357391,\"BrightnessValue\":3.6050295858,\"MeteringMode\":5,\"Flash\":16,\"FocalLength\":3.85,\"SubjectLocation\":0,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":1071,\"ExifImageLength\":800,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0},\"GPS\":{\"GPSLatitudeRef\":\"N\",\"GPSLatitude\":[\"51\\/1\",\"1682\\/100\",\"0\\/1\"],\"GPSLongitudeRef\":\"E\",\"GPSLongitude\":[\"1\\/1\",\"500\\/100\",\"0\\/1\"],\"GPSAltitudeRef\":\"\\u0000\",\"GPSAltitude\":\"14348\\/607\",\"GPSTimeStamp\":[\"12\\/1\",\"11\\/1\",\"4900\\/100\"],\"GPSImgDirectionRef\":\"T\",\"GPSImgDirection\":\"160538\\/473\",\"GPSDateStamp\":\"2012:11:26\",\"computed\":{\"timestamp\":943963909,\"latitude\":51.2803333333,\"longitude\":1.08333333333,\"altitude\":23.6375617792}}}}}'),(51,12,1,196855,1,'302ba5ae11deabaf9ad80a3f153090b0','image/jpeg','','c026969abdd5ec17e4c95ea7ddfb1266.jpg','Mr_Speaker_Tho_Tis_Late.jpg','2013-07-20 16:14:54','2013-06-08 21:42:50',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":1171,\"compression_ratio\":0.0700451892969},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"c026969abdd5ec17e4c95ea7ddfb1266.jpg\",\"FileDateTime\":1370738570,\"FileSize\":196855,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"1171\\\"\",\"Height\":1171,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1},\"IFD0\":{\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Exif_IFD_Pointer\":90},\"EXIF\":{\"ExifImageWidth\":800,\"ExifImageLength\":1171}}}}'),(52,12,2,286978,0,'0c5a30b18aa346e2692452cecf74380d','image/jpeg','','a1f0fa21ef13e1b56f0617681fa0c7a1.eps','Mr Speaker, Tho \'Tis Late.eps','2013-07-20 16:14:54','2013-06-08 21:42:52',1,'[]'),(54,13,2,26854,0,'2e56ff6f8c8186f77a7ae70cc5ece932','application/pdf','','d6612971f77c56461942957966ad32d3.pdf','Harington - I Cannot Sing This Catch.pdf','2013-07-20 16:14:44','2013-06-21 16:50:32',1,'{\"mime_type\":\"application\\/pdf\"}'),(55,13,1,149478,1,'eca3f4afa2c20bebd34db480416512df','image/jpeg','','034b5da92488c807c1b82235b98aac8c.JPG','Harington - I Cannot Sing This Catch.JPG','2013-07-20 16:14:44','2013-06-21 16:52:02',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":392,\"compression_ratio\":0.158883928571},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"034b5da92488c807c1b82235b98aac8c.JPG\",\"FileDateTime\":1371844322,\"FileSize\":149478,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF, GPS\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"392\\\"\",\"Height\":392,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":\"QuickTime 7.7.1\",\"DateTime\":\"2013:06:20 16:03:10\",\"HostComputer\":\"Mac OS X 10.8.4\",\"Exif_IFD_Pointer\":230,\"GPS_IFD_Pointer\":608},\"EXIF\":{\"ExposureTime\":0.030303030303,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":80,\"ExifVersion\":220,\"DateTimeOriginal\":\"2012:10:23 12:41:28\",\"DateTimeDigitized\":\"2012:10:23 12:41:28\",\"ShutterSpeedValue\":5.06040756914,\"ApertureValue\":2.97085357391,\"BrightnessValue\":3.92440604752,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":0,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":392,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0},\"GPS\":{\"GPSLatitudeRef\":\"N\",\"GPSLatitude\":[\"51\\/1\",\"1680\\/100\",\"0\\/1\"],\"GPSLongitudeRef\":\"E\",\"GPSLongitude\":[\"1\\/1\",\"502\\/100\",\"0\\/1\"],\"GPSAltitudeRef\":\"\\u0000\",\"GPSAltitude\":\"12965\\/1866\",\"GPSTimeStamp\":[\"11\\/1\",\"41\\/1\",\"2745\\/100\"],\"GPSImgDirectionRef\":\"T\",\"GPSImgDirection\":\"37295\\/209\",\"computed\":{\"latitude\":51.28,\"longitude\":1.08366666667,\"altitude\":6.94801714898}}}}}'),(56,12,NULL,27919,0,'c5a3f58decee968d3fdc08235e70395b','application/pdf','','4178a60515bb4b2a1ad48abe3d2716ab.pdf','Anon - Mr. Speaker, Tho\' \'Tis Late.pdf','2013-07-20 16:14:54','2013-06-21 16:54:02',1,'{\"mime_type\":\"application\\/pdf\"}'),(57,7,NULL,58561,0,'54b0b1dd4d4ad32d20be39b2628982d6','application/pdf','','cd581f1b41cfba4cb1acab6f5652cb19.pdf','Smith, J.S. - Hunting Glee.pdf','2013-07-20 16:15:47','2013-06-21 16:56:34',1,'{\"mime_type\":\"application\\/pdf\"}'),(58,9,NULL,87773,0,'c49b1cb06114d774f49ca29ba00e5239','application/pdf','','2356d1d995ff4d0c4e0eac10b04b2d4b.pdf','Smith, J.S. - Sleep, Poor Youth.pdf','2013-07-20 16:15:35','2013-06-21 16:57:09',1,'{\"mime_type\":\"application\\/pdf\"}'),(59,11,NULL,52336,0,'24567419a37059a069fd28a5cf4dacae','application/pdf','','c6a1a5188fdd77bb556d03ff013c95d7.pdf','Stevens - Hunting Glee - What Shall He Have That Kill\'d the Deer.pdf','2013-07-20 16:15:08','2013-06-21 16:58:46',1,'{\"mime_type\":\"application\\/pdf\"}'),(60,10,NULL,73679,0,'58783eae633606a9c001a9e8fe08960c','application/pdf','','58067974e523482298e2352076f92ecc.pdf','Webbe - Discord.pdf','2013-07-20 16:15:22','2013-06-21 16:59:04',1,'{\"mime_type\":\"application\\/pdf\"}'),(61,14,NULL,48474,0,'a81f6e783c1c5905e42b1a2d341dc8be','application/pdf','','9be2369b3104480748d09a1fb53a7afb.pdf','Alcock - Drinking is an English Diversion.pdf','2013-07-20 16:14:32','2013-07-03 11:55:37',1,'{\"mime_type\":\"application\\/pdf\"}'),(63,16,NULL,26683,0,'33ce443e7be958151c279d9faa17e64f','application/pdf','','6272ea1f4983174513c75a57aef785ba.pdf','Anon - As t\'Other Day Susan.pdf','2013-07-20 16:14:12','2013-07-03 12:03:27',1,'{\"mime_type\":\"application\\/pdf\"}'),(64,17,NULL,26226,0,'bf88e44cef63a2a03267966e1dd85446','application/pdf','','b7d490534a679138552b4853d396e010.pdf','Anon - Here Lies a Woman.pdf','2013-07-20 16:14:02','2013-07-03 12:10:43',1,'{\"mime_type\":\"application\\/pdf\"}'),(66,19,NULL,32071,0,'b81d4846e1ba1d305ed950200684a72e','application/pdf','','a83f0979a2a89dde711f80d177abaf82.pdf','Atterbury - A Canvassing Squire.pdf','2013-07-20 16:13:31','2013-07-03 12:13:21',1,'{\"mime_type\":\"application\\/pdf\"}'),(67,20,NULL,50051,0,'88ab4d81c2f92444fce46aa8760c85d2','application/pdf','','45be7eba17f6f0726d101766f240b913.pdf','Dyne - Fill The Bowl With Rosy Wine.pdf','2013-07-09 15:23:04','2013-07-03 12:14:54',1,'{\"mime_type\":\"application\\/pdf\"}'),(68,21,NULL,47697,0,'b1e68d9aca572266f2616e463b8b62b0','application/pdf','','986a096e21349fc5d82b549acd38c2cb.pdf','Harington - Goody Groaner.pdf','2013-07-20 16:13:17','2013-07-03 12:16:11',1,'{\"mime_type\":\"application\\/pdf\"}'),(69,22,NULL,32896,0,'fa572ecd2b5f3849075688631878221d','application/pdf','','58c6f3ac554577af45440d767454da03.pdf','Harington - Retirement.pdf','2013-07-09 15:21:37','2013-07-03 12:17:07',1,'{\"mime_type\":\"application\\/pdf\"}'),(70,23,NULL,26129,0,'e074f62877ce5810f85842a0cb80ac17','application/pdf','','3a49620f8ddfbff56f884311d0223976.pdf','Harington - The Arrival at Bath.pdf','2013-07-20 16:13:02','2013-07-03 12:18:04',1,'{\"mime_type\":\"application\\/pdf\"}'),(71,24,NULL,41359,0,'7ee2a62b2112f20450a108666f204c52','application/pdf','','894f120ffae19f221605485b8710a1f4.pdf','Leach - Go, Gentle Breezes.pdf','2013-07-20 16:12:45','2013-07-03 12:18:50',1,'{\"mime_type\":\"application\\/pdf\"}'),(72,25,NULL,58001,0,'48c7ad6b340e1e60e222dd487b5c03b3','application/pdf','','6047b4148b60cda528ee6d5b53f727db.pdf','Porter - Kentish Catch.pdf','2013-07-20 16:12:33','2013-07-03 12:20:36',1,'{\"mime_type\":\"application\\/pdf\"}'),(73,26,NULL,25907,0,'f7cac812ab609f5d7fbfc59cee985f88','application/pdf','','62a02af8bc9bedbebb55e59ace2dbc20.pdf','Purcell - On A Scolding Wife.pdf','2013-07-24 09:54:23','2013-07-03 12:21:32',1,'{\"mime_type\":\"application\\/pdf\"}'),(75,28,NULL,85798,0,'424ac55da3d1e3a91574195da87bd37e','application/pdf','','a15cf0ba4335b53c41910c06714b4225.pdf','Stevens - Ye Spotted Snakes.pdf','2013-07-20 16:11:58','2013-07-03 12:23:42',1,'{\"mime_type\":\"application\\/pdf\"}'),(76,29,NULL,33751,0,'a62e3d486fc71c22ec0ae26ed0ca2e36','application/pdf','','99793a38c0ca185491c2f9e668c94eaa.pdf','Webbe - As Thomas Was Cudgell\'d One Day by His Wife.pdf','2013-07-20 16:11:33','2013-07-03 12:24:18',1,'{\"mime_type\":\"application\\/pdf\"}'),(77,29,NULL,77600,0,'19c3c1654d678a723d5863bfd149b243','application/pdf','','0dd994a57e0878ac201d52c260c97b91.pdf','Webbe - As Thomas Was Cudgelled One Day by His Wife - arr. CP.pdf','2013-07-20 16:11:33','2013-07-03 12:25:41',1,'{\"mime_type\":\"application\\/pdf\"}'),(78,30,NULL,82476,0,'b36608a0a783ae1db857ee65451138af','application/pdf','','0945abec62e94cc891f2fd4d09436243.pdf','Webbe - My Pocket\'s Low and Taxes High.pdf','2013-07-24 10:27:52','2013-07-03 12:26:27',1,'{\"mime_type\":\"application\\/pdf\"}'),(79,31,NULL,22092,0,'42e1fe5d2255dda72c09b026bd31ae4b','application/pdf','','6cc1ab7da539d8ab0f264bf5dffe78a3.pdf','Webbe - Now We Are Met.pdf','2013-07-20 16:10:59','2013-07-03 12:27:01',1,'{\"mime_type\":\"application\\/pdf\"}'),(80,32,NULL,43122,0,'46bbdc623eac37dd278d283a279953d1','application/pdf','','a369d961228f7eefabea256710d2e590.pdf','Webbe - Rise, My Joy.pdf','2013-11-29 07:06:12','2013-07-03 12:27:57',1,'{\"mime_type\":\"application\\/pdf\"}'),(82,32,NULL,4150314,0,'594b28c97aab90395ae467aa939159ed','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','5946d7c5236173393b262ab0a0eeacbb.mp3','Rise, My Joy.mp3','2013-11-29 07:06:12','2013-07-20 16:10:00',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"04. Rise, My Joy\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000AB1 00000836 0000B657 0000833E 00011143 000105BC 00008098 00008071 00007178 0000855E\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"04. Rise, My Joy\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000AB1 00000836 0000B657 0000833E 00011143 000105BC 00008098 00008071 00007178 0000855E\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(83,31,NULL,1741827,0,'15efee5e6f4b33ae98245906c8ce6a19','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','f0a6c01a4176d1fd09bd99688be94adb.mp3','Now We Are Met.mp3','2013-07-20 16:10:59','2013-07-20 16:10:59',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"12. Now We Are Met\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"0000142C 00001154 0000AC98 00008995 0000097D 0000097D 00008013 00008014 00000949 00005E63\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"12. Now We Are Met\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"0000142C 00001154 0000AC98 00008995 0000097D 0000097D 00008013 00008014 00000949 00005E63\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(84,30,NULL,8619360,0,'1b018c8826d5e495f8dc81547baae71b','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','8325148d644b951ca9618cbca201bcdf.mp3','My Pockets Low and Taxes High.mp3','2013-07-24 10:27:52','2013-07-20 16:11:19',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"16. My Pockets Low and Taxes High\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"000004CB 00000446 0000475B 0000620A 0002EBDB 0002EBC1 00008079 000080DA 0002EB8D 0002EB8D\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"16. My Pockets Low and Taxes High\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"000004CB 00000446 0000475B 0000620A 0002EBDB 0002EBC1 00008079 000080DA 0002EB8D 0002EB8D\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(85,29,NULL,6407325,0,'de8131a6ada9c3b7f948e891d0e0b34d','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','d67446041e42b33fda28fbaaa7d7b9bb.mp3','As Thomas Was Cudgell\'d One Day By His Wife.mp3','2013-07-20 16:11:34','2013-07-20 16:11:34',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"20. As Thomas Was Cudgell\'d One Day By His Wife\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000790 00000799 0000E97C 0000D06F 00002FC1 0001ECDB 000080BF 0000826B 00002FC1 0001ED5E\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"20. As Thomas Was Cudgell\'d One Day By His Wife\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000790 00000799 0000E97C 0000D06F 00002FC1 0001ECDB 000080BF 0000826B 00002FC1 0001ED5E\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(86,26,NULL,3367692,0,'daa20628dac5efcfc99adf6aa54e0632','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','2342afb1013f414f9650e7fb62290ab3.mp3','On A Scolding Wife.mp3','2013-07-24 09:54:23','2013-07-20 16:12:16',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"19. On A Scolding Wife\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000443 000004DA 00005A11 00005218 0001189C 00010243 00007F29 00007F33 00012924 00011EF0\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"19. On A Scolding Wife\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000443 000004DA 00005A11 00005218 0001189C 00010243 00007F29 00007F33 00012924 00011EF0\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(87,25,NULL,6552536,0,'1ad9afa1083322f633929164bcb3257b','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','b573fc1e60c3f5ceff437af9b70a4e19.mp3','Kentish Catch.mp3','2013-07-20 16:12:33','2013-07-20 16:12:33',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"13. Kentish Catch\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"0000088D 000006A0 0000ED54 0000A9C7 00020ED6 00003AC6 00008050 00007F5C 00020E87 00022F2F\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"13. Kentish Catch\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"0000088D 000006A0 0000ED54 0000A9C7 00020ED6 00003AC6 00008050 00007F5C 00020E87 00022F2F\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(88,24,NULL,3959104,0,'43c99ff7b5e6b971d047c30dbf14efb9','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','08113ae1f78020854555245c7eab83dc.mp3','Go, Gentle Breezes.mp3','2013-07-20 16:12:45','2013-07-20 16:12:45',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"05. Go, Gentle Breezes\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000586 0000037B 00005B6E 00005E41 0000B5D6 0000B3CB 00008331 00007F49 0000ECA1 0000B658\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"05. Go, Gentle Breezes\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000586 0000037B 00005B6E 00005E41 0000B5D6 0000B3CB 00008331 00007F49 0000ECA1 0000B658\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(89,23,NULL,2993619,0,'641f0455e6efc7230a4331012c59d983','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','e3f2a821b4f3fe450ef3bb54a5608909.mp3','The Arrival at Bath.mp3','2013-07-20 16:13:02','2013-07-20 16:13:02',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"06. The Arrival at Bath\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"000015BB 00001020 0001080F 0000BBF6 00006CC6 00003C9C 000081B0 00008182 0000D197 0000C91F\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"06. The Arrival at Bath\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"000015BB 00001020 0001080F 0000BBF6 00006CC6 00003C9C 000081B0 00008182 0000D197 0000C91F\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(90,21,NULL,3105418,0,'ac785351f46e550ed7188423f98957a7','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','f1eb4950f3ad6061f333b15f1403191f.mp3','Goody Groaner.mp3','2013-07-20 16:13:17','2013-07-20 16:13:17',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"08. Goody Groaner\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00001638 0000104D 00015950 0001246C 0000940F 00009DDB 000083B9 00008213 00010F87 0000FBA1\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"08. Goody Groaner\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00001638 0000104D 00015950 0001246C 0000940F 00009DDB 000083B9 00008213 00010F87 0000FBA1\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(91,19,NULL,4030158,0,'880c69cba1ab3927c8bd25fad56c12cc','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','14c5f684780159d4705834db5674b74d.mp3','A Canvassing Squire.mp3','2013-07-20 16:13:31','2013-07-20 16:13:31',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"15. A Canvassing Squire\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000858 000008EF 0000DD16 0000A46C 00016263 00016249 00008091 000080A4 000163B6 0000ED3E\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"15. A Canvassing Squire\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000858 000008EF 0000DD16 0000A46C 00016263 00016249 00008091 000080A4 000163B6 0000ED3E\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(92,18,NULL,3386525,0,'59b17ee1e72bd5b003b93d141700330f','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','39c8bdd61c353eef2c73c57337292b2a.mp3','O My Good Friends, Lord, What Do You Think_.mp3','2013-12-18 11:33:40','2013-07-20 16:13:42',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"09. O My Good Friends, Lord, What Do You Think?\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000480 000003D9 00008DB8 00003452 00010292 0000BF87 00007F4E 00007A2E 00004549 0000D40A\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"09. O My Good Friends, Lord, What Do You Think?\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000480 000003D9 00008DB8 00003452 00010292 0000BF87 00007F4E 00007A2E 00004549 0000D40A\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(93,17,NULL,5644524,0,'5c59cfe3f166a75781742ee992afe2b3','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','96419082fa0ee948909081ee9ee26a19.mp3','Here Lies a Woman.mp3','2013-07-20 16:14:02','2013-07-20 16:14:02',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"07. Here Lies a Woman\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000454 0000034C 0000628F 00003893 0001B5A7 00014C24 00007EC8 00006B80 0000F20A 00014C24\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"07. Here Lies a Woman\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000454 0000034C 0000628F 00003893 0001B5A7 00014C24 00007EC8 00006B80 0000F20A 00014C24\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(94,16,NULL,5386437,0,'8ec2ddce01447ff1ee49fc7e8df2c7ae','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','0f15f441ae0a57b61ddcfbe31a6922c0.mp3','As T\'other Day Susan.mp3','2013-07-20 16:14:12','2013-07-20 16:14:12',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"11. As T\'other Day Susan\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"000006A0 000004ED 00009860 00005AED 0000DD53 0001A82F 00008023 00007F52 00002300 0001A7FA\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"11. As T\'other Day Susan\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"000006A0 000004ED 00009860 00005AED 0000DD53 0001A82F 00008023 00007F52 00002300 0001A7FA\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(96,14,NULL,3611167,0,'53f91f52ae11e258b31356ba6f09966f','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','cb51ff5af3f163c85a74afbd1d9cddcd.mp3','Drinking Is An English Diversion.mp3','2013-07-20 16:14:32','2013-07-20 16:14:32',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"01. Drinking Is An English Diversion\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000833 000006A5 00007B35 00004D04 0000EB4E 00004D24 00007FC0 00007F81 0000EA2F 00007B5E\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"01. Drinking Is An English Diversion\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000833 000006A5 00007B35 00004D04 0000EB4E 00004D24 00007FC0 00007F81 0000EA2F 00007B5E\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(97,13,NULL,2387584,0,'f23fcda2fd28367cfda956e5930f0f38','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','1c6154d4ba29b007199ceefbce263e71.mp3','I Cannot Sing This Catch.mp3','2013-07-20 16:14:44','2013-07-20 16:14:44',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"18. I Cannot Sing This Catch\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"0000080E 000007AA 0000EAF7 0000D7CA 0000265E 00002643 000081C8 000081F0 00002629 00002643\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"18. I Cannot Sing This Catch\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"0000080E 000007AA 0000EAF7 0000D7CA 0000265E 00002643 000081C8 000081F0 00002629 00002643\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(98,12,NULL,4991472,0,'233c5d6da8afab01e6dce09298e4980e','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','17f35f9425c560540c217a075a6c9a69.mp3','Mr. Speaker, Tho\' \'tis Late.mp3','2013-07-20 16:14:54','2013-07-20 16:14:54',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"10. Mr. Speaker, Tho\' \'tis Late\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"0000165C 000010F9 0001554F 0001422F 00019082 00019082 000082CB 000082F9 00016D68 00016D34\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"10. Mr. Speaker, Tho\' \'tis Late\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"0000165C 000010F9 0001554F 0001422F 00019082 00019082 000082CB 000082F9 00016D68 00016D34\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(99,11,NULL,3708351,0,'9c173426c773d91ecbe12c632e1e7e1e','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','64d7db2f8c3b94686f9411744a0b1d07.mp3','What Shall He Have That Kill\'d The Deer_.mp3','2013-07-20 16:15:08','2013-07-20 16:15:08',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"14. What Shall He Have That Kill\'d The Deer?\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000B6F 0000098F 0000BC65 000094CC 00012F78 00012FC6 000080A7 000080F9 00012EF5 00012FAC\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"14. What Shall He Have That Kill\'d The Deer?\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000B6F 0000098F 0000BC65 000094CC 00012F78 00012FC6 000080A7 000080F9 00012EF5 00012FAC\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(100,10,NULL,6281914,0,'efe27d6261b2154bcc591cedd1dbcf68','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','9b97216d221be6213ef477050763dcab.mp3','Discord, Dire Sister.mp3','2013-07-20 16:15:22','2013-07-20 16:15:22',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"02. Discord, Dire Sister\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000955 00000809 0000EB7B 0000DFE8 0000566D 0000566D 000081AD 000081CC 000055EB 00006482\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"02. Discord, Dire Sister\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000955 00000809 0000EB7B 0000DFE8 0000566D 0000566D 000081AD 000081CC 000055EB 00006482\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(101,9,NULL,9762466,0,'ee741402ba9dcbd0bf48a0d6587ab8ef','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','4786705fdbdcdb7e73dec1c21ee78bf5.mp3','Sleep, Poor Youth.mp3','2013-07-20 16:15:35','2013-07-20 16:15:35',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"17. Sleep, Poor Youth\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000504 0000052D 000095D3 0000A192 0001F672 0002295E 00007FE6 00008165 00023A82 00021805\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"17. Sleep, Poor Youth\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000504 0000052D 000095D3 0000A192 0001F672 0002295E 00007FE6 00008165 00023A82 00021805\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(102,7,NULL,4815934,0,'7c21703ed8ce13bb1f206106761a44b3','audio/mpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','12cd0705c9ba432f6d69060411005780.mp3','Hark The Hollow Woods Resounding.mp3','2013-07-20 16:15:47','2013-07-20 16:15:47',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"03. Hark The Hollow Woods Resounding\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000871 0000092E 0000861F 0000CBAD 00013F97 00013F97 00007E8D 00007E88 00013FB1 00007192\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"03. Hark The Hollow Woods Resounding\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000871 0000092E 0000861F 0000CBAD 00013F97 00013F97 00007E8D 00007E88 00013FB1 00007192\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}'),(106,33,1,171491,1,'a0ce2b4a7b09f510cbb4dc601b4e2cf6','image/jpeg','JPEG image data, JFIF standard 1.01','f0579dced95b690f7e608338ae0ee35f.jpg','Berg - Sirs! Sirs! The Serpentine River is Coming Upstairs.jpg','2013-07-24 18:12:52','2013-07-24 18:08:23',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":381,\"compression_ratio\":0.187544838145},\"iptc\":{\"IPTCEnvelope\":{\"CodedCharacterSet\":[\"\\u001b%G\"]},\"IPTCApplication\":{\"ApplicationRecordVersion\":[\"\\u0000\\u0002\"],\"TimeCreated\":[\"155035\"],\"By-line\":[\"Picasa\"],\"DateCreated\":[\"20130723\"],\"DigitalCreationDate\":[\"20130723\"],\"DigitalCreationTime\":[\"155035\"]}},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"f0579dced95b690f7e608338ae0ee35f.jpg\",\"FileDateTime\":1374700103,\"FileSize\":171491,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"381\\\"\",\"Height\":381,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":\"QuickTime 7.7.1\",\"DateTime\":\"2013:07:24 22:01:58\",\"Artist\":\"Picasa\",\"Exif_IFD_Pointer\":198},\"EXIF\":{\"ExposureTime\":0.00833333333333,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":125,\"ExifVersion\":220,\"DateTimeOriginal\":\"2013:07:23 15:50:35\",\"DateTimeDigitized\":\"2013:07:23 15:50:35\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":6.90904255319,\"ApertureValue\":2.97085357391,\"BrightnessValue\":5.15005035247,\"MeteringMode\":5,\"Flash\":16,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":381,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"ImageUniqueID\":\"ca2193591f623dce621c691f956fcda1\"}}}}'),(107,33,NULL,25770,1,'853a73e72bba193020a90c342b08b053','application/pdf','PDF document, version 1.4','b8193a650fefd83ef4b96773160735a4.pdf','Berg - Sirs! Sirs! The Serpentine River is Coming Upstairs - Full Score.pdf','2013-07-24 18:12:52','2013-07-24 18:12:49',1,'{\"mime_type\":\"application\\/pdf\"}'),(108,34,NULL,47596,1,'c918065cdc106633ca8427a1807c709b','application/pdf','PDF document, version 1.4','6de2871baa8dc38c89f4306552fdeb3b.pdf','Arne - The Emperor Adrian, Dying, to his Soul.pdf','2013-12-13 11:26:25','2013-12-13 11:24:48',1,'{\"mime_type\":\"application\\/pdf\"}'),(109,35,NULL,54394,1,'9dd4ea4e67e20bb5c7347eb1be7add5d','application/pdf','PDF document, version 1.4','69318fba04ea57d1ba8011781761993c.pdf','Alcock - Hail, Ever-Pleasing Solitude!.pdf','2013-12-13 11:36:30','2013-12-13 11:36:29',1,'{\"mime_type\":\"application\\/pdf\"}'),(110,36,NULL,40574,1,'037ea004ff94bad8a8834bef1bc95018','application/pdf','PDF document, version 1.4','580191c474d1070cff447b3d710ca994.pdf','Callcott - Aldiborontiphoscophornio.pdf','2013-12-18 13:33:14','2013-12-13 11:45:28',1,'{\"mime_type\":\"application\\/pdf\"}'),(111,18,NULL,29450,1,'acba128d56ee567ca7d4edd2d48dca58','application/pdf','PDF document, version 1.4','87a64a122b201d9a0e5078ae4fe214ef.pdf','Anon. - O, My Good Friends, Lord, What Do You Think.pdf','2013-12-18 11:33:40','2013-12-18 11:33:38',1,'{\"mime_type\":\"application\\/pdf\"}'),(112,36,NULL,233020,1,'137f43e9a680e986dc0536a2fc80aef3','image/jpeg','JPEG image data, JFIF standard 1.01','832c3855af9d396aad8e5ab0fab00511.jpg','Calcott - Aldiborontiphoscophornio 1.jpg','2013-12-18 13:33:14','2013-12-18 13:33:13',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.1623606466},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"832c3855af9d396aad8e5ab0fab00511.jpg\",\"FileDateTime\":1387384393,\"FileSize\":233020,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2013:11:27 14:24:03\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.025,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":100,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:11:27 14:24:03\",\"DateTimeDigitized\":\"2013:11:27 14:24:03\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":5.32216571941,\"ApertureValue\":2.97085357391,\"BrightnessValue\":3.94285083848,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":581,\"SubSecTimeDigitized\":581,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(113,36,NULL,229790,1,'60eea4f342147eec42134024b99e1420','image/jpeg','JPEG image data, JFIF standard 1.01','47d7bc3acd3e387d7648be54eabb7735.jpg','Calcott - Aldiborontiphoscophornio 2.jpg','2013-12-18 13:33:14','2013-12-18 13:33:14',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.160110089186},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"47d7bc3acd3e387d7648be54eabb7735.jpg\",\"FileDateTime\":1387384393,\"FileSize\":229790,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2013:11:27 14:24:12\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0333333333333,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":80,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:11:27 14:24:12\",\"DateTimeDigitized\":\"2013:11:27 14:24:12\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":4.90760636012,\"ApertureValue\":2.97085357391,\"BrightnessValue\":3.92628992629,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":648,\"SubSecTimeDigitized\":648,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(114,37,NULL,97270,1,'b1fb5eea8067ace6ef002ebf56b3220d','application/pdf','PDF document, version 1.4','a50e29122255f9f78390ae1937999816.pdf','Goodban - Charter Glee.pdf','2013-12-18 13:42:46','2013-12-18 13:42:30',1,'{\"mime_type\":\"application\\/pdf\"}'),(123,38,NULL,240349,1,'75d7cf7b681e38fbd64439d89d943598','image/jpeg','JPEG image data, JFIF standard 1.01','72d794de3e53d4e34dcb56c133bd83b1.jpg','p.74 - Webbe - On His Deathbed Poor Lubin Lies - 01.jpg','2014-02-17 14:58:57','2014-02-17 14:58:57',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.167467251951},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"72d794de3e53d4e34dcb56c133bd83b1.jpg\",\"FileDateTime\":1392659936,\"FileSize\":240349,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":\"iPhoto 9.4.3\",\"DateTime\":\"2013:07:25 14:30:23\",\"Exif_IFD_Pointer\":188},\"EXIF\":{\"ExposureTime\":0.00833333333333,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":125,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:07:25 14:30:23\",\"DateTimeDigitized\":\"2013:07:25 14:30:23\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":6.90904255319,\"ApertureValue\":2.97085357391,\"BrightnessValue\":5.12520729685,\"MeteringMode\":5,\"Flash\":16,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0}}}}'),(124,38,NULL,258562,1,'8edbc204d868c20fe913accbcb70fb71','image/jpeg','JPEG image data, JFIF standard 1.01','a0d9cca1f9092745d8faf734082d30e5.jpg','p.75 - Webbe - On His Deathbed Poor Lubin Lies - 02.jpg','2014-02-17 14:58:57','2014-02-17 14:58:57',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.180157469342},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"a0d9cca1f9092745d8faf734082d30e5.jpg\",\"FileDateTime\":1392659936,\"FileSize\":258562,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":\"iPhoto 9.4.3\",\"DateTime\":\"2013:07:25 14:30:29\",\"Exif_IFD_Pointer\":188},\"EXIF\":{\"ExposureTime\":0.00833333333333,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":125,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:07:25 14:30:29\",\"DateTimeDigitized\":\"2013:07:25 14:30:29\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":6.90904255319,\"ApertureValue\":2.97085357391,\"BrightnessValue\":4.94011032309,\"MeteringMode\":5,\"Flash\":16,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0}}}}'),(125,38,NULL,38122,1,'a380c2e0f77f929999c645da831d2fcf','image/jpeg','PDF document, version 1.4','b02955212e541e7a5c9ff84b06303f74.pdf','Webbe - On His Deathbed Poor Lubin Lies.pdf','2014-02-17 14:58:58','2014-02-17 14:58:57',1,'{\"mime_type\":\"application\\/pdf\"}'),(126,39,NULL,321416,1,'5dc308e7c7293bc7a8b4caa243e4c6b4','image/jpeg','JPEG image data, JFIF standard 1.01','8b286b2fdacd531cf4c36fef44b4686b.jpg','Baildon - When is it best.jpg','2014-02-17 15:00:21','2014-02-17 15:00:20',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":753,\"compression_ratio\":0.177853032315},\"iptc\":{\"IPTCEnvelope\":{\"CodedCharacterSet\":[\"\\u001b%G\"]},\"IPTCApplication\":{\"ApplicationRecordVersion\":[\"\\u0000\\u0002\"],\"TimeCreated\":[\"164426\"],\"By-line\":[\"Picasa\"],\"DateCreated\":[\"20131210\"],\"DigitalCreationDate\":[\"20131210\"],\"DigitalCreationTime\":[\"164426\"]}},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"8b286b2fdacd531cf4c36fef44b4686b.jpg\",\"FileDateTime\":1392660020,\"FileSize\":321416,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"753\\\"\",\"Height\":753,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2014:02:17 17:36:08\",\"Artist\":\"Picasa\",\"Exif_IFD_Pointer\":188},\"EXIF\":{\"ExposureTime\":0.0166666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":80,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:12:10 16:44:26\",\"DateTimeDigitized\":\"2013:12:10 16:44:26\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":5.90904255319,\"ApertureValue\":2.97085357391,\"BrightnessValue\":4.76440329218,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":569,\"SubSecTimeDigitized\":569,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":753,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"ImageUniqueID\":\"e16d63d5dc9c24c28b8fca2f9a338d7a\",\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(127,39,NULL,29302,1,'78010582c2767aa905aab309348bdfc4','image/jpeg','PDF document, version 1.4','c64203f565f060c48b2dee3ed83f12fe.pdf','Baildon - When is it Best.pdf','2014-02-17 15:00:22','2014-02-17 15:00:21',1,'{\"mime_type\":\"application\\/pdf\"}'),(128,40,NULL,244705,1,'cebf8252577860e2776afc08da184a26','image/jpeg','JPEG image data, JFIF standard 1.01','6f4639d2c16a0f52d6468734baac0a6b.jpg','p.56 - Baildon - Epitaph on a Blacksmith 1.jpg','2014-02-17 15:01:12','2014-02-17 15:01:12',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.170502369008},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"6f4639d2c16a0f52d6468734baac0a6b.jpg\",\"FileDateTime\":1392660071,\"FileSize\":244705,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6.1,\"DateTime\":\"2013:09:13 16:04:44\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0166666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":100,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:09:13 16:04:44\",\"DateTimeDigitized\":\"2013:09:13 16:04:44\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":5.90904255319,\"ApertureValue\":2.97085357391,\"BrightnessValue\":4.3954954955,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0}}}}'),(129,40,NULL,247960,1,'7e6cf77d5cbaffd9b35b385e68c60e3c','image/jpeg','JPEG image data, JFIF standard 1.01','a353faeeb6e047e0fefc75039f5ea1a3.jpg','p.57 - Baildon - Epitaph on a Blacksmith 2.jpg','2014-02-17 15:01:12','2014-02-17 15:01:12',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.172770345596},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"a353faeeb6e047e0fefc75039f5ea1a3.jpg\",\"FileDateTime\":1392660071,\"FileSize\":247960,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6.1,\"DateTime\":\"2013:09:13 16:04:49\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.025,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":80,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:09:13 16:04:49\",\"DateTimeDigitized\":\"2013:09:13 16:04:49\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":5.32216571941,\"ApertureValue\":2.97085357391,\"BrightnessValue\":4.24709380914,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0}}}}'),(130,40,NULL,28700,1,'87ea7ea267cf09bebf71e8d886cbc02b','image/jpeg','PDF document, version 1.4','0bb1d922358cb931f0e991440980a56a.pdf','Baildon - Epitaph on a Blacksmith.pdf','2014-02-17 15:01:13','2014-02-17 15:01:12',1,'{\"mime_type\":\"application\\/pdf\"}'),(131,41,NULL,229311,1,'0388291ab8fb9629a4ee8ed544c5e549','image/jpeg','JPEG image data, JFIF standard 1.01','c817beca5e2b50f48a39cbab15b11834.jpg','Horsley - Lo, On Yon Long Resounding Shore 1.jpg','2014-02-17 16:19:39','2014-02-17 16:19:39',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.159776337793},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"c817beca5e2b50f48a39cbab15b11834.jpg\",\"FileDateTime\":1392664779,\"FileSize\":229311,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2013:12:10 15:36:03\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0666666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":200,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:12:10 15:36:03\",\"DateTimeDigitized\":\"2013:12:10 15:36:03\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":3.9112,\"ApertureValue\":2.97085357391,\"BrightnessValue\":1.51082352941,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":557,\"SubSecTimeDigitized\":557,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(132,41,NULL,243809,1,'327ee10b05af49b3780e2f8297bcab70','image/jpeg','JPEG image data, JFIF standard 1.01','cb08a20301d146f7d03137287fdc6200.jpg','Horsley - Lo, On Yon Long Resounding Shore 2.jpg','2014-02-17 16:19:39','2014-02-17 16:19:39',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.169878065775},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"cb08a20301d146f7d03137287fdc6200.jpg\",\"FileDateTime\":1392664779,\"FileSize\":243809,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2013:12:10 15:36:18\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0666666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":320,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:12:10 15:36:18\",\"DateTimeDigitized\":\"2013:12:10 15:36:18\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":3.9112,\"ApertureValue\":2.97085357391,\"BrightnessValue\":0.781002638522,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":248,\"SubSecTimeDigitized\":248,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(133,41,NULL,250201,1,'84b7f5835ab8acf565a268486a213add','image/jpeg','JPEG image data, JFIF standard 1.01','7f663819caeff4e697860d85cc5814b3.jpg','Horsley - Lo, On Yon Long Resounding Shore 3.jpg','2014-02-17 16:19:40','2014-02-17 16:19:39',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.174331800446},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"7f663819caeff4e697860d85cc5814b3.jpg\",\"FileDateTime\":1392664779,\"FileSize\":250201,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2013:12:10 15:36:23\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0666666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":200,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:12:10 15:36:23\",\"DateTimeDigitized\":\"2013:12:10 15:36:23\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":3.9112,\"ApertureValue\":2.97085357391,\"BrightnessValue\":1.4504349402,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":626,\"SubSecTimeDigitized\":626,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(134,41,NULL,241930,1,'7e29da70bfedb85bcdf5b31da7fa8624','image/jpeg','JPEG image data, JFIF standard 1.01','b9d6231861b075391d701cc6a918211c.jpg','Horsley - Lo, On Yon Long Resounding Shore 4.jpg','2014-02-17 16:19:40','2014-02-17 16:19:40',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.16856884058},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"b9d6231861b075391d701cc6a918211c.jpg\",\"FileDateTime\":1392664779,\"FileSize\":241930,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2013:12:10 15:36:34\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0666666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":250,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:12:10 15:36:34\",\"DateTimeDigitized\":\"2013:12:10 15:36:34\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":3.9112,\"ApertureValue\":2.97085357391,\"BrightnessValue\":0.870175783168,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":903,\"SubSecTimeDigitized\":903,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(135,41,NULL,239801,1,'f85632058a2a136cb165c08b4149e369','image/jpeg','JPEG image data, JFIF standard 1.01','9f65fca79e139b18351b2e70655f2a5a.jpg','Horsley - Lo, On Yon Long Resounding Shore 5.jpg','2014-02-17 16:19:40','2014-02-17 16:19:40',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.167085423634},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"9f65fca79e139b18351b2e70655f2a5a.jpg\",\"FileDateTime\":1392664779,\"FileSize\":239801,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2013:12:10 15:37:07\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0666666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":200,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:12:10 15:37:07\",\"DateTimeDigitized\":\"2013:12:10 15:37:07\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":3.9112,\"ApertureValue\":2.97085357391,\"BrightnessValue\":1.36338946225,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":159,\"SubSecTimeDigitized\":159,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(136,41,NULL,238592,1,'d01f2fa8bf5d2aa728617c25bbaab32e','image/jpeg','JPEG image data, JFIF standard 1.01','51dae45791262b8cbb79b643130134f5.jpg','Horsley - Lo, On Yon Long Resounding Shore 6.jpg','2014-02-17 16:19:40','2014-02-17 16:19:40',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.16624303233},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"51dae45791262b8cbb79b643130134f5.jpg\",\"FileDateTime\":1392664779,\"FileSize\":238592,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2013:12:10 15:37:23\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0666666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":320,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:12:10 15:37:23\",\"DateTimeDigitized\":\"2013:12:10 15:37:23\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":3.9112,\"ApertureValue\":2.97085357391,\"BrightnessValue\":0.775383786695,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":175,\"SubSecTimeDigitized\":175,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(137,41,NULL,225341,1,'56fb03fa00dd883d6078b095ea85e1fb','image/jpeg','JPEG image data, JFIF standard 1.01','94f007db31debb3fc404382bd6dfb1d9.jpg','Horsley - Lo, On Yon Long Resounding Shore 7.jpg','2014-02-17 16:19:41','2014-02-17 16:19:40',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.157010172798},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"94f007db31debb3fc404382bd6dfb1d9.jpg\",\"FileDateTime\":1392664779,\"FileSize\":225341,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2013:12:10 15:37:28\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0666666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":200,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:12:10 15:37:28\",\"DateTimeDigitized\":\"2013:12:10 15:37:28\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":3.9112,\"ApertureValue\":2.97085357391,\"BrightnessValue\":1.33619533137,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":897,\"SubSecTimeDigitized\":897,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(138,41,NULL,224879,1,'adcef981d6f7cc0017367e743ea9ff79','image/jpeg','JPEG image data, JFIF standard 1.01','06d98c0e3a9cf65c6d09c4c79c432295.jpg','Horsley - Lo, On Yon Long Resounding Shore 8.jpg','2014-02-17 16:19:41','2014-02-17 16:19:41',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.156688266444},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"06d98c0e3a9cf65c6d09c4c79c432295.jpg\",\"FileDateTime\":1392664779,\"FileSize\":224879,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2013:12:10 15:37:41\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0666666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":250,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:12:10 15:37:41\",\"DateTimeDigitized\":\"2013:12:10 15:37:41\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":3.9112,\"ApertureValue\":2.97085357391,\"BrightnessValue\":0.833245103229,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":965,\"SubSecTimeDigitized\":965,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(139,41,NULL,247981,1,'aba0e1fff30fe3ce164b6f099357456a','image/jpeg','JPEG image data, JFIF standard 1.01','6ba2c4a783651aedebf9079c287b5b49.jpg','Horsley - Lo, On Yon Long Resounding Shore 9.jpg','2014-02-17 16:19:41','2014-02-17 16:19:41',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.172784977703},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"6ba2c4a783651aedebf9079c287b5b49.jpg\",\"FileDateTime\":1392664779,\"FileSize\":247981,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2013:12:10 15:37:48\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0666666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":200,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:12:10 15:37:48\",\"DateTimeDigitized\":\"2013:12:10 15:37:48\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":3.9112,\"ApertureValue\":2.97085357391,\"BrightnessValue\":1.34136326307,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":504,\"SubSecTimeDigitized\":504,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(140,41,NULL,224628,1,'0cd557d6635de8d3c195942e3456932b','image/jpeg','JPEG image data, JFIF standard 1.01','0b5af7816e57add2134585b729bec17f.jpg','Horsley - Lo, On Yon Long Resounding Shore 10.jpg','2014-02-17 16:19:42','2014-02-17 16:19:41',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.156513377926},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"0b5af7816e57add2134585b729bec17f.jpg\",\"FileDateTime\":1392664779,\"FileSize\":224628,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2013:12:10 15:38:01\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0666666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":320,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:12:10 15:38:01\",\"DateTimeDigitized\":\"2013:12:10 15:38:01\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":3.9112,\"ApertureValue\":2.97085357391,\"BrightnessValue\":0.831667333067,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":27,\"SubSecTimeDigitized\":27,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(141,41,NULL,143790,1,'f79691035ab88202535b17cf03e3c712','image/jpeg','PDF document, version 1.4','03d5b8c580dd194143657458c7ca5544.pdf','Horsley - Lo! On Yon Resounding Shore.pdf','2014-02-17 16:19:43','2014-02-17 16:19:42',1,'{\"mime_type\":\"application\\/pdf\"}'),(142,42,NULL,211544,1,'c28138fd1b5976f7d84017b1043c6320','image/jpeg','JPEG image data, JFIF standard 1.01','99aafb725484ee7a5fcd2a2bd5b96857.jpg','p.148 - No Joys on this Globe can with Hunting compare 1.jpg','2014-02-20 07:58:02','2014-02-20 07:58:02',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.147396878484},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"99aafb725484ee7a5fcd2a2bd5b96857.jpg\",\"FileDateTime\":1392893881,\"FileSize\":211544,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6.1,\"DateTime\":\"2013:09:11 16:00:44\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0166666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":100,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:09:11 16:00:44\",\"DateTimeDigitized\":\"2013:09:11 16:00:44\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":5.90904255319,\"ApertureValue\":2.97085357391,\"BrightnessValue\":4.56768249468,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0}}}}'),(143,42,NULL,225421,1,'e831dbd18c536f44f317031a062b9366','image/jpeg','JPEG image data, JFIF standard 1.01','1d7be35a367d93568b2b04b42aeddb8b.jpg','p.149 - No Joys on this Globe can with Hunting compare 2.jpg','2014-02-20 07:58:02','2014-02-20 07:58:02',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.157065914158},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"1d7be35a367d93568b2b04b42aeddb8b.jpg\",\"FileDateTime\":1392893881,\"FileSize\":225421,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6.1,\"DateTime\":\"2013:09:11 16:00:48\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0166666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":80,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:09:11 16:00:48\",\"DateTimeDigitized\":\"2013:09:11 16:00:48\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":5.90904255319,\"ApertureValue\":2.97085357391,\"BrightnessValue\":5.03239929947,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0}}}}'),(144,42,NULL,203537,1,'6f3fa390e8522f91ede58058e0d7fd42','image/jpeg','JPEG image data, JFIF standard 1.01','dd011c4fc7fe722e33e5a2af2dd96001.jpg','p.150 - No Joys on this Globe can with Hunting compare 3.jpg','2014-02-20 07:58:03','2014-02-20 07:58:02',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.141817865106},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"dd011c4fc7fe722e33e5a2af2dd96001.jpg\",\"FileDateTime\":1392893881,\"FileSize\":203537,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":\"QuickTime 7.7.1\",\"DateTime\":\"2013:09:12 09:33:47\",\"Exif_IFD_Pointer\":190},\"EXIF\":{\"ExposureTime\":0.0166666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":100,\"ExifVersion\":220,\"DateTimeOriginal\":\"2013:09:11 16:01:02\",\"DateTimeDigitized\":\"2013:09:11 16:01:02\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":5.90904255319,\"ApertureValue\":2.97085357391,\"BrightnessValue\":4.48379204893,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0}}}}'),(145,42,NULL,242712,1,'c1c2d63458d576e8b19db7242a9d86f9','image/jpeg','JPEG image data, JFIF standard 1.01','2eaa2523fa99863078e5787b783145e0.jpg','p.151 - No Joys on this Globe can with Hunting compare 4.jpg','2014-02-20 07:58:03','2014-02-20 07:58:03',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.169113712375},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"2eaa2523fa99863078e5787b783145e0.jpg\",\"FileDateTime\":1392893881,\"FileSize\":242712,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":\"QuickTime 7.7.1\",\"DateTime\":\"2013:09:12 09:33:49\",\"Exif_IFD_Pointer\":190},\"EXIF\":{\"ExposureTime\":0.00833333333333,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":125,\"ExifVersion\":220,\"DateTimeOriginal\":\"2013:09:11 16:01:09\",\"DateTimeDigitized\":\"2013:09:11 16:01:09\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":6.90904255319,\"ApertureValue\":2.97085357391,\"BrightnessValue\":5.06158455393,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0}}}}'),(146,42,NULL,215140,1,'60e932ca5684e40891e27b10e713e26f','image/jpeg','JPEG image data, JFIF standard 1.01','1ffad4afb3bc4f7ae5303e5c5a76bc44.jpg','p.152 - No Joys on this Globe can with Hunting compare 5.jpg','2014-02-20 07:58:03','2014-02-20 07:58:03',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.14990245262},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"1ffad4afb3bc4f7ae5303e5c5a76bc44.jpg\",\"FileDateTime\":1392893881,\"FileSize\":215140,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":\"QuickTime 7.7.1\",\"DateTime\":\"2013:09:12 09:33:48\",\"Exif_IFD_Pointer\":190},\"EXIF\":{\"ExposureTime\":0.0166666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":100,\"ExifVersion\":220,\"DateTimeOriginal\":\"2013:09:11 16:01:20\",\"DateTimeDigitized\":\"2013:09:11 16:01:20\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":5.90904255319,\"ApertureValue\":2.97085357391,\"BrightnessValue\":4.42119944212,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0}}}}'),(147,42,NULL,217023,1,'7b8bc0636764719a5da52f90c195beaa','image/jpeg','JPEG image data, JFIF standard 1.01','3849cad8b405d99581e8ba25996ccbf2.jpg','p.153 - No Joys on this Globe can with Hunting compare 6.jpg','2014-02-20 07:58:04','2014-02-20 07:58:03',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.151214464883},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"3849cad8b405d99581e8ba25996ccbf2.jpg\",\"FileDateTime\":1392893881,\"FileSize\":217023,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2013:11:12 16:17:59\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0666666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":125,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:11:12 16:17:59\",\"DateTimeDigitized\":\"2013:11:12 16:17:59\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":3.9112,\"ApertureValue\":2.97085357391,\"BrightnessValue\":1.98007272727,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":197,\"SubSecTimeDigitized\":197,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(148,42,NULL,64561,1,'45d421849dbbf7f69df8582c6a9de377','image/jpeg','PDF document, version 1.4','7f65d9e393a4030a2641ce37c271f500.pdf','Anon. - No Joys on this Globe can with Hunting Compare.pdf','2014-02-20 07:58:05','2014-02-20 07:58:04',1,'{\"mime_type\":\"application\\/pdf\"}'),(149,27,NULL,221583,1,'acd61fa0e1027e6207dce6d3b9582fbe','image/jpeg','JPEG image data, JFIF standard 1.01','b2d801523d89c7ab0529e9acad2a7300.jpg','Stevens - O Mistress Mine 1.jpg','2014-02-20 08:11:48','2014-02-20 08:02:47',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.154391722408},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"b2d801523d89c7ab0529e9acad2a7300.jpg\",\"FileDateTime\":1392894167,\"FileSize\":221583,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2013:12:10 15:45:59\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0666666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":250,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:12:10 15:45:59\",\"DateTimeDigitized\":\"2013:12:10 15:45:59\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":3.9112,\"ApertureValue\":2.97085357391,\"BrightnessValue\":1.0194351655,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":501,\"SubSecTimeDigitized\":501,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(150,27,NULL,246937,1,'d200a412d795acd1db118574b689c5b9','image/jpeg','JPEG image data, JFIF standard 1.01','9ad0385d314a791f94720095e6b17b26.jpg','Stevens - O Mistress Mine 2.jpg','2014-02-20 08:11:48','2014-02-20 08:02:48',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.172057552954},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"9ad0385d314a791f94720095e6b17b26.jpg\",\"FileDateTime\":1392894167,\"FileSize\":246937,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2013:12:10 15:46:12\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0666666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":320,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:12:10 15:46:12\",\"DateTimeDigitized\":\"2013:12:10 15:46:12\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":3.9112,\"ApertureValue\":2.97085357391,\"BrightnessValue\":0.680356574339,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":585,\"SubSecTimeDigitized\":585,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(151,27,NULL,262009,1,'8d1229c51122a18e4b1fc762a0e31978','image/jpeg','JPEG image data, JFIF standard 1.01','988faab9125ec5037fd38259c94132d6.jpg','Stevens - O Mistress Mine 3.jpg','2014-02-20 08:11:48','2014-02-20 08:02:48',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.182559225195},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"988faab9125ec5037fd38259c94132d6.jpg\",\"FileDateTime\":1392894167,\"FileSize\":262009,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2013:12:10 15:46:18\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0666666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":250,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:12:10 15:46:18\",\"DateTimeDigitized\":\"2013:12:10 15:46:18\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":3.9112,\"ApertureValue\":2.97085357391,\"BrightnessValue\":0.835637963545,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":99,\"SubSecTimeDigitized\":99,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(152,27,NULL,225542,1,'a6b0a44cb41a51382d91fd9d38b20f3b','image/jpeg','JPEG image data, JFIF standard 1.01','fc5f57467f95e4df6554bf57ca6ed559.jpg','Stevens - O Mistress Mine 4.jpg','2014-02-20 08:11:48','2014-02-20 08:02:48',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.157150222965},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"fc5f57467f95e4df6554bf57ca6ed559.jpg\",\"FileDateTime\":1392894167,\"FileSize\":225542,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2013:12:10 15:46:31\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0666666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":320,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:12:10 15:46:31\",\"DateTimeDigitized\":\"2013:12:10 15:46:31\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":3.9112,\"ApertureValue\":2.97085357391,\"BrightnessValue\":0.678006872852,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":89,\"SubSecTimeDigitized\":89,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(153,27,NULL,230038,1,'dca31f5c8743f4b56d2551c3f535ba14','image/jpeg','JPEG image data, JFIF standard 1.01','547594ad12d0f5e00f78f8ac7bca7327.jpg','Stevens - O Mistress Mine 5.jpg','2014-02-20 08:11:48','2014-02-20 08:02:48',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.160282887402},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"547594ad12d0f5e00f78f8ac7bca7327.jpg\",\"FileDateTime\":1392894167,\"FileSize\":230038,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":7,\"DateTime\":\"2013:12:10 15:46:37\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.0666666666667,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":320,\"ExifVersion\":221,\"DateTimeOriginal\":\"2013:12:10 15:46:37\",\"DateTimeDigitized\":\"2013:12:10 15:46:37\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":3.9112,\"ApertureValue\":2.97085357391,\"BrightnessValue\":0.778768577495,\"MeteringMode\":5,\"Flash\":24,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"SubSecTimeOriginal\":108,\"SubSecTimeDigitized\":108,\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0,\"UndefinedTag:0xA432\":[\"77\\/20\",\"77\\/20\",\"14\\/5\",\"14\\/5\"],\"UndefinedTag:0xA433\":\"Apple\",\"UndefinedTag:0xA434\":\"iPhone 4 back camera 3.85mm f\\/2.8\"}}}}'),(154,27,NULL,65036,1,'3a7f2d3c36911d138bd9ab023e4e25b2','image/jpeg','PDF document, version 1.4','365a5816558670c9ec83eda40b72b0b1.pdf','Stevens - O Mistress Mine.pdf','2014-02-20 08:11:48','2014-02-20 08:02:49',1,'{\"mime_type\":\"application\\/pdf\"}'),(156,15,NULL,246100,1,'399e4719a887d397e65708cacf20081f','image/jpeg','JPEG image data, JFIF standard 1.01','53a2f27a5627c5742b439bf3004b79a0.jpg','Anon - A Drunken Old Sot.jpg','2014-02-20 13:14:06','2014-02-20 13:14:05',1,'{\"mime_type\":\"image\\/jpeg\",\"video\":{\"dataformat\":\"jpg\",\"lossless\":false,\"bits_per_sample\":24,\"pixel_aspect_ratio\":1,\"resolution_x\":800,\"resolution_y\":598,\"compression_ratio\":0.171474358974},\"jpg\":{\"exif\":{\"FILE\":{\"FileName\":\"53a2f27a5627c5742b439bf3004b79a0.jpg\",\"FileDateTime\":1392912845,\"FileSize\":246100,\"FileType\":2,\"MimeType\":\"image\\/jpeg\",\"SectionsFound\":\"ANY_TAG, IFD0, EXIF\"},\"COMPUTED\":{\"html\":\"width=\\\"800\\\" height=\\\"598\\\"\",\"Height\":598,\"Width\":800,\"IsColor\":1,\"ByteOrderMotorola\":1,\"ApertureFNumber\":\"f\\/2.8\"},\"IFD0\":{\"Make\":\"Apple\",\"Model\":\"iPhone 4\",\"Orientation\":1,\"XResolution\":72,\"YResolution\":72,\"ResolutionUnit\":2,\"Software\":6,\"DateTime\":\"2012:12:17 12:16:37\",\"Exif_IFD_Pointer\":180},\"EXIF\":{\"ExposureTime\":0.04,\"FNumber\":2.8,\"ExposureProgram\":2,\"ISOSpeedRatings\":80,\"ExifVersion\":221,\"DateTimeOriginal\":\"2012:12:17 12:16:37\",\"DateTimeDigitized\":\"2012:12:17 12:16:37\",\"ComponentsConfiguration\":\"\\u0001\\u0002\\u0003\\u0000\",\"ShutterSpeedValue\":4.64457252642,\"ApertureValue\":2.97085357391,\"BrightnessValue\":3.63832434674,\"MeteringMode\":5,\"Flash\":16,\"FocalLength\":3.85,\"SubjectLocation\":[1295,967,699,696],\"FlashPixVersion\":100,\"ColorSpace\":1,\"ExifImageWidth\":800,\"ExifImageLength\":598,\"SensingMethod\":2,\"ExposureMode\":0,\"WhiteBalance\":0,\"FocalLengthIn35mmFilm\":35,\"SceneCaptureType\":0}}}}'),(157,15,NULL,25603,1,'bf0bb4f3820345e096552dc008ce684a','image/jpeg','PDF document, version 1.4','a8f76e02cb17e436682ee0b084c7e315.pdf','Anon - A Drunken Old Sot.pdf','2014-02-20 13:14:07','2014-02-20 13:14:06',1,'{\"mime_type\":\"application\\/pdf\"}'),(158,15,NULL,2355185,0,'6915e7d6ac568b7c79a3eeec9e31b88b','image/jpeg','Audio file with ID3 version 22.0 tag, MP3 encoding','3888e27fec6fdf4e9d904d2c61f82e2a.mp3','21. A Drunken Old Sot.mp3','2014-02-20 13:14:08','2014-02-20 13:14:07',1,'{\"mime_type\":\"audio\\/mpeg\",\"audio\":{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615,\"streams\":[{\"dataformat\":\"mp3\",\"channels\":2,\"sample_rate\":44100,\"bitrate\":320000,\"channelmode\":\"stereo\",\"bitrate_mode\":\"cbr\",\"lossless\":false,\"encoder_options\":\"CBR320\",\"compression_ratio\":0.226757369615}]},\"comments\":{\"picture\":[{\"data\":null,\"image_mime\":\"image\\/png\"}],\"title\":[\"21. A Drunken Old Sot\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000ADA 00000975 0000A6DA 0000A85F 0000A42F 0000A463 00008035 000080F6 0000B8CB 0000A47D\"],\"encoded_by\":[\"iTunes 11.0.2\"]},\"comments_html\":{\"title\":[\"21. A Drunken Old Sot\"],\"artist\":[\"Cantuar\"],\"album\":[\"The Canterbury Catch Club\"],\"comment\":[\"00000ADA 00000975 0000A6DA 0000A85F 0000A42F 0000A463 00008035 000080F6 0000B8CB 0000A47D\"],\"encoded_by\":[\"iTunes 11.0.2\"]}}');
/*!40000 ALTER TABLE `omk_files` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_item_relations_item_relations`
--

DROP TABLE IF EXISTS `omk_item_relations_item_relations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_item_relations_item_relations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `subject_item_id` int(10) unsigned NOT NULL,
  `property_id` int(10) unsigned NOT NULL,
  `object_item_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_item_relations_item_relations`
--

LOCK TABLES `omk_item_relations_item_relations` WRITE;
/*!40000 ALTER TABLE `omk_item_relations_item_relations` DISABLE KEYS */;
/*!40000 ALTER TABLE `omk_item_relations_item_relations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_item_relations_properties`
--

DROP TABLE IF EXISTS `omk_item_relations_properties`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_item_relations_properties` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `vocabulary_id` int(10) unsigned NOT NULL,
  `local_part` varchar(100) NOT NULL,
  `label` varchar(100) DEFAULT NULL,
  `description` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_item_relations_properties`
--

LOCK TABLES `omk_item_relations_properties` WRITE;
/*!40000 ALTER TABLE `omk_item_relations_properties` DISABLE KEYS */;
/*!40000 ALTER TABLE `omk_item_relations_properties` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_item_relations_vocabularies`
--

DROP TABLE IF EXISTS `omk_item_relations_vocabularies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_item_relations_vocabularies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `description` text DEFAULT NULL,
  `namespace_prefix` varchar(100) NOT NULL,
  `namespace_uri` varchar(200) DEFAULT NULL,
  `custom` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_item_relations_vocabularies`
--

LOCK TABLES `omk_item_relations_vocabularies` WRITE;
/*!40000 ALTER TABLE `omk_item_relations_vocabularies` DISABLE KEYS */;
/*!40000 ALTER TABLE `omk_item_relations_vocabularies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_item_types`
--

DROP TABLE IF EXISTS `omk_item_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_item_types` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `description` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_item_types`
--

LOCK TABLES `omk_item_types` WRITE;
/*!40000 ALTER TABLE `omk_item_types` DISABLE KEYS */;
INSERT INTO `omk_item_types` (`id`, `name`, `description`) VALUES (1,'Text','A resource consisting primarily of words for reading. Examples include books, letters, dissertations, poems, newspapers, articles, archives of mailing lists. Note that facsimiles or images of texts are still of the genre Text.'),(3,'Moving Image','A series of visual representations imparting an impression of motion when shown in succession. Examples include animations, movies, television programs, videos, zoetropes, or visual output from a simulation.'),(4,'Oral History','A resource containing historical information obtained in interviews with persons having firsthand knowledge.'),(5,'Sound','A resource primarily intended to be heard. Examples include a music playback file format, an audio compact disc, and recorded speech or sounds.'),(6,'Still Image','A static visual representation. Examples include paintings, drawings, graphic designs, plans and maps. Recommended best practice is to assign the type Text to images of textual materials.'),(7,'Website','A resource comprising of a web page or web pages and all related assets ( such as images, sound and video files, etc. ).'),(8,'Event','A non-persistent, time-based occurrence. Metadata for an event provides descriptive information that is the basis for discovery of the purpose, location, duration, and responsible agents associated with an event. Examples include an exhibition, webcast, conference, workshop, open day, performance, battle, trial, wedding, tea party, conflagration.'),(9,'Email','A resource containing textual messages and binary attachments sent electronically from one person to another or one person to many people.'),(10,'Lesson Plan','A resource that gives a detailed description of a course of instruction.'),(11,'Hyperlink','A link, or reference, to another resource on the Internet.'),(12,'Person','An individual.'),(13,'Interactive Resource','A resource requiring interaction from the user to be understood, executed, or experienced. Examples include forms on Web pages, applets, multimedia learning objects, chat services, or virtual reality environments.'),(14,'Dataset','Data encoded in a defined structure. Examples include lists, tables, and databases. A dataset may be useful for direct machine processing.'),(15,'Physical Object','An inanimate, three-dimensional object or substance. Note that digital representations of, or surrogates for, these objects should use Moving Image, Still Image, Text or one of the other types.'),(16,'Service','A system that provides one or more functions. Examples include a photocopying service, a banking service, an authentication service, interlibrary loans, a Z39.50 or Web server.'),(17,'Software','A computer program in source or compiled form. Examples include a C source file, MS-Windows .exe executable, or Perl script.');
/*!40000 ALTER TABLE `omk_item_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_item_types_elements`
--

DROP TABLE IF EXISTS `omk_item_types_elements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_item_types_elements` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `item_type_id` int(10) unsigned NOT NULL,
  `element_id` int(10) unsigned NOT NULL,
  `order` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `item_type_id_element_id` (`item_type_id`,`element_id`),
  KEY `item_type_id` (`item_type_id`),
  KEY `element_id` (`element_id`)
) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_item_types_elements`
--

LOCK TABLES `omk_item_types_elements` WRITE;
/*!40000 ALTER TABLE `omk_item_types_elements` DISABLE KEYS */;
INSERT INTO `omk_item_types_elements` (`id`, `item_type_id`, `element_id`, `order`) VALUES (1,1,7,NULL),(2,1,1,NULL),(3,6,7,NULL),(6,6,10,NULL),(7,3,7,NULL),(8,3,11,NULL),(9,3,12,NULL),(10,3,13,NULL),(11,3,14,NULL),(12,3,5,NULL),(13,5,7,NULL),(14,5,11,NULL),(15,5,15,NULL),(16,5,5,NULL),(17,4,7,NULL),(18,4,11,NULL),(19,4,15,NULL),(20,4,5,NULL),(21,4,2,NULL),(22,4,3,NULL),(23,4,4,NULL),(24,4,16,NULL),(25,9,17,NULL),(26,9,18,NULL),(27,9,20,NULL),(28,9,19,NULL),(29,9,21,NULL),(30,9,22,NULL),(31,9,23,NULL),(32,10,24,NULL),(33,10,25,NULL),(34,10,26,NULL),(35,10,11,NULL),(36,10,27,NULL),(37,7,6,NULL),(38,11,28,NULL),(39,8,29,NULL),(40,8,30,NULL),(41,8,11,NULL),(42,12,31,NULL),(43,12,32,NULL),(44,12,33,NULL),(45,12,34,NULL),(46,12,35,NULL),(47,12,36,NULL);
/*!40000 ALTER TABLE `omk_item_types_elements` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_items`
--

DROP TABLE IF EXISTS `omk_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `item_type_id` int(10) unsigned DEFAULT NULL,
  `collection_id` int(10) unsigned DEFAULT NULL,
  `featured` tinyint(4) NOT NULL,
  `public` tinyint(4) NOT NULL,
  `modified` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `added` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner_id` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `item_type_id` (`item_type_id`),
  KEY `collection_id` (`collection_id`),
  KEY `public` (`public`),
  KEY `featured` (`featured`),
  KEY `owner_id` (`owner_id`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_items`
--

LOCK TABLES `omk_items` WRITE;
/*!40000 ALTER TABLE `omk_items` DISABLE KEYS */;
INSERT INTO `omk_items` (`id`, `item_type_id`, `collection_id`, `featured`, `public`, `modified`, `added`, `owner_id`) VALUES (6,NULL,7,0,1,'2013-07-20 21:21:06','2013-06-08 15:26:53',1),(7,6,9,0,1,'2013-07-20 16:15:47','2013-06-08 15:47:32',1),(9,NULL,9,0,1,'2013-07-20 16:15:35','2013-06-09 04:24:31',1),(10,NULL,10,0,1,'2013-07-20 16:15:22','2013-06-09 04:33:00',1),(11,NULL,11,1,1,'2013-07-20 16:15:05','2013-06-09 04:38:44',1),(12,NULL,8,0,1,'2013-07-20 16:14:54','2013-06-08 21:42:50',1),(13,6,12,0,1,'2013-07-20 16:14:44','2013-06-21 16:48:56',1),(14,6,13,0,1,'2013-07-20 16:14:32','2013-07-03 11:55:37',1),(15,6,8,0,1,'2014-02-20 13:14:08','2013-07-03 12:00:59',1),(16,6,8,0,1,'2013-07-20 16:14:12','2013-07-03 12:03:27',1),(17,6,8,0,1,'2013-07-20 16:14:02','2013-07-03 12:10:43',1),(18,6,8,0,1,'2013-12-18 11:33:40','2013-07-03 12:11:48',1),(19,6,14,0,1,'2013-07-20 16:13:31','2013-07-03 12:13:21',1),(20,6,15,0,1,'2013-07-09 15:23:04','2013-07-03 12:14:54',1),(21,6,12,0,1,'2013-07-20 16:13:17','2013-07-03 12:16:11',1),(22,6,12,0,1,'2013-07-09 15:21:37','2013-07-03 12:17:07',1),(23,6,12,0,1,'2013-07-20 16:13:02','2013-07-03 12:18:04',1),(24,6,16,0,1,'2013-07-20 16:12:45','2013-07-03 12:18:50',1),(25,6,17,0,1,'2013-07-20 16:12:33','2013-07-03 12:20:22',1),(26,6,18,0,1,'2013-07-24 09:54:23','2013-07-03 12:21:32',1),(27,6,11,0,1,'2014-02-20 08:11:48','2013-07-03 12:23:03',1),(28,6,11,0,1,'2013-07-20 16:11:58','2013-07-03 12:23:42',1),(29,6,10,0,1,'2013-07-20 16:11:33','2013-07-03 12:24:18',1),(30,6,10,0,1,'2013-07-24 10:27:52','2013-07-03 12:26:27',1),(31,6,10,0,1,'2013-07-20 16:10:59','2013-07-03 12:27:01',1),(32,6,10,0,1,'2013-11-29 07:06:12','2013-07-03 12:27:57',1),(33,6,20,0,1,'2013-07-24 18:12:52','2013-07-24 10:02:24',1),(34,6,21,0,1,'2013-12-13 11:26:25','2013-12-13 11:24:48',1),(35,6,13,0,1,'2013-12-13 11:36:29','2013-12-13 11:36:29',1),(36,6,22,0,1,'2013-12-18 13:33:14','2013-12-13 11:45:28',1),(37,6,23,0,1,'2013-12-18 13:42:46','2013-12-18 13:42:30',1),(38,6,10,0,1,'2014-02-17 14:58:58','2014-02-17 14:23:04',1),(39,6,24,0,1,'2014-02-17 15:00:22','2014-02-17 14:40:49',1),(40,6,24,0,1,'2014-02-17 15:01:13','2014-02-17 14:49:42',1),(41,6,25,0,1,'2014-02-17 16:19:39','2014-02-17 16:19:39',1),(42,6,8,0,1,'2014-02-20 07:58:02','2014-02-20 07:58:02',1),(43,6,9,0,1,'2014-02-27 12:48:22','2014-02-27 12:41:25',1),(44,6,26,0,1,'2014-02-27 14:44:39','2014-02-27 14:44:39',1);
/*!40000 ALTER TABLE `omk_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_keys`
--

DROP TABLE IF EXISTS `omk_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_keys` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) unsigned NOT NULL,
  `label` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `key` char(40) COLLATE utf8_unicode_ci NOT NULL,
  `ip` varbinary(16) DEFAULT NULL,
  `accessed` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `key` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_keys`
--

LOCK TABLES `omk_keys` WRITE;
/*!40000 ALTER TABLE `omk_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `omk_keys` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_options`
--

DROP TABLE IF EXISTS `omk_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_options` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
  `value` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=253 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_options`
--

LOCK TABLES `omk_options` WRITE;
/*!40000 ALTER TABLE `omk_options` DISABLE KEYS */;
INSERT INTO `omk_options` (`id`, `name`, `value`) VALUES (14,'admin_theme','default'),(19,'display_system_info','1'),(32,'simple_pages_filter_page_content','0'),(33,'site_title','Canterbury Catch Club'),(34,'description','Official Site'),(35,'administrator_email','contact@jennadonnelly.com'),(36,'copyright',''),(37,'author',''),(38,'tag_delimiter',','),(39,'path_to_convert','/usr/bin/'),(41,'html5_media_settings','a:4:{s:5:\"video\";a:3:{s:7:\"options\";a:2:{s:5:\"width\";i:480;s:6:\"height\";i:270;}s:5:\"types\";a:7:{i:0;s:9:\"video/flv\";i:1;s:11:\"video/x-flv\";i:2;s:9:\"video/mp4\";i:3;s:9:\"video/m4v\";i:4;s:10:\"video/webm\";i:5;s:9:\"video/wmv\";i:6;s:15:\"video/quicktime\";}s:10:\"extensions\";a:5:{i:0;s:3:\"mp4\";i:1;s:3:\"m4v\";i:2;s:3:\"flv\";i:3;s:4:\"webm\";i:4;s:3:\"wmv\";}}s:5:\"audio\";a:2:{s:5:\"types\";a:5:{i:0;s:10:\"audio/mpeg\";i:1;s:9:\"audio/mp3\";i:2;s:9:\"audio/wav\";i:3;s:9:\"audio/m4a\";i:4;s:9:\"audio/wma\";}s:10:\"extensions\";a:5:{i:0;s:3:\"mp4\";i:1;s:3:\"m4v\";i:2;s:3:\"flv\";i:3;s:4:\"webm\";i:4;s:3:\"wmv\";}}s:4:\"text\";a:2:{s:5:\"types\";a:1:{i:0;s:8:\"text/vtt\";}s:10:\"extensions\";a:2:{i:0;s:3:\"srt\";i:1;s:3:\"vtt\";}}s:6:\"common\";a:1:{s:7:\"options\";a:3:{s:8:\"autoplay\";b:0;s:8:\"controls\";b:1;s:4:\"loop\";b:0;}}}'),(48,'docsviewer_embed_admin','1'),(49,'docsviewer_width_admin','500'),(50,'docsviewer_height_admin','600'),(51,'docsviewer_embed_public','1'),(52,'docsviewer_width_public','500'),(53,'docsviewer_height_public','600'),(55,'hide_elements_settings','{\"form\":[],\"admin\":[],\"public\":[]}'),(80,'theme_default_options','a:11:{s:4:\"logo\";N;s:17:\"header_background\";N;s:18:\"header_title_color\";s:6:\"000000\";s:21:\"display_featured_item\";s:1:\"1\";s:27:\"display_featured_collection\";s:1:\"1\";s:24:\"display_featured_exhibit\";s:1:\"1\";s:21:\"homepage_recent_items\";s:0:\"\";s:13:\"homepage_text\";s:0:\"\";s:11:\"footer_text\";s:0:\"\";s:24:\"display_footer_copyright\";s:1:\"0\";s:17:\"item_file_gallery\";s:1:\"0\";}'),(82,'theme_seasons_options','a:11:{s:11:\"style_sheet\";s:6:\"winter\";s:4:\"logo\";N;s:21:\"display_featured_item\";s:1:\"1\";s:27:\"display_featured_collection\";s:1:\"1\";s:24:\"display_featured_exhibit\";s:1:\"1\";s:21:\"homepage_recent_items\";N;s:13:\"homepage_text\";N;s:26:\"display_dublin_core_fields\";N;s:11:\"footer_text\";N;s:24:\"display_footer_copyright\";s:1:\"0\";s:17:\"item_file_gallery\";s:1:\"0\";}'),(85,'theme_the-audio_options','a:8:{s:4:\"logo\";N;s:5:\"photo\";N;s:24:\"custom_header_navigation\";N;s:7:\"content\";s:10:\"collection\";s:13:\"homepage_text\";N;s:26:\"display_dublin_core_fields\";N;s:11:\"footer_text\";N;s:24:\"display_footer_copyright\";s:1:\"0\";}'),(95,'exhibit_builder_sort_browse','alpha'),(104,'disable_default_file_validation','1'),(105,'file_extension_whitelist','aac,aif,aiff,asf,asx,avi,bmp,c,cc,class,css,divx,doc,docx,exe,gif,gz,gzip,h,ico,j2k,jp2,jpe,jpeg,jpg,m4a,mdb,mid,midi,mov,mp2,mp3,mp4,mpa,mpe,mpeg,mpg,mpp,odb,odc,odf,odg,odp,ods,odt,ogg, pdf,png,pot,pps,ppt,pptx,qt,ra,ram,rtf,rtx,sib,swf,tar,tif,tiff,txt, wav,wax,wma,wmv,wmx,wri,xla,xls,xlsx,xlt,xlw,zip'),(106,'file_mime_type_whitelist','application/msword,application/ogg,application/pdf,application/rtf,application/vnd.ms-access,application/vnd.ms-excel,application/vnd.ms-powerpoint,application/vnd.ms-project,application/vnd.ms-write,application/vnd.oasis.opendocument.chart,application/vnd.oasis.opendocument.database,application/vnd.oasis.opendocument.formula,application/vnd.oasis.opendocument.graphics,application/vnd.oasis.opendocument.presentation,application/vnd.oasis.opendocument.spreadsheet,application/vnd.oasis.opendocument.text,application/x-ms-wmp,application/x-ogg,application/x-gzip,application/x-msdownload,application/x-shockwave-flash,application/x-tar,application/zip,audio/aac,audio/aiff,audio/mid,audio/midi,audio/mp3,audio/mp4,audio/mpeg,audio/mpeg3,audio/ogg,audio/wav,audio/wma,audio/x-aac,audio/x-aiff,audio/x-midi,audio/x-mp3,audio/x-mp4,audio/x-mpeg,audio/x-mpeg3,audio/x-mpegaudio,audio/x-ms-wax,audio/x-realaudio,audio/x-wav,audio/x-wma,image/bmp,image/gif,image/icon,image/jpeg,image/pjpeg,image/png,image/tiff,image/x-icon,image/x-ms-bmp,text/css,text/plain,text/richtext,text/rtf,video/asf,video/avi,video/divx,video/mp4,video/mpeg,video/msvideo,video/ogg,video/quicktime,video/x-ms-wmv,video/x-msvideo,application/x-sibelius-score'),(107,'recaptcha_public_key',''),(108,'recaptcha_private_key',''),(109,'html_purifier_is_enabled','1'),(110,'html_purifier_allowed_html_elements','p,br,strong,em,span,div,ul,ol,li,a,h1,h2,h3,h4,h5,h6,address,pre,table,tr,td,blockquote,thead,tfoot,tbody,th,dl,dt,dd,q,small,strike,sup,sub,b,i,big,small,tt'),(111,'html_purifier_allowed_html_attributes','*.style,*.class,a.href,a.title,a.target'),(116,'theme_berlin_options','a:9:{s:4:\"logo\";N;s:12:\"header_image\";N;s:21:\"display_featured_item\";s:1:\"1\";s:27:\"display_featured_collection\";s:1:\"1\";s:24:\"display_featured_exhibit\";s:1:\"0\";s:21:\"homepage_recent_items\";s:0:\"\";s:13:\"homepage_text\";s:303:\"Welcome to the Canterbury Catch Club website. Here you\'ll find a collection of catches that are old, but not forgotten. You\'ll be able to access images, music, midi files, pdfs and scores for the pieces as they are available. We are constantly updating the archive, so remember to check back frequently.\";s:11:\"footer_text\";s:0:\"\";s:24:\"display_footer_copyright\";s:1:\"0\";}'),(123,'collection_tree_alpha_order','1'),(131,'public_theme','catchtheclub'),(154,'search_by_metadata_elements','a:1:{s:11:\"Dublin Core\";a:3:{i:0;s:5:\"Genre\";i:1;s:4:\"Type\";i:2;s:6:\"Voices\";}}'),(170,'search_record_types','a:3:{i:0;s:4:\"Item\";i:1;s:10:\"Collection\";i:2;s:11:\"ExhibitPage\";}'),(193,'fullsize_constraint','800'),(194,'thumbnail_constraint','100'),(195,'square_thumbnail_constraint','100'),(196,'per_page_admin','10'),(197,'per_page_public','50'),(198,'show_empty_elements','0'),(221,'simple_contact_form_reply_from_email','chris.price@canterbury.ac.uk'),(222,'simple_contact_form_forward_to_email','chris.price@canterbury.ac.uk'),(223,'simple_contact_form_admin_notification_email_subject','Message from the Canterbury Catch Club Website'),(224,'simple_contact_form_admin_notification_email_message_header','A user has sent you the following message:'),(225,'simple_contact_form_user_notification_email_subject','Thank You'),(226,'simple_contact_form_user_notification_email_message_header','Thank you for sending us the following message:'),(227,'simple_contact_form_contact_page_title','Contact Us'),(228,'simple_contact_form_contact_page_instructions','<p>Please send us your comments and suggestions.</p>'),(229,'simple_contact_form_thankyou_page_title','Thank You For Your Feedback'),(230,'simple_contact_form_thankyou_page_message','<p>We appreciate your comments and suggestions.</p>'),(231,'simple_contact_form_add_to_main_navigation','1'),(237,'theme_catchtheclub_options','a:9:{s:4:\"logo\";N;s:12:\"header_image\";N;s:21:\"display_featured_item\";s:1:\"1\";s:27:\"display_featured_collection\";s:1:\"1\";s:24:\"display_featured_exhibit\";s:1:\"0\";s:21:\"homepage_recent_items\";s:1:\"1\";s:13:\"homepage_text\";s:1679:\"<h3>Welcome to the Canterbury Catch Club website...</h3>\n<p>Those dignified gentlemen in the picture above (click on it for a better view) are gathered for a meeting of the Canterbury Catch Club, an august body dedicated to the enjoyment of music - accompanied by ale and tobacco, and the occasional dinner - which was formed in 1779 and became a significant part of Canterbury\'s cultural life for eighty-odd years.  The faint dedication records that this splendid print (only 3 copies of which survive) was presented to the President, Charles Delmar, and the Club in 1828 - undoubtedly its heyday, as the number of members and the size of the orchestra on the raised dais at the back of the room would testify.<br /><br />This website brings together words, images and music from this fascinating slice of Canterbury\'s cultural and social history, much of which has been out of the public domain for almost 150 years.  It seems, however, that the material has simply been patiently waiting to be brought more clearly to light: City and Cathedral Librarians, fellow-musicians, and enthusiastic researchers have catalogued, transcribed and performed it every so often over the years. Here you will find digital images (pages from the Club\'s Minute-books, and from the music volumes themselves); transcripts of pieces for modern performance; notes on the music, the people, and on the history of the Club in general; and specially-recorded performances of some of the catches and glees which have caught our fancy in the course of our research thus far.  It is, inevitably, a work in progress - so we hope you will come back for further investigation in the months to come.</p>\";s:11:\"footer_text\";s:0:\"\";s:24:\"display_footer_copyright\";s:1:\"0\";}'),(239,'public_navigation_main','[{\"uid\":\"http:\\/\\/ethanlewismaltby.com\\/canterburycatch\\/canterburycatch\\/\",\"can_delete\":true,\"type\":\"Omeka_Navigation_Page_Uri\",\"label\":\"Home\",\"fragment\":null,\"id\":null,\"class\":null,\"title\":null,\"target\":null,\"accesskey\":null,\"rel\":[],\"rev\":[],\"customHtmlAttribs\":[],\"order\":1,\"resource\":null,\"privilege\":null,\"active\":false,\"visible\":true,\"pages\":[],\"uri\":\"http:\\/\\/ethanlewismaltby.com\\/canterburycatch\\/canterburycatch\\/\"},{\"uid\":\"\\/canterburycatch\\/canterburycatch\\/items\\/browse\",\"can_delete\":false,\"type\":\"Omeka_Navigation_Page_Uri\",\"label\":\"Browse Items\",\"fragment\":null,\"id\":null,\"class\":null,\"title\":null,\"target\":null,\"accesskey\":null,\"rel\":[],\"rev\":[],\"customHtmlAttribs\":[],\"order\":2,\"resource\":null,\"privilege\":null,\"active\":false,\"visible\":true,\"pages\":[],\"uri\":\"\\/canterburycatch\\/canterburycatch\\/items\\/browse\"},{\"uid\":\"\\/canterburycatch\\/canterburycatch\\/history\",\"can_delete\":false,\"type\":\"Omeka_Navigation_Page_Uri\",\"label\":\"A brief history...\",\"fragment\":null,\"id\":null,\"class\":null,\"title\":null,\"target\":null,\"accesskey\":null,\"rel\":[],\"rev\":[],\"customHtmlAttribs\":[],\"order\":3,\"resource\":null,\"privilege\":null,\"active\":false,\"visible\":true,\"pages\":[],\"uri\":\"\\/canterburycatch\\/canterburycatch\\/history\"},{\"uid\":\"\\/canterburycatch\\/canterburycatch\\/the-music\",\"can_delete\":false,\"label\":\"The Music\",\"fragment\":null,\"id\":null,\"class\":null,\"title\":null,\"target\":null,\"accesskey\":null,\"rel\":[],\"rev\":[],\"customHtmlAttribs\":[],\"order\":4,\"resource\":null,\"privilege\":null,\"active\":false,\"visible\":true,\"type\":\"Omeka_Navigation_Page_Uri\",\"pages\":[],\"uri\":\"\\/canterburycatch\\/canterburycatch\\/the-music\"},{\"uid\":\"\\/canterburycatch\\/canterburycatch\\/exhibits\\/show\\/recordings\\/recordings\",\"can_delete\":true,\"type\":\"Omeka_Navigation_Page_Uri\",\"label\":\"Recordings\",\"fragment\":null,\"id\":null,\"class\":null,\"title\":null,\"target\":null,\"accesskey\":null,\"rel\":[],\"rev\":[],\"customHtmlAttribs\":[],\"order\":5,\"resource\":null,\"privilege\":null,\"active\":false,\"visible\":true,\"pages\":[],\"uri\":\"\\/canterburycatch\\/canterburycatch\\/exhibits\\/show\\/recordings\\/recordings\"},{\"uid\":\"\\/canterburycatch\\/canterburycatch\\/about\",\"can_delete\":false,\"type\":\"Omeka_Navigation_Page_Uri\",\"label\":\"About us...\",\"fragment\":null,\"id\":null,\"class\":null,\"title\":null,\"target\":null,\"accesskey\":null,\"rel\":[],\"rev\":[],\"customHtmlAttribs\":[],\"order\":6,\"resource\":null,\"privilege\":null,\"active\":false,\"visible\":true,\"pages\":[],\"uri\":\"\\/canterburycatch\\/canterburycatch\\/about\"},{\"uid\":\"\\/canterburycatch\\/canterburycatch\\/contact\",\"can_delete\":false,\"type\":\"Omeka_Navigation_Page_Uri\",\"label\":\"Contact Us\",\"fragment\":null,\"id\":null,\"class\":null,\"title\":null,\"target\":null,\"accesskey\":null,\"rel\":[],\"rev\":[],\"customHtmlAttribs\":[],\"order\":7,\"resource\":null,\"privilege\":null,\"active\":false,\"visible\":true,\"pages\":[],\"uri\":\"\\/canterburycatch\\/canterburycatch\\/contact\"},{\"uid\":\"\\/canterburycatch\\/canterburycatch\\/exhibits\",\"can_delete\":false,\"type\":\"Omeka_Navigation_Page_Uri\",\"label\":\"Browse Exhibits\",\"fragment\":null,\"id\":null,\"class\":null,\"title\":null,\"target\":null,\"accesskey\":null,\"rel\":[],\"rev\":[],\"customHtmlAttribs\":[],\"order\":8,\"resource\":null,\"privilege\":null,\"active\":false,\"visible\":false,\"pages\":[],\"uri\":\"\\/canterburycatch\\/canterburycatch\\/exhibits\"},{\"uid\":\"\\/canterburycatch\\/canterburycatch\\/collections\\/browse\",\"can_delete\":false,\"type\":\"Omeka_Navigation_Page_Uri\",\"label\":\"Browse Collections\",\"fragment\":null,\"id\":null,\"class\":null,\"title\":null,\"target\":null,\"accesskey\":null,\"rel\":[],\"rev\":[],\"customHtmlAttribs\":[],\"order\":9,\"resource\":null,\"privilege\":null,\"active\":false,\"visible\":false,\"pages\":[],\"uri\":\"\\/canterburycatch\\/canterburycatch\\/collections\\/browse\"},{\"uid\":\"\\/canterburycatch\\/canterburycatch\\/how-to-use\",\"can_delete\":false,\"type\":\"Omeka_Navigation_Page_Uri\",\"label\":\"How to use the database\",\"fragment\":null,\"id\":null,\"class\":null,\"title\":null,\"target\":null,\"accesskey\":null,\"rel\":[],\"rev\":[],\"customHtmlAttribs\":[],\"order\":10,\"resource\":null,\"privilege\":null,\"active\":false,\"visible\":false,\"pages\":[],\"uri\":\"\\/canterburycatch\\/canterburycatch\\/how-to-use\"}]'),(240,'homepage_uri','/'),(249,'omeka_update','a:2:{s:14:\"latest_version\";s:5:\"2.1.4\";s:12:\"last_updated\";i:1393514213;}'),(250,'api_enable',''),(251,'api_per_page','50'),(252,'omeka_version','2.1.4');
/*!40000 ALTER TABLE `omk_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_plugins`
--

DROP TABLE IF EXISTS `omk_plugins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_plugins` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `active` tinyint(4) NOT NULL,
  `version` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`),
  KEY `active_idx` (`active`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_plugins`
--

LOCK TABLES `omk_plugins` WRITE;
/*!40000 ALTER TABLE `omk_plugins` DISABLE KEYS */;
INSERT INTO `omk_plugins` (`id`, `name`, `active`, `version`) VALUES (1,'ExhibitBuilder',1,'2.0.3'),(2,'SimplePages',1,'2.0.1'),(3,'Coins',1,'2.0.1'),(4,'Html5Media',1,'2.0'),(5,'DerivativeImages',1,'1.0'),(6,'DocsViewer',1,'2.0'),(7,'HideElements',1,'1.1'),(10,'SimpleContactForm',1,'0.4'),(11,'DublinCoreExtended',1,'2.0'),(17,'CollectionTree',0,'2.0'),(18,'SearchByMetadata',1,'1.1'),(21,'Dropbox',1,'0.7.1');
/*!40000 ALTER TABLE `omk_plugins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_processes`
--

DROP TABLE IF EXISTS `omk_processes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_processes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `class` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `pid` int(10) unsigned DEFAULT NULL,
  `status` enum('starting','in progress','completed','paused','error','stopped') COLLATE utf8_unicode_ci NOT NULL,
  `args` text COLLATE utf8_unicode_ci NOT NULL,
  `started` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `stopped` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `pid` (`pid`),
  KEY `started` (`started`),
  KEY `stopped` (`stopped`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_processes`
--

LOCK TABLES `omk_processes` WRITE;
/*!40000 ALTER TABLE `omk_processes` DISABLE KEYS */;
/*!40000 ALTER TABLE `omk_processes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_records_tags`
--

DROP TABLE IF EXISTS `omk_records_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_records_tags` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `record_id` int(10) unsigned NOT NULL,
  `record_type` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `tag_id` int(10) unsigned NOT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `tag` (`record_type`,`record_id`,`tag_id`)
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_records_tags`
--

LOCK TABLES `omk_records_tags` WRITE;
/*!40000 ALTER TABLE `omk_records_tags` DISABLE KEYS */;
INSERT INTO `omk_records_tags` (`id`, `record_id`, `record_type`, `tag_id`, `time`) VALUES (10,32,'Item',5,'2013-07-09 18:13:21'),(13,29,'Item',5,'2013-07-09 18:19:34'),(14,28,'Item',7,'2013-07-09 18:19:45'),(15,27,'Item',7,'2013-07-09 18:19:59'),(18,24,'Item',10,'2013-07-09 18:21:12'),(19,23,'Item',11,'2013-07-09 18:21:24'),(20,22,'Item',11,'2013-07-09 18:21:37'),(21,31,'Item',5,'2013-07-09 18:22:05'),(22,21,'Item',11,'2013-07-09 18:22:49'),(23,20,'Item',12,'2013-07-09 18:23:04'),(24,19,'Item',13,'2013-07-09 18:23:15'),(25,18,'Item',14,'2013-07-09 18:23:24'),(26,17,'Item',14,'2013-07-09 18:23:32'),(27,16,'Item',14,'2013-07-09 18:23:40'),(28,15,'Item',14,'2013-07-09 18:23:48'),(29,14,'Item',15,'2013-07-09 18:23:57'),(30,13,'Item',11,'2013-07-09 18:24:18'),(31,12,'Item',14,'2013-07-09 18:24:27'),(32,11,'Item',7,'2013-07-09 18:24:37'),(33,10,'Item',5,'2013-07-09 18:24:46'),(34,9,'Item',16,'2013-07-09 18:25:01'),(35,7,'Item',16,'2013-07-09 18:25:11'),(36,6,'Item',17,'2013-07-09 18:25:23'),(37,26,'Item',8,'2013-07-09 18:26:10'),(38,25,'Item',9,'2013-07-09 18:26:19'),(40,30,'Item',5,'2013-07-24 13:27:52'),(41,33,'Item',20,'2013-07-24 20:34:18'),(42,38,'Item',5,'2014-02-17 17:23:07'),(43,44,'Item',21,'2014-02-27 17:44:39');
/*!40000 ALTER TABLE `omk_records_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_schema_migrations`
--

DROP TABLE IF EXISTS `omk_schema_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_schema_migrations` (
  `version` varchar(16) COLLATE utf8_unicode_ci NOT NULL,
  UNIQUE KEY `unique_schema_migrations` (`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_schema_migrations`
--

LOCK TABLES `omk_schema_migrations` WRITE;
/*!40000 ALTER TABLE `omk_schema_migrations` DISABLE KEYS */;
INSERT INTO `omk_schema_migrations` (`version`) VALUES ('20100401000000'),('20100810120000'),('20110113000000'),('20110124000001'),('20110301103900'),('20110328192100'),('20110426181300'),('20110601112200'),('20110627223000'),('20110824110000'),('20120112100000'),('20120220000000'),('20120221000000'),('20120224000000'),('20120224000001'),('20120402000000'),('20120516000000'),('20120612112000'),('20120623095000'),('20120710000000'),('20120723000000'),('20120808000000'),('20120808000001'),('20120813000000'),('20120914000000'),('20121007000000'),('20121015000000'),('20121015000001'),('20121018000001'),('20121110000000'),('20121218000000'),('20130422000000'),('20130426000000'),('20130429000000'),('20130701000000'),('20130809000000');
/*!40000 ALTER TABLE `omk_schema_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_search_texts`
--

DROP TABLE IF EXISTS `omk_search_texts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_search_texts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `record_type` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `record_id` int(10) unsigned NOT NULL,
  `public` tinyint(1) NOT NULL,
  `title` tinytext COLLATE utf8_unicode_ci DEFAULT NULL,
  `text` longtext COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `record_name` (`record_type`,`record_id`),
  FULLTEXT KEY `text` (`text`)
) ENGINE=MyISAM AUTO_INCREMENT=92 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_search_texts`
--

LOCK TABLES `omk_search_texts` WRITE;
/*!40000 ALTER TABLE `omk_search_texts` DISABLE KEYS */;
INSERT INTO `omk_search_texts` (`id`, `record_type`, `record_id`, `public`, `title`, `text`) VALUES (1,'SimplePagesPage',1,1,'About us...','About us... <p>This website has been made possible by funding from Canterbury Christ Church University. &nbsp;It is the work of Chris Price, a Senior Lecturer in the Department of Music and Performing Arts and a Tenor Lay Clerk in the Choir of Canterbury Cathedral, in whose library the Canterbury Catch Club volumes are archived.</p>\r\n<p>Thanks are due to the Dean and Chapter of the Cathedral for their support for the Project, especially to the staff of the Cathedral Library and Archives, and to the librarians of the Beaney Institute (the city library in Canterbury):&nbsp;to Cressida Williams, Cathedral Archivist, and her colleagues, and to Karen Brayshaw, Cathedral Librarian. &nbsp;Their expert and good-humoured assistance has made the enterprise far more enjoyable than work is supposed to be.<br /><br />Thanks also to Jenna Donnelly, designer and compiler of this website, and to Cantuar, the ad hoc group of fellow-musicians whose voices bring the music to life here: David Wilcock, counter-tenor; Paul Young, tenor; Chris Price, tenor; Jon Williams, baritone; and Duncan Perkins, bass. &nbsp;The members hope to be worthy successors to their 18th- and 19th-century predecessors in the Cathedral Choir, whose musical talents and mischievous temperaments would have helped to make the Catch Club evenings truly memorable.</p> '),(38,'Collection',12,1,'Harington, Henry','Harington, Henry '),(39,'Item',13,1,'I Cannot Sing This Catch','harington I Cannot Sing This Catch Catch 3 voices Harington is making a witty point here about the difficulties of singing a catch: since every singer, at some point, has to tackle every line of the thing, and since any interesting melody line may cover quite a wide range, there’s usually some part of it somewhere which is either too high or too low for one’s vocal comfort.   '),(41,'Collection',13,1,'Alcock, John','Alcock, John '),(42,'Item',15,1,'A Drunken Old Sot','anon A Drunken Old Sot Catch 4 voices '),(43,'Item',16,1,'As t\'Other Day Susan','anon As t\'Other Day Susan Catch 3 voices '),(44,'Item',17,1,'Here Lies A Woman','anon Here Lies A Woman Catch 3 voices It has to be admitted that the world of the catch was essentially a male environment, so it surely comes as no surprise to find that the women portrayed in this repertoire tend to be stereotypically cast either as playful milkmaids or shrewish harpies. The woman in this catch appears to have shuffled off this mortal coil, but that doesn\'t stop the singers worrying about what would undoubtedly happen were she to be awoken from her slumber... '),(45,'Item',18,1,'O, My Good Friends, Lord, What Do You Think','anon O, My Good Friends, Lord, What Do You Think Catch 4 voices '),(46,'Item',19,1,'A Canvassing Squire','luffman A Canvassing Squire Catch 3 (or 4/5/6) voices The political figures of the late 18th and early 19th centuries  enjoyed no greater respect then than those of today; this catch lampoons the figure of the over-lubricated Squire seeking re-election. The story is too good to miss, so the arrangement presented here allows a larger group of singers to provide a gentle accompaniment to each voice in turn, if required. '),(47,'Collection',14,1,'Atterbury, Luffman','Atterbury, Luffman '),(48,'Item',20,1,'Fill The Bowl With Rosy Wine','dyne Fill The Bowl With Rosy Wine Glee ATB '),(49,'Collection',15,1,'Dyne, John','Dyne, John '),(50,'Item',21,1,'Groody Groaner','harington Groody Groaner Glee ATB This piece is another which blurs the diving line between the catch and its more sophisticated cousin, the glee. In telling the story of the hapless man, desperately seeking the midwife of the title to help his wife deliver their child, who mistakenly chooses to ask directions from two villagers whose dullness of wit is beautifully matched by their spectacular speech defects, the narrative which emerges is a carefully-controlled scena in which the entry of the voices build the story to its inescapable conclusion: frustration prevails. '),(51,'Item',22,1,'Retirement','harington Retirement Glee TBarB '),(52,'Item',23,1,'The Arrival At Bath','harington The Arrival At Bath Catch 3 (or 4) voices '),(53,'Item',24,1,'Go, Gentle Breezes','leach Go, Gentle Breezes Glee ATTB '),(54,'Collection',16,1,'Leach','Leach '),(55,'Collection',17,1,'Porter, Samuel','Porter, Samuel '),(56,'Item',25,1,'A Kentish Catch','porter A Kentish Catch Catch & Glee ATTB One of the few pieces in the collection with a local flavour, written by a local man (Samuel Porter was Organist at Canterbury Cathedral from 1757-1803) is a distinctive combination of a 3-part catch and a 4-part glee. '),(57,'Collection',18,1,'Purcell, Henry','Purcell, Henry '),(58,'Item',26,1,'On A Scolding Wife','purcell On A Scolding Wife Catch 4 voices Here\'s another catch presenting a character much beloved of catch composers: the wife whose stentorian tones drown out even the industrial clangour of the technology of the day. '),(59,'Item',27,1,'O Mistress Mine','stevens O Mistress Mine Glee SSATB 1788 was the year in which Stevens wrote this delightful setting of the Shakespeare song, but he records with some disappointment the fact that it \"was so little admired at the Catch Club, that it had not votes enough in the Committee\" which decided the Prize-winning Glees that year. So we can understand his satisfaction when, the following year, it became clear that this was, in fact, a very popular piece.  No less a luminary than the Earl of Sandwich liked it, apparently, though he made himself the object of much merriment when he wondered aloud \"what fool could write such absurd poetry as \'Then come kiss me, sweet and twenty\'?\" It was Stevens\' fellow-composer, Knyvett, who told his Lordship the poet\'s name, to the delight of the assembled company. '),(60,'Item',28,1,'Ye Spotted Snakes','stevens Ye Spotted Snakes Glee SATB This song - from \"A Midsummer Night\'s Dream\", Act 2:2 - has been set many times.  This treatment, by the much-respected RJS Stevens, was one of his most popular pieces - not least, as Rubin remarks, for \"the sheer fun of singing the liquid \'lulla, lulla, lullaby\' that closes each half of its binary structure. '),(61,'Item',29,1,'As Thomas Was Cudgell\'d One Day by His Wife','webbe As Thomas Was Cudgell\'d One Day by His Wife Catch 4 voices This salutary tale of the hapless Thomas - woefully abused by his wife, but \"too proud to take counsel\" - is a catch, and may be performed as such; what is offered here, in addition, however, is a gentle arrangement for TTBarB which allows the story to be heard before all the voices combine at the finish. '),(62,'Item',30,1,'My Pocket\'s Low and Taxes High','Webbe My Pocket\'s Low and Taxes High Glee ATTB A song for our times, indeed: a mournful bass solo begins, quasi-recitativo, with a heartfelt lament bewailing the effects of national austerity.  The tenors and alto join in, with an ever-so-slightly desperate attempt to cheer the poor man with talk of brighter days to come, at which point the alto, almost unnoticed, begins to sing the National Anthem.  The result, as the other voices continue their miserable counterpoint, is the gloomiest treatment of a patriotic song you have ever heard - Webbe at his subversive best, we think - until all the singers are persuaded to join in the much more optimistic latter section, which ends in rousing homophony with a suitably rumbustious chorus of \'God save great George our King\'. '),(63,'Item',31,1,'Now We Are Met','webbe Now We Are Met Catch 3 voices One of the best-known \'welcome\' catches. Cantuar has often begun a concert with this attention-grabbing ditty. '),(64,'Item',32,1,'Rise, My Joy','Webbe Rise, My Joy Glee ATTB It begins innocuously enough, but this delightful, short glee by the great Samuel Webbe (the Elder) turns out to be another paean of praise to drinking - a popular theme... '),(67,'Exhibit',4,1,'Recordings','Recordings  '),(68,'ExhibitPage',4,1,'Recordings Page 1','Recordings Page 1 <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'Drinking is an English Diversion\' by John Alcock</p> <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'Discord\' by Samuel Webbe</p> <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'Hark The Hollow Woods Resounding\' by J.S. Smith</p> <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'Rise My Joy\' by Samuel Webbe</p> <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'Go, Gentle Breezes\' by Leach</p> <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'The Arrival At Bath\' by Henry Harington</p> <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'Here Lies A Woman\' by Anon</p> <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'Goody Groaner\' by Henry Harington</p>                 '),(18,'Exhibit',1,1,'Glees','Glees <p>A collection of glees</p> '),(19,'ExhibitPage',1,1,'Page 1','Page 1    <p><span> </span></p>                             '),(23,'Exhibit',2,1,'Catches','Catches <p>A collection of Catches</p> '),(69,'ExhibitPage',5,1,'Recordings Page 2','Recordings Page 2 <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'O, My Good Friends, Lord, What Do You Think\' by Anon</p> <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'Mr. Speaker, Tho\' \'tis Late\' by Anon</p> <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'As T\'other Day Susan\' by Anon</p> <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'Now We Are Met\' by Samuel Webbe</p> <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'A Kentish Catch\' by Samuel Porter</p> <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'What Shall He Have That Kill\'d The Deer\' by Richard John Samuel Stevens</p> <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'A Canvassing Squire\' by Luffman Atterbury</p> <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'My Pockets Low and Taxes High\' by Samuel Webbe</p> '),(22,'SimplePagesPage',2,1,'A brief history...','A brief history... <p>The Catch Club existed between 1779 and 1865, but it was undoubtedly the first half of the nineteenth century which witnessed its glory days.&nbsp; Reading the Minutes, this seems remarkable: given the endless problems with the air pump, the Ladies&rsquo; Room, and the various musical celebrities from foreign countries (Italy, America) engaged from time to time by the Club, it is something of a wonder that a series of thirty concerts of vocal and orchestral music was held every Wednesday evening from October to May throughout this period.&nbsp;</p>\r\n<p>Whatever visiting celebrities may have contributed, most of the evening&rsquo;s music would have been provided by the members themselves; all would have been capable of holding a part in the &lsquo;catches&rsquo; which lie at the heart of the Club&rsquo;s repertoire. The more sophisticated glees would have been sung by the more musically proficient members of the Club, and these would have included the musicians in the service of the Cathedral at the time.<br />&nbsp;<br />Club subscriptions (20 shillings for a season in 1840, with fines for non-attendance!) paid for instrumental music, too.&nbsp; The Club patronised an orchestra, with conductor, though this seems to have occasioned a degree of discord which belied the motto painted on the scroll above their stalls: the exhortation to &lsquo;Harmony and Unanimity&rsquo; seems seldom to have been heeded, as the number of rules governing the conduct of the orchestral musicians proliferated throughout this time and the matter of the conductor&rsquo;s salary is a running debate in the Committee&rsquo;s Minutes. In spite of these vicissitudes, however, it is clear that the Canterbury Catch Club was a lively fixture on Canterbury&rsquo;s cultural scene for almost a century.</p> '),(24,'ExhibitPage',2,1,'Page 1','Page 1                                 '),(25,'Collection',7,1,'Hutcheson, Francis','Hutcheson, Francis '),(26,'Item',6,1,'Hans Carvel\'s Ring','hutcheson Hans Carvel\'s Ring Catch 3 voices '),(27,'Collection',8,1,'Anon','Anon '),(28,'Item',7,1,'Hark, The Hollow Woods Resounding','smith Hark, The Hollow Woods Resounding Glee ATTB '),(40,'Item',14,1,'Drinking is an English Diversion','alcock Drinking is an English Diversion Glee ATTB Written long before political correctness exerted any restraint upon the sensibilities of the English drinking classes, this cheerfully disrespectful dismissal of the bibulous customs of other cultures is not for those of sensitive disposition. Cantuar has yet to perform this piece in public; we\'re still seeking the appropriate audience... '),(30,'Collection',9,1,'Smith, John Stafford','Smith, John Stafford '),(31,'Item',9,1,'Sleep, Poor Youth','smith Sleep, Poor Youth Glee ATTB The words of this piece first appeared in 1694 in a play by Thomas D\'Urfey called \"The Comical History of Don Quixote\". Purcell was amongst the distinguished musicians who contributed music; this song was set by John Eccles.  The sentiment is similar to the rather better-known \"Fear No More the Heat o\' the Sun\" from Shakespeare\'s \"Cymbeline\": tragic though the death of this youth is, so the sentiment goes, some consolation might be drawn from the fact that the trials and tribulations of this world (\"tyrant power\", \"scornful beauty\", or \"wars that do fatal storms disperse\") can trouble him no longer. \"Earthquakes that shake the universe / Can\'t rock thee into sounder sleep\" is the ironic comment, and the piece ends as only such songs can: with a reminder that all must come to this, when \"the folly of the farce is done\". '),(32,'Collection',10,1,'Webbe, Samuel, the Elder','Webbe, Samuel, the Elder The Great Man of Glee Composition, with 27 prizes to his credit during the reign of George III... '),(33,'Item',10,1,'Discord','webbe Discord Glee ATTB \"This gain\'d a prize medal 1772\", Webbe proudly notes at the top of the score in the printed copy bound into Volume 9 of the Canterbury Cathedral Library\'s collection. It should come as no surprise, given the seriousness with which such prizes were contested, to find that this piece is a miniature gem of the genre: to words by Webbe himself, a slow introduction in a foreboding F minor grimly depicts the \"dire sister of the slaught\'ring power\" (War itself, we would guess) and its inexorable growth.  A second, faster section vividly portrays the dread result: \"she stalks on earth and shakes the world around\". The antidote, of course, in a lilting, final, triple-time section in the tonic major, is the \"lovely peace\" with which the work ends; \"soft ease\" prevails, and the only reminder of what had preceded it is heard in the momentary darkness of a chromatic secondary dominant 7th just before the final cadence banishes such clouds for ever. '),(34,'Collection',11,1,'Stevens, Richard John Samuel','Stevens, Richard John Samuel '),(35,'Item',11,1,'What Shall He Have','stevens What Shall He Have Glee ATBarB A Hunting Glee! '),(36,'Item',12,1,'Mr Speaker, Tho \'Tis Late','anon Mr Speaker, Tho \'Tis Late Catch 3 voices The scene is, clearly, the Houses of Parliament; the characters, equally clearly, are our elected representatives.  Here we see them engaged in pursuit of their chosen calling - i.e., trying to ensure that they are heard... '),(37,'SimplePagesPage',3,1,'How to use the database','How to use the database <p>The database is made up of a number of items, categorised by composer, type (i.e. glee or catch), genre and voices. You can browse through all of these items by clicking on <a title=\"Link to Browse Items\" href=\"/canterburycatch/canterburycatch/items/browse\" target=\"_self\">Browse Items</a> in the main menu.</p>\r\n<p>If you would like to search for a particular title, use the Search feature which is located at the top-right of every page. Simply type in the title you are looking for and click \'Search\'. You can narrow your search parameters by using the dropdown boxes to specify a composer or a glee/catch, or even select both.</p>\r\n<p>When you browse or search for items, the relevant items will appear in a table, with the relevant information under different columns. Click on the title to view the details of the item itself.</p>\r\n<p>By clicking on other links, such as type or genre for example, the table will reconfigure to show you more items which have this feature in common (i.e. more items of the same type, or more items within the clicked genre).</p>\r\n<p>When you click the composer name, this will take you to a page filled with all catalogued items by that composer.</p>\r\n<p>&nbsp;</p>\r\n<h3>ITEMS</h3>\r\n<p>When you click on an item title, it will take you to an individual page with all details available for that item. This will include all available files for the item, such as images, audio and PDF files.&nbsp;</p>\r\n<p>To view images, click on the image thumbnail and the image will expand in the window. You can use the left or right buttons to navigate through a gallery if there is more than one image on the page.</p>\r\n<p>To download the image, click on the \'Page\' link above the thumbnail image (e.g. Page 1, Page 2 etc.), and a new tab will open in your browser containing the image. Click \'File &gt; Save As\' on your internet browser to save the image to your computer. Alternatively, from the item page, right-click on the \'Page\' link and select \'Save Link As\' in the same way.</p>\r\n<p>Other file types, when clicked, will open in a new window but will only display depending on the compatibilities of your browser. If you are downloading sibelius files or eps files, we recommend you save the file to your computer and view it in the appropriate program. Audio files/MP3 files should open and play fine in all browsers, but if you have a slow internet connection you may wish to download the entire file before listening.</p>\r\n<p>&nbsp;</p>\r\n<p>You can use the main menu to navigate back to \'<a title=\"Home\" href=\"/canterburycatch/canterburycatch/\" target=\"_self\">Home</a>\' or \'<a title=\"Browse Items\" href=\"/canterburycatch/canterburycatch/items/browse\" target=\"_self\">Browse Items</a>\' at any point. \'<a title=\"History\" href=\"/canterburycatch/canterburycatch/history\" target=\"_self\">History</a>\' and \'<a title=\"About\" href=\"/canterburycatch/canterburycatch/about\" target=\"_self\">About</a>\' are simple pages that provide some background information on Canterbury Catch Club (\'History\') and about the archive itself (\'About\'). You get in touch with us by emailing via the \'<a title=\"Contact\" href=\"/canterburycatch/canterburycatch/contact\" target=\"_self\">Contact Us</a>\' email form.</p> '),(70,'ExhibitPage',6,1,'Recordings Page 3','Recordings Page 3 <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'Sleep, Poor Youth\' by J.S. Smith</p> <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'I Cannot Sing This Catch\' by Henry Harington</p> <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'On A Scolding Wife\' by Henry Purcell</p> <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'As Thomas Was Cudgell\'d One Day By His Wife\' by Samuel Webbe</p> <p>Recorded at St.Gregory\'s Centre for Music, Canterbury Christ Church University, July 2013. David Wilcock, counter-tenor; Paul Young, Chris Price, tenor; Jon Williams, baritone; Duncan Perkins, bass; with Andrew Lowen, producer and Terry Davey, recording engineer &amp; editor.</p> <p>\'A Drunken Old Sot\' by Anon</p>       '),(71,'SimplePagesPage',4,1,'The Music','The Music <p>Content to follow...</p> '),(72,'Item',33,1,'Sirs! Sirs! The Serpentine River is Coming Upstairs!','Berg Sirs! Sirs! The Serpentine River is Coming Upstairs! Catch 3 vv '),(73,'Collection',19,1,'Benjamin Cooke','Benjamin Cooke '),(74,'Collection',20,1,'G. Berg','G. Berg '),(75,'Item',34,1,'The Emperor Adrian, Dying, to His Soul','The Emperor Adrian, Dying, to His Soul Glee ATBarB '),(76,'Collection',21,1,'Arne, Thomas','Arne, Thomas '),(77,'Item',35,1,'Hail, Ever-Pleasing Solitude!','Hail, Ever-Pleasing Solitude! Glee ATBarB '),(78,'Collection',22,1,'Callcott, John Wall','Callcott, John Wall '),(79,'Item',36,1,'Aldiborotiphoscophornio','Aldiborotiphoscophornio Glee TTB Note the date, and the instruction at the foot of the page; it seems clear that this is intended as a trap for the unwary in the course of New Year\'s Eve revelries... '),(80,'Collection',23,1,'Goodban, Thomas','Goodban, Thomas '),(81,'Item',37,1,'The Charter Glee','The Charter Glee Glee SATB Perhaps the most remarkably local item in the collection, this was the piece written by the Club\'s first landlord - himself a violinist, his wife a singer - in praise of the Club. Goodban, Thomas '),(82,'Item',38,1,'On His Deathbed Poor Lubin Lies','Webbe On His Deathbed Poor Lubin Lies Glee ATB '),(83,'Collection',24,1,'Baildon','Baildon '),(84,'Item',39,1,'When Is it Best?','When Is it Best? Catch 4 voices There\'s really no doubting what it is they\'re asking about.  This is probably one of the more polite examples of the salacious humour which was so very, very popular... '),(85,'Item',40,1,'Epitaph On a Blacksmith','Epitaph On a Blacksmith Catch 3 voices Delightful word-play is a feature of this fitting farewell to a man who has spent his life at the forge... '),(86,'Collection',25,1,'Horsley, William','Horsley, William '),(87,'Item',41,1,'Lo! On Yon Long Resounding Shore','Lo! On Yon Long Resounding Shore Glee ATTBB Half a century before Camille Saint-Saens penned \"Danse Macabre\", William Horsley gave us this ghoulish depiction of a truly fiendish scene: on the very shores of Hell, devilish creatures \"dance on the bubbling tide\". '),(88,'Item',42,1,'No Joys On This Globe Can With Hunting Compare','No Joys On This Globe Can With Hunting Compare Catch and Glee ATB This is one of the fascinating little oddities which crop up in the Catch Club collection from time to time: it begins as a Glee, then is quite clearly intended to turn into a Catch, before the final Chorus (including a top, soprano line)  rounds the whole thing off. '),(89,'Item',43,1,'Flora Now Calleth Forth Each Flow\'r','Flora Now Calleth Forth Each Flow\'r Glee SSATB This is the glee which - according to Smith himself - should have won the Prize Medal in 1782.  We know this, because his fellow-composer, R.J.S. Stevens, records with some surprise in his memoirs the fact that he won the medal that year, for \"See, What Horrid Tempests Rise\", and that this became the subject of a somewhat ungentlemanly spat when they met at a Catch Club evening; Smith accused Stevens of \'cheating\' him of a Gold Medal. Stevens had the grace at the time, and afterwards in his Journal, to remark that, actually, Smith was right: \"Flora\" was the better piece, and should have won.  Stevens kept the medal, however.\r\n\r\nPart of the problem, for Smith, may have been the fact that the Club used boys, rather than women sopranos, to perform the glees in order to help reach a decision.  This piece grows to a very effective - and quite taxing - climax, in a riotous 6/8 finale which the boys may not have executed very well.  Along the way, there is a nice little musical conceit, as Smith sets the words \"that now sleepeth in Lethe\'s lake\" in 2/2 against the 6/8 dance rhythms pirouetting around it, to represent the stillness of the subject. The whole is one of the most impressive examples of the genre; we hope to add a recording to this website in July. '),(90,'Collection',26,1,'William Hayes','William Hayes '),(91,'Item',44,1,'As Sir Toby Reel\'d Home','hayes As Sir Toby Reel\'d Home Catch 3 voices ');
/*!40000 ALTER TABLE `omk_search_texts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_sessions`
--

DROP TABLE IF EXISTS `omk_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_sessions` (
  `id` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `modified` bigint(20) DEFAULT NULL,
  `lifetime` int(11) DEFAULT NULL,
  `data` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_sessions`
--

LOCK TABLES `omk_sessions` WRITE;
/*!40000 ALTER TABLE `omk_sessions` DISABLE KEYS */;
INSERT INTO `omk_sessions` (`id`, `modified`, `lifetime`, `data`) VALUES ('001faeb1a6a89d89703ad909599cfa52',1555016488,1209600,''),('004adb3d0a3350f2704f16a2a7703be8',1556026638,1209600,''),('006a808a727e7c3c65db1cb8f416a698',1555908041,1209600,''),('007502c393208e65e445191add2b11ed',1555451195,1209600,''),('008e8898acf09b86841dc84e85f3d318',1555659444,1209600,''),('00b43831d3271ca95670574e58d3b7ab',1554830887,1209600,''),('00bdd723a52d691970df55e8c8918e28',1555142422,1209600,''),('00c8cf1c3d55a19d8ea779a748bedc1e',1555597921,1209600,''),('019ec86e2f5b061586357870e9a0808d',1555657960,1209600,''),('034ba6e633751d0f896f881d21545c48',1555805366,1209600,''),('035aff7bd1c12278a3c682ac90c488dc',1555309727,1209600,''),('04fb67b8a422ba26629b299809dfa56a',1554838808,1209600,''),('055dc00bfcce4e519c717e458fe356a1',1555558169,1209600,''),('05da91748c28de7a8ac68e9e9021c082',1554791656,1209600,''),('063f5f580139ac8a1b327d4ee8c24927',1555990114,1209600,''),('06667223ffc7c819e7213dfbd8e9f741',1555958700,1209600,''),('0688dfebcca972d760e45f6f447e065b',1554925658,1209600,''),('0705fb9aabde5777a6fdbce5cfffe4cc',1555287608,1209600,''),('077149be8c069d4258382679b0780898',1555658419,1209600,''),('07e34ebfa0775010e93fcae3577d5751',1555956445,1209600,''),('0984f2d4001cf986a2e51cedaf3a365e',1555197351,1209600,''),('0a47aa3cd62777dc4b3a39d9c814207d',1555986048,1209600,''),('0a90981684fd5a0f54012ed0a582489d',1555969061,1209600,''),('0b09f3af5392fb266698ab50ca0dcaa7',1555142627,1209600,''),('0b4b10a8ebdd6fc2ad7d94c1d5ec0c76',1555283682,1209600,''),('0c8e9de15a7ac959df358ffa25b6e220',1554821949,1209600,''),('0c9c7e0ddd938443c36afe2e76038c24',1555826082,1209600,''),('0ca39d1b15b81358e69d7197d32afc42',1555995767,1209600,''),('0e9d86ab85b1eb0ce90604845121c702',1554907725,1209600,''),('0f8aa21ebfa1c9557afbeb000842327b',1554817544,1209600,''),('10b5d7c118bac9cbd47bb02352d05ed8',1555201804,1209600,''),('1103328346a5deb4caaf48c233e425f6',1554783694,1209600,''),('11494730d654151b0582142ab5d77a72',1554998133,1209600,''),('1211a51f7ece0c9643d89dd7612586f5',1554780511,1209600,''),('12961e09d1cd10f85de22ac9cd922da6',1554808319,1209600,''),('12cde5131be4f1092027947c5fedee71',1555131674,1209600,''),('144abe574e1d3675ae04fef272bd59fe',1554783349,1209600,''),('153edc65280cbc6a6851001a87adc77d',1555046857,1209600,''),('155cebadc00117f180b29173d18966d3',1555003910,1209600,''),('192dc98fb120053bc409b0a008c3fd63',1554997583,1209600,''),('1964a5ab9fee56a13a8e847a739b95e0',1554999409,1209600,''),('19d622fe14f8d199f1ea2019a87128b2',1555080698,1209600,''),('19ee9f47501783cc3b08a7a5d2f9b934',1554934880,1209600,''),('1a35ea5cadf6ff81440d95d1bde927a5',1555103891,1209600,''),('1a9267f8cfa744b89d12caccd785e7c6',1554807365,1209600,''),('1b3b5c33839b040e45f857be29af4b68',1555484215,1209600,''),('1c82f7fcffb42bf846f4648b0c6161f5',1554928783,1209600,''),('1cfd464f05a6db902ff87123ae9d0cc3',1555284252,1209600,''),('1d9329e80e56f574907997abfd483e6a',1554895200,1209600,''),('1daf2fc6ee20220b7e66bdb01b6316bd',1555089848,1209600,''),('1dda8adf4e9b4745427bc91da764bde4',1554836778,1209600,''),('1e04df84e71b89b6b5e3eefb00417a8c',1555758741,1209600,''),('1ead5fb831bf090236f9743024fc77e9',1555071154,1209600,''),('1f30910b3179b01abf2ffc02d2649413',1555991993,1209600,''),('1f7abd64ea262932e982de47168a0bbd',1555655306,1209600,''),('201129a3841ed65f08709f08f173cc34',1555611490,1209600,''),('21aa3c4f6efbef6699150d33726dca87',1554830358,1209600,''),('226a0bcb26980b93f818d5fc2e3bf6f6',1555966405,1209600,''),('226dad003ba6f1b615eaddef22f32eff',1556029548,1209600,''),('228909a3faf97411eb0c35be0c0cd16c',1554963313,1209600,''),('236620971f09513d9ad630ef771c9572',1554955296,1209600,''),('23b43b2fdaba6f8bdd69524340c38849',1555452252,1209600,''),('23f8866b9cd785c9be6af6a2bc7f91e4',1555135646,1209600,''),('24151f846e7a9cb6adac0ed4f58e0e1d',1554997882,1209600,''),('24f605fc829304d2af27099d02ecb84d',1555361568,1209600,''),('25011263cc82c322ccc99464220865c8',1555273702,1209600,''),('253930cc916714bde65ef3f3d7f7a99b',1554990690,1209600,''),('255cb87f1dfa85de94bf99054a3df8d9',1554829371,1209600,''),('26742d3c1915a6b52d37715559ef3dc1',1554785408,1209600,''),('2802bc9b0c6dd899ff0e495536a26a50',1555767813,1209600,''),('282e32273ad248e64b053b8fda8b68ad',1555139867,1209600,''),('2860e84aeb70901122a0298770544098',1554802286,1209600,''),('2861358980c609dcb7e8a0da7255816c',1555509872,1209600,''),('28bae8173ae3852ea3e0558866258219',1555437599,1209600,''),('28ca6d6aa7110d9025fae00c85b045f1',1555045202,1209600,''),('2a58916450c2693d5572bff9b56bc48c',1556039319,1209600,''),('2a6134f166ad941730e9a2e0525d5896',1555096218,1209600,''),('2af85ddfb388e265023766937a75c2e2',1555186501,1209600,''),('2b47e3c579e690738dfd3933f4ac6507',1555924134,1209600,''),('2b746a815f7fbe28d166335897c591d7',1554993150,1209600,''),('2bb2a32107a7774fa89272ba490d94e3',1555171297,1209600,''),('2d060c66064e20c967427d1060bf2ae2',1555247014,1209600,''),('2d095fd7be5596d8fd358b1464739756',1555315017,1209600,''),('2dde77e7b401a64a8a29612bf5e0a3e7',1556006805,1209600,''),('2e137ac307b8575d0a7b006e9b2bcde9',1555760345,1209600,''),('2ee70dd47c67f39d6c5279d184197701',1555088778,1209600,''),('2f3dd1c9c4ec3fc453ced5dd35cfe52e',1554979579,1209600,''),('2f700704f11270a30117ecde3abf3639',1555284018,1209600,''),('2f8307ce99d4af748190408a7f56e860',1555091312,1209600,''),('2fda0b4b36ac7dea36de4d4a7088f55c',1555970055,1209600,''),('2fe27e46adfed438c2ae294e7f04a682',1554980975,1209600,''),('3032dd75022e71de2fc40472d837bf7e',1555034890,1209600,''),('30d4e7d99c46f6d0f4322171c17de6c4',1554886368,1209600,''),('30efa429c899d1f57ebd824266ea4997',1554963386,1209600,''),('31b7d2baa713204da02b0d462d1c6470',1554960342,1209600,''),('325329d8cfa5d13d9eee5af769921f20',1554927304,1209600,''),('326ebfb815f496e2edbc5a77afccd910',1554909781,1209600,''),('32848b48c2a6369d1a4b721fed620375',1555032710,1209600,''),('329ae2df803699ca7c4594e81d8cec87',1555233296,1209600,''),('32b5091b0ae357982331de6060acdaa5',1555119001,1209600,''),('33c903c66a7546f23dc7b24227444156',1555953223,1209600,''),('34a0773f226532e398de9a0265908478',1555997754,1209600,''),('350bbe5a4598b1e8a0a1498733bee64c',1555256472,1209600,''),('352ce53d12922d02c374ac40a52a3424',1554824052,1209600,''),('3552e3ad58e366ec79f613963ab3779d',1554935103,1209600,''),('35e9157ade3d87c69a1d057845870257',1555073397,1209600,''),('35ea045d70fde87f44d4af53ec916b78',1555291174,1209600,''),('372514c025f97fb001516bc169542f67',1554876504,1209600,''),('3727f8f1079a4c373276e928d16c251e',1554824647,1209600,''),('386adfbf32a51c2ff592749b13eecc4d',1554926730,1209600,''),('387ac20c72e3d6a39f2e7c6bf86efe89',1555955341,1209600,''),('39cc7bda0ac3ee2526ed4874bd5a52fa',1555140162,1209600,''),('3a8006b305676e5d9d359d3267d396de',1555242765,1209600,''),('3adea545d89dbadb3012337adc361b01',1555165100,1209600,''),('3b99842bfc407769f1114619aa6c6ed4',1555984685,1209600,''),('3c057248687320ed60a36bc5f7c85cc7',1555713151,1209600,''),('3c65d5468b9fa9f8c918227d0cc597ee',1555063138,1209600,''),('3c6fd255e399750ace2ff70f5e826fc5',1555623908,1209600,''),('3d56061a6dbd35e6f6d86c427257f765',1554955284,1209600,''),('3e1a4ab4feda617c8eaca5ed541a71d6',1555689755,1209600,''),('3e43cb3a2b11e894447ea35b757c8228',1555020949,1209600,''),('3e9806178794de91b6deecdd36b1e4aa',1554804787,1209600,''),('3ec1e7ce5db6d3d716f278edf8963cb9',1554788367,1209600,''),('3eef5e3d40ba44f0d13cede72ef5446c',1554940927,1209600,''),('3f26f6a5d2e2c7ed399e81d6bed109e5',1555053187,1209600,''),('3f9c8fd826500d372e5989721503f65e',1554965082,1209600,''),('4028346ca88af41c373c410857c2dedb',1554804753,1209600,''),('4041b9c1318d3aebba33415cfbc438d1',1554781513,1209600,''),('420e4968d23a085c9f18dc875e69d0dd',1555990639,1209600,''),('4357771f5123b53544e9cdb269755c38',1555234092,1209600,''),('439f12ba12a69b948fda93789571b92f',1555008057,1209600,''),('445c6a04953672d0962013f2404a8962',1555110868,1209600,''),('446efff5ee98614fbccc97628b0cef2b',1555241742,1209600,''),('44b2ca16f83366f37100e2dada1fa7fe',1555844138,1209600,''),('453712d5ef604df5159d6a00baa11708',1555958920,1209600,''),('45613300ff2cf9b271964da8169879a4',1555622151,1209600,''),('461459aee5cf3c56d637eac63c655182',1555044186,1209600,''),('467a19ebd2a710f58d3259e188b373de',1555699809,1209600,''),('46984dc355ca2dc48c4c63978dbe9052',1555969592,1209600,''),('4717bae1a372b2d7cb28cf3e99d12d59',1555476959,1209600,''),('474d737a5d2cbf77e8f83d7874be9ded',1555951954,1209600,''),('474e7e31d49393c1d2c47f02b14f545f',1556012086,1209600,''),('4822f3c38428a5f04f3090dfacccded9',1555984748,1209600,''),('48341c87ab015d065c247126b1b7bef1',1555138518,1209600,''),('4951b1d5fd842737c6aa16e46510991c',1555356551,1209600,''),('49dd5d44119b547879fb2121930d7d30',1555957052,1209600,''),('49f096adffd3c4ce99b2afb47ac639f6',1555132261,1209600,''),('4b0b245854eb0ed18df393c770d42028',1555174035,1209600,''),('4c83670b1a572642638554ce7f36082b',1555613068,1209600,''),('4d79de358939b8acbff3692a6430527c',1554964437,1209600,''),('4e24853b95c3bad4e7fc4c2cece76736',1554811339,1209600,''),('4e71e2f39030e3f54a817f7c555c68c7',1554815963,1209600,''),('5006ddc67918eedd8752dd9717672174',1554936799,1209600,''),('500a08721621a5afe14931abb335a7e4',1554784617,1209600,''),('505d51cd1395bf1e12ac70794234e029',1555951914,1209600,''),('524398e007574c27cfd69ac5701c7570',1554933022,1209600,''),('52dc430bfb663d4797564b57533c57fe',1555357687,1209600,''),('52e0ab82ec15255d505c673d32540f69',1555098206,1209600,''),('53d9bd950a129d167583e11290a6cb27',1556008837,1209600,''),('53ea145d7ca295b3df4a44a78b0f9db4',1554986225,1209600,''),('53f0a7c8e63ac5300629608675248aa6',1555923249,1209600,''),('5400cfac27eb5f9f9510eb875222f381',1555961363,1209600,''),('546501a9f20c2883ee693dc2cfad81a8',1554992994,1209600,''),('5501f71d09836f56b41f02a5c696dff6',1554820199,1209600,''),('552d241646b77962e9af1579fe636a21',1555951283,1209600,''),('56e3299c447c6158a5e760b9520ab5af',1555225817,1209600,''),('5772e8c1a87110803b941e8d0d4bf2b0',1556034165,1209600,''),('578787af7307ef55f7a83cd547dbfd5d',1555977885,1209600,''),('57dcc6319b5626f9af2b4081402d0686',1554833097,1209600,''),('57df1a98aeb8ae422abef01a759ce137',1554824298,1209600,''),('5a4e6ffaf95561b1082d9e12542183a7',1554938636,1209600,''),('5ab191443d6d6cb03709ba261e465e90',1554835025,1209600,''),('5ace408f8f2fe42771a2ecbd057cb66a',1554839768,1209600,''),('5b9cad86dec1ff636e1a74840bd775d9',1554833246,1209600,''),('5c1e6bf8c7c213dc2a26bd90c7372634',1554790245,1209600,''),('5c8e658232c18d5a1b17baa7ed2662da',1555242321,1209600,''),('5cfdf4b932cdbb3a7af74aed24a8d97c',1554818783,1209600,''),('5d9629e6dae2249b37d145cfd37ab060',1555924137,1209600,''),('5e3229fbc215795ba8eb6e0c6027b2aa',1555142699,1209600,''),('5e42151523bffa20260f78995d7e4fa9',1555314078,1209600,''),('5e8bfc57d4ec6c00dd7f6c6fa054bb03',1555377710,1209600,''),('5f3ad613388cb24029f856a2f922d6e3',1554829498,1209600,''),('5f4dc86a694ebdded6c83e4a9a50080c',1554941600,1209600,''),('5fa27673050afac9c0c147affc243b70',1555105083,1209600,''),('5fd8da756c14ba93660309c738287252',1554967392,1209600,''),('602a22761dac7b3403d29c317dbd2bd0',1554820934,1209600,''),('6067ed30c48c7ce2116ff2c34e61faa5',1555132490,1209600,''),('60e1fcfa1b5e0566e5881050cf5b508c',1555288683,1209600,''),('61b1f5ed4bd44cf3c316aeaa0e2c02d9',1554941788,1209600,''),('623e12f3646599049541c8b8b13807c5',1554808434,1209600,''),('6253a7b0126960c745943774d1f8d224',1555123474,1209600,''),('62c90714dd6b75c28c5fb53b752f7d74',1555939241,1209600,''),('62f752ade32db5d1d3223c9b4404c719',1555056307,1209600,''),('63230b41aed2b65dfa7e49f0f0857313',1555994754,1209600,''),('633647c39e2b4a4564bf5e98d7f35556',1555189778,1209600,''),('644ff928b40b869764692a7c04eecca8',1554940584,1209600,''),('64f6ade5ff9ceab9972b7c33cd6616d7',1554834203,1209600,''),('654debc4e251cb3bb277aa4f3ecf2e95',1555103861,1209600,''),('654e965fc34f6afa9752c537ae988d8d',1555126110,1209600,''),('65867f4fe8a9c02606a6f0af770b8682',1554814382,1209600,''),('65b32cc6fdbfd8a3974dc3de2b124493',1556005086,1209600,''),('65b378cbd83cae6ed85e4a7daa149ee4',1554811996,1209600,''),('66c6bf0d65b07143cb8e72076333ae4f',1554909411,1209600,''),('677d3c7531d5fd73e5074f66a7158cb9',1554784084,1209600,''),('67cb2710f9ea15a58b5dbe8d6a695ee3',1556006042,1209600,''),('6803e8eace78cd499bf5ab2436012c7a',1554839903,1209600,''),('689ac02bde0e6654b4abe77a771f8fcb',1555386217,1209600,''),('691342d25ca325f0d3663dee05bd28ee',1554970730,1209600,''),('691dcaa98edb4338e9fcfa8ed0507a53',1555024840,1209600,''),('69783e4312dc6e6fa1e5c555244b3de4',1554941809,1209600,''),('6a1bf0a8f15ceea6a7f5bfc21fb17904',1554987101,1209600,''),('6a46d45b1eb65596e686aab45b48582e',1555555764,1209600,''),('6a66a2aa5dd200eace5ac5cb1ba433ba',1555064126,1209600,''),('6acbea41915ebca5c9807466f4442250',1554819275,1209600,''),('6acf0d0a9ce3a4f2b0af8167a8f4eb40',1554939352,1209600,''),('6b02c952800139d9d3328d2dfdeeda80',1555999980,1209600,''),('6b33b699a6cbdaea7d4625cb42f954fb',1555235614,1209600,''),('6bc23bc4d38f9073bd753f4e6d31c127',1555253137,1209600,''),('6bcce9d882946b2cf8ce0e870a707c6f',1554920657,1209600,''),('6c1067d7fd9ea10ac25c859c570c725f',1555015124,1209600,''),('6cb3158fb915fd44bcd5aed642483695',1554953835,1209600,''),('6cd2ac2c7f792b0c94943c3be0f2b164',1554804409,1209600,''),('6d05d05bba265270627c9b9ea474c646',1554786908,1209600,''),('6d5a83b825f92d6d087ce3d93f8b45bc',1555162759,1209600,''),('6e90ad5e9a698044aa21090c56e2c7ed',1555259292,1209600,''),('6feb2042eb87c483da4aaf17b7b8eb2b',1555621958,1209600,''),('70c374e7f29c884d7e35a164c74ff972',1555447604,1209600,''),('715ea4944600af05d92fb2a91d130175',1554813854,1209600,''),('71b63890afada43df956a4d9e0c915da',1555216342,1209600,''),('71b7b7a465ebe68404a6bcb15a8ab6c4',1555281249,1209600,''),('71d9694556efe0093aa4edf8438a02c5',1554956786,1209600,''),('723c184e86642a7cc31b2671e9753772',1555014553,1209600,''),('728270124ab6dee2fe51bbc0a4bf04c4',1554831231,1209600,''),('72dd1d9b75ad87ccf7b338cd9cbf0426',1555143829,1209600,''),('731f37f8797662500d3bd24df92d819d',1556021908,1209600,''),('733d7d3b1bcb625f2ba7e6a522425c4d',1555520703,1209600,''),('735b99749b44151450c57cbe513823b9',1554798075,1209600,''),('73bd25f456f92ccde2861d15172c522b',1554860672,1209600,''),('73e2d7b55af934b4c7a7b638200837a5',1555198087,1209600,''),('7433e35312b4371e7907c404fc3186da',1555318828,1209600,''),('748d753beee5d59550d9cc37a950523a',1554804156,1209600,''),('7690ab0ba1faea89daf1780e55501ac9',1554835552,1209600,''),('7a7260532e728e2cd0874ef6377945e8',1555032941,1209600,''),('7a97ce3f61bfd7439ac69236e68dc8f4',1554868875,1209600,''),('7be9a4f8b4451fe361d38b3203f4d20e',1554963430,1209600,''),('7c53f7601ca3925145ebdbd8d8fba57d',1555924150,1209600,''),('7c874372de99c5f1e64e1d247b4720e2',1554934369,1209600,''),('7cbb121f4cee392a6e9ddd4583964304',1555046074,1209600,''),('7e209b36891dc749392736a251072280',1554860306,1209600,''),('7e577a1abc50a60dc70c45873d35e46a',1554800077,1209600,''),('7f5f822eb62c0a6bc71e42e904d21553',1554816640,1209600,''),('7f7ccaad9342f730523fea1375a50982',1554903839,1209600,''),('7f870294f0b05346db5b133b0d251aac',1555125335,1209600,''),('7fc47ac397f538a8e03f05d62a0649a9',1555081157,1209600,''),('811a8e921136c1398bee513ded6ac37c',1554791030,1209600,''),('8231d4db0d0fd87f1010f1b7afa56ee3',1555104899,1209600,''),('837753657599cb6a1fcc06bbcf7f1195',1554998163,1209600,''),('839e167a4fb97716d7016060b8e0386c',1555521866,1209600,''),('84066c5147a4781163fed5c928b01aa3',1556033265,1209600,''),('841b722b7a1800f3dd13f5447d2ea8ec',1554810393,1209600,''),('84e6cbef8d04d1a9d4ccdee230a66039',1555220650,1209600,''),('85d66d73aa82d5086400de88d6488995',1555828224,1209600,''),('86abef9b63bea6af4dd0564f5dd81bf1',1555150092,1209600,''),('87813e838119007489b0bd9aef669032',1555645487,1209600,''),('87a5905a852bf0c11cb88c03c1b709cf',1555170789,1209600,''),('889eeaf75f4777f1b41082e5c3d150a5',1554836087,1209600,''),('88a4087a0ad82aa89162a08fa9569d2b',1555509222,1209600,''),('89fefe033cd571671aee08ed6e42a734',1555230622,1209600,''),('8a7717ef36be56c99da8984d1b9ac184',1555227923,1209600,''),('8af05d49824923bd3c07e994eab9b141',1555472767,1209600,''),('8be13ab134392f41b59206d00054c40f',1554788300,1209600,''),('8bfe6919d47df5d832242c17f736ff7e',1555243751,1209600,''),('8c9a87d0c35c31d39020c03dd14eb466',1555860808,1209600,''),('8ca8263a34759881374ec2765093ba62',1555930860,1209600,''),('8cefaacbe06fbf4a4654620bc0a87fdd',1555088475,1209600,''),('8d08ea6aabfb53fe904c21926bb7676d',1555549852,1209600,''),('8dea1f90b5bca98f5da72178722cef88',1555984005,1209600,''),('8e27440e0be82d3e44571dc666c841a2',1555106299,1209600,''),('8e981a46adcdc819e0598beec6aa3de9',1555188480,1209600,''),('8f4c88d1de68a108b5cec7d6efd5d440',1554785685,1209600,''),('900b90d3b836fd4342d1a9525444b7b7',1556012519,1209600,''),('9030971c67bee225a2b82977818ae116',1556003717,1209600,''),('909b41327d96366f8d1487b732b56e85',1556003419,1209600,''),('909c079cb13c8cdbb49c2f05e9ba5488',1554938481,1209600,''),('90c41f9ec9c6c1227a6f12522914a97f',1555249625,1209600,''),('90dc1081e1d570d25cea852dcbb7070c',1556030714,1209600,''),('91640c9f55ac0d2e30bba64151116937',1555176324,1209600,''),('91d9f575f03e282901a5b42bf0314173',1555992022,1209600,''),('921aad326144745344adcd8614d01f3d',1554958196,1209600,''),('933e9bd1af5170183bc43505af0c7001',1555966869,1209600,''),('9357e9c3cbde4e6b01c425bee51d8098',1554949198,1209600,''),('936e01df564d96a8171f588586101b0e',1554929506,1209600,''),('938ebf80675a38c0bc1c7dd2d0c38f8f',1554855369,1209600,''),('9430095778e676b0d1c69452f5e2e810',1555076708,1209600,''),('9463aaaa96e10fdcd4409276a8e28a39',1555260016,1209600,''),('9483d0a9e7739f9d25537947d2a6fe7a',1555016168,1209600,''),('9499a39e9dc1fdb90e9964bef4ab521c',1555270249,1209600,''),('94db2a074373ac052f8d409a280d8565',1555990904,1209600,''),('9521623cabf56ca913efe7f9506bb95f',1554963740,1209600,''),('953c6fe1e78542e5be030eae569ea849',1554790893,1209600,''),('953fc67dbad20d5df77c655585ba616c',1554792765,1209600,''),('95753b42ddab1601867c036b65711eb6',1554958368,1209600,''),('958c90c65ca255df7f473a45b9f61fb1',1554792043,1209600,''),('966dbdc3607cc7eef2765901f017abdf',1555994393,1209600,''),('9782cade8117a2031d2798e244329a7f',1555677875,1209600,''),('97b1eb4ace4d0cb852c583a83685dac7',1555668234,1209600,''),('97e1152222ead609baa51422dd5c6391',1555163930,1209600,''),('980005845385ee269d1cba1e4a3dadc6',1554804327,1209600,''),('9828684fa638f8767d39ea0ffaa262c8',1554790291,1209600,''),('9842bff759d1e8caeea7cc812e8707f6',1555161829,1209600,''),('98968788d514adc5e7b55c1375095ee7',1555128726,1209600,''),('98fc6c6213fb5b5b4df3caae51849ed6',1556010888,1209600,''),('9a31b4dcd80c7c6e92c86a7a23ca4f90',1554796308,1209600,''),('9a673afdf448caee21d50645732c70d6',1555662338,1209600,''),('9a9031a042916c2919173f1bea512b97',1554813189,1209600,''),('9b38ba85eb5069107e68058b6f981d1c',1555141606,1209600,''),('9c21904a3af22cd3081f7ddf7d9b1c92',1555067627,1209600,''),('9cb50a0e14d2563b0b7822a0809b73f7',1555178952,1209600,''),('9ce30302f113a756394de2f3d62f128b',1555201280,1209600,''),('9cfcebe7949e3f55bcec413ea4d808a2',1554931764,1209600,''),('9d2e4ebfa379524ae748989c962d5d64',1555034649,1209600,''),('9d63b8aaf24d3e24ccf8cf15069fdf1d',1555728691,1209600,''),('9d836d9c03342cf5417f814e8d3403b9',1555273483,1209600,''),('9de776b6a6ff185ac2d362e46188da52',1555136958,1209600,''),('9ee200aed20178570223be594315db5f',1556007100,1209600,''),('9f0a2312e23cd10fdccf4f69376fe938',1556031415,1209600,''),('9f1e55dcea6b54ef77b515cb7f486d08',1555966474,1209600,''),('9fe3f30162cd1a08173c594054c22722',1554954626,1209600,''),('9ff0a754207d49175ff7bea9c41827fa',1554969223,1209600,''),('a02a03cf4fc85c17c957ea96d506c142',1554896050,1209600,''),('a092db196fbdaef3e9e2c5ce219aa9c9',1555237524,1209600,''),('a104c929eb6595671a6211adad9c1791',1554912055,1209600,''),('a17e4fec76bde63389ecfacac341850a',1555184272,1209600,''),('a18b77224470189e01495144994e34c8',1554798792,1209600,''),('a1c12760a7014761904290c76f426541',1554896560,1209600,''),('a29128e58726082cfea4660f77212981',1554786941,1209600,''),('a3a59728748dcfbf6399c1f661a4ff3d',1555097803,1209600,''),('a3cea583584549bec606647dfca12b87',1554851807,1209600,''),('a42303e560174a8a4c54561646b43c93',1555263333,1209600,''),('a43c2315e18d81d0ac81b537e87c9c3a',1554837404,1209600,''),('a49dfcfc45151dbf629435599667997e',1555153392,1209600,''),('a4a4ceb6082a8f6e4c0283bdb881de53',1554798980,1209600,''),('a4b6d125b9ae55e9b6315a502df011ea',1555141966,1209600,''),('a569c7919652c2c73836fc1053135cf3',1554850812,1209600,''),('a5f3116cbf2954ea91b9cbcddccd29cb',1555969332,1209600,''),('a6051db7da3b1b0d84f0f892e4fc5deb',1554782509,1209600,''),('a63bf957d11b984fa6bd90f1fb90c8fc',1554830678,1209600,''),('a651c770c47fc6655a5e6a81ea726f12',1554821287,1209600,''),('a6a09c7fa582faad15b5b9199d911bf0',1555859215,1209600,''),('a6ccea42b864646475c831732e58efed',1555226696,1209600,''),('a76b1fe39fb3a0f778dad8ac9505fb3a',1555989956,1209600,''),('a7704320c8d68de49e46f38faa6323a4',1554924339,1209600,''),('a8da7f25255d3967b3a57130f542bc1b',1555403552,1209600,''),('a8dd38d3772a79ffb13ca497cbd72ec7',1555998812,1209600,''),('a90632db09a79139ad15ec61a61d6893',1555013436,1209600,''),('a95c97f74221a010b60a09000b8f743d',1554821091,1209600,''),('aa9c5441e3532c9e0eec8ea38e5980d2',1556022884,1209600,''),('aac4ced7934cc3a3bfe2c13494547582',1555162514,1209600,''),('aae879a3a146847c13f470811e35c62b',1554899162,1209600,''),('ab3adf54a4d4e2631a8a30dd3138875d',1555964691,1209600,''),('ab5e0e5763351f9afceffcca3350e056',1554809974,1209600,''),('abe627e549b45d936c93b2675714746e',1555520593,1209600,''),('acf92e9437a130614e927556218d1e66',1555218523,1209600,''),('ad1985c61fb42917750ecd877e382382',1555976606,1209600,''),('ae57ec1f04e9d6efb74146b3dc0a150e',1554935694,1209600,''),('aed8cd85fc71c829644b13ea27f1dddd',1554811610,1209600,''),('af44f75147458bbe9e7474a47e81830e',1555365162,1209600,''),('afbfd058048dcd0cada315d323ebbd57',1555472765,1209600,''),('afda9219c88785e54a206c2a1ae1a175',1555079636,1209600,''),('b0823d568ca6f9bc29c06b5bd2f182b6',1555319902,1209600,''),('b2985306856fa8759bba19d8b936bc6d',1555078174,1209600,''),('b3122afff207e668d80ba318fcf1de93',1555060181,1209600,''),('b546f083c3fa7dc2f4b68cba75122cac',1554787934,1209600,''),('b55237a5544a7dca3b135b3e796e20c8',1554851899,1209600,''),('b5657a58487923656d45966792bd210f',1555791330,1209600,''),('b65558720e64dab1d57b0e361a8d1f31',1555310805,1209600,''),('b6efa16c588699ee13a7606d50bb1b90',1554811690,1209600,''),('b6fb085e1f742a522e0be0923e7bb2a8',1555996798,1209600,''),('b90080342083cb5ac01703f31ace979b',1556002173,1209600,''),('b923034164d48f5d9178e29d4f1b7bda',1556021209,1209600,''),('b9cc010b493cb090a42080198dae020a',1556009164,1209600,''),('bad6c974607fc6a62d67e6704cc25f5d',1555046827,1209600,''),('bb4503016ac7e89287f02f0647a052db',1555172031,1209600,''),('bc76a39f26f0165dbf433c8ffed0a007',1555225883,1209600,''),('bcff9cb2c21bb549dca7f1d37ca6e6ab',1555933463,1209600,''),('bd95576cd5a70bc9b6f1d44e62aaaf20',1555984899,1209600,''),('be2595dab63064be2f4c8f8c086d4b1f',1555927833,1209600,''),('be9fc4df05de66b23c941b7969a06ba0',1555981526,1209600,''),('bea18761a1b1ea6d1b7474058eec7d12',1555645280,1209600,''),('befeae461961f6f1d28b234debfc5a7a',1555315861,1209600,''),('bf0b94504f2bf40e978c021cd60fd19f',1555913380,1209600,''),('bf45947c5453cfda7b6356413d093f90',1554998686,1209600,''),('bfa946ca6f8d031b39c31976f3af8127',1554792012,1209600,''),('c082f7f72904c28ca7e3c9684a6f6b81',1555073484,1209600,''),('c0870111103717efea6d27a6d7abfa53',1554862906,1209600,''),('c20322d3b9055ea77307b09189e6ae02',1555995621,1209600,''),('c21e00e8ee081be5e8d5250b74cc3074',1556033294,1209600,''),('c2f7389441f9eb09e9996421d5c2650e',1555132574,1209600,''),('c487ae43f07d1d3744fa08ab15440186',1555823587,1209600,''),('c541599c3a88db977c5725c42aa936fd',1556001422,1209600,''),('c6577dfbad1746b935c26a17ea7417c6',1556024190,1209600,''),('c6fdf50bad4dbb560c10cc316ee7c101',1555779225,1209600,''),('c738c9b97765f1e9513bfb3ec9233b41',1555849665,1209600,''),('c78b79cb57aefcb5937c52d0541f40c2',1555401629,1209600,''),('c7e050661cc44b77377ce6421ff89f8a',1555039889,1209600,''),('c7ef85fa058a131482abe30fd6808ad3',1555659560,1209600,''),('c835c7d4f5087bf253db95702cce3ca7',1555273353,1209600,''),('c9435bcfc28254b868a99c19f0ce40df',1555402364,1209600,''),('c9506e821a787c2d8e1eae76be042021',1554808736,1209600,''),('c9816afce0d6f407e63f3d0e6657cb78',1555967727,1209600,''),('c9bf634cbd0c34a984e88b1d2aa5f070',1556033324,1209600,''),('c9e143553a6d90e6f0589fab3f1baf6a',1555097550,1209600,''),('ca1057f311dcde9e2ecb9d5b5be1ac41',1555219880,1209600,''),('ca6ebc96b994c324e932edaaa36856f0',1554834951,1209600,''),('cb2f3eecc7391817c6e35565c1483263',1555190225,1209600,''),('cb40285b8e9f8f24ffca90721a6d4182',1555264000,1209600,''),('cb7f045ea4ab550f3d16b3ac8f481731',1555994871,1209600,''),('cb95675fd73a9d3e082ff59340a8904d',1554910418,1209600,''),('cbb0b05138cecd10261b73f30eab2218',1555961311,1209600,''),('cc1c02846cad01da863fcdf83ef54b20',1555236514,1209600,''),('cc99df231937f1faec58bfe082d8614f',1554821850,1209600,''),('ccb0dd9a7d45699388955def3650b70a',1555951603,1209600,''),('ccd73aae6be040285ccf22f215ae333a',1555129046,1209600,''),('cd8bb49df1b8bb378f1fd00f776d9077',1554798697,1209600,''),('cda3836c7575a1d42989bce41c86b823',1554886052,1209600,''),('cdf833a47f9d5ba7d4de72f8cd676a7e',1555986393,1209600,''),('ceeaf2afecf1dcaf9ba212f59b4c7f6f',1556021967,1209600,''),('cf26b032d217d599440053ae0ee29b06',1555561236,1209600,''),('d02311553deb286373508ae81e9b3142',1555291027,1209600,''),('d147eb3529fa1969208aa3d0a30d7a77',1555044843,1209600,''),('d15eb83ab5220cb0aec661d7f94001c3',1555955311,1209600,''),('d19f0355e5bccaa53e4a60f7cf7fe42e',1555521877,1209600,''),('d1cc0e32efdc19f12b3094667aea2bbf',1555998510,1209600,''),('d1ecaec1ae4e2940e2935dea06e67f16',1555649805,1209600,''),('d2645accd75aca6fc13bf61e2d70b8b0',1555066631,1209600,''),('d3a8d56cbf56eea72ffeb89ea34ff8ca',1555235743,1209600,''),('d50e58d127f2886269181f7332ea5e7c',1554786726,1209600,''),('d64d7290e1031978ab04452cc91fddf1',1554894074,1209600,''),('d6a17f32ba0015a859a4c91a0db27fa9',1554940996,1209600,''),('d7adb62dc1667f306f5bf697c55fd3f3',1556037158,1209600,''),('d89b941428a9816b6a0d38f52162a8e9',1555230480,1209600,''),('d8f0d24dd137fa8f3ef5dff7eb54aaf4',1554991030,1209600,''),('d981c1d4b0693b77e992607baba002b6',1554815439,1209600,''),('db35129bbcd9b42e0a267fe2b306ee83',1555534407,1209600,''),('db3cb95eb337dd07f37ad0d73ff97e1b',1555016292,1209600,''),('db6104eb4108be2de251c08b39d4292d',1555190883,1209600,''),('dcf14f1493d75cfb45fa4faff1693046',1555638587,1209600,''),('dd29690d10c61d90775f5c34100e804f',1555282838,1209600,''),('dd5fcc8704a1f39a1f128bcc6be377b1',1555271221,1209600,''),('ddc7f0a6e732e958bfad9ec5c6aa6a1d',1555068494,1209600,''),('defd15d2b06e29dad9ee6983fb40a399',1555537108,1209600,''),('df5798b28a2796af94d55b6bbac67a56',1555576086,1209600,''),('e06692b15380b921055150d94a983884',1554819931,1209600,''),('e0b74af64748356f79a4d9223f3a14b4',1555230935,1209600,''),('e11d550fd6fadfbb512ad2de1ca248d3',1555305357,1209600,''),('e149cd2066bf3f8832c6eb8b8f8916e9',1555334941,1209600,''),('e16b18381a337b09c7a4d8adc64b8f48',1555223447,1209600,''),('e2f6b5583efa301e0c11289342122928',1555008506,1209600,''),('e3500380209e3e7466caee19765c94e5',1555315342,1209600,''),('e3e72d7e5f925d57635e0a63f2b51516',1555102170,1209600,''),('e41053186bfa2a2ff53a2b0d93f29123',1555299674,1209600,''),('e4876bc973079785ddea22be1b2b9c47',1555956535,1209600,''),('e49081cc866ae610e851938497f68450',1555542954,1209600,''),('e5192bbd91e39ba10c79336a4067f780',1555956247,1209600,''),('e6413164465e468e97ae15b8bd600411',1555189203,1209600,''),('e66c72f2fe20c52e9efa65de423563e9',1555156829,1209600,''),('e675bdeb381248d41b1dcd84e3db13dd',1554835899,1209600,''),('e6e42a53c34c1d5984b218b0ba5889f9',1555213833,1209600,''),('e79c8c52bb940087c7e373bcdd1f7bb1',1554788748,1209600,''),('e8160877fa7f9defa1faa0001dc34385',1555956632,1209600,''),('e889767f639f1967f9431830383a0e15',1555978594,1209600,''),('e9e093aadb183f490491853088c113a1',1556034270,1209600,''),('ea7c9361676b2a5091703b7dda0911a1',1554893724,1209600,''),('ea8c34b631f2368d5fcdebbc41bdc90a',1555186913,1209600,''),('eaf5d767a79e62a021ca737dc0e73610',1555205371,1209600,''),('eb27a40bc9ff9525ffb87de622993cd7',1554941044,1209600,''),('ed2b8a054ec044037adc8b3e2e6e045b',1554925025,1209600,''),('ed346a304a2ca224d8162bfc8dae92fe',1554818431,1209600,''),('ed9a85d7cca023814b1dbca502a6f62f',1555921659,1209600,''),('edbbfc469ee99a266e174d4cf3aaf76a',1555150765,1209600,''),('edcd5a6c2250957aeb7d2ac757ad4ef3',1554822888,1209600,''),('ee6808f3649d643dc47eb8e123f7c6df',1554935328,1209600,''),('ee7d541da9b7156656a62d24a49bb16f',1555043172,1209600,''),('ee9b8a525535678f31910f740bd22688',1555519081,1209600,''),('eee29a50b8fca779ab6162854560f0a6',1556018479,1209600,''),('eef2977c2976b87112c2e21984f869f7',1554851681,1209600,''),('ef2361193f3608e0f49368396f97677d',1555315484,1209600,''),('f09566352405913752883eca2cc30cb4',1555298759,1209600,''),('f14decdb094b38491c7aeed3caf43737',1555896328,1209600,''),('f299d89a5a83dc6b376a48f99f58e22a',1555233564,1209600,''),('f57b34c2c06aee9e9acfc4a4a4480444',1555117608,1209600,''),('f58ec4fbe418f7a80a3a72b3506c0191',1554860686,1209600,''),('f5a9cf975cb0005d8adfb13bca0d08a5',1555508171,1209600,''),('f61769f437c425cf8c37a61e4782a1da',1555181337,1209600,''),('f620c854b93153df99b2cc814d0f8767',1555181234,1209600,''),('f63d23281a0d955601438855f7c570d7',1556029473,1209600,''),('f64969c4a182a178a498d8d0a5cb3e75',1555350572,1209600,''),('f6b7aa862759b8f62bd3b8845f41ee75',1554790609,1209600,''),('f81fd0bc8e96d814b6c59f828fe0a378',1555255649,1209600,''),('f85fcf61467b936f1c4479d1e784eff7',1555214978,1209600,''),('f9659c121fb0b9643779c027efacdced',1555044913,1209600,''),('fab02be7623f13a6dd8c3c594b5d2be6',1554974736,1209600,''),('fb0ffb8245160b2dadcadbfd8ddb45c1',1555029706,1209600,''),('fb753316f4f7b4714ab1562f6704de7c',1555105403,1209600,''),('fc69bf416bb1407b7d295356b5b3ebb6',1556038036,1209600,''),('fcd9a836d478056dff6738e6920b0cb4',1554807200,1209600,''),('fd0ce8b36829a4d7e952b6d98dc522a4',1554916029,1209600,''),('fd6bece0fe13df566430a7f6e252e5f1',1554913176,1209600,''),('fe1d8fba3f274f384bf0c0d4a1200c90',1554807584,1209600,''),('fe9d583b2daf8e8e2d8e713651351a79',1554959018,1209600,''),('ff08700c8cd77c0e89d19141d8619b04',1554901652,1209600,'');
/*!40000 ALTER TABLE `omk_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_simple_pages_pages`
--

DROP TABLE IF EXISTS `omk_simple_pages_pages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_simple_pages_pages` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `modified_by_user_id` int(10) unsigned NOT NULL,
  `created_by_user_id` int(10) unsigned NOT NULL,
  `is_published` tinyint(1) NOT NULL,
  `title` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `slug` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `text` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `updated` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `inserted` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `order` int(10) unsigned NOT NULL,
  `parent_id` int(10) unsigned NOT NULL,
  `template` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `use_tiny_mce` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `is_published` (`is_published`),
  KEY `inserted` (`inserted`),
  KEY `updated` (`updated`),
  KEY `created_by_user_id` (`created_by_user_id`),
  KEY `modified_by_user_id` (`modified_by_user_id`),
  KEY `order` (`order`),
  KEY `parent_id` (`parent_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_simple_pages_pages`
--

LOCK TABLES `omk_simple_pages_pages` WRITE;
/*!40000 ALTER TABLE `omk_simple_pages_pages` DISABLE KEYS */;
INSERT INTO `omk_simple_pages_pages` (`id`, `modified_by_user_id`, `created_by_user_id`, `is_published`, `title`, `slug`, `text`, `updated`, `inserted`, `order`, `parent_id`, `template`, `use_tiny_mce`) VALUES (1,1,1,1,'About us...','about','<p>This website has been made possible by funding from Canterbury Christ Church University. &nbsp;It is the work of Chris Price, a Senior Lecturer in the Department of Music and Performing Arts and a Tenor Lay Clerk in the Choir of Canterbury Cathedral, in whose library the Canterbury Catch Club volumes are archived.</p>\r\n<p>Thanks are due to the Dean and Chapter of the Cathedral for their support for the Project, especially to the staff of the Cathedral Library and Archives, and to the librarians of the Beaney Institute (the city library in Canterbury):&nbsp;to Cressida Williams, Cathedral Archivist, and her colleagues, and to Karen Brayshaw, Cathedral Librarian. &nbsp;Their expert and good-humoured assistance has made the enterprise far more enjoyable than work is supposed to be.<br /><br />Thanks also to Jenna Donnelly, designer and compiler of this website, and to Cantuar, the ad hoc group of fellow-musicians whose voices bring the music to life here: David Wilcock, counter-tenor; Paul Young, tenor; Chris Price, tenor; Jon Williams, baritone; and Duncan Perkins, bass. &nbsp;The members hope to be worthy successors to their 18th- and 19th-century predecessors in the Cathedral Choir, whose musical talents and mischievous temperaments would have helped to make the Catch Club evenings truly memorable.</p>','2013-07-22 03:30:13','2013-05-04 15:40:36',0,0,'',1),(2,1,1,1,'A brief history...','history','<p>The Catch Club existed between 1779 and 1865, but it was undoubtedly the first half of the nineteenth century which witnessed its glory days.&nbsp; Reading the Minutes, this seems remarkable: given the endless problems with the air pump, the Ladies&rsquo; Room, and the various musical celebrities from foreign countries (Italy, America) engaged from time to time by the Club, it is something of a wonder that a series of thirty concerts of vocal and orchestral music was held every Wednesday evening from October to May throughout this period.&nbsp;</p>\r\n<p>Whatever visiting celebrities may have contributed, most of the evening&rsquo;s music would have been provided by the members themselves; all would have been capable of holding a part in the &lsquo;catches&rsquo; which lie at the heart of the Club&rsquo;s repertoire. The more sophisticated glees would have been sung by the more musically proficient members of the Club, and these would have included the musicians in the service of the Cathedral at the time.<br />&nbsp;<br />Club subscriptions (20 shillings for a season in 1840, with fines for non-attendance!) paid for instrumental music, too.&nbsp; The Club patronised an orchestra, with conductor, though this seems to have occasioned a degree of discord which belied the motto painted on the scroll above their stalls: the exhortation to &lsquo;Harmony and Unanimity&rsquo; seems seldom to have been heeded, as the number of rules governing the conduct of the orchestral musicians proliferated throughout this time and the matter of the conductor&rsquo;s salary is a running debate in the Committee&rsquo;s Minutes. In spite of these vicissitudes, however, it is clear that the Canterbury Catch Club was a lively fixture on Canterbury&rsquo;s cultural scene for almost a century.</p>','2013-11-14 10:30:30','2013-05-22 13:16:28',0,0,'',1),(3,1,1,1,'How to use the database','how-to-use','<p>The database is made up of a number of items, categorised by composer, type (i.e. glee or catch), genre and voices. You can browse through all of these items by clicking on <a title=\"Link to Browse Items\" href=\"/canterburycatch/canterburycatch/items/browse\" target=\"_self\">Browse Items</a> in the main menu.</p>\r\n<p>If you would like to search for a particular title, use the Search feature which is located at the top-right of every page. Simply type in the title you are looking for and click \'Search\'. You can narrow your search parameters by using the dropdown boxes to specify a composer or a glee/catch, or even select both.</p>\r\n<p>When you browse or search for items, the relevant items will appear in a table, with the relevant information under different columns. Click on the title to view the details of the item itself.</p>\r\n<p>By clicking on other links, such as type or genre for example, the table will reconfigure to show you more items which have this feature in common (i.e. more items of the same type, or more items within the clicked genre).</p>\r\n<p>When you click the composer name, this will take you to a page filled with all catalogued items by that composer.</p>\r\n<p>&nbsp;</p>\r\n<h3>ITEMS</h3>\r\n<p>When you click on an item title, it will take you to an individual page with all details available for that item. This will include all available files for the item, such as images, audio and PDF files.&nbsp;</p>\r\n<p>To view images, click on the image thumbnail and the image will expand in the window. You can use the left or right buttons to navigate through a gallery if there is more than one image on the page.</p>\r\n<p>To download the image, click on the \'Page\' link above the thumbnail image (e.g. Page 1, Page 2 etc.), and a new tab will open in your browser containing the image. Click \'File &gt; Save As\' on your internet browser to save the image to your computer. Alternatively, from the item page, right-click on the \'Page\' link and select \'Save Link As\' in the same way.</p>\r\n<p>Other file types, when clicked, will open in a new window but will only display depending on the compatibilities of your browser. If you are downloading sibelius files or eps files, we recommend you save the file to your computer and view it in the appropriate program. Audio files/MP3 files should open and play fine in all browsers, but if you have a slow internet connection you may wish to download the entire file before listening.</p>\r\n<p>&nbsp;</p>\r\n<p>You can use the main menu to navigate back to \'<a title=\"Home\" href=\"/canterburycatch/canterburycatch/\" target=\"_self\">Home</a>\' or \'<a title=\"Browse Items\" href=\"/canterburycatch/canterburycatch/items/browse\" target=\"_self\">Browse Items</a>\' at any point. \'<a title=\"History\" href=\"/canterburycatch/canterburycatch/history\" target=\"_self\">History</a>\' and \'<a title=\"About\" href=\"/canterburycatch/canterburycatch/about\" target=\"_self\">About</a>\' are simple pages that provide some background information on Canterbury Catch Club (\'History\') and about the archive itself (\'About\'). You get in touch with us by emailing via the \'<a title=\"Contact\" href=\"/canterburycatch/canterburycatch/contact\" target=\"_self\">Contact Us</a>\' email form.</p>','2013-06-21 17:05:39','2013-06-09 13:20:26',0,0,'',1),(4,1,1,1,'The Music','the-music','<p>Content to follow...</p>','2013-07-24 09:36:35','2013-07-24 12:36:07',0,0,'',1);
/*!40000 ALTER TABLE `omk_simple_pages_pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_tags`
--

DROP TABLE IF EXISTS `omk_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_tags` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_tags`
--

LOCK TABLES `omk_tags` WRITE;
/*!40000 ALTER TABLE `omk_tags` DISABLE KEYS */;
INSERT INTO `omk_tags` (`id`, `name`) VALUES (15,'alcock'),(14,'anon'),(18,'Anon.'),(4,'Baritone'),(20,'Berg'),(3,'Comical'),(12,'dyne'),(11,'harington'),(21,'hayes'),(17,'hutcheson'),(10,'leach'),(13,'luffman'),(9,'porter'),(8,'purcell'),(16,'smith'),(7,'stevens'),(2,'Tenor'),(1,'Traditional'),(5,'Webbe');
/*!40000 ALTER TABLE `omk_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_users`
--

DROP TABLE IF EXISTS `omk_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `username` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `name` text COLLATE utf8_unicode_ci NOT NULL,
  `email` text COLLATE utf8_unicode_ci NOT NULL,
  `password` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL,
  `salt` varchar(16) COLLATE utf8_unicode_ci DEFAULT NULL,
  `active` tinyint(4) NOT NULL,
  `role` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'default',
  PRIMARY KEY (`id`),
  UNIQUE KEY `username` (`username`),
  KEY `active_idx` (`active`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_users`
--

LOCK TABLES `omk_users` WRITE;
/*!40000 ALTER TABLE `omk_users` DISABLE KEYS */;
INSERT INTO `omk_users` (`id`, `username`, `name`, `email`, `password`, `salt`, `active`, `role`) VALUES (1,'admin','System Administrator','contact@jennadonnelly.com','54c37124c8c64eae4a92d56b04a7da568e59ff5e','f3c9b8dc21b2fca3',1,'super');
/*!40000 ALTER TABLE `omk_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `omk_users_activations`
--

DROP TABLE IF EXISTS `omk_users_activations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `omk_users_activations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `url` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `added` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `omk_users_activations`
--

LOCK TABLES `omk_users_activations` WRITE;
/*!40000 ALTER TABLE `omk_users_activations` DISABLE KEYS */;
/*!40000 ALTER TABLE `omk_users_activations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping events for database 'ethanl6_omek296'
--

--
-- Dumping routines for database 'ethanl6_omek296'
--
/*!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 2019-04-23 13:23:50
